*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

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

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

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

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

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

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

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control the layout of elements
and how they stack. This is based off of the bootstrap system.
*********************************************************************************
****************************************************************************** */

/* Responsive Grid */

.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: 0; 
	-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%;
}
.row-fluid .span11 {
	width: 91.66%;
}
.row-fluid .span10 {
	width: 83.33%;
}
.row-fluid .span9 {
	width: 75%;
}
.row-fluid .span8 {
	width: 66.66%;
}
.row-fluid .span7 {
	width: 58.33%;
}
.row-fluid .span6 {
	width: 50%;
}
.row-fluid .span5 {
	width: 41.66%;
}
.row-fluid .span4 {
	width: 33.33%;
}
.row-fluid .span3 {
	width: 25%;
}
.row-fluid .span2 {
	width: 16.66%;
}
.row-fluid .span1 {
	width: 8.33%;
}

/*  */


.flex_row .col12 {
	width: 100%;
}
.flex_row .col11 {
	width: 91.66%;
}
.flex_row .col10 {
	width: 83.33%;
}
.flex_row .col9 {
	width: 75%;
}
.flex_row .col8 {
	width: 66.66%;
}
.flex_row .col7 {
	width: 58.33%;
}
.flex_row .col6 {
	width: 50%;
}
.flex_row .col5 {
	width: 41.66%;
}
.flex_row .col4 {
	width: 33.33%;
}
.flex_row .col3 {
	width: 25%;
}

.flex_row .col20 {
	width: 20%;
}

.flex_row .col2 {
	width: 16.66%;
}
.flex_row .col1 {
	width: 8.33%;
}


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

	.flex_row .col20,
	.flex_row .col12,
	.flex_row .col11,
	.flex_row .col10,
	.flex_row .col9 ,
	.flex_row .col8 ,
	.flex_row .col7 ,
	.flex_row .col6 ,
	.flex_row .col5 ,
	.flex_row .col4 ,
	.flex_row .col3 ,
	.flex_row .col2 ,
	.flex_row .col1 {
		width: 100%;  
	}

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

	.dnd-section > .row-fluid .dnd-column,
	.dnd-section > .row-fluid > [class*="span"].dnd-module { 
		padding-left:20px;
		padding-right:20px;
	}
}



.dnd-section[class*="force-full-width-section"]  > .row-fluid > .dnd-column.span12,
.dnd-section[class*="force-full-width-section"]  > .row-fluid > .span12.dnd-module {
	padding:0;
}


@media (min-width: 768px) {
	.dnd-section > .row-fluid .dnd-column,
	.dnd-section > .row-fluid > [class*="span"].dnd-module { 
		padding-left:20px;
		padding-right:20px;
	}

	.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: 0;  
		-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%;
	}
	.row-fluid .span11 {
		width: 91.66%;
	}
	.row-fluid .span10 {
		width: 83.33%;
	}
	.row-fluid .span9 {
		width: 75%;
	}
	.row-fluid .span8 {
		width: 66.66%;
	}
	.row-fluid .span7 {
		width: 58.33%;
	}
	.row-fluid .span6 {
		width: 50%;
	}
	.row-fluid .span5 {
		width: 41.66%;
	}
	.row-fluid .span4 {
		width: 33.33%;
	}
	.row-fluid .span3 {
		width: 25%;
	}
	.row-fluid .span2 {
		width: 16.66%;
	}
	.row-fluid .span1 {
		width: 8.33%;
	}
}
@media (max-width: 767px) {
	.row-fluid [class*=span] {
		min-height: 0;
	}
}
/* Clearfix */

.clearfix {
	*zoom: 1;
}

.clearfix:before, .clearfix:after {
	display: table;
	content: "";
}

.clearfix:after {
	clear: both;
}

/* Visibilty Classes */

.hide {
	display: none;
}

.show {
	display: block;
}

.invisible {
	visibility: hidden;
}

.hidden {
	display: none;
	visibility: hidden;
}

/* Responsive Visibilty Classes */

.visible-phone {
	display: none !important;
}

.visible-tablet {
	display: none !important;
}

.hidden-desktop {
	display: none !important;
}

