




body{
  margin: 0;
}
html {
  scroll-padding-top: 125px; 
}
.wf-loading body {
	visibility: hidden;
}
.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-column-reverse{
	flex-direction: column-reverse;
  }
.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;
}
.items-stretch{
  align-items: stretch;
}
.items-start{
	justify-items: start;
}
.flex-grow-end{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media(max-width: 450px){
.items-start-mb{
	justify-items: start;
  }
}
.justify-between{
  justify-content: space-between;
}

.justify-evenly{
  justify-content: space-evenly;
}
.gap-8{
  gap: 8px;
}
.gap-10{
  gap: 10px;
}
.gap-12{
  gap: 12px;
}
.gap-15{
  gap: 15px;
}
.gap-16{
  gap: 16px;
}
.gap-20{
  gap: 20px;
}
.gap-24{
  gap: 24px;
}
.gap-40-20{
  column-gap: 20px;
  row-gap: 40px;
}
.gap-34-30{
  column-gap: 30px;
  row-gap: 34px;
}
.gap-32-64{
  column-gap: 32px;
  row-gap: 64px;
}
.gap-24-30{
  column-gap: 30px;
  row-gap: 24px;
}
.gap-20-40{
  column-gap: 40px;
  row-gap: 20px;
}
.gap-30{
  gap: 30px;
}
.gap-32{
  gap: 32px;
}
.gap-36{
  gap: 36px;
}
.gap-40{
  gap: 40px;
}
.gap-60{
  gap: 60px;
}
.gap-100{
  gap: 100px;
}
.gap-0{
  gap: 0;
}
.d-block{
  display: block;
}
.d-inline-block{
  display: inline-block;
}
.d-inline-flex{
	display: inline-flex;
  }
  .d-contents{
	display: contents;
  }
.d-none {
  display: none;
}

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

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


.absolute {
  position: absolute;
}

.d-grid{
  display: grid;
}

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


@media(min-width: 768px){
   .grid-1-column-tb{
  grid-template-columns: repeat(1, 1fr)
  }
  .grid-2-column-tb{
    grid-template-columns: repeat(2, 1fr)
  }
  .grid-3-column-tb{
    grid-template-columns: repeat(3, 1fr)
  }
  .grid-4-column-tb{
    grid-template-columns: repeat(4, 1fr)
  }
  .grid-5-column-tb{
    grid-template-columns: repeat(5, 1fr)
  }
  .gap-md-20{
    gap: 20px;
  }
  .gap-md-40-20{
    column-gap: 20px;
    row-gap: 40px;
  }
  .gap-md-40{
    gap: 40px;
  }
}

@media(min-width: 992px){
	.grid-1-column-tb-l{
   grid-template-columns: repeat(1, 1fr)
   }
   .grid-2-column-tb-l{
	 grid-template-columns: repeat(2, 1fr)
   }
   .grid-3-column-tb-l{
	 grid-template-columns: repeat(3, 1fr)
   }
   .grid-4-column-tb-l{
	 grid-template-columns: repeat(4, 1fr)
   }
   .grid-5-column-tb-l{
	 grid-template-columns: repeat(5, 1fr)
   }
   .grid-6-column-tb-l{
	 grid-template-columns: repeat(6, 1fr)
   }
  .grid-7-column-tb-l{
	 grid-template-columns: repeat(7, 1fr)
   }
  .grid-8-column-tb-l{
	 grid-template-columns: repeat(8, 1fr)
   }
  .grid-9-column-tb-l{
	 grid-template-columns: repeat(9, 1fr)
   }
 }
@media(min-width: 1024px){
  .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)
  }
  .grid-6-column{
    grid-template-columns: repeat(6, 1fr)
  }
  .grid-7-column{
    grid-template-columns: repeat(7, 1fr)
  }
  .grid-8-column{
    grid-template-columns: repeat(8, 1fr)
  }
  .grid-9-column{
    grid-template-columns: repeat(9, 1fr)
  }
  
}

.w-100{
  width: 100%;
}
.w-50{
  width: 50%;
}
.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;
}
.object-cover{
  object-fit: cover;
}
.object-contain{
  object-fit: contain;
}
.object-center{
  object-position: center;
}
.object-top{
  object-position: top;
}
.bg-contain{
  background-size: contain;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.bg-top{
  background-position: top center;
}
.bg-center{
  background-position: center;
}
.bg-transparent{
  background: transparent;
}
.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: 992px){
  .flex-tb-row {
      flex-direction: row;
    }
  .flex-tb-row-reverse {
    flex-direction: row-reverse;
  }
}
@media(min-width: 768px){
  .flex-md-row {
    flex-direction: row;
  }
   .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
   .flex-md-column {
    flex-direction: column;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
   .align-md-end {
    align-items: flex-end;
  }
  .align-md-center{
   align-items: center; 
  }
   .align-md-start{
   align-items: flex-start; 
  }
  .justify-md-between{
    justify-content: space-between;
  }
   .justify-md-center{
    justify-content: center;
  }
   .justify-md-end{
    justify-content: flex-end;
  }
  .col-md-6{
	flex: 0 0 50%;
	max-width: 50%;
	}
	.d-md-none{
		display: none !important;
	}
	.d-md-block{
		display: block !important;
	}
  	.w-md-40{
		width: 40%;
	}
  	.w-md-50{
		width: 50%;
	}
  .w-md-60{
		width: 60%;
	}
}
@media(min-width: 1024px){
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .align-lg-end {
    align-items: flex-end;
  }
  .align-lg-center{
   align-items: center; 
  }
  .col-lg-6{
	flex: 0 0 50%;
	max-width: 50%;
  }
  .d-lg-none{
	display: none !important;
  }
  .d-lg-block{
	display: block !important;
  }
  .w-lg-40{
	width: 40%;
  }
  .w-lg-50{
	width: 50%;
  }
  .w-lg-60{
	width: 60%;
  }
}
.ml-auto{
  margin-left: auto;
}
.mr-auto{
  margin-right: auto;
}
.mt-auto{
  margin-top: auto;
}
.mb-auto{
  margin-bottom: auto;
}
.mr-0{
  margin-right: 0;
}
.ml-0{
  margin-left: 0;
}
.mt-0{
  margin-top: 0;
}
.mb-0{
  margin-bottom: 0;
}
html {
  scroll-behavior: smooth;
}
img{
  height: auto;
  max-width: 100%;
}
.border-radius-0{
  border-radius: 0;
}
.border-radius-8{
  border-radius: 8px;
}
.border-radius-10{
  border-radius: 10px;
}
.border-radius-16{
  border-radius: 16px;
}
.border-radius-20{
  border-radius: 20px;
}
.border-radius-24{
  border-radius: 24px;
}
/* .form-wrapper {
  padding: 40px;
  background: ;
  border-radius: 24px;
  overflow: hidden;
}
.form-wrapper form{
  margin-left: auto;
  margin-right: auto;
}
.form-wrapper  h4,
.form-wrapper  p{
  /* max-width: 400px; */

.form-wrapper button,
.form-wrapper h1,
.form-wrapper h2,
.form-wrapper h3,
.form-wrapper h4,
.form-wrapper h5,
.form-wrapper h6,
.form-wrapper,
.form-wrapper form label span,
.form-wrapper form input span,
.form-wrapper form input,
.form-wrapper .hsfc-Step input::placeholder,
.form-wrapper .hsfc-Step textarea::placeholder,
.form-wrapper .hsfc-RichText{
  color: #000000
}
.form-wrapper .hsfc-RichText{
  line-height: 24px;
}
.form-wrapper form input,
.multistep-form-text .dropdown-toggle,
.form-wrapper form .hs-form-field .input select,
.form-wrapper form .hs-form-field .input textarea{
  width: 100%;
  padding-left: 10px;
} 
.form-wrapper form .hs-form-field .input select{
}
 .form-wrapper form .hs-input{
	padding-left: 10px;
}
.form-wrapper form .hs-fieldtype-text .hs-input,
.form-wrapper form .hs-fieldtype-phonenumber .hs-input,
.form-wrapper form .hs-fieldtype-date .hs-input,
.form-wrapper form .hs-fieldtype-textarea .hs-input{
	width: 100% !important;
}
.form-wrapper form fieldset.form-columns-1 .input,
.form-wrapper form fieldset.form-columns-2 .hs-form-field:nth-of-type(2) .input {
	margin-right: 0!important;
}
.form-wrapper form fieldset{
	max-width: 100%!important;
}
.form-wrapper form input.error{
 	border-color: ;
}
.form-wrapper form input:focus-visible,
.form-wrapper form textarea:focus-visible{
	
	outline-width: 1.5px;
}
.form-wrapper form .hs-form-field{
	margin-bottom: 20px;
}
.form-wrapper form  .legal-consent-container .hs-richtext p{
	font-size: 14px;
	line-height: 1.4;
}

.form-wrapper form .grecaptcha-badge{
	transform: scale(0.7);
    margin-left: -38px;
}
.subscribe-module .form-wrapper form input[type=email]{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  height: 60px;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  background: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.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,
.multistep-form-text .dropdown-toggle,.multistep-form-text .dropdown-option, .form-wrapper form textarea {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  height: 44px;
  border: 1px solid #3973D9;
  background: #FFFFFF;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  color: #000000;
  padding-right: 32px;
}
.form-wrapper form input::placeholder,
.form-wrapper form textarea::placeholder{
  color: #000000
}
.form-wrapper form textarea{
	min-height: 160px;
	width: 100%;
}
.form-wrapper form .hs-form-field label{
	margin-bottom: 7px;
	display: block;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;

}
.form-wrapper form .hs-form-field .input select{
	width: 100%;
}
.form-wrapper form label{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #E3E3E3;
}
.form-wrapper form .hs_error_rollup label{
	display: none;
}

.form-wrapper form .legal-consent-container .hs-richtext{
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; /* 24px */
}
.form-wrapper form .hs-dependent-field .inputs-list .hs-form-booleancheckbox label span{
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 200% */
  margin-top: -5px;
}
.form-wrapper form .legal-consent-container .hs-richtext a,
.form-wrapper form .hs-dependent-field .inputs-list .hs-form-booleancheckbox label span a{
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
  color: #000000;
  text-decoration: underline;
}

.form-wrapper form .hs_submit{
	margin-top: 24px;
}
.form-wrapper .submitted-message{
  margin-top: 20px;
}
.form-wrapper form .hs_submit .actions input,
.password-page .form-wrapper form .hs-button,
.form-wrapper form .hs_submit .actions input, .form-wrapper .hsfc-Button{
  font-size: 20px;
  line-height: 32px;
  padding: 14px 50px 14px 24px !important;
  cursor: pointer;
  transition: all ease 0.4s;
  background: #5692FC;
  font-weight: 500;
  padding: 10px 16px;
  transition: background ease 0.4s;
  border: 2px solid #5692FC;
}
.form-wrapper form .hs_submit .actions input:hover,
.password-page .form-wrapper form .hs-button:hover,
.form-wrapper form .hs_submit .actions input, .form-wrapper .hsfc-Button:hover{
  border: 2px solid #3973D9;
  color: #3973D9;
  background: #FFFFFF;
}
.form-wrapper form .hs_submit .actions,
.form-wrapper form .hs_submit .actions, .form-wrapper .hsfc-Button{
  position: relative
}
/* .form-wrapper form .hs_submit .actions::after,
.form-wrapper form .hs_submit .actions::after, .form-wrapper .hsfc-Button::after{
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M4.58337 11H16.5M11.9167 5.5L16.7685 10.3518C17.1265 10.7098 17.1265 11.2902 16.7685 11.6482L11.9167 16.5' stroke='%23FCFCFD' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
  width: 15.454px;
  height: 14px;
  right: 32px;
}
.form-wrapper form .hs_submit .actions:hover::after,
.form-wrapper form .hs_submit .actions:hover::after, .form-wrapper .hsfc-Button:hover::after{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M4.58337 11H16.5M11.9167 5.5L16.7685 10.3518C17.1265 10.7098 17.1265 11.2902 16.7685 11.6482L11.9167 16.5' stroke='%233973D9' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  width: 15.454px;
  height: 14px;
} */
.form-wrapper form .hs_submit .actions input[type="submit"],
.password-page .form-wrapper form .hs-button{
  width: 100%;
  text-align: center;
  padding-right: 25px;
  padding-left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M4.58337 11H16.5M11.9167 5.5L16.7685 10.3518C17.1265 10.7098 17.1265 11.2902 16.7685 11.6482L11.9167 16.5' stroke='%23FCFCFD' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% + 50px) center; 
  background-size: 20px 24px;
}
.form-wrapper form .hs_submit .actions input[type="submit"]:hover,
.form-wrapper form .hs_submit .actions input[type="submit"]:hover, .form-wrapper .hsfc-Button input[type="submit"]:hover,
.password-page .form-wrapper form .hs-button:hover{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22' fill='none'%3E%3Cpath d='M4.58337 11H16.5M11.9167 5.5L16.7685 10.3518C17.1265 10.7098 17.1265 11.2902 16.7685 11.6482L11.9167 16.5' stroke='%233973D9' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(50% + 50px) center; 
  background-size: 20px 24px;
}
@media(max-width: 650px){
  .form-wrapper form .hs_submit .actions {
/*     max-width: 294px; */
    width: 100%;
  }
}
.form-wrapper form .hs_submit .actions{
  display: flex
}
.form-wrapper form .hs_submit .actions input:disabled{
}
.form-wrapper form .hs-error-msg,
.form-wrapper form .hs_error_rollup label{
  margin-top: 5px;
}
.form-wrapper form .legal-consent-container .hs-dependent-field ul,
.form-wrapper form .hs-form-field.hs-fieldtype-booleancheckbox ul,
.form-wrapper .hs-fieldtype-checkbox ul,
.form-wrapper .hs-fieldtype-radio ul{
	list-style: none;
  	margin: 0;
  	padding-left: 0;
}

.form-wrapper form .hs-fieldtype-checkbox input,
.form-wrapper .hs-fieldtype-radio input{
	width: unset;
}

.form-wrapper form .legal-consent-container .hs-dependent-field .hs-form-booleancheckbox label,
.form-wrapper form .hs-form-field .hs-form-booleancheckbox label,
.form-wrapper form .hs-fieldtype-checkbox label,
.form-wrapper form .hs-fieldtype-radio label,
.form-wrapper .hs-fieldtype-radio label,
.form-wrapper form .hs-form-field .hs-error-msg{
	display: flex;
  gap: 5px;
  position: relative;
  width: auto;
  height: auto;
  margin-bottom: 15px;
  align-items: flex-start;
}
.form-wrapper form .hs-form-field .hs-error-msg{
  color: #E54778;
  margin-top: 5px
}

.form-wrapper form .legal-consent-container .hs-form-booleancheckbox-display>span,
.form-wrapper form .hs-form-field .hs-form-booleancheckbox-display>span,
.form-wrapper form .hs-fieldtype-checkbox .hs-form-checkbox-display>span,
.form-wrapper form .hs-fieldtype-radio .hs-form-radio-display>span{
	margin-left: 10px;
}
.form-wrapper form .legal-consent-container .hs-dependent-field .hs-form-booleancheckbox {
	margin-top: 15px;
	margin-bottom: 10px;
}
.form-wrapper form .hs-form-field .input select {
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 1px;
}
.form-wrapper form .hs-fieldtype-select .input{
	position: relative;
}
.form-wrapper form .hs-fieldtype-select .input::after{
	position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M0.833374 0.833313L5.83337 5.83331L10.8334 0.833313' stroke='%23667085' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	content: "";
	width: 13px;
	height: 10px;
	right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat
}
.form-wrapper form .hs-form-field .hs-form-booleancheckbox-display>span{
	font-weight: 400;
	line-height: 22px;
	font-size: 14px;
	flex: 1;
	margin-top: -5px;
}
.form-wrapper form .hs-form-field .hs-form-booleancheckbox-display .hs-input,
.form-wrapper form .hs-fieldtype-checkbox .hs-form-checkbox-display .hs-input{
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: #FFFFFF;
	position: relative;
  border-radius: 6px;
  flex-shrink: 0;
}

.form-wrapper form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: white;
}

.form-wrapper form input[type="checkbox"]:checked {
  border-color: #3b82f6;
  background: white;
}

.form-wrapper form input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border: solid #3b82f6;
  border-width: 0 2.5px 2.5px 0;
}
.form-wrapper form .hs-dateinput input{
	height: 44px;
}
.form-wrapper .fn-date-picker .pika-lendar table{
	min-width: unset;
}
.form-wrapper form .hs-form-field .input textarea{
  padding-top: 12px;
}
.form-wrapper .form-title{
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 24px */
  text-transform: uppercase;
  margin-bottom: 36px;
}
.form-wrapper{
  height: fit-content
}
.form-wrapper form{
  margin-top: 30px;
}


