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



body{
  margin: 0;
}

.d-flex{
  display: flex;
}

.justify-center{
   justify-content: center;
}
.justify-start{
   justify-content: flex-start;
}
.justify-end{
   justify-content: flex-end;
}
.justify-items-center{
   justify-items: center;
}
.justify-items-start{
   justify-items: flex-start;
}
.justify-items-end{
   justify-items: flex-end;
}

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

.flex-row{
  flex-direction: row;
}

.relative{
  position: relative;
}


.wrap{
  flex-wrap:wrap;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.align-start{
  align-items: flex-start;
}

.align-end{
  align-items: flex-end;
}
.align-center{
  align-items: center;
}

.items-center{
  justify-items: center;
}

.justify-between{
  justify-content: space-between;
}

.justify-evenly{
  justify-content: space-evenly;
}

.d-block{
  display: block;
}
.d-inline-block{
  display: inline-block;
}

.d-none {
  display: none;
}

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

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


.absolute {
  position: absolute;
}

.d-grid{
  display: grid;
}

.grid-1-column{
  grid-template-columns: repeat(1, 1fr)
}
.grid-2-column{
  grid-template-columns: repeat(2, 1fr)
}
.grid-3-column{
  grid-template-columns: repeat(3, 1fr)
}
.grid-4-column{
  grid-template-columns: repeat(4, 1fr)
}
.grid-5-column{
  grid-template-columns: repeat(5, 1fr)
}

.content-intro .description{
  max-width: 900px;
  margin-top: 10px;
}

.bg-orange{
  background-color: #FD7014;
}

.bg-white{
  background-color: #ffffff;
}

.bg-light-gray{  
  background-color: #F1F2Fa;
}

.bg-black{
  background-color:#000000;
}

.bg-blue{
  background-color: #222C57;
}

.w-100{
  width: 100%;
}
.h-100{
  height: 100%;
}
.h-auto{
  height: auto;
}
.w-auto{
  width: auto;
}
.w-fit-content{
  width: fit-content;
}
.cursor-pointer{
  cursor: pointer;
}

.bg-cover{
  background-size: cover;
}
.bg-contain{
  background-size: contain;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.bg-center{
  background-position: center;
}
.bg-left{
  background-position: left;
}
.bg-right{
  background-position: right;
}
.row-fluid {
	width: 100%;
	*zoom: 1;
}
.row-fluid:before, .row-fluid:after {
	display: table;
	content: "";
}
.row-fluid:after {
	clear: both;
}
.row-fluid [class*="span"] {
	display: block;
	float: left;
	width: 100%;
	min-height: 1px;
	margin-left: 2.127659574%;
	*margin-left: 2.0744680846382977%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
	margin-left: 0;
}

.row-fluid .span12 {
	width: 99.99999998999999%;
	*width: 99.94680850063828%;
}

.row-fluid .span11 {
	width: 91.489361693%;
	*width: 91.4361702036383%;
}

.row-fluid .span10 {
	width: 82.97872339599999%;
	*width: 82.92553190663828%;
}

.row-fluid .span9 {
	width: 74.468085099%;
	*width: 74.4148936096383%;
}

.row-fluid .span8 {
	width: 65.95744680199999%;
	*width: 65.90425531263828%;
}

.row-fluid .span7 {
	width: 57.446808505%;
	*width: 57.3936170156383%;
}

.row-fluid .span6 {
	width: 48.93617020799999%;
	*width: 48.88297871863829%;
}

.row-fluid .span5 {
	width: 40.425531911%;
	*width: 40.3723404216383%;
}

.row-fluid .span4 {
	width: 31.914893614%;
	*width: 31.8617021246383%;
}

.row-fluid .span3 {
	width: 23.404255317%;
	*width: 23.3510638276383%;
}

.row-fluid .span2 {
	width: 14.89361702%;
	*width: 14.8404255306383%;
}

.row-fluid .span1 {
	width: 6.382978723%;
	*width: 6.329787233638298%;
}

.container-fluid {
	*zoom: 1;
}

.container-fluid:before, .container-fluid:after {
	display: table;
	content: "";
}

.container-fluid:after {
	clear: both;
}

@media (max-width: 767px) {
	.row-fluid {
		width: 100%;
	}

	.row-fluid [class*="span"] {
		display: block;
		float: none;
		width: auto;
		margin-left: 0;
	}
}

@media (min-width: 768px) and (max-width: 1139px) {
	.row-fluid {
		width: 100%;
		*zoom: 1;
	}

	.row-fluid:before, .row-fluid:after {
		display: table;
		content: "";
	}

	.row-fluid:after {
		clear: both;
	}

	.row-fluid [class*="span"] {
		display: block;
		float: left;
		width: 100%;
		min-height: 1px;
		margin-left: 2.762430939%;
		*margin-left: 2.709239449638298%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row-fluid [class*="span"]:first-child {
		margin-left: 0;
	}

	.row-fluid .span12 {
		width: 99.999999993%;
		*width: 99.9468085036383%;
	}

	.row-fluid .span11 {
		width: 91.436464082%;
		*width: 91.38327259263829%;
	}

	.row-fluid .span10 {
		width: 82.87292817100001%;
		*width: 82.8197366816383%;
	}

	.row-fluid .span9 {
		width: 74.30939226%;
		*width: 74.25620077063829%;
	}

	.row-fluid .span8 {
		width: 65.74585634900001%;
		*width: 65.6926648596383%;
	}

	.row-fluid .span7 {
		width: 57.182320438000005%;
		*width: 57.129128948638304%;
	}

	.row-fluid .span6 {
		width: 48.618784527%;
		*width: 48.5655930376383%;
	}

	.row-fluid .span5 {
		width: 40.055248616%;
		*width: 40.0020571266383%;
	}

	.row-fluid .span4 {
		width: 31.491712705%;
		*width: 31.4385212156383%;
	}

	.row-fluid .span3 {
		width: 22.928176794%;
		*width: 22.874985304638297%;
	}

	.row-fluid .span2 {
		width: 14.364640883%;
		*width: 14.311449393638298%;
	}

	.row-fluid .span1 {
		width: 5.801104972%;
		*width: 5.747913482638298%;
	}
}

@media (min-width: 1280px) {
	.row-fluid {
		width: 100%;
		*zoom: 1;
	}

	.row-fluid:before, .row-fluid:after {
		display: table;
		content: "";
	}

	.row-fluid:after {
		clear: both;
	}

	.row-fluid [class*="span"] {
		display: block;
		float: left;
		width: 100%;
		min-height: 1px;
		margin-left: 2.564102564%;
		*margin-left: 2.510911074638298%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	.row-fluid [class*="span"]:first-child {
		margin-left: 0;
	}

	.row-fluid .span12 {
		width: 100%;
		*width: 99.94680851063829%;
	}

	.row-fluid .span11 {
		width: 91.45299145300001%;
		*width: 91.3997999636383%;
	}

	.row-fluid .span10 {
		width: 82.905982906%;
		*width: 82.8527914166383%;
	}

	.row-fluid .span9 {
		width: 74.358974359%;
		*width: 74.30578286963829%;
	}

	.row-fluid .span8 {
		width: 65.81196581200001%;
		*width: 65.7587743226383%;
	}

	.row-fluid .span7 {
		width: 57.264957265%;
		*width: 57.2117657756383%;
	}

	.row-fluid .span6 {
		width: 48.717948718%;
		*width: 48.6647572286383%;
	}

	.row-fluid .span5 {
		width: 40.170940171000005%;
		*width: 40.117748681638304%;
	}

	.row-fluid .span4 {
		width: 31.623931624%;
		*width: 31.5707401346383%;
	}

	.row-fluid .span3 {
		width: 23.076923077%;
		*width: 23.0237315876383%;
	}

	.row-fluid .span2 {
		width: 14.529914530000001%;
		*width: 14.4767230406383%;
	}

	.row-fluid .span1 {
		width: 5.982905983%;
		*width: 5.929714493638298%;
	}
}

@media(min-width: 768px){
  .flex-md-row {
    flex-direction: row;
  }
   .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  
   .flex-md-column {
    flex-direction: column;
  }
}

html {
  scroll-behavior: smooth;
}
img{
  height: auto;
  max-width: 100%;
}

.content-intro{
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto
}
.form-wrapper {
  padding: 40px;
  background-color: #F1F2Fa;
  box-shadow: 0px 0px 31.799999237060547px 0px #0000001F;
}
.form-wrapper form{
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.form-wrapper  h4,
.form-wrapper  p{
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.form-wrapper form input {
  border: unset;
  border-radius: 5px;
}
.form-wrapper form input[type=email],.form-wrapper form input[type=file],.form-wrapper form input[type=number],.form-wrapper form input[type=password],.form-wrapper form input[type=search],.form-wrapper form input[type=tel],.form-wrapper form input[type=text],.form-wrapper form select,.form-wrapper form textarea{
  font-family: Epilogue;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}
.form-wrapper form label{
  font-family: Epilogue;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #676975;
}

.form-wrapper form .legal-consent-container .hs-richtext,
.form-wrapper form .hs-dependent-field .inputs-list .hs-form-booleancheckbox label span{
  font-family: Epilogue;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #676975;
}

.form-wrapper form .hs_submit .actions input{
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: Epilogue;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
  border-radius: 5px;
  padding: 12px 30px;
  text-decoration: none;
  color: #FFFFFF;
  background-color:#FD7014;
  border: 1.5px solid #FD7014;
}
.form-wrapper form .hs_submit .actions{
    display: flex;
    justify-content: center;
}
.form-wrapper form .hs_submit .actions input:hover,
.form-wrapper form .hs_submit .actions input:focus{
  color: #FD7014;
  background-color: #fff;
}

.form-wrapper form .hs-fieldtype-textarea.hs-input{
  border: unset;
}

.form-wrapper form .hs-error-msg,
.form-wrapper form .hs_error_rollup label{
  color: red;
}

body{
  background-image: url('https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/bg%20texture.png');
  background-size: contain;
  background-repeat: repeat;
}
@media(max-width: 1200px){
 body .dnd_area-row-0-background-image{
    background-size: cover !important;
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

.body-wrapper {
  overflow: hidden;
}

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

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


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

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

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



body {
  overflow-wrap: break-word;
  color: #000000;
}

/* Anchors */

a {
  cursor: pointer;
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  transition: color 0.2s;
  text-decoration: none;
  color: #FD7014;
}

a:hover {
  color: #FD7014 !important;
  text-decoration: unset;
}


h1,
h2,
h3,
h4,
h5,
h6,
h7,
h8,
p{
  margin: 0 0 0.8rem;
}

p+p{
  margin-top: 20px;
}

.content-bullets ul li::marker{
  display: none
}

.content-bullets ul {
  padding-left: 22px;
}
.content-bullets ul li{
  position: relative;
}
.content-bullets ul li{
  font-family: Epilogue;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #000000
}
.content-bullets.tx-white ul li{
  color: #ffffff
}
.content-bullets ul li:not(:last-of-type){
  margin-bottom: 10px;
}
.content-bullets ul li::before{
  content: "";
  height: 15px;
  background-image: url("https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/ul-arrow.png");
  left: -23px;
  position: absolute;
/*   top: 43%;
  transform: translateY(-50%); */
  top: 3px;
  width: 15px;
  background-repeat: no-repeat;
}
.content-bullets.tx-white ul li::before{
  background-image: url("https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/Subtract.svg");
}
.content-bullets ul {
  list-style: none;
  margin: 15px 0;
}

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

.tx-white{
  color: #ffffff;
}
.tx-orange{
  color: #FD7014;
}
.tx-black{
  color: #000000;
}
.tx-blue{
  color: #222C57;
}
.tx-light-grey{
  color: #F1F2Fa;
}
.tx-grey{
  color: #4F4F4F;
}

.tx-center{
  text-align: center;
}
.tx-left{
  text-align: left;
}
.italic{
  font-style: italic;
}
.regular{
  font-weight: 400;
}
.medium{
  font-weight: 500;
}
.bold{
  font-weight: 700;
}

.content-intro .headline span{
  color: #FD7014;
}
.content-intro p{
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.numbered-list{
  align-items: flex-start;
  display: flex;
}



.btn, .cta {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
  font-family: Epilogue;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0px;
  border-radius: 5px;
  padding: 12px 30px;
  text-decoration: none;
}

.btn.btn-blue,
.cta-blue a{
  color: #ffffff;
  background-color:#222C57;
  border: 1.5px solid #ffffff;
}
.btn-blue:hover,
.btn-blue:focus,
.cta-blue:hover a,
.cta-blue:focus a{
  color: #222C57 !important;
  background-color: #ffffff;
  border: 1.5px solid #222C57;
}

.btn-orange,
.cta-orange a{
  color: #ffffff;
  background-color:#FD7014;
  border: 1.5px solid #FD7014;
  
}
.btn-orange:hover,
.btn-orange:focus,
.cta-orange:hover a,
.cta-orange:focus a{
  color: #FD7014;
  background-color: #ffffff;
}

.btn-white,
.cta-white a{
  color: #FD7014 !important;
  background-color: #ffffff;
  border: 1.5px solid #FD7014;
  
}
.btn-white:hover,
.btn-white:focus,
.cta-white:hover a,
.cta-white:focus a{
  color: #ffffff !important;
  background-color:#FD7014;
}

.btn-text-link,
.cta-text-link a{
  line-height: normal;
  color: #FD7014;
  border: none;
  position: relative;
  padding: 0;
}

.btn-text-link:after{
  content: "";
  position: absolute;
  background-image: url( "https://www.cybersaint.io/hubfs/Icon.png");
  width: 14px;
  height: 15px;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  transition: 200ms;
}

.btn-text-link:hover:after,
.btn-text-link:focus:after{
  right: -30px;
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

  .body-container-wrapper .hs-search-field__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;
}

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

/* 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: 992px) {
  .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: 992px) {
  .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%;
}
.customer-testimonials-listing .customer-testimonials-listing-wrapper .filters-container .search-filter .hs-search-field form input{
  border: unset;
  background: #F1F2FA;
  height: 46px;
  border-radius: 7px 0 0 7px;
}
.customer-testimonials-listing .customer-testimonials-listing-wrapper .filters-container .search-filter .hs-search-field form input:placeholder{
  font-family: Epilogue;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}
.customer-testimonials-listing .customer-testimonials-listing-wrapper .filters-container .search-filter .hs-search-field form .hs-search-field__button {
  margin-left: 0;
  border: unset;
  background: #F1F2FA;
  height: 46px;
  border-radius: 0 7px 7px 0;
}
.customer-testimonials-listing .customer-testimonials-listing-wrapper .filters-container .search-filter .hs-search-field form .hs-search-field__button svg{
  fill: #222C57;
  width: 16px;
  height: 16.5px;
  font-weight: 700;
}

.customer-testimonials-listing .customer-testimonials-listing-wrapper .filters-container .search-filter .hs-search-field form input:focus{outline: none;}
.customer-testimonials-listing .hs-search-field--open .hs-search-field__suggestions{z-index: 9;}


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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}








/* 1a. Containers */



/* 1b. Colors */








/* 1c. Typography */





















html {
  font-size: {units=px, value=16}px;
}

p, body {
  font-family: Epilogue, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  color: inherit
}

/* Paragraphs */

p {
  font-family: Epilogue, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
}

/* Headings */

h1,
.h1 {
  font-family: Epilogue; font-style: normal; font-weight: normal; text-decoration: none;
  color: #333;
  font-size: 65px;
  line-height: 80px;
}

h2,
.h2 {
  font-family: Epilogue; font-style: normal; font-weight: normal; text-decoration: none;
  color: #333;
  font-size: 45px;
  line-height: 60px;
}

h3,
.h3 {
  font-family: Epilogue; font-style: normal; font-weight: normal; text-decoration: none;
  color: #333;
  font-size: 36px;
  line-height: 42px;
}

h4,
.h4 {
  font-family: Epilogue; font-style: normal; font-weight: 500; text-decoration: none;
  color: #333;
  font-size: 32px;
  line-height: 36px;
}

h5,
.h5 {
  font-family: Epilogue; font-style: normal; font-weight: 500; text-decoration: none;
  color: #333;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400
}

h6,
.h6 {
  font-family: 'Noto Sans', sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
h7,
.h7 {
  font-family: Epilogue; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
h8,
.h8 {
  font-family: Epilogue; font-style: normal; font-weight: normal; text-decoration: none;
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

@media(max-width: 768px){
    h1, .h1{
    font-size: 38px;
    line-height: 45px;
  }

  h2, .h2{
    font-size: 32px;
    line-height: 36px;
  }

  h3, .h3{
    font-size: 24px;
    line-height: 32px;
  }

  h4, .h4{
    font-size: 20px;
    line-height: 28px;
  }

  h5, .h5{
    font-size: 18px;
    line-height: 26px;
  }
  h6, .h6{
    font-size: 16px;
    line-height: 24px;
  }
}
  .container {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

/* Blog
*/
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content{box-shadow: 0px 0px 33.21217346191406px 0px #0000001F;width: 100%}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image{min-height:200px;height:auto;width:100%;position:relative}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image::before{content: ""; background-image:url('https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/Mask%20group%20(24).png');position: absolute;left: 0;bottom: -11px; width: 217px;height: 380px;background-repeat: no-repeat;} 
@media(max-width: 1200px){/*   .eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image::before{width: 111px;height: 200px; background-image:url('https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/blog-post-texture.png'); */background-image:url('https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/blog-post-texture.png')}}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content{padding:20px; border-radius: 4px}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content .featured-posts-topic{margin-bottom:10px;font-size:16px}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .slick-dots{margin:0;position:absolute;right:40px;width:auto;bottom:-25px;display: flex !important;gap: 12px;justify-content: center;}
@media(min-width: 992px){.eastwall-blog .content-listing .featured-posts .featured-posts-cards .slick-dots{bottom: 70px}}
.eastwall-blog .content-listing .blog-filters{padding-bottom:26px;border-bottom:1px solid #dedede;margin-bottom:32px;gap: 26px 20px;margin-top: 50px}
.eastwall-blog .content-listing .blog-filters .topics-dropdown{height:47px;width: 400px;}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown{position:relative;display:inline-block;width:100%;height:100%;}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropbtn{color: #222C57;padding: 13px 10px 10px 10px;border:0;cursor:pointer;width:100%;height:100%;border:1px solid transparent;border-radius:5px;text-align:left; font-size: 18px;line-height: 1;background: #F1F2FA;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner{position: relative}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropbtn svg{width:14px;height:7.2px}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropdown-content{display:none;position:absolute;background-color:white;min-width:160px;z-index:1;width:100%;padding-left:0;list-style:none;margin:0;padding-top: 10px;padding-bottom:10px;border-radius: 0 0 10px 10px;    -webkit-box-shadow: 0 3.82961px 15.31843px 0 rgba(95,109,126,0.15);box-shadow: 0 3.82961px 15.31843px 0 rgba(95,109,126,0.15);}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropdown-content li{padding: 5px 10px;}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropdown-content li:hover{background-color: rgba(0,0,0,.1);}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropdown-content li a{width:100%;display:block;text-decoration: none;color: #222C57;font-size: 16px;}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropdown-content li a:hover{color: #222C57!important}
.eastwall-blog .content-listing .blog-filters .posts-search-bar{height:47px;border-radius:5px;width: 400px;background: #F1F2FA;}
.eastwall-blog .content-listing .blog-listing-posts-container{gap:36px 40px;margin-bottom:40px}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual{-webkit-box-shadow:0 3.82961px 15.31843px 0 rgba(95,109,126,0.15);box-shadow:0 3.82961px 15.31843px 0 rgba(95,109,126,0.15);border-radius: 5px;max-width: 400px;width: 100%}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-image{width:100%;min-height:225px; border-radius: 5px 5px 0 0;position: relative;}
 .eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-image::before{content: ""; background-image:url('https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/blog-post-texture.png');position: absolute;left: 0;bottom: -11px; width: 111px;height: 200px; background-size: contain;background-repeat: no-repeat;}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details{width:100%;padding:15px 26px 27px 25px;background: #ffffff}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .blog-post-topic a{font-size: 14px; line-height: 18px; margin-bottom: 10px;color: #4F4F4F;}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .blog-post-topic a:hover{color: #4F4F4F !important;}
@media(min-width:450px){.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image{min-height:440px}
}@media(min-width:992px){.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image{-webkit-box-flex:0;-ms-flex:0 0 62%;flex:0 0 62%;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner >a{max-width: 585px}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content{min-height: 345px}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content{padding: 49px 43px 49px 64px;    position: absolute;
    right: 0;
    background: white;
    box-shadow: 0px 0px 33.21217346191406px 0px #0000001F;
    max-width: 500px;
    width: 100%;}
}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image{border-radius: 10px 0 0 10px }
@media(min-width:1200px){.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content{max-width:668px;}}
@media(max-width:992px){.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards{overflow: hidden;margin-bottom: -30px;padding-bottom: 30px!important }
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .slick-dots{bottom: 55px;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content{padding:0 20px 30px;min-height: 250px}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image{border-radius: 10px 10px 0 0 }}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards{margin-top: 0; margin-left: 0; margin-right: 0}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form{padding-left: 10px;padding-right: 15px;padding-top: 7px;}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__input::placeholder {color: #222C57; padding-left: 0}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__input:-ms-input-placeholder {color: #222C57; padding-left: 0}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__input::-ms-input-placeholder {color: #222C57; padding-left: 0}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__button {background: transparent;padding: 0;border: unset;}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__button svg{width: 15px; height: 15px}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__button svg path{fill: #222C57;}
@media(min-width: 992px){.eastwall-blog .content-listing .blog-filters .posts-search-bar{}
  .eastwall-blog .content-listing .blog-filters .posts-search-bar{margin-top: 0px}
}
.eastwall-blog .content-listing .blog-filters .topics-dropdown{position: relative}
.eastwall-blog .content-listing .blog-filters .topics-dropdown::after{position: relative}
.eastwall-blog .content-listing .blog-pagination{margin-bottom: 45px}
.eastwall-blog .content-listing .blog-pagination{margin-bottom: 45px}
.eastwall-blog .content-listing .blog-pagination .navigations-buttons .blog-pagination__link{margin: 0 12px;text-decoration: none;color: #222C57;font-size: 18px; line-height: 26px;}
.eastwall-blog .content-listing .blog-pagination .navigations-buttons .blog-pagination__link:hover{color: #222C57!important}
.eastwall-blog .content-listing .blog-pagination .navigations-buttons .blog-pagination__link.blog-pagination__link--active{padding: 10px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FD7014;
  color:#FD7014;
  background: transparent;
  text-decoration: none;}
.eastwall-blog .content-listing .blog-pagination .navigations-buttons .blog-pagination__link.blog-pagination__link--active:hover{color: #FD7014!important}
.eastwall-blog .content-listing .blog-pagination  .blog-pagination__next-link{margin-left: 15px;color: #FD7014; text-decoration: none;font-size: 18px; line-height: 26px;}
.eastwall-blog .content-listing .blog-pagination  .blog-pagination__prev-link{margin-right: 15px;color: #FD7014; text-decoration: none;font-size: 18px; line-height: 26px;}
.eastwall-blog .content-listing .blog-pagination  .blog-pagination__prev-link--disabled,.eastwall-blog .content-listing .blog-pagination  .blog-pagination__next-link--disabled{display: none;pointer-events: none;  }
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown.open .dropdown-content{display: block !important}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card {border-radius: 10px;}
@media(max-width: 1024px){
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content  .featured-posts-title{
    font-size: 28px;
    line-height: 1.2;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  }
}
@media(max-width: 450px){
  .eastwall-blog .hs-search-field__input{
    line-height: 0.8;
  }
  .eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form{
    padding-top: 10px;
    padding-left: 10px;
  }
}
.eastwall-blog .hs-search-field__input{
  background: transparent;
  border: unset;
}
.eastwall-blog .hs-search-field--open .hs-search-field__suggestions,.eastwall-blog .inpage-editor-active-field .hs-search-field__suggestions, .eastwall-blog .hs-search-field__suggestions {
  background-color: #fff;
  border: unset;
  box-shadow: unset;
  position: absolute;
  width: 400px;
  z-index: 9;
  position: absolute;
  top: 3px;
  left: -8px;
}
.body-container-wrapper .hs-search-field__suggestions li a:hover{
    color: #222C57 !important;
}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown.open .dropdown-content{
    max-height: 380px;
    overflow-y: scroll;
}

.eastwall-blog .featured-posts .slick-dots li button{
  display: none;  
}
.eastwall-blog .featured-posts .slick-dots li::marker{
  font-size: 0;
}
.eastwall-blog .featured-posts .slick-dots li{
  background: #a3a3a3;
  height: 5px;
  width: 27px;
  cursor: pointer;
}
.eastwall-blog .featured-posts .slick-dots li.slick-active {
  background: #FD7014;
}

.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .blog-post-topic{
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 14px;
  margin-top: 10px;
  color: #4F4F4F;
  text-decoration: none;
}
@media(min-width: 768px){
   .eastwall-blog .blog-listing-posts-container {
     grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media(min-width: 1024px){
  .eastwall-blog .blog-listing-posts-container {
     grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .blog-post-name{
  text-decoration: none;
}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .blog-post-name:hover{
  color: #000000 !important;
}
.eastwall-blog .hs-search-field__input::placeholder{
  font-family: Epilogue;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0px;
  text-align: left;
  color: #222C57;
}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content .featured-posts-topic{color: #4F4F4F;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content .featured-posts-title{
  color: #333333;
  text-decoration: none;
}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-content .featured-posts-title::hover{
  color: #333333;
}
.eastwall-blog .content-listing .blog-pagination .blog-pagination-inner,
.eastwall-blog .content-listing .blog-pagination .blog-pagination-inner .navigations-buttons{gap: 10px;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .slick-list{overflow: visible;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards{overflow: hidden;margin-right: -20px;margin-left: -20px;padding: 0 20px;width: calc(100% + 40px); }
.eastwall-blog .content-listing .blog-filters .posts-search-bar form input:focus{outline: none;}

.hs-blog-listing .hero .hero-content .hero-header span{
  color: #FD7014;
}
.hs-blog-listing .hero.text-center.content .container{
  justify-content: center
}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .read-more .btn-text-link:after{
  top: 0;
  transform: unset;
}
.eastwall-blog-post .blog-post-container .blog-post-container{background: linear-gradient(#FFFFFF,#F1F2F9);}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body{-webkit-box-flex:1;-ms-flex:1;flex:1}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-info{margin-bottom:45px}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h6{font-style:italic;font-size: 16px;line-height: 24px;margin-bottom: 29px}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body blockquote{;margin-top:70px;margin-bottom:12px;padding: 60px 50px 40px 50px;border-radius:5px;margin-right:0;margin-left:0;background: #ffffff;border: unset;}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body ul li{padding-bottom:38px}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-sidebar{-webkit-box-flex:0;-ms-flex:0 0 350px;flex:0 0 320px;}
.eastwall-blog-post .related-posts{margin-top:60px}
@media(min-width:992px){.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-sidebar{-webkit-box-flex:0;-ms-flex:0 0 414px;flex:0 0 414px}
}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h2,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h3,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h4,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h5,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h7,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h8,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body h9{
  margin-bottom: 10px;
}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body blockquote p:first-of-type{font-family: Epilogue;
font-size: 24px;
font-style: italic;
font-weight: 500;
line-height: 34px;
letter-spacing: 0em;
text-align: left;
margin-bottom: 18.5px;position:relative}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body blockquote p:first-of-type::before{background-image: url('https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/%E2%80%9C%20(1).svg');background-position: 0 0;background-repeat: no-repeat;background-size: contain;content: "";height: 73px;left: 0;position: absolute;top: -95px;width: 72px;}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body blockquote p:nth-of-type(2){font-family: Epilogue; margin-bottom: 0;}
.eastwall-blog-post .blog-post-container .blog-post-inner{padding-bottom: 70px;padding-top: 100px;}
.eastwall-blog-post .blog-subscribe .button-wrapper .cta_button{border: 2px solid #013A53;background: #FFF; color:#013A53 }
.eastwall-blog-post .blog-subscribe .button-wrapper .cta_button:hover{border: 2px solid #FFF;background: #013A53;color: white}
.eastwall-blog-post .blog-post-container .blog-post-hero{
  position: relative;
  min-height: 464px;
  padding-top: 200px;
  background: #222C57;
  padding-bottom: 50px;
  background-size: cover;
  background-image: url('https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/Post%20Hero%20-%20tablet.png'); /*Change this when going on the live site*/
}
@media(min-width:1200px){
  .eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
    position: absolute;
    max-width: 717px;
    right: 10px;
    bottom: -30px;
  }
  .eastwall-blog-post .blog-post-container .blog-post-hero{
    background-image: url('https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/Post%20Hero%20-%20desktop.png'); /*Change this when going on the live site*/
  }
  .eastwall-blog-post .blog-post-container .blog-post-info h1{
    font-family: Epilogue;
    font-size: 45px;
    font-weight: 400;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: left;
  }
  .eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
    width: 52%;
  }
  .eastwall-blog-post .blog-post-container .blog-post-info{
    width: 41%;
  }
  .eastwall-blog-post .blog-post-container .blog-post-inner{padding-top: 140px}
}
@media(min-width:1350px){
   .eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
    position: absolute;
    max-width: 717px;
    right: 70px;
    bottom: -30px;
  }
}
@media(min-width:1680px){
   .eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
    right: 150px;
  }
   .eastwall-blog-post .blog-post-container .blog-post-info{
    width: 44%;
  }
}
.eastwall-blog-post .blog-post-container .blog-post-info .topic{
  padding: 5px 10px 3px 10px;
  border-radius: 5px;
}
.eastwall-blog-post .blog-post-container .blog-post-info .blog-date-info a{
  text-decoration: none;
}
.eastwall-blog-post .blog-post-container .blog-post-info .blog-date-info a,.eastwall-blog-post .blog-post-container .blog-post-info .blog-date-info .post-date{
  font-family: Epilogue;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}
.eastwall-blog-post .blog-post-container .blog-post-info .post-topic{
  margin-bottom: 20px;
}
.eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
  max-width: 717px;
}
@media(max-width: 1200px){
  .eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
    margin-top: 30px;
    margin-bottom: -100px;
  }
}
@media(min-width:1900px){
  .eastwall-blog-post .blog-post-container .blog-post-hero .blog-post-image{
    position: relative;
    top: unset;
    right: unset;
    margin-bottom: -80px;
  }
  .eastwall-blog-post .blog-post-container .blog-post-hero{
    padding-top: 150px;
    }
  .eastwall-blog-post .blog-post-container .blog-post-hero .container{
    flex-direction: row;
    justify-content: space-between;
  }
  .eastwall-blog-post .blog-post-container .blog-post-info{
    padding-right: 50px;
    justify-content: center;
  }
  .eastwall-blog-post .blog-post-container
      align-items: center;
  }
}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body p{
  font-family: Epilogue;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-sidebar{margin-top: 30px}
@media(min-width:767px){
  .eastwall-blog-post .blog-post-container .blog-post-inner{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;}.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-sidebar{padding-left:24px;margin-top: 0}
  .eastwall-blog-post .social-share-module{background-color: #f1f2fa;}
  .eastwall-blog-post .blog-subscribe{background-color: #f1f2fa;}
}
@media(max-width: 550px){
  .eastwall-blog-post .blog-post-container .blog-post-hero .blog-date-info{
    flex-direction: column;
    row-gap: 10px;
  }
  .eastwall-blog-post .blog-post-container .blog-post-hero .blog-date-info .divider{
    display: none;
  }
}
.blog-editor .eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list span,
.blog-editor.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list{display: block}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list span,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list{display: flex; align-items: flex-start;} 
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list span img,
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list img{flex: 0 0 25px;}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list + div{margin-top: 10px}
.eastwall-blog-post .blog-post-container .blog-post-inner .blog-post-body .blog-post-content-body .numbered-list {font-size: 18px;font-weight: 400; line-height: 24px;}

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.header-2024 .header-wrapper .container{
  gap: 40px;
  padding-top: 30px;
}
.header-2024.scrolled{
/*   margin-top: -20px; */
}
@media(max-width: 1249px){
  .header-menu .menu__item--depth-1 .menu__submenu--level-2{
      background: white;
      z-index: 2;
      display: none
  } 
  .header-2024 .container{
    padding-left: 0;
    padding-right: 0;
  }
  .header-2024 .header__logo{
    max-width: 100% !important;
  }
}
.header__logo--white{
  display: none
}  
@media(min-width: 1250px){
    .header-menu .menu__item--depth-1 .menu__submenu--level-2{
    background: #fff;
    opacity: 0;
    transform: translateY(10px);
/*     transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; */
    visibility: hidden;
    z-index: 2;
    box-shadow: 0px 0px 31.8px 0px rgba(0, 0, 0, 0.12);
    margin-left: auto;
    margin-right: auto;
}
  .search-open .header__logo--white{
  display: block
}  
  .search-open .header__logo--main{
    display: none
  }
  .search-open .header-button .transparent-btn{
    color: white;
    border-color: white;
  }
   .search-open .header-button .transparent-btn svg path{
    stroke: white;
  }
  .header-menu .menu__item--depth-1 .menu__submenu--level-2 >.menu-items-wrapper{
  display: flex
}
  .header-menu .menu__item--depth-1:hover .menu__submenu--level-2{
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
        position: absolute;
    padding-left: 0;
    transform: translateX(-40%);
  }
  .header-menu .menu__item--depth-1:hover >a{
    color: ;
  }
  .header-menu .menu__item--depth-1:hover >.menu__child-toggle svg{
    transform: rotate(180deg);
  }
  .header-container{
    display: flex;
  }
  .mobile-trigger{
    display: none;
  }
  .header-2024 .header-menu .menu__submenu--level-2{
/*   position: absolute; */
/*   left: 0; */
/*     right: 0; */
/*     margin-left: auto; */
/*     margin-right: auto; */
  top: 250px;
  border-radius: 5px;
/*   min-height: 550px; */
    display: flex
}
   .header-menu .menu__item--depth-1 >.menu__link{
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    color: #591490;
  }
  .header-2024 .header-menu .menu__item--depth-1{
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    position: relative
  }
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover >a{
  color: #000000;
} 
 
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-3{
    margin-top: 12px;
    padding-inline-start: 0;
  }
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-3.wrap-childrens{
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    width: fit-content;
  }
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-3.wrap-childrens .menu__item--depth-3 {
    flex: 1 0 auto;
    flex-basis: calc(50% - 10px);
    width: 50%;
    
  }
}
.header-2024 .header-menu .menu__submenu--level-2{
     top: 3px;
     width: fit-content
}
.header-2024 .header-menu .menu__item--depth-1{
    padding-bottom: 20px;
    padding-top: 20px;
  }
@media(min-width: 1250px){
  .header-menu .menu__item--depth-1 >.menu__link{
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    position: relative;
  }
  .menu--desktop .menu__item--depth-1:first-of-type >.menu-wrapper{
    transform: unset
  }
  
  .search-open .header-menu .menu__item--depth-1>.menu__link{
    color: white
  }
  .search-open .header-menu .menu__item--depth-1 .menu__child-toggle-icon svg path{
    stroke: white
  }
  
  .header-menu .menu__item--depth-1:hover >a::after{
    content: "";
    position: absolute;
    background: rgba(253, 112, 20, 1);
    height: 2px;
    width: calc(100% + 40px);
    bottom: -28px;
    left: -15px
  }
  .header-2024 .header-menu .menu__item--depth-1{
    padding: 20px 30px;
  }
 
}

.header-2024 .header__logo{
  max-width: 148px;
  width: 100%;
}
.header-menu .menu--desktop >.menu__wrapper{
  display: flex;
  margin: 13px 0;
}



.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 >.menu__item{
  position: relative;
  padding: 40px 10px;
  flex: 0 1 260px;
  padding-left: 20px;
  padding-right: 20px;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 >.menu__item:has(.wrap-childrens){
  flex: 0 1 400px;
  width: 100%
}
.header-2024 .cta-group.cta-resource{
  flex: 0 1 290px;
  width: 100%;
  border-radius: 0 24px 24px 0;
  background-color: rgba(241, 242, 250, 1);
  border-radius: 0;
  max-width: 500px
}

.cta-group .resource .resource-description{
  margin-top: 30px
}

.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-3.wrap-childrens >.menu-items-wrapper{
   display: flex;
   flex-wrap: wrap;
   min-width: 400px;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item{
  color: #3A394E;
  flex: 0 1 260px;
  padding: 20px 30px;
  cursor: default;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3{
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  position: relative;
  min-width: 198px;
  cursor: default;
  padding: 0;
 }
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:has(a){
  cursor:pointer;
}

.header-2024 .header-menu .menu__item--depth-1 .menu__item--depth-2 > a,
.header-2024 .header-menu .menu__item--depth-1 .menu__item--depth-3 > a {
  display: inline-block;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__item--depth-2 .menu__child-toggle,
.header-2024 .header-menu .menu__item--depth-1 .menu__item--depth-3 .menu__child-toggle {
  display: none;
}


.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 .menu__link{
  font-weight: 500 !important;
  color: #3A394E;
  padding-right: 5px;
  font-size: 16px;
  line-height: unset;
  padding: 12px 13px;
  display: block
}
@media(min-width: 1700px){
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 .menu__link{
    white-space: nowrap;
    padding: 12px 30px 12px 13px;
  }
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-4 .menu__link{
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-2 > .menu__link{
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px solid rgba(170, 170, 170, 1);
  border-radius: 0;
  letter-spacing: 2px;
  width: 100%;
  white-space: nowrap;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-2 > .menu__link h5{
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 >a{
  padding: 0;
/*   max-width: 22%; */
  width: 100%;
  position: relative;
}
/* .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover >a{
  color: #000000;
  box-shadow: 0px 15px 15px 0px #0000001A;
  background: #f4f4f4;
}  */
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3.active-menu >a{
/*   color: #000000;
  box-shadow: 0px 15px 15px 0px #0000001A;
  background: #f4f4f4;
  border-radius: 5px;
  position: relative; */
/*   padding: 0; */
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 .menu-group{
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  padding: 20px;
  border-radius: 5px;
  gap: 10px;  
  left: 26%;
}
.header-2024 .header-menu .menu__item--depth-1:hover .menu__submenu--level-2 .menu__item--depth-3.active-menu .menu-group{
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  display: flex;
}
.header-2024 .header-menu .menu__item--depth-1:hover .menu__submenu--level-2 .menu__item--depth-3.active-menu:not(:first-of-type) .menu-group{
  transition: all 0.3s ease;
}

.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 .menu-group .menu__submenu--level-4{
  flex: 0 0 55%;
  border-right: 1px solid #F4F4F4;
  padding-right: 20px;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-4 {
  padding: 20px 20px 20px 63px;
  position: relative;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-4:hover {
  background: #F4F4F499;
  cursor: pointer;
  border-radius: 5px;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-4 >a{
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-4 .menu__submenu--level-5 span{
  font-size: 14px;
  font-weight: 300;
  line-height: 17.5px;
}
 
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-4 .menu__link img{
  position: absolute;
  left: 13px;
  width: 40px;
  height: 40px;
}
.header__skip {
    height: 1px;
    left: 0;
    overflow: hidden;
    position: absolute;
    text-align: left;
    top: -40px;
    width: 1px;
}

.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3  .learn-more{
  padding: 0 22px 0 0;
  width: fit-content;
  margin-bottom: 0;
}

.header-2024{
  z-index: 999;
  transition: all 0.4s ease;
  width: 100%;
  position: fixed;
  background: white;
  box-shadow: 0px 20px 24px -4px #10182814;
}

.header-2024.scrolled .container{
  border-radius: 0;
}

body{
  position: relative;
}

.menu--desktop,.header-button{
  display: none;
}
@media(min-width: 1250px){
  .menu--desktop,.header-button{
    display: flex;
  }
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover >.menu__link{
    color: #222C57 !important;
  }
  .header-2024 .cta-group.cta-quote{
  flex: 0 1 500px;
  width: 100%;
  border-radius: 0 24px 24px 0;
  min-width: 459px;
}
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover{
  background: rgba(241, 242, 250, 1);
  border-radius: 5px;
  color: black;
}
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover::after{
    content: "";
     background-image: url("https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/Union.svg");
    position: absolute;
    right: 8px;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
     background-size: contain;
    background-repeat: no-repeat;
  } 
  .menu--desktop .menu__item--depth-1 >.menu-wrapper{
  position: absolute;
  width: 100%;
  top: 66px;
/*   left: -50%; */
/*   transform: translateX(-50%); */
  opacity: 0;
  visibility: hidden;
  max-height: 0;
/*   min-width: 500px */
}
.menu--desktop .menu__item--depth-1:hover >.menu-wrapper{
  opacity: 1;
  visibility: visible;
  max-height: 2000px
}
}
.mobile-open .menu--desktop,.mobile-open .header-button{
    display: flex;
  }

.hamburger {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  position: absolute;
  right: 27px;
  top: 21px;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Animation */
.hamburger--squeeze .hamburger-inner {
  transition: transform 0.3s ease;
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.3s ease 0.3s, opacity 0.1s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.3s ease 0.3s, transform 0.3s ease;
}

/* Active state */
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition: transform 0.3s ease 0.3s;
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.3s ease, opacity 0.1s ease 0.3s;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.3s ease, transform 0.3s ease 0.3s;
}
.mobile-open .header-container{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start
}
.mobile-open .header-container .header-menu-inner .menu__submenu--level-3{
  flex-direction: column;
}
.mobile-open .header-wrapper .container{
  flex-direction: column;
}
.mobile-open .menu__item--depth-2 .menu__submenu--level-2 .menu-group{
  display: none;
}
.mobile-open .header-menu .menu--desktop>.menu__wrapper{
  flex-direction: column
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2{
  display: flex;
  background: #F1F2Fa
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2{
  color:#fff;
  padding: 10px 0;
  margin-top: 18px;
  width: 100%;
  flex-direction: column
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 .menu__link{
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  max-width: 100%;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-2>.menu__link{
  border-bottom: unset;
  padding-left: 20px
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3{
  padding-left: 0;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 .menu__link:hover{
  color: #3A394E !important;
  position: relative;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-3{
  margin-top: 0
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1 >.menu__link{
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 {
  margin-left: unset;
  margin-right: unset;
  padding: 0;
  width: 100%;
}
.mobile-open .header-2024 .header-search-button{
  padding-left: 20px;
  padding-right: 20px;
  flex-direction: column;
}
@media(min-width: 500px){
  .mobile-open .header-2024 .header-search-button{
    align-items: flex-start;
  }
}
.mobile-open .header-menu-container,
.mobile-open .header-menu-container .header-menu,
.mobile-open .header-menu-container .header-menu .menu--desktop,
.mobile-open .header-menu-container .header-menu .menu--desktop .menu__wrapper{
  width: 100%
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element >.menu__link{
  color: ;
  position: relative;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element >a::after{
  position: absolute;
  content: "";
  background: ;
  height: 4px;
  left: 0;
  width: 100%;
  bottom: 0;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element{
  padding-bottom: 0;
}
.mobile-open .cta-group{
  padding: 40px 20px;
  border-radius: 0;
}
.mobile-open .cta-group .quote,
.mobile-open .cta-group .resource{
  max-width: 100%
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2{
  margin-bottom: 0
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1{
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1 >.menu__link{
  padding-bottom: 20px
}

.mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__child-toggle{
  position: absolute;
  right: 23px;
  cursor: pointer;
  top: 8px;
 }
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__child-toggle svg{
    transform: rotate(180deg);
  }
.mobile-open .header-button{
  justify-content: center;
  margin-top: 25px;
  padding-bottom: 20px;
  width: 100%
}
.mobile-open .header-button .hs_cos_wrapper,
.mobile-open .header-button .hs_cos_wrapper .button-menu,
.mobile-open .header-button .hs_cos_wrapper .button-menu .btn{
  width: 100%;
}
.mobile-open .header-button .hs_cos_wrapper .button-menu .btn{
  max-width: 500px;
  justify-content: center;
  margin-right: auto;
}
.mobile-open .header-button .button-group{
  flex-direction: column
}
.mobile-open .header-menu-inner,
.mobile-open .header-2024 .header__logo,
.mobile-open .header-search-button{
  width: 100%;
}
.mobile-open .header-2024{
  height: 100%
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1>.menu-link{
  padding-left: 20px;
}
@media(max-width: 1249px){
  .header-2024 .header-wrapper .container{
    padding: 20px 0;
    gap: 20px
  }
  .header-2024 .header-wrapper{
    position: relative;
  }
  .header-2024 .header__logo{
    padding-top: 4px;
    padding-left: 20px
  }
 
}
@media only screen and (max-width: 1700px) and (min-width: 1251px)  {
  .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 .menu__link {
    color: rgb(58, 57, 78);
    font-size: 16px;
    line-height: unset;
    display: block;
    font-weight: 500 !important;
    padding: 12px 35px  12px 13px;
  }
}

{
  padding-bottom: 10px;
  border-bottom: 1px solid #E1E1E1;
}
.header-top-nav .container{
  gap: 20px;
}
.site-search{
  width: 100%
}
.search-active .hs-search-field form .hs-search-field__button {
  border: unset;
  background: unset;
  margin-left: -50px
}
@media(min-width: 1250px){
   .header__search .site-search{
    max-width: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: max-width 0s ease-out,
  /*               opacity 0.2s ease-out, */
                transform 0s ease-out,
                visibility 0s ease-out;
     height: 0

  }

   .header__search.search-active .site-search{
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: fixed;
    height: 50vh;
    width: calc(100% - 40px);
    left: 0;
    background: #591490F2;
    top: 20px;
    left: 20px;
  }
}
 .search-button{
  cursor: pointer;
}
.search-active .search-button{
  display: none;
}
.search-active .header__search .site-search form .hs-search-field__button {
  background: transparent;
  border: unset;
  padding-top: 3px;
}
.search-active .header__search .site-search form{
  border: 1px solid #E1E1E1;
  border-radius: 10px;
  padding: 2px 4px 4px 4px;
}

.search-active .hs-search-field form .hs-search-field__button svg{
  height: 
}
.search-active .header__search .site-search form input::placeholder{
  font-size: 13px;
  font-weight: 400;
  line-height: 9px;
  vertical-align: middle
}
.search-active .header__search .site-search form .hs-search-field__button  svg{
  height: 15px;
}
.search-active .header__search .site-search form input{
  border: unset;
}
.header-top-menu ul{
  display: flex;
  list-style: none;
  gap: 25px;
  flex-wrap: wrap;
  padding-left: 0;
}
 .header-top-menu ul .hs-menu-depth-1 a{
  font-size: 11px;
  font-weight: 400;
  line-height: 18px;
  display: flex;
  gap: 5px;
}

.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3.active-menu .menu-group > a:first-child{
  display: none
}


.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 .menu-group .menu__submenu--level-4.menu-grid{
  display: grid;
  grid-template-columns: auto auto;
}
.header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3.active-menu .menu-group:has(.menu-grid){
  align-items: flex-start;
}

.menu__item--depth-3.active-menu .menu-group:has(.menu-grid){
 width: 100%;
 max-width: 72%;
}
@media(min-width: 1500px){
  .menu__item--depth-3.active-menu .menu-group:has(.menu-grid){
     width: 100%;
     max-width: 1014px;
    }

}
.header-2024 .header__logo img{
  border-radius: 0;
}

/* .header-2024 .header-menu .menu__item--depth-1:hover .menu__submenu--level-2 .menu__item--depth-3:hover .cta-group{
  display: flex
} */

.menu__item--depth-3.active-menu .menu-group{
  right: 20px;
  width: fit-content;   
/*   justify-content: space-between; */
  top: 50px;
  border: 1px solid #F4F4F4;
  background: #fff;
}

.menu--mobile ,.header-button-mobile {
  display: none;
}

.cta-group{
  padding: 30px 30px 20px 30px;
  background: ;
  border-radius: 0 20px 20px 0;
}




.header__search .search-button {
  border: 1px solid ;
    border-radius: 50%;
    margin-right: 20px;
    padding: 8px 8px 1px 8px;
    width: auto;
    cursor: pointer;
    display: none
  }
  .header__search  .hs-search-field__input {
    border-radius: 14px;
    max-width: 100%;

  }
  .header__search .hs-search-field--open .hs-search-field__input:focus-visible,
  .header__search .hs-search-field--open .hs-search-field__input:focus{
    outline-color: ;
  }
  
  .header__search .hs-search-field--open .hs-search-field__suggestions {
    background-color: #ffffff;
    border-radius: 0 0 6px 6px;
    position: absolute;
    width: 100%;
    z-index: 10;
  }
  
  .header__search .hs-search-field__suggestions li {
    font-size: 0.875rem;
  }
  
  .header__search .hs-search-field__suggestions li a {
    color: #494a52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.4s ease;
  }
  
  .header__search .hs-search-field__suggestions #results-for {
    display: none;
  }
  
  @media (min-width: 767px) {
    .header__search form {
      align-items: center;
      display: flex;
      flex-direction: row;
      position: relative
    }
    .hs-search-field__suggestions-container{
      position: absolute !important;
      bottom: -34px;
      width: 100%;
      background: white;
    }
    
    .header__search .hs-search-field__suggestions li{
      font-weight: 400;
    }
    .header__search label {
      margin: 0 1rem 0 0;
    }
  }
  .header__search .hs-search-field__input {
    width: 100%;
    height: 48px;
    padding-left: 20px;
    outline-offset: unset;
    border-width: 0px;
    border-style: solid;
  }
  .header__search .hs-search-field__input:focus-visible{
      outline-color: ;
  }


 @media (max-width: 1250px) {
  .hs-search-field form .hs-search-field__button {
  border: unset;
  background: unset;
  margin-left: -50px
}
   .header__search .hs-search-field__input{
        border-radius: 100px;
    border: 1px solid #591490;
     max-width: 500px;
     width: 100%
   }
    .header-2024 .header__logo img{
    max-width: 94px;
    width: 100% !important;
  }
    .header__navigation,
    .header__search {
      display: none;
      width: 100%;
    }
   .mobile-open .header__search{
    display: flex
   }
   .mobile-open .header-2024{
     background: #ffffff
   }
    .header__navigation.open,
    .header__search.open {
      background-color: #f8fafc;
      display: block;
      left: 0;
      min-height: calc(100vh - 115px);
      position: absolute;
      right: 0;
      top: 75px;
      z-index: 2;
    }
  
    .header__navigation--toggle,
    .header__search--toggle,
    .header__close--toggle {
      cursor: pointer;
      margin: 0 5vw;
      position: relative;
    }
  
    .header__navigation--toggle.hide,
    .header__search--toggle.hide {
      display: none;
    }
  
    .header__navigation--toggle.open,
    .header__search--toggle.open {
      display: block;
      margin-left: 0;
      margin-right: auto;
    }
  
    .header__navigation--toggle:after,
    .header__search--toggle:after {
      display: none;
      font-size: 1.083rem;
      font-weight: 600;
      position: absolute;
      left: 40px;
      text-transform: uppercase;
      top: -10px;
    }
  
    .header__navigation--toggle.open:after,
    .header__search--toggle.open:after {
      display: block;
      word-break: normal;
    }
  
    .header__navigation--toggle {
      background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
      background-size: cover;
      height: 25px;
      width: 25px;
    }
  
    .header__navigation--toggle:after {
      content: "Menu";
    }
    .header__search--toggle {
      background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
      background-size: cover;
      height: 25px;
      width: 25px;
    }
    .header__search--toggle:after {
      content: "Search";
    }
    .header__close--toggle {
      background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
      background-repeat: no-repeat;
      background-size: 110%;
      display: none;
      height: 25px;
      margin-right: 0;
      width: 25px;
    }
    .header__close--toggle.show {
      display: block;
    }
   
  }
 
.header-2024 .quote-container {
  max-width: 500px;
  width: 100%
}

.mobile-open{
  overflow: hidden
}

.mobile-open .header-container{
  height: 100vh;
  overflow: scroll;
}
.mobile-open .header-2024 .header__logo{
  position: fixed;
  width: 100%;
  background: white;
  z-index: 9;
  max-width: 100%;
  padding-left: 20px
}

.mobile-open .hamburger{
  z-index: 999
}
.mobile-open .header-menu-inner{
  padding-top: 70px;
}
@media(max-width: 500px){
  .header-button, .header-button div, .header-button div a{
    width: 100%
  }
  .header-button .button-group a{
        justify-content: center;
  }
}
.header-2024 .cta-group .text-link-btn svg path{
  stroke: #ffffff
}
  .header__search .site-search .site-search-container-title{
  display: none  
}
@media(min-width: 1250px){
.header__search.search-active .site-search {
    background: #591490f2;
    height: 50vh;
    left: 20px;
    max-width: 100%;
    opacity: 1;
    position: fixed;
    top: 20px;
    transform: scale(1);
    visibility: visible;
    width: calc(100% - 40px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}
  .header-2024.scrolled.search-open .header-container{
    padding-top: 30px;
    transition: padding 0.2s ease
  }
.header__search .site-search {
    background: #591490f2;
    height: 50vh;
    left: 20px;
    max-width: 100%;
    opacity: 0;
    position: fixed;
    top: 20px;
    transform: scale(0.95);
    visibility: hidden;
    width: calc(100% - 40px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}

.header-2024 .header__search.search-active .site-search-container {
    left: 50%;
    max-height: 500px;
    max-width: 1280px;
    opacity: 1;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    visibility: visible;
}

/* Add this for the initial state */
.header-2024 .header__search .site-search-container {
    left: 50%;
    max-height: 500px;
    max-width: 1280px;
    opacity: 0;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -60%);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    visibility: hidden;
}
.header__search .search-button {
    display: block;
     position: relative;
      z-index: 9;
  }
  .header__search .search-button svg path {
    fill: #591490F2;
  }
  .header-2024 .header__search.search-active .search-button {
      background: white;
  }
  .header__search .site-search .site-search-container-title{
    display: flex
  }
  .close-search-button{
    cursor: pointer
  }
.header-2024.search-open .header-menu-inner,
.header-2024.search-open .header__logo{
  z-index: 1
}
 .header-2024 .header__search.search-active .site-search-container{
    display: flex;
  }
  .header-2024 .header__search.search-active .site-search-container >.hs_cos_wrapper{
    width: 100%;
  }
}

.mobile-open .body-wrapper {
  margin-left: 0;
  margin-right: 0
}

.mobile-open .header-2024{
  width: 100%
}
.mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 >.menu-items-wrapper,
.mobile-open .header-2024 .header-menu .menu__item--depth-1> .menu__link {
   padding-left: 20px;
}
.mobile-open .header-2024 .cta-group.cta-resource{
  border-radius: 0
}
.header-2024 .quote-container .tag{
  margin-bottom: 10px
}

.header-2024 .quote-container .author-info{
  padding-bottom: 10px;
  border-bottom: 1px solid white;
  margin-bottom: 10px;
  margin-top: 20px
}

.header-2024 .quote-container .btn{
  color: white
}

.header-2024 ul li {
  list-style: none
}



.no-button {display: none}


.container {
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}


body {
  font-family: 'Epilogue', sans-serif;
}

.header-menu .menu__item--depth-1 >.menu__link{
  color:  rgba(0, 0, 0, 1);
}
.header-menu .quote {
  color: black;
}


.header-menu  .author-quote-title p {
  color: black;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}

.header-menu  .author-quote-title p.medium {
  margin-left: 3px
}

@media(min-width: 1250px){
  .header-menu .menu__item--depth-1 .menu__submenu--level-2{
    transform: translate(-25%, 10px);
  }
  
  .header-menu .menu__item--depth-1:hover .menu__submenu--level-2{
    transform: translate(-25%, 0);
  }
  
   .header-menu .menu__item--depth-1:nth-of-type(2) .menu__submenu--level-2 {
      transform: translate(-35%, 10px);
  }
  
  .header-menu .menu__item--depth-1:nth-of-type(2):hover .menu__submenu--level-2{
     transform: translate(-35%, 0px);
  }
  
  
  .header-menu .menu__item--depth-1:nth-of-type(3) .menu__submenu--level-2 {
      transform: translate(-21%, 10px);
  }
  
  .header-menu .menu__item--depth-1:nth-of-type(3):hover .menu__submenu--level-2{
     transform: translate(-21%, 0px);
  }
}

@media(max-width: 1249px){
  .button-container {
    display: none;
  }
}



.header-2024 .header-menu .menu__item--depth-1 .icon-down{
    transition: transform 0.3s ease;

}
.header-2024 .header-menu .menu__item--depth-1:hover a{
  color: #FD7014;
}
.header-2024 .header-menu .menu__item--depth-1:hover > .icon-down {
  transform: rotate(180deg);
}

.header-2024 .header-menu .menu__item--depth-1:hover > .icon-down path {
  stroke: #FD7014;
}

/* @media(min-width: 1700px){
     .header-menu .menu__item--depth-1:nth-of-type(3) .menu__submenu--level-2 {
      transform: translate(-42%, 10px);
  }
  
  .header-menu .menu__item--depth-1:nth-of-type(3):hover .menu__submenu--level-2{
     transform: translate(-42%, 0px);
  }
} */

.header-menu  .author-quote-title span {
  color: black;
}


.header-menu p.quote {
  font-family: Epilogue;
  font-weight: 500;
  font-style: italic;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.header-menu .company-logo {
  align-self: end;
  margin-top: 17px;
}

.header-menu .cta-quote {
   background-image: url('https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/Mask%20group%20(1).svg');
  background-size: cover;    
  background-position: center; 
  background-repeat: no-repeat;
}

.header-menu .quote-img {
  margin-bottom: 14px;
}

.header-menu .cta-resource img {
  min-width: 260px;
}

.header-menu .cta-resource p {
  color: black;
  font-family: Epilogue;
}

.header-menu .resource-type {
  font-family: Epilogue;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 2px;
}

.header-menu .resource-description {
  font-family: Epilogue;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.header-menu .resource-btn {
  font-family: Epilogue;
font-weight: 600;
font-size: 16px;
line-height: 22px;
}

.icon-down {
  width: 12px;
}

header .menu__item--depth-2 .icon-down {
  display: none;
}

@media(max-width: 1249px){
  .mobile-open .button-container {
    display: block;
  }
  
  .menu.menu--desktop.mobile-open .icon-down {
    position: absolute;
    right: 33px;
    width: 16px;
  }
  
  .menu-items-wrapper,
  .menu__submenu.menu__submenu--level-3,
  .mobile-open .header-2024 .header-menu .menu__item--depth-1> .menu__link {
/*     padding-left: 0 !important; */
  }
  
  .menu__submenu--level-2 {
    background: white !important;
  }
  
  .menu__item.menu__item--depth-1 > .menu-wrapper >ul{
     background-image: url(" https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/Mask%20group%20(7).png") !important;
  }
  
  .no-button {
    display: block !important;
  }
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 {
    position: relative;
  }
  
  header .menu__item--depth-2 .menu__submenu--level-3 {
    display: none;
  }

  header .menu__item--depth-2 .menu__submenu--level-3.active-element {
    display: block;
  }
  
  .no-button {
/*     display: none; */
    opacity: 0;
  }
  
  .no-button {
    border: none;
    background: transparent;
  }
  
  .menu__wrapper {
    padding-left: 0
  }
  
/*   .menu__item--depth-1 a {
    padding-left: 33px !important;
  } */
  
  .menu__item--depth-1 {
    border-bottom: 1px solid rgba(170, 170, 170, 1);
  }
  
  .menu__item--depth-2.active-element ul {
    display: block !important;
  }
  .menu__item--depth-2.active-element .icon-down {
    transform: rotate(180deg);
  }
  
   .menu__item--depth-2.active-element .icon-down path {
    stroke: #FD7014;
  }
  
  .menu__item--depth-2 .icon-down {
    top: 28px;
    right: 0px !important;
  }
  
   .menu__item--depth-2 .no-button {
  width: 1px;
}
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1> .menu__link {
    padding-left: 33px;
}
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 {
    margin-top: 0px;
    padding: 0;
  }
  
 .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 >.menu-items-wrapper{
    padding-left: 0;
    padding-right: 0;
}
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 >.menu__link {
    padding-left: 0;
    border-bottom: 1px solid rgba(170, 170, 170, 1);
    padding-top: 30px;
  }
  .menu__submenu--level-3 {
    padding-inline-start: 0;
  }
  
  .menu__item--depth-1.active-element > a::before {
  position: absolute;
    content: "";
    background: rgba(170, 170, 170, 1);
    height: 1px;
    left: 0;
    width: 1250px;
    bottom: 0;
  }
  
  .menu__item--depth-3 span {
  border-bottom: none !important;
  }
  
  .mobile-open .cta-group { 
    padding: 40px 32px;
  }
  .menu__item--depth-1 > .icon-down {
    top: 23px;
  }
  
  .button-container {
  
      margin-left: 35px;
    margin-top: 33px;
    margin-bottom: 90px;
}
  
  .menu__item--depth-1 > a {
    width: 100% !important;
    display: block;
  }
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1  >.menu__link {
    padding-bottom: 0;
  }
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element  >.menu__link {
    padding-bottom: 16px;
   
  }
  
/*    .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 {
    border-bottom: 1px solid rgba(170, 170, 170, 1);
  } */
/*   .menu-wrapper {
  border-top: 1px solid rgba(170, 170, 170, 1);
  } */
  
  .menu__item--depth-1.active-element > a {
    color: #FD7014;
  }
  header .menu__item--depth-2 .icon-down {
    display: block;
  }
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 .menu__link {
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    max-width: 100%;
}
  
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 .menu__link {
    padding-top: 22px;
  }
/*   .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3 a{
     padding-top: 0 !important; 
     padding-bottom: 0 !important; 
  } */
  .menu__item--depth-2:last-of-type  {
    margin-bottom: 40px;
  }
  .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover a{
    position: relative !important; 
    width: fit-content;
    padding-right: 40px !important; 
  }
   .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover a::after {
    content: "";
     background-image: url("https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/Union.svg");
    position: absolute;
    right: 8px;
    width: 18px;
    height: 18px;
    top: 58%;
    transform: translateY(-50%);
     background-size: contain;
    background-repeat: no-repeat;
  } 
   .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__item--depth-3,
   .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__item--depth-2 >a{
    padding-left: 32px !important;
    padding-right: 55px !important;
  }
  .mobile-open .header-2024 .header-menu .menu__item--depth-1.active-element .menu__submenu--level-2 .menu__item--depth-2 > .menu__link{
    white-space: break-spaces;
  }
  .mobile-open .header-2024 .header-menu .menu__item--depth-1 .icon-down{
    right: 33px !important;
  }
  .mobile-open .header-2024 .header-menu .menu__item--depth-1 .menu__submenu--level-2 .menu__item--depth-3:hover{
    background: #F1F2FA
  }
}
@media(max-width: 500px){
  .header-menu .cta-resource img{
    width: 100%;
  }
}