@media (max-width: 767px) {
	.visible-phone {
		display: inherit !important;
	}

	.hidden-phone {
		display: none !important;
	}

	.hidden-desktop {
		display: inherit !important;
	}

	.visible-desktop {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.visible-tablet {
		display: inherit !important;
	}

	.hidden-tablet {
		display: none !important;
	}

	.hidden-desktop {
		display: inherit !important;
	}

	.visible-desktop {
		display: none !important ;
	}
}

@media(max-width:767px){
	[class*="vertical-alignmen"] >.row-fluid {
		flex-direction: column !important ;
	}
}
.page-center,
.content-wrapper,
.small_container,
.custom_container{
	margin: 0 auto;
	padding-left:20px;
	padding-right:20px;
}

.dnd-section > .row-fluid, 
.large_container{
	margin: 0 auto;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p {
	margin-top: 0;
	margin-bottom: 20px; 
}

/* Anchor Links */
a { 
	text-decoration: none;
}

a:hover, a:focus { 
	text-decoration: underline;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 30px; 
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child{
	margin-bottom:0;
}

strong {
	font-weight: 700;
}

code {
	vertical-align: bottom;
}

ul,
ol {
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}

ul li,
ol li { 
}

ul ul,
ol ul,
ul ol,
ol ol {
	margin-top: 0;
	margin-bottom: 0;
}


/* Horizontal Rules */
hr {
	color: #ccc;
	background-color: #ccc;
	height: 1px;
	border: none;
}

/* TODO */
small {

}

/* TODO */
mark {

}

sup,
sub {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

:focus {
	outline: auto;
	outline-color: green;
}

.disable-focus-styles :focus {
	outline: none;
}

img{
	max-width:100%;
}
button,
.hs-button,
form input[type="submit"],
.hs-sec-btn,
.arrow-btn{ 
	display:inline-block;
	text-decoration:none; 
	margin:20px 0;
	outline:none; 
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
	line-height: 1;
	text-decoration: none !important;
	transition: 0.3s all ease;
}

form input[type="submit"],
form .hs-button {
	margin-bottom: 0;
}
.form_box,
.hs_cos_wrapper_type_password_prompt,
.hs-search-field__bar,
.hs_cos_wrapper_type_form,
.widget-type-blog_subscribe,
.widget-type-google_search,
.widget-type-password_prompt.custom_error_message,
.widget-type-email_simple_subscription,
.section.post-footer form ,.hs_cos_wrapper_type_member_login ,
.hs_cos_wrapper_type_member_register,.hs_cos_wrapper_type_password_reset_request ,
.hs_cos_wrapper_type_password_reset{
  
  display: block;
  padding: 50px 50px;
  
  max-width:767px;
  width:100%;
  margin-bottom:30px;
}

h3.form-title:empty{  
  display: none;
}

h3.form-title{  
  margin-bottom:30px;
  letter-spacing: 0.5px;
  line-height: 1.22727272727;
}

.actions input.hs-button {
  margin-bottom: 0;
  margin-top: 30px;
}

.hs-form .field > label, .hs-form-field > label {
  line-height: 1;
  letter-spacing: 0;
}

@media(max-width:1200px){ 
  


  .form_box,
  .hs_cos_wrapper_type_password_prompt,
  .hs-search-field__bar,
  .hs_cos_wrapper_type_form,
  .widget-type-blog_subscribe,
  .widget-type-google_search,
  .widget-type-password_prompt.custom_error_message,
  .widget-type-email_simple_subscription,
  .section.post-footer form ,.hs_cos_wrapper_type_member_login ,
  .hs_cos_wrapper_type_member_register,.hs_cos_wrapper_type_password_reset_request ,
  .hs_cos_wrapper_type_password_reset{
    
    padding:20px;
    
  }

}

@media(max-width:991px){ 
  .form_box,
  .hs_cos_wrapper_type_password_prompt,
  .hs-search-field__bar,
  .hs_cos_wrapper_type_form,
  .widget-type-blog_subscribe,
  .widget-type-google_search,
  .widget-type-password_prompt.custom_error_message,
  .widget-type-email_simple_subscription,
  .section.post-footer form ,.hs_cos_wrapper_type_member_login ,
  .hs_cos_wrapper_type_member_register,.hs_cos_wrapper_type_password_reset_request ,
  .hs_cos_wrapper_type_password_reset{
    
    padding:20px;
    
  }

}

.hs-form .field,
.hs-form-field{
  margin-bottom:30px;
}

.hs-form .field > label,
.hs-form-field > label {  
  display: inline-block;
  letter-spacing:1.86px;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:8px; 
  line-height: normal;
}

.hs-error-msgs label {
  margin-top: 8px;
  color: ;
}

.hs-input,
input#hs-pwd-widget-password {
  box-sizing: border-box;
  display: block;
  height: 45px;
  line-height: normal;
  max-width: 100%;
  padding: 10px;
  width: 100%;
}

input.email-edit.hs-input,
input#hs-pwd-widget-password {
  width: 767px !important;
  max-width: 100%; 
  padding: 15px !important;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input:-moz-placeholder {
  /* 	color: ; */
  color: rgba(, 0.8);
}

.hs-input::-webkit-input-placeholder {
  /* 	color: ; */
  color: rgba(, 0.8);
} 

.hs-input:focus,
input#hs-pwd-widget-password:focus {
  outline: none; 
}

textarea.hs-input {
  height: auto !important;
}

select[multiple].hs-input {
  height: inherit;
}

.hs-input select {
  background: url('https://3104948.fs1.hubspotusercontent-na1.net/hubfs/3104948/arrow-down.svg') no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 13px 24px;
  background-position: 92% 51%;
  background-color: white;
  color: rgba(, 0.8);
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: ;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: ;
}

.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field,
.hs-form-field {
  margin-bottom: 18px;
}

.hs-field-desc {
  color: ;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: ;
  color: ;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}


fieldset.form-columns-2 .hs-form-field .input {
  margin-right: 0 !important;
}

fieldset.form-columns-2 .hs-form-field:nth-child(2) {
  padding-left: 15px;
}

fieldset.form-columns-2 .hs-form-field:nth-child(1) {
  padding-right: 15px;
}

fieldset.form-columns-1 {
}

fieldset.form-columns-1 .input {
  margin-right: 0 !important;
}

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

form .hs-button {
  margin-top: 33px;
}

form .actions .hs-button {
  margin-top: 0;
}

@media (max-width: 1024px) and (min-width:768px){
  .span6 form .form-columns-3 .hs-form-field,
  .span6 form .form-columns-2 .hs-form-field {
    width: 100% !important;
    float: none;
  }

  fieldset.form-columns-2 .hs-form-field:nth-child(2) {
    padding-left: 0;
  }

  fieldset.form-columns-2 .hs-form-field:nth-child(1) {
    padding-right: 0;
  }

  fieldset.form-columns-2 .hs-form-field {
    width: 100% !important;
  }
}

@media (max-width: 480px),
  (min-device-width: 320px) and (max-device-width: 480px){
    form .form-columns-3 .hs-form-field,
    form .form-columns-2 .hs-form-field {
      width: 100% !important;
      float: none;
    }

    fieldset.form-columns-2 .hs-form-field:nth-child(2) {
      padding-left: 0;
    }

    fieldset.form-columns-2 .hs-form-field:nth-child(1) {
      padding-right: 0;
    }

    form input:not([type=radio]):not([type=checkbox]) {
      width: 100% !important;
    }

    .hs-input, input#hs-pwd-widget-password {
      height: 50px;
    }

    .hs-form .field, .hs-form-field {
      margin-bottom: 20px;
    }
}

@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }

    fieldset.form-columns-2 .hs-form-field:nth-child(2) {
      padding-left: 0;
    }

    fieldset.form-columns-2 .hs-form-field:nth-child(1) {
      padding-right: 0;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  white-space: normal;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: ;
}