.hsfc-Step input::placeholder,
 .hsfc-Step textarea::placeholder,
.hsfc-RichText{
  color: #000000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.form-wrapper .form-title {
  margin-bottom: 0;
}
.form-wrapper form .hsfc-Row label{
  display: none;
}
.form-wrapper form .hsfc-Row .hsfc-CheckboxField label{
  display: flex;
  align-items: flex-start;
}
.form-wrapper form .hsfc-Row .hsfc-CheckboxField  label > span{
  margin-top: -5px;
  line-height: 18px;
}
.form-wrapper form .hsfc-Row label span{
  color: #FFFFFF;
}
.form-wrapper .hsfc-NavigationRow__Buttons{
  justify-content: center !important;
}
.form-wrapper button{
  border: 1px solid  #FFFFFF !important;
  position: relative;
  transition: all ease 0.4s;
  font-weight: 600
}
.form-wrapper button:hover{
  border: 1px solid  #FFFFFF !important;
  background: #FFFFFF;
  color: 
}
.form-wrapper button::after{
  content: "";
  position: absolute;
  right: 12px;
  width: 25px;
  top: 50%; 
  transform: translateY(-50%);
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 12C1 5.64873 6.14873 0.5 12.5 0.5C18.8513 0.5 24 5.64873 24 12C24 18.3513 18.8513 23.5 12.5 23.5C6.14873 23.5 1 18.3513 1 12Z' stroke='white'/%3E%3Cpath d='M7.58203 15.8737L15.9789 7.47681M15.9789 7.47681H9.35745M15.9789 7.47681V14.0983' stroke='white'/%3E%3C/svg%3E%0A");
}
.form-wrapper button:hover::after{
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 12.52C0.5 6.16875 5.64873 1.02002 12 1.02002C18.3513 1.02002 23.5 6.16875 23.5 12.52C23.5 18.8713 18.3513 24.02 12 24.02C5.64873 24.02 0.5 18.8713 0.5 12.52Z' stroke='%239F33FB'/%3E%3Cpath d='M7.99951 17.4794L16.4589 9.02002M16.4589 9.02002H9.78816M16.4589 9.02002V15.6908' stroke='%239F33FB' stroke-width='0.930556'/%3E%3C/svg%3E%0A");
}
.form-wrapper.tx-white form label span,
.form-wrapper.tx-white form .legal-consent-container .hs-richtext{
  color: #FFFFFF !important;
}
.shadow-hover{
	box-shadow: 0px 4px 10px 0px #5713891F;
}
.shadow-cards{
  box-shadow: 9px 6px 12px -4px rgba(16, 24, 40, 0.05);
  transition: box-shadow 0.3s ease;
}
.shadow-cards:hover{
  box-shadow: 12px 9px 18px -4px rgba(45, 45, 45, 0.10);
}
.wf-loading * { 
	opacity: 0; 
	}

.swiper-container{
	overflow: hidden;
	position: relative;
}

.border-radius-12{
	border-radius: 12px;
}
.border-radius-24{
	border-radius: 24px;
} 
.border-radius-32{
	border-radius: 32px;
}
.border-top-1{
  border-top: 1px solid
}
.border-top-2{
  border-top: 2px solid
}
.overflow-hidden{
	overflow: hidden;
}
.module-default-padding{
	padding-top: 48px;
	padding-bottom: 48px;
}

@media (min-width: 1200px) {
	.module-default-padding{
		padding-top: 96px;
		padding-bottom: 96px;
	}
}



.video-container .video-playBtn{
    cursor: pointer;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: 3;
      display: flex;
	  width: 60px;
	height: 60px;
}
.content-intro {
	margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
  }
  
@media(min-width: 768px){
  .content-intro {
	margin-bottom: 64px;
  }
	.video-container .video-playBtn{
		width: 144px;
		height: 144px;
	}
}
.video-container.vid-played .video-playBtn{
    display: none;
}
.video-container .video-playBtn{
    display: flex;
}
.video-container .video-playBtn .video-play{
    display: block;
}
.video-container .video-playBtn:hover .video-play{
    display: none;
}
.video-container .video-playBtn .video-playHover{
    display: none;
}
.video-container .video-playBtn:hover .video-playHover{
    display: block;
}
.video-container {
    position: relative;
}
.video-container{
  max-width: 100% !important;
  overflow: hidden;
  width: 100%;
}
.content-intro .single-button,
.content-intro .button-group{
	margin-top: 20px;
  }
