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

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

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

.relative{
  position: relative;
}

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

.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: #352896;
}

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

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

@media(max-width: 768px){
  .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: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
  transition: color 0.2s;
  text-decoration: none;
}

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

/* Headings */

h1, .h1{
  font-family: "Epilogue", sans-serif;
  font-size: 65px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: 0em;
  margin-bottom: 20px;
}

h2, .h2{
  font-family: "Epilogue", sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 0em;
  margin-bottom: 20px;
}

h3, .h3{
  font-family: "Epilogue", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
  letter-spacing: 0em;
  margin-bottom: 20px;
}

h4, .h4{
  font-family: "Epilogue", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  margin-bottom: 20px;
}

h5, .h5{
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0em;
  margin-bottom: 20px;
}

h6, .h6{
  font-family: "Epilogue", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
}

h7, .h7{
  font-family: "Epilogue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
}

h8, .h8{
  font-family: "Epilogue", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0em;
}

p{
  font-family: "Epilogue", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
}
body{
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
}

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

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

/* Lists */

/* .content-bullets ol {
  padding-left: 43px;
  color: white;
/*     list-style-type: none; 
}
.content-bullets ol li::marker{
  font-size: 20px;
  font-style: italic;
}
.content-bullets ol li{
  font-family: "Epilogue", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  position:relative;

} 
 .content-bullets ol li::before{
   background: url("https://22226481.fs1.hubspotusercontent-na1.net/hubfs/22226481/ol%20li.png");
   border-radius: 5px;
   content: "";
   display: inline-block;
   height: 40px;
   position: absolute;
   top: -10px;
   width: 39px;
   z-index: 0;
   left: -41px;
} 
 .content-bullets ol li::after{
   background-color: #FD7014;
   border-radius: 5px;
   content: "";
   display: inline-block;
   height: 4px;
    width: 4px;
    left: -10px;
    top: 19px;
   position: absolute;
}  */
.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;
}
.content-bullets ul li:not(:last-of-type){
  margin-bottom: 5px;
}
.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 ul {
  list-style: none;
  margin: 10px 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: #352896;
}
.tx-light-grey{
  color: #F1F2Fa;
}
@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;
  }
/*   .content-bullets ul li::before{
    top: 12px;
  } */
}

.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;
}
.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 #fff;
}
.btn-blue:hover,
.btn-blue:focus,
.cta-blue:hover a,
.cta-blue:focus a{
  color: #222C57 !important;
  background-color: #fff;
  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: #fff;
}

.btn-white,
.cta-white a{
  color: #fd7014 !important;
  background-color: #fff;
  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;
}


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

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

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/* 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 */
































.content-wrapper {
  max-width: px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: px 1rem;
}

.dnd-section > .row-fluid {
  max-width: px;
}





html {
  font-size: ;
}

body {
  ;
  color: ;
  font-size: ;
}

/* Paragraphs */

p {
  ;
}

/* Anchors */

a {
  ;
  color: ;
}

a:hover,
a:focus {
  ;
  color: ;
}

a:active {
  ;
  color: ;
}

/* Headings */

h1,
.h1 {
  ;
  color: ;
  font-size: ;
  text-transform: ;
}

h2,
.h2 {
  ;
  color: ;
  font-size: ;
  text-transform: ;
}

h3,
.h3 {
  ;
  color: ;
  font-size: ;
  text-transform: ;
}

h4,
.h4 {
  ;
  color: ;
  font-size: ;
  text-transform: ;
}

h5,
.h5 {
  ;
  color: ;
  font-size: ;
  text-transform: ;
}

h6,
.h6 {
  ;
  color: ;
  font-size: ;
  text-transform: ;
}

/* Blockquote */

blockquote {
  border-left-color: ;
}


/* Labels */

form label {
  color: ;
}

/* Help text */

form legend {
  color: ;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  
  background-color: ;
  color: ;
  border-radius: ;
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: ;
}

::-moz-placeholder {
  color: ;
}

:-ms-input-placeholder {
  color: ;
}

::placeholder {
  color: ;
}

/* Inputs - date picker */

.hs-fieldtype-date .input .hs-dateinput:before {
  color: ;
}

.fn-date-picker td.is-selected .pika-button {
  background: ;
}

.fn-date-picker td .pika-button:hover {
  background-color:  !important;
}

.fn-date-picker td.is-today .pika-button {
  color: ;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  ;
  ;
  ;
  color: ;
  font-size: ;
  background-color: ;
  border-radius: ;
  text-transform: ;
}

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






/* Table */

table {
  
  background-color: ;
}

/* Table cells */

td,
th {
  
  
  color: ;
}

/* Table header */

thead th {
  background-color: ;
  color: ;
}

/* Table footer */

tfoot td {
  background-color: ;
  color: ;
}





.header {
  background-color: ;
}

.menu__link,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  color: ;
  font-family: ;
}

.menu__child-toggle-icon {
  border-top-color: ;
}

.menu .menu__link:hover,
.menu .menu__link:focus,
.header__language-switcher-label-current:hover,
.header__language-switcher-label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus {
  color: ;
}

.menu__child-toggle-icon:hover,
.menu__child-toggle-icon:focus {
  border-top-color: ;
}

.menu .menu__link:active,
.header__language-switcher-label-current:active,
.header__language-switcher .lang_list_class li a:active {
  color: ;
}