input#hs-login-widget-remember {
  float: left;
  margin-top: 5px;
}

ul.no-list.hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-error-msg,.hs-error-msgs label {
  color: red !important;
}

.hs-input[type=checkbox], 
.hs-input[type=radio] {
  display: inline-block;
}


form .legal-consent-container .hs-richtext {
  margin-bottom: 0;
  line-height: 1.53846153846;
}

form .legal-consent-container ul.inputs-list {
  padding: 0;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.15px;
  line-height: 1.41666666667;
}

form .legal-consent-container ul.inputs-list * {
  line-height: inherit;
  font-size: inherit;
}

form .legal-consent-container .field.hs-form-field {
  margin-bottom: 0;
}

.actions input.hs-button {
  margin-top: 32px;
}

form  .legal-consent-container .field.hs-form-field {
  margin-bottom: 0;
}

form .hs-form-booleancheckbox label {
  position: relative;
}

form .hs-form-booleancheckbox label>span:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 0px solid;
  border-width: 1px;
  border-color: white;
  border-radius: 3px;
  vertical-align: middle;
  float: left;
  cursor: pointer;
  margin-right: 13px;
}


form .hs-form-booleancheckbox label .hs-input[type=checkbox] {
  display: none;
}

form .legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 0;
  position: relative;
}