.content-intro .description{
	margin-top: 15px;
}
.content-intro .description p,
.content-intro .description h1,
.content-intro .description h2,
.content-intro .description h3,
.content-intro .description h4,
.content-intro .description h5,
.content-intro .description h6{
	margin-bottom: 0;
}
.content-intro .headline{
	margin-bottom: 0;
}
.border-1-solid{
  border: 1px solid
}
.tag-padding{
  padding: 8px
}
.shadow-lg, .card-hovered:hover{
  box-shadow: 0 4px 24px -4px rgba(41, 48, 86, 0.21), 0 10px 27px 4px rgba(41, 48, 86, 0.00);
}
.shadow-md{
  box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
}
.swiper-pagination-clickable .swiper-pagination-bullet{
  border-radius: 0;
  background: black !important;
}
.swiper-button-prev:after{
  transform: rotate(0deg) !important;
}
[id] {
  scroll-margin-top: 120px;
}
/* html {
  scroll-behavior: smooth;
} */
*, *:before, *:after {
  box-sizing: border-box;
	-webkit-font-smoothing: subpixel-antialiased;
}
/*! 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;
}



.btn,
.cta a{
  text-align: center;
  font-style: normal;
  letter-spacing: 0px;
  transition: all ease 0.4s;
  display: flex;
  text-decoration: none !important;
  position: relative;
  white-space: nowrap;
  align-items: center;
  cursor: pointer;
  padding: 10px 18px;
  transition: background ease 0.4s;
  ;
  font-size: 20px;
  line-height: 32px;
  justify-content: center;
}
@media(max-width: 450px){
  .btn,
  .cta a{
    white-space: wrap;
  }
}
.btn svg{
  height: 12px;
  margin-left: 13px;
  width: 13px;
}

a{
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0px;
  transition: all ease 0.4s;
  text-decoration: none !important;
  color: 
}
/* .hs_cos_wrapper_type_inline_rich_text a, 
.content-bullets a,
a{
 
} */

.btn-primary,
.cta-primary a,
.btn-primary-dark-bg,
.cta-primary-dark-bg a,
.subscribe-module .subscribe-form form .hs_submit .actions input, .form-wrapper form .hs_submit .actions input, .form-wrapper .hsfc-Button{
  border: 1px solid #5692FC;
  background: #5692FC;
  color: #FFFFFF
}
.btn-primary svg path,
.btn-primary-dark-bg svg path{
  stroke: #FFFFFF
}

.btn-primary:hover,
.cta-primary:hover a,
.btn-primary-dark-bg:hover,
.cta-primary-dark-bg:hover a,
.card-hovered:hover .btn-primary,
.card-hovered:hover .cta-primary a,
.subscribe-module .subscribe-form form .hs_submit .actions input:hover,.form-wrapper form .hs_submit .actions input:hover, .form-wrapper .hsfc-Button:hover{
  border: 1px solid #5692FC;
  background: #FFFFFF;
  color: #5692FC
}
.btn-primary:hover svg path,
.btn-primary-dark-bg:hover svg path,
.cta-primary-dark-bg:hover a svg path,
.card-hovered:hover .btn-primary svg path,
.card-hovered:hover .cta-primary a svg path{
  stroke: #5692FC
}
.btn-primary-bordered{
  border-left: 7px solid #5692FC;
  color: #5692FC;
  transition: transform 0.2s ease;
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
}
.btn-primary-bordered svg{
  display: none
}
.btn-primary-bordered:hover,
.card-hovered:hover .btn-primary-bordered{
  transform: translateY(7px);
}
.btn-primary-bordered-dark-bg{
  border-left: 7px solid #FFFFFF;
  color: #FFFFFF;
  transition: transform 0.2s ease;
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
}
.btn-primary-bordered-dark-bg svg{
  display: none
}
.btn-primary-bordered-dark-bg:hover,
.card-hovered:hover .btn-primary-bordered-dark-bg{
  transform: translateY(7px);
}
.btn-secondary,
.cta-secondary a{
  border: 1px solid #5692FC;
  background: #FFFFFF;
  color: #3973D9
}
.btn-secondary svg path{
  stroke: #5692FC
}

.btn-secondary:hover,
.cta-secondary:hover a,
.card-hovered:hover .btn-secondary,
.card-hovered:hover .cta-secondary a{
  border: 1px solid #5692FC;
  background: #5692FC;
  color: #FFFFFF
}
.btn-secondary:hover svg path,
.cta-secondary:hover a svg path,
.card-hovered:hover .btn-secondary svg path,
.card-hovered:hover .cta-secondary a svg path{
  stroke: #FFFFFF
}

.btn-secondary-dark-bg,
.cta-secondary-dark-bg a{
  border: 1px solid #000000;
  background: #FFFFFF;
  color: #000000
}
.btn-secondary-dark-bg svg path{
  stroke: #000000
}

.btn-secondary-dark-bg:hover,
.cta-secondary-dark-bg:hover a,
.thank-you-hero .button-group .btn-secondary:hover,
.card-hovered:hover .btn-secondary-dark-bg,
.card-hovered:hover .cta-secondary-dark-bg a{
  border: 1px solid #000000;
  background: #5692FC;
  color: #FFFFFF
}
.btn-secondary-dark-bg:hover svg path{
  stroke: #FFFFFF
}

.btn-text-link,
.cta-text-link a{
  color: #1F1450;
  padding: 0 20px 0 0;
  border-radius: 0;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  justify-content: flex-start;
  font-weight: 600
}
.btn-text-link svg path{
  stroke: #1F1450;
}
.btn-text-link.tx-primary-3,
.btn-text-link.tx-primary-3 a{
  color: #403393;
}
.btn-text-link.tx-primary-3 svg path {
  stroke: #403393;
}

.btn-text-link:hover,
.cta-text-link:hover a,
.card-hovered:hover .btn-text-link,
.card-hovered:hover .cta-text-link a{
  color: #5692FC !important;
}
.btn-text-link:hover svg path,
.cta-text-link:hover a svg path,
.card-hovered:hover .btn-text-link svg path,
.card-hovered:hover .cta-text-link a svg path{
  stroke: #5692FC;
}

.btn-text-link-dark-bg,
.cta-text-link-dark-bg a{
  color: #FFFFFF;
  padding: 0 20px 0 0;
  border-radius: 0;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */;
  justify-content: flex-start;
  font-weight: 600
}
.btn-text-link-dark-bg svg path{
  stroke: #FFFFFF;
}