.menu__child-toggle-icon:active {
  border-top-color: ;
}

.menu .menu__item--depth-1 > .menu__link--active-link:after {
  background-color: ;
}

@media (min-width: 767px) {
  .menu .menu__submenu,
  .header__language-switcher .lang_list_class {
    
    background-color: ;
  }

  .menu__submenu--level-2 > .menu__item:first-child:before {
    
    background-color: ;
  }
}

.menu__submenu .menu__link,
.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus {
  color: ;
  background-color: ;
}

.header__language-switcher .lang_list_class:before {
  border-bottom-color: ;
}

.menu__submenu .menu__link:hover,
.menu__submenu .menu__link:focus,
.header__language-switcher .lang_list_class li:hover,
.menu__submenu--level-2 > .menu__item:first-child:hover:before,
.menu__submenu--level-2 > .menu__item:first-child.focus:before {
  background-color: ;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: ;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  font-family: ;
}

.header__language-switcher-label-current:after {
  border-top-color: ;
}

@media(max-width: 767px) {
  .header__navigation {
    background-color: ;
  }

  .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: ;
  }
}





.footer {
  background-color: ;
}

/* Footer content */

.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer span,
.footer li,
.footer img {
  color: ;
}





.blog-post,
.blog-header__inner,
.blog-related-posts {
  padding: px 0;
}

/* Blog post */

.blog-post__meta a {
  color: ;
}

.blog-post__tag-link {
  color: ;
}

.blog-post__tag-link:hover,
.blog-post__tag-link:focus {
  color: ;
}

.blog-post__tag-link:active {
  color: ;
}

/* Blog related posts */

.blog-related-posts__title-link,
.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus,
.blog-related-posts__title-link:active {
  ;
  text-transform: ;
}

.blog-related-posts__title-link {
  color: ;
}

.blog-related-posts__title-link:hover,
.blog-related-posts__title-link:focus {
  color: ;
}

.blog-related-posts__title-link:active {
  color: ;
}

/* Blog comments */

.blog-comments {
  margin-bottom: px;
}

#comments-listing .comment-reply-to {
  color: ;
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  color: ;
}

#comments-listing .comment-reply-to:active {
  color: ;
}





.hs-search-results__title {
  ;
  color: ;
}





/* Blog listing */

.hs-blog-post-listing__post-title-link,
.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus,
.hs-blog-post-listing__post-title-link:active {
  ;
  text-transform: ;
}

.hs-blog-post-listing__post-title-link {
  color: ;
}

.hs-blog-post-listing__post-title-link:hover,
.hs-blog-post-listing__post-title-link:focus {
  color: ;
}

.hs-blog-post-listing__post-title-link:active {
  color: ;
}


.hs-blog-post-listing__post-tag,
.hs-blog-post-listing__post-author-name {
  color: ;
}

/* Blog pagination */

.hs-pagination__link-text,
.hs-pagination__link--number {
  color: ;
}

.hs-pagination__link:hover .hs-pagination__link-text,
.hs-pagination__link:focus .hs-pagination__link-text,
.hs-pagination__link--number:hover,
.hs-pagination__link--number:focus {
  color: ;
}

.hs-pagination__link:active .hs-pagination__link-text,
.hs-pagination__link--number:active {
  color: ;
}

.hs-pagination__link-icon svg {
  fill: ;
}

/* Pricing card */

.card__price {
  ;
  color: ;
  font-size: ;
}

.card__body svg {
  fill: ;
}

/* Social follow */

.social-links__icon {
  background-color: ;
}

.social-links__icon:hover,
.social-links__icon:focus {
  background-color: ;
}

.social-links__icon:active {
  background-color: ;
  ;
  color: ;
  font-size: ;
}

.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%2824%29.png');position: absolute;left: 0;bottom: -11px; width: 217px;height: 380px;background-repeat: no-repeat;}
.eastwall-blog .content-listing .featured-posts .featured-posts-cards .featured-posts-card .featured-posts-card-inner .featured-posts-image::before{background-image:url('https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/Mask%20group%20%2824%29.png')}
@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: #000000;font-size: 16px;}
.eastwall-blog .content-listing .blog-filters .topics-dropdown .dropdown .dropdown-content li a:hover{color: #000000!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}
.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-image::before{background-image:url('https://7483483.fs1.hubspotusercontent-na1.net/hubfs/7483483/blog-post-texture.png')}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details{width:100%;padding:15px 26px 27px 25px}
.eastwall-blog .content-listing .blog-listing-posts-container .blog-post-individual .blog-post-details .blog-post-topic a{font-size: 12px; line-height: 14px; 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-bottom: 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-top: 15px;padding-left: 10px;padding-right: 15px}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__input::placeholder {color: ; padding-left: 0}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__input:-ms-input-placeholder {color: ; padding-left: 0}
.eastwall-blog .content-listing .blog-filters .posts-search-bar .hs-search-field__form .hs-search-field__input::-ms-input-placeholder {color: ; 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: ;}
@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: #000000;font-size: 18px; line-height: 26px;}
.eastwall-blog .content-listing .blog-pagination .navigations-buttons .blog-pagination__link:hover{color: #000000!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;  }

.press-listing{margin-top: 50px;}


.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: 100%;
}

.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-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%281%29.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;}