form .hs-form-booleancheckbox label span:after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 6px;
  left: 6px; 
  background-image:url(https://3104948.fs1.hubspotusercontent-na1.net/hubfs/3104948/raw_assets/public/HYAS-NB-Theme/images/check.png);
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

form .legal-consent-container .hs-form-booleancheckbox-display input:checked ~ span:after {
  opacity: 1;
}

form .hs-fieldtype-textarea.hs-input {
  min-height: 171px;
  display: block;
}

.hs-button {
  cursor: pointer;
}

.hs-button, button, form input[type=submit] {
  line-height: 1;
  font-weight: bold;
  text-transform: none;
}

form ul.inputs-list.multi-container li + li {
  margin-top: 5px;
}
/* Table */

table {
	border-collapse: collapse;
	margin-bottom: 1.4rem;
	overflow-wrap: break-word;
}

/* Table cells */

td,
th {
	vertical-align: top;
}

/* Table header */

thead th {
	vertical-align: bottom;
}


table td,table th {
	padding: 10px;
}
header.header .page-center {
	max-width: 1440px;
}

header.header {
	position: relative;
	z-index: 101;
}

.outerHeader .topHeader .page-center {
	position: relative;
}

.outerHeader .topHeader .page-center {   
	padding-top: 19px;
	padding-bottom: 15px;
}

.outerHeader .topHeader .page-center:after{
	content:'';
	border-bottom-width: 1px;
	border-bottom-style: solid;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	width: calc(100% - 40px);
	margin: 0 auto;
}

.outerHeader .cmcol.headAccountLink {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	align-items: center;
	text-transform: capitalize;
	font-weight:600;
}

.outerHeader .cmcol.headAccountLink a {
	gap: 5px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	text-decoration: none;
}

.outerHeader .cmcol.headAccountLink a span.material-symbols-outlined {
	color: #000;
	font-size: 20px;
}

.outerHeader .hdr_search-wrap .headSearch span.material-symbols-outlined {
	font-size: 20px;
	line-height: 1;
	font-weight: 600;
}

.outerHeader .hdr_search-wrap {
	padding: 0;
}

.outerHeader  .hdr_search-wrap .headSearch {
	display: flex;
	gap: 5px;
	font-size: 14px;
	line-height: 20px; 
	font-weight: 600;
	cursor: pointer;
}

.outerHeader .headSearch i.fa.fa-search {
	font-size: 20px;
}

#search-box {
	display: table;
	height: 100%;
	left: 0;
	position: absolute;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 999999999
}

#search-box .close {
	height: 32px;
	position: absolute;
	right: 20px;
	top: 20px;
	width: 32px
}

#search-box .close:hover {
	opacity: 1
}

#search-box .close:after,#search-box .close:before {
	background-color: #fff;
	content: " ";
	height: 33px;
	left: 15px;
	position: absolute;
	width: 2px
}

#search-box .close:before {
	transform: rotate(45deg)
}

#search-box .close:after {
	transform: rotate(-45deg)
}

#search-box .search-main {
	display: table-cell;
	vertical-align: middle
}

#search-box .search-main .search-inner {
	margin: 0 auto
}

#search-box .search-main form {
	position: relative
}

#search-box .search-main .search-info {
	color: #fff;
	display: block;
	float: right;
	margin-top: 4px;
	text-align: right
}

#search-box.open {
	animation: fadein .8s;
	background: rgba(0,0,0,.8);
	visibility: visible
}

#search-box {
	align-items: center;
	display: flex;
	justify-content: center
}

#search-box .search-main .search-inner {
	width: 100%
}

#search-box .search-main form {
	width: 100%;
	background: none;
}

#search-box .search-main input {
	background: none;
	border: 0;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-radius: 0;
	color: #fff;
	display: block;
	font-size: 40px;
	line-height: normal;
	outline: none;
	padding: 10px;
	width: 100%
}

.outerHeader .cmcol.headAccountLink a:before {
	content: 'account_circle';
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 20px;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-block;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	-webkit-font-feature-settings: 'liga';
	-webkit-font-smoothing: antialiased;
	color: inherit;
display:none;
}

.outerHeader .cmcol.headAccountLink a:before {
    display: none;
}

.login-wrpp {
    display: flex;
    gap: 10px;
}
 

#search-box .search-main {
	display: block
}

#search-box .page-center {
	width: 100%
}

#search-box .search-main button {
	-webkit-appearance: none;
	appearance: none;
	background: none;
	border: 0;
	cursor: pointer;
	font-size: 0;
	padding: 0 20px;
	outline: none;
}

#search-box .search-main button svg {
	height: auto;
	width: 33px;
	fill: #fff
}

#search-box .search-main .hs-search-field__bar {
	background: none;
	margin: 0;
	padding: 0;
	max-width: 100%;
	border:0 !important;
}

#search-box .search-main input::placeholder {
	color: #fff;
}

#search-box input[type=search]::-webkit-search-cancel-button {
	display: none
}

#search-box input[type=search]:-moz-search-cancel-button {
	display: none
}

#search-box input[type=search]::-ms-clear {
	display: none
}

#search-box .hs-search-field__suggestions .results-for, 
#search-box .hs-search-field__suggestions a {
	padding: 10px
}

#search-box .search-main form {
	max-width: 100%
}

@keyframes fadein {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}


.outerHeader .btmHeader .flex_row {
	margin: 0;
	justify-content: space-between;
}

.outerHeader .btmHeader .flex_row .col {
	padding: 0;
}
.outerHeader .hdMenu .custom-menu-primary .hs-menu-wrapper>ul>li>a {
	letter-spacing: normal;
	text-transform: capitalize;
}
header .custom-menu-primary .hs-menu-wrapper>ul{
	gap:0;
}

.btmHeader {
	transition: 0.3s all ease;
}

.outerHeader.lp {
	padding-top: 35.6px;
}

.outerHeader .hdBtn .hs-button {
	font-size: 15px;
	border-radius: 23px;
	padding: 12px 30px 14px 30px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: capitalize;
} 