.btn-text-link-dark-bg:hover,
.cta-text-link-dark-bg:hover a,
.card-hovered:hover .btn-text-link-dark-bg,
.card-hovered:hover .cta-text-link-dark-bg a{
  color: #5692FC;
}
.btn-text-link-dark-bg:hover svg path,
.cta-text-link-dark-bg:hover svg path,
.card-hovered:hover .btn-text-link-dark-bg svg path,
.card-hovered:hover .cta-text-link-dark-bg a svg path{
  stroke: #5692FC;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
.button-group {
  gap: 12px;
}
.swiper-button-next,
.swiper-button-prev{
  background: #403393;
  color: unset !important;
  top: unset !important;
  position: relative !important;
  right: unset !important;
  left: unset !important;
  margin-top: 0 !important;
  z-index: 2!important;
  text-rendering: auto;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  border: 1px solid #403393;
}
.swiper-button::after{
  content: "" !important;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='16' viewBox='0 0 19 16' fill='none'%3E%3Cpath d='M0.292969 7.07425L7.07289 0.294326C7.17062 0.196598 7.28362 0.123302 7.41189 0.0744371C7.54015 0.0255728 7.67148 0.00114059 7.80585 0.00114059C7.94023 0.00114059 8.07155 0.0255728 8.19982 0.0744371C8.32809 0.123302 8.43498 0.196598 8.52049 0.294326L9.14351 0.917346C9.24124 1.01507 9.31454 1.12502 9.3634 1.24718C9.41227 1.36934 9.4367 1.50372 9.4367 1.65031C9.4367 1.78469 9.41227 1.91601 9.3634 2.04428C9.31454 2.17255 9.24124 2.28555 9.14351 2.38328L5.18551 6.34128H17.7558C18.0368 6.34128 18.275 6.43901 18.4705 6.63447C18.6659 6.82993 18.7637 7.06814 18.7637 7.34911V8.22867C18.7637 8.50963 18.6659 8.75396 18.4705 8.96163C18.275 9.1693 18.0368 9.27314 17.7558 9.27314H5.14886L9.14351 13.2495C9.24124 13.3472 9.31454 13.4571 9.3634 13.5793C9.41227 13.7015 9.4367 13.8358 9.4367 13.9824C9.4367 14.1168 9.41227 14.2451 9.3634 14.3672C9.31454 14.4894 9.24124 14.5993 9.14351 14.6971L8.52049 15.3201C8.43498 15.4178 8.32809 15.4911 8.19982 15.54C8.07155 15.5888 7.94023 15.6133 7.80585 15.6133C7.67148 15.6133 7.54015 15.5858 7.41189 15.5308C7.28362 15.4759 7.17062 15.4056 7.07289 15.3201L0.292969 8.54018C0.19524 8.44245 0.121943 8.32945 0.0730782 8.20118C0.0242138 8.07291 -0.000217438 7.94159 -0.000217438 7.80721C-0.000217438 7.67283 0.0242138 7.54151 0.0730782 7.41324C0.121943 7.28497 0.19524 7.17198 0.292969 7.07425Z' fill='white'/%3E%3C/svg%3E");
  opacity: 1 !important;
  visibility: visible !important;
  width: 19px !important;
  height: 16px !important;
}
.swiper-button:hover:after{
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M15 8H1M1 8L8 15M1 8L8 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.swiper-button:hover{
  background: #5692FC !important;
  border: 1px solid  !important;
}
.swiper-button-next::after,
.swiper-button-prev::after{
  transition: all ease 0.2s;
}

.swiper-button-next::after{
  transform: rotate(180deg);
}


/* Base styles for pagination bullets */
.swiper-pagination .swiper-pagination-bullet {
  opacity: 1 !important;
  margin: 0 5px !important;
  position: relative;
  border-radius: 15px !important;
  width: 10px !important;
  height: 10px !important;
  background: rgba(46, 144, 250, 0.54)!important;
  border: unset;  
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #5692FC !important;
}
table {
	display: table;
	width: 100%;
	min-width: 992px;
	border-collapse: collapse;
	border-spacing: 0px;
	overflow: hidden;
}
table tbody tr {
	border-bottom: 1px solid #e2e7ea;
	border-left: 1px solid #e2e7ea;
	border-right: 2px solid #e2e7ea;
}
@media (max-width:991px) {
	.table-wrapper {
		overflow-x: scroll;
	}
}
div[data-hs-responsive-table] table tr {
	background-color: #fff;
	border-bottom: 1px solid #d2d6dc;
}
div[data-hs-responsive-table] table tr:first-child {
	background-color: rgba(244, 245, 247, 1);
	border-color: #d2d6dc;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.75rem;
	font-weight: bold;
}
div[data-hs-responsive-table] table tr:last-child {
	border-bottom: 0px;
}
table th,
table td {
	padding: 0.75rem 1.5rem;
}
[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="50"],body[data-aos-delay="50"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"],body[data-aos-delay="100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"],body[data-aos-delay="150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"],body[data-aos-delay="200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"],body[data-aos-delay="250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"],body[data-aos-delay="300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"],body[data-aos-delay="350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"],body[data-aos-delay="400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"],body[data-aos-delay="450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"],body[data-aos-delay="500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"],body[data-aos-delay="550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"],body[data-aos-delay="600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"],body[data-aos-delay="650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"],body[data-aos-delay="700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"],body[data-aos-delay="750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"],body[data-aos-delay="800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"],body[data-aos-delay="850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"],body[data-aos-delay="900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"],body[data-aos-delay="1000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"],body[data-aos-delay="1050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"],body[data-aos-delay="1100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"],body[data-aos-delay="1150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"],body[data-aos-delay="1200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"],body[data-aos-delay="1250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"],body[data-aos-delay="1300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"],body[data-aos-delay="1350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"],body[data-aos-delay="1400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"],body[data-aos-delay="1450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"],body[data-aos-delay="1500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"],body[data-aos-delay="1550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"],body[data-aos-delay="1600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"],body[data-aos-delay="1650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"],body[data-aos-delay="1700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"],body[data-aos-delay="1750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"],body[data-aos-delay="1800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"],body[data-aos-delay="1850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"],body[data-aos-delay="1900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"],body[data-aos-delay="1950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"],body[data-aos-delay="2000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"],body[data-aos-delay="2050"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"],body[data-aos-delay="2100"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"],body[data-aos-delay="2150"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"],body[data-aos-delay="2200"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"],body[data-aos-delay="2250"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"],body[data-aos-delay="2300"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"],body[data-aos-delay="2350"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"],body[data-aos-delay="2400"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"],body[data-aos-delay="2450"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"],body[data-aos-delay="2500"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"],body[data-aos-delay="2550"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"],body[data-aos-delay="2600"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"],body[data-aos-delay="2650"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"],body[data-aos-delay="2700"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"],body[data-aos-delay="2750"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"],body[data-aos-delay="2800"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"],body[data-aos-delay="2850"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"],body[data-aos-delay="2900"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"],body[data-aos-delay="2950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"],body[data-aos-delay="3000"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(.25,.25,.75,.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos][data-aos][data-aos-easing=ease-in-back],body[data-aos-easing=ease-in-back] [data-aos]{transition-timing-function:cubic-bezier(.6,-.28,.735,.045)}[data-aos][data-aos][data-aos-easing=ease-out-back],body[data-aos-easing=ease-out-back] [data-aos]{transition-timing-function:cubic-bezier(.175,.885,.32,1.275)}[data-aos][data-aos][data-aos-easing=ease-in-out-back],body[data-aos-easing=ease-in-out-back] [data-aos]{transition-timing-function:cubic-bezier(.68,-.55,.265,1.55)}[data-aos][data-aos][data-aos-easing=ease-in-sine],body[data-aos-easing=ease-in-sine] [data-aos]{transition-timing-function:cubic-bezier(.47,0,.745,.715)}[data-aos][data-aos][data-aos-easing=ease-out-sine],body[data-aos-easing=ease-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.39,.575,.565,1)}[data-aos][data-aos][data-aos-easing=ease-in-out-sine],body[data-aos-easing=ease-in-out-sine] [data-aos]{transition-timing-function:cubic-bezier(.445,.05,.55,.95)}[data-aos][data-aos][data-aos-easing=ease-in-quad],body[data-aos-easing=ease-in-quad] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quad],body[data-aos-easing=ease-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quad],body[data-aos-easing=ease-in-out-quad] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-cubic],body[data-aos-easing=ease-in-cubic] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-cubic],body[data-aos-easing=ease-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],body[data-aos-easing=ease-in-out-cubic] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos][data-aos][data-aos-easing=ease-in-quart],body[data-aos-easing=ease-in-quart] [data-aos]{transition-timing-function:cubic-bezier(.55,.085,.68,.53)}[data-aos][data-aos][data-aos-easing=ease-out-quart],body[data-aos-easing=ease-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.25,.46,.45,.94)}[data-aos][data-aos][data-aos-easing=ease-in-out-quart],body[data-aos-easing=ease-in-out-quart] [data-aos]{transition-timing-function:cubic-bezier(.455,.03,.515,.955)}[data-aos^=fade][data-aos^=fade]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos=fade-up-right]{transform:translate3d(-100px,100px,0)}[data-aos=fade-up-left]{transform:translate3d(100px,100px,0)}[data-aos=fade-down-right]{transform:translate3d(-100px,-100px,0)}[data-aos=fade-down-left]{transform:translate3d(100px,-100px,0)}[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}[data-aos=flip-down].aos-animate{transform:perspective(2500px) rotateX(0)}









/* 1a. Containers */




/* 1b. Colors */

 
 
 
 
 
 
 
 

 
 
 
 
 
 




/* 1c. Typography */



































/* Website footer */

 
 
 
 

/* Website Fonts */
 
 
 


.primary-font{
  font-family: Karla
}

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




html {
  font-size: 18px;
}

a{
  
}
/* Paragraphs */


p.xl, .base-xl,body, .base, .content-bullets>a:not(.btn), .content-bullets *:not(h2):not(h3)>a:not(.btn){
  font-family: Karla, sans-serif; font-style: normal; font-weight: normal; text-decoration: none;
  color: #1F1450; 
  font-size: 20px;
  line-height: 30px;
}
p.lg, .base-lg, .form-text .guideline-text p, .form-text .guideline-text a, .content-bullets ul li,
.hs_cos_wrapper_type_inline_rich_text ul li,
.content-bullets ul li p,
.hs_cos_wrapper_type_inline_rich_text ul li p,
.content-bullets ul li span,
.hs_cos_wrapper_type_inline_rich_text ul li span, .content-bullets ul li a:not(.btn), .faq-answer-inner p{
   font-family: Karla; font-style: normal; font-weight: normal; text-decoration: none;
  color: #1F1450; 
  font-size: 18px;
  line-height: 28px;
}
p.md, .base-md, .events.text-background-image .itr-row.media-right .content-intro-row .description p, .subscribe-blog .description, .blog-shared-individual blockquote p:nth-of-type(2), 
.cards-about .about-modal .modal-bio-container p, .form-text .content-intro .description p,.simple-vertical-tabs .tabs-container .tab-list .tab-list-items p, .simple-text-module .description p:not(blockquote p),.vertical-tabs .tabs-container .tab-list .tab-list-item.active .description p, .legal-pages .legal-pages-list ul li a, .legal-pages .description p, .legal-pages .description span, .legal-pages .description p span, .ungated-resource .post-content p, .ungated-resource .post-content span,.case-studies-intro .right-side-description p,
.resource-individual .post-content p, 
.hs_cos_wrapper_type_inline_rich_text ul li ul li span, .content-bullets.md p, .content-bullets.md span {
  font-family: Karla; font-style: normal; font-weight: normal; text-decoration: none;
  color: #1F1450; 
  font-size: 16px;
  line-height: 24px;
  font-family: Karla;
}
.about-commcorp .content-bullets a{
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 700
}
p.sm, .base-sm, .cards-icons .card-description p, .cards-icons .card-description span, .subscribe-blog .description p, .cards-images .cards-images-wrapper .card .card-content .card-description p, .cards-images .cards-images-wrapper .card .card-content .card-description p span, .cards-images .cards-images-wrapper .card .card-content .card-description span,
.notification-bar-text p, .blog-pagination__link, .events-module .event-objectives-block ol li, .events-module .event-objectives-block .event-objectives p,.events-module .event-description p, .events-module .event-description span, .content-bullets.sm p{
  font-family: Karla; font-style: normal; font-weight: normal; text-decoration: none;
  color: #1F1450; 
  font-size: 14px;
  line-height: 20px;
}


.content-bullets ul li,
.hs_cos_wrapper_type_inline_rich_text ul li,
.content-bullets ul li p,
.hs_cos_wrapper_type_inline_rich_text ul li p,
.content-bullets ul li span,
.hs_cos_wrapper_type_inline_rich_text ul li span,
.content-bullets p,
.hs_cos_wrapper_type_inline_rich_text p,
.content-bullets>span, 
.hs_cos_wrapper_type_inline_rich_text>span, 
.content-bullets *:not(h2):not(h3):not(h4):not(h5):not(h6):not(strong)>span,
.content-bullets *:not(h2):not(h3):not(h4):not(h5):not(h6)>strong>span,
.hs_cos_wrapper_type_inline_rich_text *:not(h2):not(h3):not(h4):not(h5):not(h6):not(strong)>span,
.hs_cos_wrapper_type_inline_rich_text *:not(h2):not(h3):not(h4):not(h5):not(h6)>strong>span {
  color: #000000 !important
}
.content-bullets span, .hs_cos_wrapper_type_inline_rich_text span {
  color: #000000;
}
.content-bullets ul li p{
  margin-bottom: 0;
}
.content-bullets h2 strong,
.content-bullets h3 strong,
.content-bullets h4 strong,
.content-bullets h5 strong,
.content-bullets h6 strong{
  font-weight: 700;
}
/* Headings */

h1,
.h1, .form-text h1 {
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #1f1450;
  font-size: 56px;
  line-height: 66px;
  word-break: break-word;
}

.h1-homepage{
  font-size: 72px;
  line-height: 84px;
}

h2,
.h2 {
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #1f1450;
  font-size: 42px;
  line-height: 54px;
}

h3,
.h3 {
  font-family: Karla; font-style: normal; font-weight: 300; text-decoration: none;
  color: #101828;
  font-size: 36px;
  line-height: 44px;
  word-break: break-word;
}

h4,
.h4, .simple-content .headline {
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #101828;
  font-size: 24px;
  line-height: 32px;
  word-break: break-word;
}

h5,
.h5, .contact-pr .headline {
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #101828;
  font-size: 20px;
  line-height: 30px;
  word-break: break-word;
}

h6,
.h6 {
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #403393;
  font-size: 18px;
  line-height: 28px;
  word-break: break-word;
}


@media(max-width: 768px){
    h1, .h1, .h1-homepage, .form-text h1{
      font-size: 40px;
      line-height: 52px;
  }

  h2, .h2{
    font-size: 34px;
    line-height: 44px;
  }

  h3, .h3{
    font-size: 28px;
    line-height: 44px;
  }
   h4, .h4{
    font-size: 24px;
    line-height: 32px;
  }
   h5, .h5, .contact-pr .headline{
    font-size: 20px;
    line-height: 30px;
  }
   h6, .h6{
    font-size: 16px;
    line-height: 24px;
  }
}

.preheader{
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #403393;
  font-size: 18px;
  line-height: 28px;
}
.preheader.tx-center {
  margin-left: auto;
  margin-right: auto;
}

.tag{
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: ;
  font-size: 14px;
  line-height: 20px;
  padding: 2px 10px 2px 8px;
  width: fit-content;
  border-radius: 5px;
}
.resources-tag{
  font-family: Karla; font-style: normal; font-weight: 500; text-decoration: none;
  color: #F9FAFB;
  font-size: 14px;
  line-height: 20px;
  padding: 2px 10px 2px 8px;
  width: fit-content;
  margin-bottom: 10px;
  margin-top: 0;
  border-radius: 5px;
  background: #403393;
}




/* Footer content */

/* .footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer label,
.footer div,
.footer span,
.footer li,
.footer a{
  color: #403393;
} */

footer .footer-module .footer-wrapper .footer-menu ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2>a,.footer-module .footer-links,
.footer-module .footer-links a{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; 
  color: #403393;
}
.footer-module .footer-links,
.footer-module .footer-links a{
  font-weight: 400
}
.footer-module .footer-bottom-row {
  border-top: 1px solid #E3E3E3
}
.footer-socials-inner .footer__social-item{
  background: #403393;
  transition: background 0.2s linear;
}
.footer-socials-inner .footer__social-item:hover{
  background: #5692FC
}




/* Neutral Colors */
.bg-primary-1 {
  background-color: #5692FC;
}
.bg-primary-2 {
  background-color: #3973D9;
}
.bg-primary-3 {
  background-color: #403393;
}
.bg-primary-4 {
  background-color: #3EDBFE;
}
.bg-primary-5 {
  background-color: #1F1450 !important;
}
.bg-primary-6 {
  background-color: #E3E3E3;
}
.bg-white {
  background-color: #FFFFFF;
}
.bg-black {
  background-color: #000000;
}


/* Primary Colors */
.bg-secondary-1 {
  background-color: #F48429;
}
.bg-secondary-2 {
  background-color: #86C27E;
}
.bg-secondary-3 {
  background-color: #F6ED3C;
}
.bg-secondary-4 {
  background-color: #E54778;
}
.bg-secondary-5 {
  background-color: #F9FAFB;
}
.bg-secondary-6 {
  background-color: #EFF6FF;
}




/* Primary Colors */
.tx-primary-1 {
  color: #5692FC!important;
}
.tx-primary-2 {
  color: #3973D9!important;
}
.tx-primary-3 {
  color: #403393!important;
}
.tx-primary-4 {
  color: #3EDBFE!important;
}
.tx-primary-5 {
  color: #1F1450!important;
}
.tx-primary-6 {
  color: #E3E3E3!important;
}
.tx-white {
  color: #FFFFFF !important
}
.tx-black {
  color: #000000 !important
}

/* Secondary Colors */
.tx-secondary-1 {
  color: #F48429 !important;
}
.tx-secondary-2 {
  color: #86C27E !important;
}
.tx-secondary-3 {
  color: #F6ED3C !important;
}
.tx-secondary-4 {
  color: #E54778 !important;
}
.tx-secondary-5 {
  color: #F9FAFB !important;
}


/* Primary Colors */
.border-primary-1 {
  border-color: #5692FC;
}
.border-primary-2 {
  border-color: #3973D9;
}
.border-primary-3 {
  border-color: #403393;
}
.border-primary-4 {
  border-color: #3EDBFE;
}
.border-primary-5 {
  border-color: #1F1450;
}
.border-primary-6 {
  border-color: #E3E3E3;
}
.border-white {
  border-color: #FFFFFF;
}
.border-black {
  border-color: #000000;
}

/* Secondary Colors */
.border-secondary-1 {
  border-color: #F48429;
}
.border-secondary-2 {
  border-color: #86C27E;
}
.border-secondary-3 {
  border-color: #F6ED3C;
}
.border-secondary-4 {
  border-color: #E54778;
}
.border-secondary-5 {
  border-color: #F9FAFB;
}

.stats-number span{
  font-family: ;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: 82px; /* 137.5% */
  letter-spacing: -1.6px;
}

.swiper-pagination-bullet-active{
  background: #000 !important;
}
.swiper-pagination-bullet{
  background: #FFFFFF8C !important;
  border: 1px solid black
}
footer .footer-module .footer-wrapper .footer-menu ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2>a:not([href="javascript:;"]):hover,
footer .footer-module .footer-wrapper .footer-bottom-row a:not([href="javascript:;"]):hover {
  color: #000000
}
.footer-module .footer-links a:hover{
  color: #3973D9 !important
}
.hero-homepage .hero-content h1 b, h2 b, h1 b{
  color: #5692FC;
  font-weight: 400
}
.tabs-container .tab-list .tab-list-item.active{
  color: #403393
}

.horizontal-grid-cards .tab-dropdown,
.horizontal-nested-tabs .tab-dropdown,
.horizontal-tabs .tab-dropdown,
.tabs-with-accordion .tab-dropdown{
  border: 1px solid var(--Gray-300, #D0D5DD);
}

@media(max-width: 750px){
  .footer-module .footer-socials-apps{
    border-top: 1px solid #86C27E
  }
}
.vertical-tabs .tabs-container .tab-list .tab-list-item.active .description p{
  color:#3EDBFE
}
.vertical-tabs .tabs-container .tab-list .tab-list-item.active{
  border-radius: 16px;
  background: ;
}
.vertical-tabs .tabs-container .tab-list .tab-list-item.active .tab-name h5{
  color: #5692FC !important;
  margin-bottom: 10px
}
.legal-pages .legal-page.active {
  background: #FFFFFF
}
.legal-pages .legal-pages-list .hs-menu-item.active{
  background: #FFFFFF
}
.legal-pages .legal-pages-list .hs-menu-item a{
  color: #3EDBFE
}
.links-module .links-module-wrapper .link:hover p{
  color: #5692FC !important;
}
.links-module .links-module-wrapper .link:hover svg path{
  stroke: #5692FC
}
.tabs-with-accordion .accordion-list .tab-list-item.active{
  background: ;
  border-radius: 16px;
}
.tabs-with-accordion .accordion-list .tab-list-item.active .tab-name h5{
  color: #5692FC !important
}
.tabs-with-accordion .tab-list-item.active .tab-name h5{
  color: #3EDBFE
}
.accordion-faqs .accordion-item.active{
  background: 
}
.accordion-faqs .accordion-container .accordion-container .accordion-item.active .accordion-title{
  color: #5692FC !important
}
.accordion-faqs .accordion-item:has(.tx-primary-5) svg path{
  stroke: #516464;
}
.accordion-faqs  .accordion-item.active  svg path{
  stroke: #5692FC
}
.horizontal-grid-cards .tabs-container .cards-wrapper .card-individual .btn:hover{
  color: #5692FC
}
.horizontal-grid-cards .tabs-container .cards-wrapper .card-individual .btn:hover svg path{
  stroke: #5692FC
}
.content-intro-row-wrapper .description.tx-white p,
.content-intro-row-wrapper .description.tx-white p span,
.content-intro-row-wrapper .description.tx-white h1,
.content-intro-row-wrapper .description.tx-white h2,
.content-intro-row-wrapper .description.tx-white h3,
.content-intro-row-wrapper .description.tx-white h4,
.content-intro-row-wrapper .description.tx-white h5,
.content-intro-row-wrapper .description.tx-white h6,
.content-intro-row-wrapper .description.tx-white ul li,
.content-intro-row-wrapper .description.tx-white ul li span{
  color: #FFFFFF !IMPORTANT
}
.content-bullets a:not(.btn){
  color: #3973D9 !IMPORTANT;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline !important;
}
.content-bullets a:not(.btn):hover{
  color: #403393 !important;
}
.content-bullets.tx-white a:not(.btn){
  color: #FFFFFF!important;
}
.content-bullets.tx-white a:not(.btn):hover{
  color: #3EDBFE!important;
}
.content-module .content-intro .headline h3,
.content-module .content-intro .headline a{
  color: #1F1450!important;
}
.content-module .content-intro.tx-white .headline h3,
.content-module .content-intro.tx-white .headline a{
  color: #FFFFFF!important;
}
.content-module .content-intro .headline h3:last-child{
  margin-bottom: 0px;  
}
.content-module iframe{
  max-width: 100%;
}

.headline.tx-white a:not(.btn){
  color: #FFFFFF!important;
  text-decoration: underline !important
}
.content-intro .description.tx-white p, .content-intro .description.tx-white h1, .content-intro .description.tx-white h2, .content-intro .description.tx-white h3, .content-intro .description.tx-white h4, .content-intro .description.tx-white h5, .content-intro .description.tx-white h6, .content-intro .description.tx-white p span, .content-intro .description.tx-white span{
  color: #FFFFFF !important
}

.image-text-repeater .itr-row.tx-white .content-intro-row .content-intro-row-wrapper .description p,
.image-text-repeater .itr-row.tx-white .content-intro-row .content-intro-row-wrapper .description p span,
.image-text-repeater .itr-row.tx-white .content-intro-row .content-intro-row-wrapper .description span{
  color: #FFFFFF !important
}
.tab-dropdown{
  color: #000000 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23516464' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-size: 23px !important;
}

.jump-links.bg-primary-5 .jump-links-wrapper .link.active a p,
.jump-links.bg-primary-5 .jump-links-wrapper .link:hover a p{
  color: #3EDBFE !Important;
  border-bottom: 2px solid #3EDBFE;
}
.jump-links.bg-primary-6 .jump-links-wrapper .link.active a p,
.jump-links.bg-primary-6 .jump-links-wrapper .link:hover a p{
  color: #000000 !Important;
  border-bottom: 2px solid #000000;
}
.jump-links-dropdown-item.active{
  background: #1F1450 !Important;
  color: #FFFFFF
}
.jump-links-dropdown-trigger {
  background-color: #FFFFFF;
}
.jump-links-dropdown-chevron {
  color: #1F1450;
}
.jump-links-dropdown-item {
  color: #1F1450;
}
.jump-links-dropdown-item {
  border-bottom: 1px solid #FFFFFF;
}
.jump-links-dropdown-menu {
  background: #FFFFFF;
}
.jump-links-dropdown-trigger:focus {
  outline: 2px solid #FFFFFF;
}
@media (max-width: 767px) {
  .jump-links{
    background: #1F1450 !Important;
  }
}
@media(max-width: 768px){
  .form-text .quote-container{
    border-top: 1px dashed #E3E3E3;
  }
}
.press-tag-individual.active a{
  padding-bottom: 12px;
  color: #403393 !Important
}
.press-tag-individual.active{
  border-bottom: 2px solid #5692FC;
}
.press-release-filtering-inner{
  border-bottom: 1px solid ;
}
.case-studies-template .blog-post-body blockquote{
  border-left-color:  #F48429;
}
.events-list-module .pagination-nav .nav-item{
  color: #3EDBFE
}
.events-list-module .pagination-nav .pagination-nav-inner .pagination-numbers .nav-item.active{
  background: 
}
.events-list-module .next-posts-link.not-active,
.events-list-module .previous-posts-link.not-active{
  color: #E3E3E3 !important;
  pointer-events: none;
  cursor: default;
}
.events-list-module .next-posts-link.not-active svg path, .events-list-module .previous-posts-link.not-active svg path{
  stroke: #E3E3E3 !important;
  pointer-events: none;
  cursor: default;
}
.hs-search-results__listing__item:hover .hs-search-results__title{
  color: #5692FC !important
}
.hs-search-results__pagination__link--number, .hs-search-results__pagination__link-text, .hs-search-results__pagination__link-text{
  color: #403393
}
.hs-search-results__pagination__link--active{
  border-radius: 4px;
  background: 
}
.logos .headline{
  font-family: ;
}
.legal-pages .content-intro .description p,
.legal-pages .content-intro .description p span,
.legal-pages .content-intro .description span{
  color: #3EDBFE
}
.hs-search-field__suggestions .results-for, .hs-search-field__suggestions a{
  color: #403393
}
.hs-search-field__suggestions .results-for, .hs-search-field__suggestions a:hover{
  color: ;
  background-color: #5692FC !important
}
.case-studies-intro .right-side-description p{
  color: #403393 !important
}
.blog-post-content-body h2,
.blog-post-content-body h3,
.blog-post-content-body h4,
.blog-post-content-body h5{
    color: #403393 !important
  }
.notification-bar-text p, 
.notification-bar-text a{
  color: #FFFFFF !important
}
.animation-module .accordion-item.active .accordion-header .accordion-title{
  color: #403393 !important
}
.animation-module .custom-select-trigger span{
  color: #403393
}
.animation-module .accordion-item.active{
  background: 
}
.events-agenda .time-slot-tab.active{
  color: #403393 !important;
  font-weight: 600
}
.notification-bar-container p a:hover{
  color: #F48429 !important;
}
.leadership-tabs {
  border: 1px solid ;
}
.leadership-tab.active {
  background: #FFFFFF;
  color: #3EDBFE;
}
.cards-icons .slider-dot.active {
  background-color: #5692FC;
}
.cards-icons .slider-dot{
  background: rgba(46, 144, 250, 0.54);
}
.left-border-line{
  border-width: 0;
  border-left-width: 10px !important;
  border-style: solid;
  padding-left: 35px;
}
.right-border-line{
  border-width: 0;
  border-right-width: 10px !important;
  border-style: solid;
  padding-right: 35px;
}
.hs-search-results__listing__item .hs-search-results__title{
  background: #F9FAFB
}
.hs-search-results__pagination__link--number{
  color: #000000;
  width: 40px;
  margin: 0px;
  font-weight: 500;
}
.hs-search-results__pagination__link--active{
  background: #E3E3E3
}
.form-text .guideline-text .tx-white p, 
.form-text .guideline-text .tx-white p span{
  color: #FFFFFF !important;
}
.form-text .guideline-text .tx-primary-5 p, 
.form-text .guideline-text .tx-primary-5 span{
  color: #1F1450 !important;
}
.post-share-links .share-item:hover{
  background: #5692FC
}
.press-release-individual .resources-latest{
  background: #FFFFFF
}
.press-release-individual .resources-latest .content-card{
  border: 1px solid #E3E3E3
}
.password-page .form-wrapper form .hs-button{
  color: #FFFFFF 
}
.events-module .event-objectives-block ol li,
.about-commcorp .description.content-bullets a{
  color: #000000 !important;
}
.about-commcorp .description.content-bullets a:hover{
  color: #3973D9 !important;
}
.active-opportunities-individual .learn-more-btn{
  color: #FFFFFF
}
.program-module .program-module__tab-btn.is-active{
  background: #403393;
}
.program-module .program-module__tab-btn.is-active p{
  color: #FFFFFF!important;
}
.program-module .program-module__card-cta-icon::hover{
  background: #5692FC !important
}
.listing-page-navigation .listing-page-navigation__item.active{
  background: #403393
}
.listing-page-navigation .listing-page-navigation__item.active h5{
  color: #FFFFFF
}
.horizontal-tabs .tabs-container .tab-list .tab-list-item.active{
  background: #403393
}
.horizontal-tabs .tabs-container .tab-list .tab-list-item.active .tab-name {
  color: #FFFFFF !important;
}
/* 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;
}
ul.no-list, .no-list ul, .no-list ol {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

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

p+p{
  margin-top: 14px;
}
ul.no-list{
  list-style: none;
  margin: 0;
  padding: 0
}
ul.no-list li::marker{
  display: none
}
.content-bullets ul li::marker,
.hs_cos_wrapper_type_inline_rich_text ul li::marker {
  display: none
}
.content-bullets ul,
.hs_cos_wrapper_type_inline_rich_text ul {
  padding-left: 32px;
}
.content-bullets ul li,
.hs_cos_wrapper_type_inline_rich_text ul li{
  position: relative;
}
.content-bullets ul li:not(:last-child),
.hs_cos_wrapper_type_inline_rich_text ul li:not(:last-child){
  padding-bottom: 15px
  
}
.content-bullets ul li ul,
.hs_cos_wrapper_type_inline_rich_text ul li ul{
  margin-bottom: 0;
}
.content-bullets ul li::before,
.hs_cos_wrapper_type_inline_rich_text ul li::before{
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23403393'/%3E%3Cpath d='M10.1313 15.1007L7.04946 12.302L6 13.2483L10.1313 17L19 8.94631L17.9579 8L10.1313 15.1007Z' fill='%23F9FAFB'/%3E%3C/svg%3E");
  left: -32px;
  position: absolute;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 4px
}
.custom-bullets .content-bullets ul li::before,
.custom-bullets .hs_cos_wrapper_type_inline_rich_text ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1285_4)'%3E%3Cpath d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='%23403393'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1285_4'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.custom-bullets .content-bullets.tx-white ul li::before,
.custom-bullets .hs_cos_wrapper_type_inline_rich_text.tx-white ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1285_7)'%3E%3Cpath d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1285_7'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.content-bullets.tx-white ul li::before,
.hs_cos_wrapper_type_inline_rich_text.tx-white ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3Cpath d='M18.2559 8.94531L10.1309 16.3242L6.74512 13.249L7.04785 12.9766L9.79492 15.4707L10.1309 15.7764L10.4678 15.4707L17.957 8.6748L18.2559 8.94531Z' fill='%23403393' stroke='black'/%3E%3C/svg%3E");
}
.content-bullets ul,
.hs_cos_wrapper_type_inline_rich_text ul{
  list-style: none;
  margin: 15px 0;
}

.content-bullets ul li ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='12' fill='%23403393'/%3E%3Cpath d='M10.1313 15.1007L7.04946 12.302L6 13.2483L10.1313 17L19 8.94631L17.9579 8L10.1313 15.1007Z' fill='%23F9FAFB'/%3E%3C/svg%3E");
  width: 16px;
  height: 16px;
  left: -26px;
}
.custom-bullets .content-bullets ul li ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1285_4)'%3E%3Cpath d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='%23403393'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1285_4'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.custom-bullets .content-bullets.tx-white ul li ul li::before{
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1285_7)'%3E%3Cpath d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1285_7'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

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

/* Image alt text */

img {
  word-break: normal;
}


.tx-center{
  text-align: center;
}
.tx-left{
  text-align: left;
}
.tx-right {
  text-align: right;
}
.tx-inherit{
  color: inherit;
}
@media (max-width: 768px) {
  .tx-center-mb{
    text-align: center;
  }
  .tx-left-mb{
    text-align: left;
  }
}
.italic{
  font-style: italic !important;
}
.regular{
  font-weight: 400 !important;
}
.medium{
  font-weight: 500 !important;
}
.semiBold{
  font-weight: 600 !important;
}
.bold{
  font-weight: 700 !important;
}
.extra-bold{
  font-weight: 800 !important;
}
.uppercase{
  text-transform: uppercase;
}
.word-normal{
  word-wrap: normal;
}
.stats-number{
  font-size: 60px;
  font-weight: 500;
  line-height: 60px;
}
@media(min-width: 992px){
  .stats-number{
    font-size: 96px;
    line-height: 96px;
  }
}

.content-intro p{
  /* font-size: 18px; */
  /* font-weight: 400; */
  /* line-height: 26px; */
}



/* ==========================================
   SKIP LINK
   ========================================== */
.header__skip {
    color: rgb(255, 255, 255);
    font-size: 14px;
    left: -9999px;
    position: absolute;
    z-index: 999999;
    background: rgb(0, 0, 0);
    padding: 8px 16px;
    text-decoration: none;
}

.header__logo a{
  display: flex;
}
.header .hs-menu-depth-2  a[href="javascript:void(0);"],
.header .hs-menu-depth-2  a[href="javascript:;"]{
  cursor: default;
}
/* ==========================================
   HEADER BASE STYLES
   ========================================== */
.header {
    left: 0;
    top: 0;
    width: 100% !important;
    z-index: 30 !important;
    transition: all ease-in-out 400ms;
    position: fixed;
}

.header .dnd-section > .row-fluid {
    max-width: 100%;
}

.header .header-top-row-0-padding {
    padding: 0 !important;
}

/* ==========================================
   HEADER MENU BASE
   ========================================== */
.header .header-wrapper .header-menu {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0
}

.header .header-wrapper .header-menu .hs-menu-wrapper ul {
    flex-direction: column;
    list-style: none;
}

.header .hs-menu-wrapper ul {
    list-style: none;
}

/* ==========================================
   MENU DEPTH 1 (TOP LEVEL)
   ========================================== */
.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 {
    position: relative;
    padding-right: 20px;
}

.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > a {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
/*     padding-bottom: 49px; */
/*     padding-top: 49px; */
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
}

.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1:hover .hs-menu-children-wrapper {
    background: white;
}

.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > .hs-menu-children-wrapper {
    display: flex;
    flex-direction: column;
    width: fit-content;
    visibility: hidden;
    opacity: 0;
}

/* ==========================================
   MENU DEPTH 2 (SUBMENU)
   ========================================== */
.hs-menu-depth-2 {
    position: relative;
}

.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 > a svg {
    max-width: 23px;
    height: auto;
    max-height: 24px;
    margin-right: 8px;
}

.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 a {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 18px;
    font-style: normal;
    line-height: 28px;
    font-weight: 600;
    white-space: nowrap;
    padding: 13px 24px;
}


/* ==========================================
   SCROLLED HEADER STATE
   ========================================== */
.header.scrolled,
.dark-header-default .header{
    box-shadow: 0 0 30px 0 rgba(135, 154, 197, 0.31);
    background-color: #fff;
    padding-top: 0;
}

.header.scrolled .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper,
.dark-header-default .header .header-menu > .hs-menu-wrapper > ul > li > .hs-menu-children-wrapper{
    top: 100%;
}

.header.scrolled .header-menu > .hs-menu-wrapper > ul > li > a,
.dark-header-default .header .header-menu > .hs-menu-wrapper > ul > li > a{
    padding: 35px 25px;
}

/* ==========================================
   HEADER LOGO
   ========================================== */
.header .header-wrapper .header-menu .header-logo img {
    max-height: 42px;
    width: 100%;
}

/* ==========================================
   HEADER BUTTON
   ========================================== */
.header-button .btn {
    padding: 10px 21px;
}

/* ==========================================
   HAMBURGER / MOBILE TRIGGER - BASE STYLES
   ========================================== */
.hamburger,
.mobile-trigger {
    padding: 0;
    display: none;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    outline: none;
}

.hamburger:hover,
.mobile-trigger:hover {
    opacity: 0.7;
}

.hamburger-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger-inner {
    display: block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 20px;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    transition-property: transform, opacity;
    transition-duration: 0.15s;
    transition-timing-function: ease;
    background-color: #1F1450;
}

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

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

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

/* ==========================================
   HAMBURGER SQUEEZE ANIMATION
   ========================================== */
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.075s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ==========================================
   CHILD TRIGGER (SUBMENU TOGGLE)
   ========================================== */
.child-trigger {
    display: block !important;
    cursor: pointer;
    position: absolute;
    right: 0;
    width: 14px !important;
    height: 12px !important;
    padding: 0 !important;
    top: 50%;
    transform: translateY(-50%);
}

.child-trigger:hover {
    text-decoration: none;
}

.child-trigger i:after {
    position: absolute;
    content: '';
    width: 13px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M11 1L6.58926 5.41074C6.26382 5.73618 5.73618 5.73618 5.41074 5.41074L1 1' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    left: 5px;
}

.child-trigger.child-open i:after {
    transform: rotate(-180deg);
}

/* ==========================================
   MOBILE OPEN STATE - BODY
   ========================================== */
body.mobile-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
}
 .custom-language-wrapper {
    margin-right: 50px;
  }

/* ==========================================
   DESKTOP STYLES (min-width: 993px)
   ========================================== */
@media (min-width: 993px) {
    .child-trigger i:after {
        top: 1px;
    }
  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > .hs-menu-children-wrapper{
    top: 95px;
  }
  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1:hover .child-trigger i:after {
    transform: translateY(-50%) scaleY(-1);
  }
  .mobile-button{
    display: none
  }
  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2{
    border-left: 3px solid #FFFFFF;
  }
  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2:hover > a {
    color: #FFFFFF;
}
.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2:hover {
    background: #403393;
    border-left: 3px solid #5692FC;
}
.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-3:hover {
    background: #403393;
    border-left: 3px solid #5692FC;
}
.header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-3:hover > a {
    color: #FFFFFF;
}
  .custom-language-wrapper {
    margin-left: 30px;
    margin-right: 20px;
  }
     
/* Default state - white icons on transparent header */
.header:not(.scrolled) .hs-language-switcher__label svg path,
body:not(.dark-header-default) .header:not(.scrolled) .hs-language-switcher__label svg path{
  stroke: #FFFFFF;
}

.header:not(.scrolled) .hs-language-switcher__label .hs-language-switcher__icon--dropdown path,
body:not(.dark-header-default) .header:not(.scrolled) .hs-language-switcher__label .hs-language-switcher__icon--dropdown path{
  fill: #FFFFFF;
}

.header:not(.scrolled) .search-button svg path,
 body:not(.dark-header-default) .header:not(.scrolled) .search-button svg path{
  fill: #FFFFFF;
}

.header:not(.scrolled) .search-button svg circle,
body:not(.dark-header-default) .header:not(.scrolled) .search-button svg circle{
  stroke: #FFFFFF;
}

.header:hover .hs-language-switcher__label svg path, .search-active .header .hs-language-switcher__label svg path,.dark-header-default .header .hs-language-switcher__label svg path {
  stroke: #1F1450 !important
}

.header:hover .hs-language-switcher__label .hs-language-switcher__icon--dropdown path,  .search-active .hs-language-switcher__label .hs-language-switcher__icon--dropdown path, .dark-header-default .hs-language-switcher__label .hs-language-switcher__icon--dropdown path{
  fill: #1F1450 !important
}

.header:hover .search-button svg path, .search-active .search-button svg path, .dark-header-default .search-button svg path{
  fill: #1F1450  !important
}

.header:hover .search-button svg circle, .search-active .search-button svg circle,.dark-header-default .search-button svg circle {
  stroke: #1F1450 !important
}

/* Override when language menu is visible */
.header:has(.hs-language-switcher__menu.visible) {
  background: #FFFFFF;
}

.header:has(.hs-language-switcher__menu.visible) .hs-language-switcher__label svg path {
  stroke: #1F1450;
}

.header:has(.hs-language-switcher__menu.visible) .hs-language-switcher__label .hs-language-switcher__icon--dropdown path {
  fill: #1F1450;
}

.header:has(.hs-language-switcher__menu.visible) .search-button svg path {
  fill: #1F1450;
}

.header:has(.hs-language-switcher__menu.visible) .search-button svg circle {
  stroke: #1F1450;
}
  
    .header:not(.scrolled):not(:hover) .header__logo--secondary {
      display: none;
    }
    .header:not(.scrolled):not(:hover) .header__logo--main {
      display: flex;
    }
    .dark-header-default .header__logo--main{
      display: none !important;
    }
    .dark-header-default .header__logo--secondary{
      display: flex !important;
    }
    .header .header-wrapper .header__logo--secondary,
    .header:has(.hs-language-switcher__menu.visible) .header-wrapper .header__logo--secondary {
      display: flex;
    }
    .header .header-wrapper .header__logo--main,
    .header:has(.hs-language-switcher__menu.visible) .header-wrapper .header__logo--main {
      display: none;
    }

    body.search-active .header:not(:hover) .header__logo--main {
      display: none;
    }
    body.search-active .header:not(:hover) .header__logo--secondary {
      display: flex;
    }
   
    .header:hover, .search-active .header {
        background: #FFFFFF;
    }
    .header:hover .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 a,
    .header.scrolled .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 a,
    .header:has( .hs-language-switcher__menu.visible) .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 a,
    .search-active .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 a,
     .dark-header-default .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 a{
        color: #000000;
    }
    .header:hover .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i:after,
    .header.scrolled .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i:after,
    .header:has( .hs-language-switcher__menu.visible) .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i:after,
    .search-active .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i:after,
    .dark-header-default .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i:after{
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M11 1L6.58926 5.41074C6.26382 5.73618 5.73618 5.73618 5.41074 5.41074L1 1' stroke='%231F1450' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    .header .header-wrapper .header-menu {
        flex-direction: row;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul {
        flex-direction: row;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1:hover > .hs-menu-children-wrapper {
        filter: drop-shadow(0 9px 24px rgba(0, 0, 0, 0.16));
        visibility: visible;
        opacity: 1;
        min-width: 200px;
        padding-left: 0;
        box-shadow: 8px 4px 11px -4px rgba(16, 24, 40, 0.08), 8px 4px 11px -2px rgba(16, 24, 40, 0.14);
        z-index: 1;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > .hs-menu-children-wrapper {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-depth-2.hs-item-has-children > .hs-menu-children-wrapper {
        max-height: 0;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-depth-2.hs-item-has-children > .hs-menu-children-wrapper .hs-menu-depth-3 > a {
        display: none;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-depth-2.hs-item-has-children:hover > .hs-menu-children-wrapper .hs-menu-depth-3 > a {
        display: block;
        white-space: normal;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-depth-2:hover.hs-item-has-children > .hs-menu-children-wrapper {
        position: absolute;
        left: 100%;
        max-height: 700px;
        top: 0;
        display: flex;
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        min-width: 224px;
        box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
        max-width: 250px;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1:last-of-type .hs-menu-depth-2:hover.hs-item-has-children > .hs-menu-children-wrapper{
        right: calc(100% + 3px);
        left: unset;
    }
    .header .header-wrapper .header-menu .header-menu-inner .hs-menu-wrapper > ul {
        gap: 28px;
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        row-gap: 0;
    }
    /* Hide hamburger on desktop */
    .hamburger,
    .mobile-trigger {
        display: none !important;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 a {
        padding: 14px 24px;
    }

    .hs-menu-depth-2 .child-trigger {
        display: none !important;
    }
}

/* ==========================================
   TABLET/SMALLER DESKTOP
   ========================================== */

@media  (min-width: 993px) {
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1{
      padding-top: 30px;
      padding-bottom: 30px
  }
}
@media(min-width: 1200px){
  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1{
    padding-top: 49px;
    padding-bottom: 49px;
  }
}

@media only screen and (max-width: 1200px) and (min-width: 993px) {
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > a {
        font-size: 14px;
    }
    .header .header-wrapper .header-menu .header-menu-inner .hs-menu-wrapper > ul {
        column-gap: 25px;
        margin-bottom: 0;
    }
    .header .header-wrapper .header-menu {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul {
        margin-top: 0;
    }

  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > .hs-menu-children-wrapper{
      top: 67px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 1100px) {
   .header__logo a img{
      width: 200px !Important;
    }
}
@media only screen and (max-width: 1100px) and (min-width: 993px) {
   .header__logo a img{
      width: 150px !Important;
    }
}

/* ==========================================
   MOBILE STYLES (max-width: 992px)
   ========================================== */
@media (max-width: 992px) {
  .hs-language-switcher__menu{
    top: 42px !important;
  }
  .header{
    border-bottom: 3px solid #EAECF0;
  }
 .header .button-wrapper{
    border-top: 1px solid var(--Gray-200, #EAECF0);
    margin-top: 24px;
  }
    /* Hide elements on mobile */
    .header__search,
    .search-button {
        display: none;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 .child-trigger{
        right: -4px;
  }
    .header__logo--main {
        display: none !important;
    }

    .header__logo--secondary {
        display: flex !important;
    }
    .header__logo--secondary img {
      max-width: 146px;
    }
  .header__logo--secondary a, .header__logo--primary a{
    display: flex
  }
    /* Header wrapper - the top bar with logo and hamburger */
    .header .header-wrapper {
        background: #FFFFFF;
        position: relative;
        z-index: 100;
        height: 60px
    }

    /* ==========================================
       MOBILE TRIGGER BUTTON (HAMBURGER)
       ========================================== */
    .hamburger,
    .mobile-trigger {
        display: inline-flex !important;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 101;
        padding: 10px !important;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        background-color: #1F1450 !important;
    }

    /* ==========================================
       HEADER MENU INNER - DRAWER BELOW HEADER
       ========================================== */
    .header-menu-inner {
        position: fixed !important;
        top: 62px !important; /* Height of header bar - adjust as needed */
        right: 0 !important;
        width: 100% !important;
        height: calc(100vh - 52px) !important;
        height: calc(100dvh - 52px) !important;
        background: white !important;
        padding: 0 0 20px 0 !important;
        z-index: 9998 !important;
        overflow-y: auto !important;
/*         box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important; */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start;
        
        /* CLOSED STATE */
        transform: translateX(100%) !important;
        visibility: hidden !important;
        
        /* Animation */
        transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out !important;
    }

    /* OPEN STATE */
    body.mobile-open .header-menu-inner {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    /* ==========================================
       MOBILE MENU STRUCTURE
       ========================================== */
    .header-menu-inner .hs-menu-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .header-menu-inner .hs-menu-wrapper > ul {
        flex: 1;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul {
        padding-left: 0;
        width: 100%;
        margin: 0;
    }

    /* ==========================================
       MENU DEPTH 1 - TOP LEVEL ITEMS
       ========================================== */
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > a {
        padding: 16px 24px;
        color: #1F1450;
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > a .arrow-down-icon {
        display: none;
    }

    /* Disable hover dropdown on mobile */
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1:hover .hs-menu-children-wrapper {
        display: none;
    }

    /* ==========================================
       CHILD TRIGGER - DROPDOWN ARROWS
       ========================================== */
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger {
        position: absolute;
        right: 25px;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: none;
        top: 10px;
        transform: unset;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .child-trigger i:after {
        position: static;
        transform: translateY(-50%) scaleY(-1);
        left: auto;
        top: auto;
        width: 12px;
        height: 7px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M11 1L6.58926 5.41074C6.26382 5.73618 5.73618 5.73618 5.41074 5.41074L1 1' stroke='%231F1450' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    /* ==========================================
       SUBMENU - DEPTH 2
       ========================================== */
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper {
        position: static;
        transform: none;
        visibility: visible;
        opacity: 1;
        padding-left: 0;
        display: none;
        width: 100%;
        box-shadow: none;
        filter: none;
        border-radius: 12px;
        box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
        padding-right: 10px;
        width: calc(100% - 40px);
        margin-left: 20px;
        padding-bottom: 15px;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 {
        border-bottom: none;
    }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2  .hs-menu-children-wrapper{
      padding-top: 10px;
      padding-bottom: 10px
  }
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 a {
        padding: 12px 0 12px 16px;
        font-size: 18px;
        font-weight: 600;
        color: #1F1450;
        line-height: 28px;  
        white-space: normal;
       padding-right: 30px;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2:hover {
        background: transparent;
    }

    /* ==========================================
       SUBMENU - DEPTH 3
       ========================================== */
    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-2 .hs-menu-children-wrapper {
      background: #F9FAFB;
      width: calc(100% - 20px);
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-3 > a {
        padding-left: 16px;
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
        color: #1F1450;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-3:hover {
        background: transparent;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 .hs-menu-children-wrapper .hs-menu-depth-3:hover > a {
        color: #403393;
    }

    /* Depth 2 child trigger */
    .header .header-wrapper .header-menu .hs-menu-wrapper .hs-menu-depth-2 .child-trigger {
        display: flex !important;
        right: 16px;
    }

    .header .header-wrapper .header-menu .hs-menu-wrapper .hs-menu-depth-2 .child-trigger i:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7' fill='none'%3E%3Cpath d='M11 1L6.58926 5.41074C6.26382 5.73618 5.73618 5.73618 5.41074 5.41074L1 1' stroke='%236B7280' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    }
    /* ==========================================
       CONTACT US BUTTON
       ========================================== */
    .header .header-wrapper .header-menu .header-button,
    .header-menu-inner .header-button {
        padding: 20px 24px;
        margin-top: auto;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
    }

    .header .header-wrapper .header-menu .header-button .btn,
    .header-menu-inner .header-button .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 24px;
        background: #4B7BF5;
        color: white;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .header .header-wrapper .header-menu .header-button .btn:hover,
    .header-menu-inner .header-button .btn:hover {
        background: #3B6AE5;
    }

    /* Arrow icon in button */
    .header .header-wrapper .header-menu .header-button .btn::after,
    .header-menu-inner .header-button .btn::after {
        content: '→';
        font-size: 18px;
    }

    /* ==========================================
       HEADER MENU LAYOUT
       ========================================== */
    .header .header-wrapper .header-menu {
        position: static;
        padding: 0;
        overflow: visible;
    }

    .header .header-wrapper .header-menu .header-menu-inner .hs-menu-wrapper > ul {
        padding: 0;
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================
   SMALL MOBILE (max-width: 500px)
   ========================================== */
@media (max-width: 500px) {
    .header .header-wrapper .header-menu .header-logo img {
        max-width: 160px;
    }

    .hamburger,
    .mobile-trigger {
        right: 22px !important;
    }

    .header-menu-inner {
        max-width: 100% !important;
    }
}
.mobile-button{
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 20px;
}
.hs-language-switcher__item, .hs-language-switcher__item.active{
  border-left: 3px solid #FFFFFF;
}
.hs-language-switcher__item:focus, .hs-language-switcher__item.active,.hs-language-switcher__menu.mousemove .hs-language-switcher__item:hover{
  border-left: 3px solid #5692FC;
}
@media(min-width: 1200px){
  .header .header-wrapper .header-menu .hs-menu-wrapper ul .hs-menu-depth-1 > .hs-menu-children-wrapper{
    top: 125px;
  }
}
body:has(.header:hover) {
  position: relative;
}

@media(min-width: 993px){
  body:has(.header .header-wrapper .header-menu .header-menu-inner .hs-menu-wrapper > ul:hover)::after,
   body:has(.hs-language-switcher.menu-open)::after{
    backdrop-filter: blur(4px);
    content: "";
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
  }
  .header__search{
    display: none;
  }
  .search-active .header__search{
    background: #1F1450;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .25);
    display: block;
    height: 31vh;
    left: 0;
    max-width: 100%;
    opacity: 1;
    position: fixed;
    top: 100px;
    transform: scale(1);
    transition: opacity .3s ease, transform .3s ease, visibility 0s;
    visibility: visible;
    width: 100%;
    min-height: 450px;
  }
   .search-active .site-search-container {
     left: 50%;
     max-height: 500px;
     max-width: 1038px;
     opacity: 1;
     padding-left: 20px;
     padding-right: 20px;
     position: absolute;
     top: 50%;
     transform: translate(-50%, -50%);
     -webkit-transition: all .3s linear;
     -moz-transition: all .3s linear;
     -o-transition: all .3s linear;
     transition: all .3s linear;
     visibility: visible;
     width: 100%;
    }
   .search-active .site-search-container-title {
        margin-bottom: 32px;
    }
  .close-search-button{
    cursor: pointer;
  }
    .close-search-button .close-default-state, .close-search-button:hover .close-hover-state {
      display: block;
  }
    .close-search-button .close-default-state {
        display: block;
    }
  .close-search-button .close-hover-state {
    display: none;
    }
    .close-search-button .close-hover-state {
        display: none;
    }
  .close-search-button:hover .close-default-state {
    display: none;
  }
  .close-search-button:hover .close-hover-state {
    display: block;
  }
  body.search-active{
    position: relative
  }
  body.search-active:after {
    backdrop-filter: blur(4px);
    background: rgba(54, 64, 65, .83);
    content: "";
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 12;
  }
  .search-active .site-search-container form input {
    border: unset;
    height: 68px;
    padding: 12px 26px;
  }
   .search-active .site-search-container form input::placeholder {
    font-weight: 400;
     color: #000000
  }
  .search-active .hs-search-field__button {
    background: #FFFFFF;
    border: unset;
    padding-right: 25px;
  }
  .search-active .hs-search-field__bar button svg {
        height: 30px;
        width: 30px;
    }
  .hs-search-field__suggestions .results-for, .hs-search-field__suggestions a:hover{
    background-color: #FFFFFF !important;
    color: #000000
  }
}

@media(min-width: 1200px){
   .search-active .header__search{
    top: 125px;
  }
}