@media(min-width:992px){ 
	.hdMenu .close-icon{
		display:none;
	}
	.hdMenu {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		gap: 50px;
	}
	.custom-menu-primary ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.custom-menu-primary ul ul {
		position: absolute;
		top: 100%;
		left: 0;
		transition: 0.3s all ease;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		z-index:99;
	}
	.custom-menu-primary ul ul ul {
		top: 0;
		left: 100%;
	}
	.custom-menu-primary li:hover > ul {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.custom-menu-primary li {
		position: relative;
	}
	.custom-menu-primary ul ul {
		padding: 10px;
		border-radius: 4px;
	}
	.custom-menu-primary .hs-menu-wrapper>ul>li {
		display: block;
	}
	.custom-menu-primary .hs-menu-depth-1 > ul:before {
		content: '';
		display: block;
		position: absolute;
		top: -10px;
		left: 0;
		right: 0;
		height: 10px;
	}
	.custom-menu-primary .hs-menu-depth-1 > ul {
		top: 100%;
		cursor: pointer;
	}
	.custom-menu-primary .hs-menu-wrapper>ul>li>a {
		position: relative;
	}
	.custom-menu-primary .hs-menu-wrapper>ul>li>a:after {
		width: 0;
		height: 2px;
		position: absolute;
		top: calc(100% + 2px);
		content: '';
		display: block; 
		transition: 0.3s all ease;
	}
	.custom-menu-primary .hs-menu-wrapper>ul>li:hover>a:after {
		width: 100%;
	}
	.custom-menu-primary .hs-menu-wrapper > ul ul li a {
		padding: 10px;
		display: block;
		white-space: nowrap;
		line-height: 1;  
	}
	.custom-menu-primary .hs-menu-wrapper > ul ul {
		border-radius: 10px;
		border: 1px solid #e1e2e4;
		padding: 0;
		max-width: 300px;
		overflow: hidden;
	}
	.custom-menu-primary .hs-menu-wrapper>ul ul li a {
		text-decoration: none;
	}

	.custom-menu-primary .hs-menu-wrapper>ul ul li a { 
		display: block;
		padding: 16px 25px;
		text-decoration: none;
		white-space: normal;
		line-height: 1.6; 
		transition: 0.3s all ease;
	}

	.custom-menu-primary .hs-menu-wrapper>ul ul {
		width: 290px;
		max-width: 290px;
		border-bottom-width: 0;
	}

	.custom-menu-primary .hs-menu-wrapper>ul ul li a[target="_blank"] {
		position: relative;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.custom-menu-primary .hs-menu-wrapper>ul ul li a[target="_blank"]:after {
		content: '';
		display: inline-block;
		font-family: Material Symbols Outlined;
		font-size: inherit;
		font-style: normal;
		font-weight: 400;
		letter-spacing: normal;
		line-height: 1;
		text-transform: none;
		white-space: nowrap;
		word-wrap: normal;
		direction: ltr;
		-webkit-font-feature-settings: "liga";
		-webkit-font-smoothing: antialiased;
		color: inherit;
    
    min-width: 20px;
    min-height: 20px;
	}
}


.custom-menu-primary .hs-menu-wrapper > ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.custom-menu-primary .hs-menu-wrapper > ul > li > a { 
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: .2px;
	text-decoration:none;
}
.custom-menu-primary .hs-menu-wrapper>ul>li>a {
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.custom-menu-primary .hs-menu-wrapper ul li a{
	display: block;
}

.btmHeader .flex_row {
	align-items: center;
}

.hdBtn .hs-button {
	margin: 0;
	padding: 10px 30px;
	line-height: normal;
}

.custom_logo a,
.custom_logo img {
	display: block;
}

.mobile-trigger{
	display:none;	
}

.outerHeader .btmHeader {
	padding: 35px 0;
} 

@media(max-width:1200px){
	.custom-menu-primary .hs-menu-wrapper > ul {
		gap: 20px;
	}
	header .hdMenu{
		gap:0;
	}
	.custom-menu-primary .hs-menu-wrapper>ul>li>a {
		padding-left: 20px;
		padding-right: 20px;
	}
}


@media(max-width: 991px) {

	.custom-menu-primary .hs-menu-wrapper>ul>li>a {
		padding-left: 0px;
		padding-right: 0px;
	}

	.hdMenu .close-icon {
		font-size: 30px;
		line-height: 1;
		position: absolute;
		right: 0;
		top: 0;
		padding: 20px;
		color: #fff;
    cursor:pointer;
	}
	.hdMenu .close-icon i.fa.fa-times {
		cursor: pointer;
	}
	.mobile-trigger {
		cursor:pointer;
		display: inline-block!important;
		font-weight: 400;
		height: auto;
		float:right;
	} 
	.mobile-trigger i {
		display: inline;
		position: relative;
		top: -4px;
	} 
	.mobile-trigger i:after,
	.mobile-trigger i:before {
		content: "";
		position: absolute;
	} 
	.mobile-trigger i,
	.mobile-trigger i:after,
	.mobile-trigger i:before {
		-webkit-border-radius: 1px;
		-moz-border-radius: 1px;
		border-radius: 1px;
		display: inline-block;
		height: 2px;
		width: 22px;
	} 
	.mobile-trigger i:before {
		top: -6px;
	} 
	.mobile-trigger i:after {
		top: 6px;
	} 
	.child-trigger { 
		cursor: pointer;
		display: block !important;
		height: 50px !important;
		padding: 0 !important;
		position: absolute;
		right: 0;
		top: 0;
		width: 39px !important;
	} 
	.child-trigger:hover {
		text-decoration: none;
	} 
	.child-trigger i {
		display: block;
		margin: 0 auto!important;
		position: relative;
		top: 50%;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	} 
	.child-trigger i:after {
		content: "";
		position: absolute;
	} 
	.child-trigger i,
	.child-trigger i:after {
		height: 2px;
		width: 15px;
	} 
	.child-trigger i:after {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}  
	.child-open>.child-trigger i:after {
		-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	} 
	.child-trigger {
		width: 100% !important;
	}
	.child-trigger i {
		float: right;
	}
	.hdMenu {
		bottom: 0;
		height: 100%;
		left: -100%;
		overflow-y: auto!important;
		padding: 30px;
		position: fixed;
		top: auto;
		transition: left .3s ease-in-out;
		width: 300px;
		z-index:99;
	} 
	.hdMenu {
		padding-top: 80px;
	}
	.custom-menu-primary .hs-menu-wrapper>ul,.hdMenu {
		display: block;
	} 
	.mobile-open .hdMenu {
		left: 0;
		width:100%;
	} 
	.custom-menu-primary .hs-menu-wrapper ul ul li a {
		padding: 10px;
	} 
	.mobile-trigger i,
	.mobile-trigger i:after,
	.mobile-trigger i:before {
		transition: all .3s ease;
	} 
	.custom-menu-primary ul ul {
		display: none;
	} 
	.mobile-open {
		overflow: hidden;
	} 
	.custom-menu-primary ul .child-open>ul {
		display: block;
	} 

	.hdMenu .custom-menu-primary ul li {
		position: relative;
	}

	.hdMenu .custom-menu-primary ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.hdMenu .custom-menu-primary ul li {
		padding:  0 0;
	}

	.hdBtn {
		margin-top: 20px;
	}

	.custom-menu-primary .hs-menu-wrapper > ul ul {
		background: none !important;
	}

	.custom-menu-primary .hs-menu-wrapper > ul ul li a { 
		padding: 0;
		text-decoration:none;
		white-space: normal;
	}

	.custom-menu-primary .hs-menu-wrapper > ul ul li {
		margin-left: 15px;
		padding-bottom: 10px;
	}

	.custom-menu-primary .hs-menu-wrapper > ul ul li:last-child {
		padding-bottom: 0;
	}

	.outerHeader.lp .mobile-trigger {
		width: 22px;
	}

	.outerHeader .btmHeader {
		padding: 20px 0;
	}
}

@media(max-width:767px){
	.hdLeft,
	.hdRight {
		width: auto !important;
	}

	.btmHeader .flex_row {
		justify-content: space-between;
		flex-wrap: nowrap;
	}

	.hdMenu {
		width: 80%;
	}
}

.custom_logo.dark_logo {
	display: none;
}

.custom_logo.light_logo {
	display: block;
}

.dark_header .custom_logo.dark_logo {
	display: block;
}

.dark_header .custom_logo.light_logo {
	display: none;
}

.lp .dark_header .topHeader {
	min-height: 35.5px;
}

.lp .topHeader {
	min-height: 36px;
}

body.light_header:not(.scrollHeader) .lp .btmHeader {
	background: transparent;
}


body.light_header:not(.scrollHeader) .lp .topHeader {
	background: transparent;
}

.light_header .outerHeader.lp {
	min-height: 0 !important;
	padding: 0;
}

.outerHeader.lp_header .topHeader {
	min-height: 58px;
	border: 0;
}

.header_inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

.scrollHeader .header_inner .btmHeader {
  position: fixed;
  top: 0;
}

.lp_header .header_inner {
  position: absolute;
}

.header .row-fluid [class*=span],
.footer .row-fluid [class*=span] {
	min-height: auto;
}

body:not(.noBanner) .outerHeader{
	min-height:0 !important;
}

.outerHeader {
    min-height: 174px;
}

@media(max-width:991px){
	.outerHeader {
    min-height: 13px;
}
}
footer.footer{
	position:relative;
	z-index:99;
	padding-bottom:0;
}
footer .bottomInnerWrap {
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	row-gap: 20px;
}
footer .copyright-menu {
	display: flex;
	flex-wrap:wrap;
	gap: 20px;
	align-items: center;
}
footer .bottomInnerWrap .privacy_menu .hs-menu-wrapper ul li a {
	margin-bottom: 0;
	font-size: 0.75em;;
	font-weight: 500;
	display: block;
}
footer .bottomInnerWrap .privacy_menu .hs-menu-wrapper ul li,
footer .topInnerWrap nav.nav .hs-menu-wrapper ul li{
	line-height:1;
}
footer .bottomInnerWrap .privacy_menu .hs-menu-wrapper>ul {
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}
footer .topFooter {
	padding-top: 90px;
	padding-bottom: 49px;
}

footer .page-center {
  max-width: 1440px;
}

footer .bottomFooter {
	padding-top: 49px;
	padding-bottom: 95px;
}
footer.footer svg path {
	fill: currentColor;
}
footer.footer .copyright,
footer.footer .addressDetail{
	font-size: 0.75em;
	font-weight:500;
	display: flex;
	flex-wrap:wrap;
	align-items: center;
}
footer .topInnerWrap {
	display: flex;
	flex-wrap:wrap;
	row-gap:60px;
	justify-content: space-between;
}
footer .topInnerWrap nav.nav {
	display: flex;
	flex-wrap:wrap;
}
footer .topInnerWrap nav.nav .hs-menu-wrapper >ul >li >a {
	margin-bottom: 23px;
	display:block;
	font-size: 0.9375em;
	font-weight: 700;
	text-transform: capitalize;
	cursor: text;
}
footer .topInnerWrap nav.nav .hs-menu-wrapper ul ul li a{ 
	display:block; 
	font-size: 12px;
  line-height: 1.25;
	font-weight: 500;
  max-width: 250px;
}
footer .topInnerWrap nav.nav .hs-menu-wrapper >ul >li >a:hover{
	text-decoration:none;
}
footer .topInnerWrap nav.nav .hs-menu-wrapper ul ul {
	row-gap: 24px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 0;
	list-style: none;
}
footer .topInnerWrap nav.nav .hs-menu-wrapper >ul {
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px;
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}
footer .topInnerWrap nav.nav >div {
	width: 100%;
}
footer .privacy_menu {
	display: flex;
	flex-wrap: wrap;
}
footer .logoAndSocial {
	display: flex;
	flex-wrap: wrap;
	gap: 21px;
	flex-direction: column;
	padding-right: 60px;
}
footer .logoWrap,
footer .socialShare {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
footer .logoWrap a{
	display:block;
}
footer.footer img {
	vertical-align: middle;
}
footer.lpFooter .bottomFooter {
	padding-top: 43px;
	padding-bottom: 40px;
}
.footer.lpFooter .socialLinks ul {
	column-gap: 12px;
}
footer.Footer .socialShare{
	justify-content: flex-start;
}


@media(max-width:1100px){
	footer .copyright-menu {
		flex-direction: column;
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul {
		column-gap: 20px;
	}
	footer .topInnerWrap,
	footer .logoAndSocial{
		flex-direction: column;
	}
	footer .topInnerWrap nav.nav {
		width: 100%;
	}
	footer .socialShare {
		justify-content: flex-start !important;
	}
	footer.footer .copyright {
		width: 100%;
	}
	footer .privacy_menu {
		width: 100%;
	}
}


@media(max-width:991px){
	footer .bottomInnerWrap {
		flex-direction: column;
	}
	footer .copyright-menu,
	footer .bottomInnerWrap .imageWrap {
		width: 100%;
	}
	footer .copyright-menu {
		order: 2;
	}
	footer .bottomInnerWrap .imageWrap {
		order: 1;
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul >li {
		width: calc(50% - 10px);
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul, 
	footer .topInnerWrap,footer .bottomInnerWrap {
		row-gap: 50px;
	}
	footer .topFooter {
		padding-bottom: 15px;
		padding-top: 70px;
	}
	footer .bottomFooter {
		padding-top: 15px;
		padding-bottom: 70px;
	}
	footer .privacy_menu {
		margin-right: 0;
	}
	footer .copyright-menu {
		row-gap: 50px;
	}
	footer.lpFooter .socialShare,
	footer.footer .addressDetail, 
	footer.footer .copyright{
		width:100%;
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul>li>a{
		margin-bottom:20px;
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper ul ul {
		row-gap: 20px;
	}
	footer .bottomInnerWrap {
		row-gap: 10px;
	}
	footer .copyright-menu {
		row-gap: 15px;
	}
	footer .topFooter {
		padding-bottom: 30px;
	}
	footer .logoAndSocial {
		padding-right: 0;
		gap: 30px;
	}
}

@media(max-width:767px){
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul {
		flex-direction: column;
		justify-content: center;
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul>li {
		width: auto;
		text-align: center;
	}
	footer .topInnerWrap nav.nav .hs-menu-wrapper>ul>li>a,
	footer .topInnerWrap nav.nav .hs-menu-wrapper ul ul li a {
		display: inline-block;
	}
  footer .topInnerWrap nav.nav .hs-menu-wrapper ul ul li a{ 
    max-width: 100%
  }
	footer .topInnerWrap nav.nav .hs-menu-wrapper ul ul,
	footer.footer .addressDetail{
		text-align: center;
	}
	footer .copyright-menu {
		justify-content: center;
		text-align: center;
	}
	footer .bottomInnerWrap .imageWrap,
	footer .privacy_menu,
	footer .logoWrap, footer .socialShare,
	footer .socialShare,
	footer.footer .addressDetail, 
	footer.footer .bottomInnerWrap .copyright,
	footer .bottomInnerWrap .privacy_menu .hs-menu-wrapper>ul{
		justify-content: center!important;
	}
}

footer.lp_footer .bottomFooter {
    padding: 43px 0;
}
 

/************************************************************************************/
/************************************ DND Section Css *******************************/
/************************************************************************************/

:focus{
  outline:none;
} 

.body-wrapper {
  /* 	max-width: 1920px; */
  margin: 0 auto;
}

.dnd-section[class*="force-full-width-section"] {
  padding:0;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid{ 
  padding-left:0;
  padding-right:0;
  max-width:100%;
}

.dnd-section,
.dnd_padd{
  position:relative;
}

.dnd_padd.noSpace {
  padding: 0 !important;
  margin: 0 !important;
  position: static;
}

.dnd_padd.noSpace .dnd_padd:after,
.dnd_padd.noSpace .dnd_padd:before {
  display: none;
}



/************************************************************************************/
/*************************************** Grid Css ***********************************/
/************************************************************************************/

.flex_row{
  margin:0 -20px;
  display:flex;
  flex-wrap:wrap;
}

.col {
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px){
  .row-fluid .span20 {
    width: 20%;
  }
}

/************************************************************************************/
/********************************** Global Buttons Css ******************************/
/************************************************************************************/

.arrowBox {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.arrow-btn {
  display: inline;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;  
  text-transform: none;
  font-weight: 700;
  letter-spacing: 1px;
}

.arrowBox .material-symbols-outlined {
  font-size: 18px;

}

.arrow-btn .arrowBox {
  color: inherit;
  transform: none;
  transition: 0.3s all ease;
  transform: translate(0px, 3px);
}

.arrow-btn:hover .arrowBox,
.arrow-btn:focus .arrowBox, 
.arrow-btn:active .arrowBox {
  transform: translate(10px, 3px);
}

.btn_row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items:center;
}

.btn_row .hs-button, 
.btn_row .hs-sec-btn,
.btn_row .arrow-btn {
  margin: 0;
}

.arrow-btn.small .arrowBox {
  width: 26px;
  height: 26px;
}


@media(max-width:767px){ 
  .arrow-btn .arrowBox {
    width: 26px;
    height: 26px;
  }
}




/************************************************************************************/
/********************************** Intro Section ***********************************/
/************************************************************************************/

.gradImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  mix-blend-mode: soft-light;
  opacity: .15;
}

.gradImg + * {
  position: relative;
  z-index: 99;
}

.body2{
  line-height: 1.2;
}

.capText{
  text-transform:uppercase; 
  font-weight: bold;
  letter-spacing: 0; 
  line-height: 1.43;
  margin-bottom: 20px;
} 

.introSection {
  text-align: center; 
  max-width:100%;
  margin: 0 auto 40px;
}

.introSection .btn_row {
  justify-content: center;
  margin-top: 40px;
}

.globalDivider {
  width: 200px;
  margin: 20px auto;
  height: 2px;
}

.introCont {
  max-width: 650px;
  width:100%;
  margin: 0 auto;
}

.introTitle {
  margin-bottom: 15px;
}

.dnd_padd.large_container {
  border-radius: 20px; 
  box-shadow:none;
  overflow:hidden;
}


@media(max-width:1500px){
  .dnd_padd.large_container {
    border-radius:0;
    box-shadow:none;
  }
}

.body1{
  font-weight:bold;
  letter-spacing: 0.5px;
}

blockquote {
  border-left-style: solid;
  border-left-width: 5px;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 0 5px 20px;
}

#hs-eu-cookie-confirmation #hs-eu-confirmation-button-group, #hs-eu-cookie-confirmation #hs-eu-opt-in-buttons{
  display: flex;
  justify-content: center;
  width: 100%;
}

div[data-hs-anchor="true"]{
  height: 200px; /* Height of your header */
  margin-top: -200px; /* Negative margin of the same height */
}

.playIcon svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 9;
}

.cardVideoPoster .playIcon {
  opacity: 1;
}

.arrow-btn .arrowBox svg {
  display: block;
}