*, *: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;
}
@font-face {
  font-family: 'Takota';
  src: url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/fonts/Takota.eot) format('embedded-opentype'),
    url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/fonts/Takota.woff2) format('woff2'),
    url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/fonts/Takota.woff) format('woff'),
    url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/fonts/Takota.ttf) format('truetype'),
    url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/fonts/Takota.svg) format('svg');
}


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%;
  vertical-align: middle;
}


h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span{
  font-family: 'Takota';
  position: relative;
  z-index: 1;
  white-space: nowrap;
}


h1 span:after,
h2 span:after,
h3 span:after,
h4 span:after,
h5 span:after,
h6 span:after{
  content:"";
  background-image: url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/images/spanBorder.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  left: -10px;
  position: absolute;
  right: 0;
  width: calc(100% + 20px);
  z-index: -1;
}

h1 span:after, h2 span:after, h3 span:after { 
  bottom: 16%;
  height: 14px;
  transform: rotate(-1deg);
}

h4 span:after {
  bottom: 8px;
}

h5 span:after, h6 span:after {
  bottom: 5px;
  background-size: contain;
}


h1 span:after, h2 span:after, h3 span:after, h4 span:after, h5 span:after, h6 span:after {
  border-radius: 0px 20px 30px 40px;
  overflow: hidden;
}

h1 span + span,
h2 span + span,
h3 span + span,
h4 span + span,
h5 span + span,
h6 span + span{
  margin-left: 30px;
}

@media (max-width: 767px) {
  h3 span:after {
    height: 8px;
    left: -5px;
    width: calc(100% + 10px);
  }
}
button,
.hs-button,
form input[type="submit"],
.hs-sec-btn,
.arrow-btn{ 
	display:inline-block;
	text-decoration:none; 
	margin:20px 0;
	outline:none; 
	font-weight: 500;
	letter-spacing: normal;
	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: 40px 50px;
  
  max-width:767px;
  width:100%;
  margin-bottom:30px;
}

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

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

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

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

@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:40px;
}

.hs-form .field > label,
.hs-form-field > label {  
  display: inline-block;
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:4px; 
  line-height: 1.4;
  letter-spacing: 1px;
}

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

.hs-input,
input#hs-pwd-widget-password {
  box-sizing: border-box;
  display: block;
  height: 50px;
  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: ;
}

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

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

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

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

/* 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 .hs-form-booleancheckbox{
  color: #fff;
}
.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 auto;
}

.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: 10px;
}

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

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

form .legal-consent-container {
  opacity: 0.8;
}

@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: 31px;
}

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: rgb(255 255 255 / 45%);
  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;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* pointer-events: none; */
  opacity: 0;
  color: #fff;
}

form .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: 600;
  text-transform: none;
}

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

form select.hs-input {
  background-image: url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/raw_assets/public/Steelhead_May2024/images/dropdownArrow1.svg);
  -webkit-appearance: none;
  background-position: 97%;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right:40px
}
/* 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 {
	position: relative;
	z-index: 101;
}



.outerHeader .mainHeader .flex_row {
	margin: 0;
	align-items: center;
}

.outerHeader .mainHeader .flex_row .col {
	padding: 0;
}

header .custom-menu-primary .hs-menu-wrapper>ul{
	gap:0;
}

.mainHeader {
	transition: 0.3s all ease;
}

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

.outerHeader .hdBtn .hs-button {
	margin:0;
} 


.outerHeader .mainHeader .hdLeft {
	width: 230px;
}

.outerHeader .mainHeader .hdRight {
	width: calc(100% - 230px);
}

.outerHeader.lp_header .mainHeader {
	padding: 25px 0 23px;
}

.outerHeader.lp_header.center{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
}

.outerHeader.lp_header.center .custom_logo{
	filter: brightness(1) invert(1);
}

.scrollHeader .outerHeader.lp_header.center .mainHeader{
	background: white;
}

.scrollHeader .outerHeader.lp_header.center .custom_logo{
	filter: unset;
}

.outerHeader.lp_header.center .mainHeader{
	background: transparent;
}

.lp_header.center .header .header_inner .page-center .flex_row{
	justify-content: center;
}

.lp_header.center .header .header_inner .page-center .flex_row .hdRight{
	display: none;
}

.outerHeader {
    min-height: 83px;
}

@media(min-width:992px){ 

	.close-icon {
		display: none;
	}

	.outerHeader .mainHeader .hdRight .hdMenu {
		display: flex;
		justify-content: space-between;
		padding-left: 60px;
	}

}

.mobile-trigger{
	display:none;	
}

.outerHeader .mainHeader {
	padding: 10px 0 11px;
} 

@media(max-width:1200px){

	header .hdMenu{
		gap:0;
	}
}


@media(max-width: 991px) {

	.hdMenu .close-icon {
		font-size: 30px;
		line-height: 1;
		position: absolute;
		right: 0;
		top: 0;
		padding: 20px;
		color: #fff;
	}
	.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: 45px !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%;
	} 

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


	.hdBtn {
		margin-top: 20px;
	}

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

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

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

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

	.hdMenu {
		width: 80%;
	}
}


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

.header .row-fluid [class*=span],
.footer .row-fluid [class*=span] {
	min-height: auto;
}
footer.footer{
  position:relative;
  z-index:99;
  padding: 128px 0 112px;
}
footer.footer .page-center {
  max-width: 1328px;
}

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

footer.footer {
  padding: 128px 0 112px;
}

footer.footer .bottomInnerWrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer.footer .bottomInnerWrap .copyright-menu {
  display: flex;
  font-size: 12px;
  gap: 20px;
  flex-wrap: wrap;
  line-height:1.4166666666666667;
}

footer.footer .topFooter {
  padding-bottom: 112px;
}

footer.footer .topFooter .topInnerWrap {
  display: flex;
  flex-wrap: wrap;
}

footer.footer .topFooter .topInnerWrap .nav {
  width: 77.2%;
}

footer.footer .topFooter .topInnerWrap .logoWrap {
  width: 22.8%;
  display: flex;
  gap: 20px;
  .widget-type-logo {
    width: 100px;
    height: 104px;
    display: block;
  }
  .secondary-image {
    display: block;
    object-fit: contain;
    object-position: top;
    width: 30%;
    min-width: 75px;
    max-width: 80px;
  }
}

footer.footer .topFooter .nav {
}

footer.footer .topFooter .nav .hs-menu-wrapper > ul {
  display: flex;
  gap: 71px;
}

footer.footer .topFooter .nav .hs-menu-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer.footer .topFooter .nav .hs-menu-wrapper > ul > li > a {
  margin-bottom: 20px;
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  line-height:1.3888888888888888;
}

footer.footer .topFooter .nav .hs-menu-wrapper > ul > li > ul li a {
  font-weight: 500;
  white-space: nowrap;
  line-height:1.4;
  display: block;
}
footer.footer .topFooter .nav .hs-menu-wrapper>ul>li>ul li {
  margin-bottom: 17px;
}

footer.footer .topFooter .nav .hs-menu-wrapper>ul>li>ul li:last-child {
  margin-bottom: 0;
}



footer.footer .bottomInnerWrap {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer.footer .bottomInnerWrap .copyright-menu {
  display: flex;
  font-size: 12px;
  gap: 20px;
  flex-wrap: wrap;
}


footer.footer .privacy_link  p a {
  color: inherit;
}

.footerSocial ul li svg {
  fill: rgb(0,0,0,.64);
}

.footerSocial ul li a:hover svg {
  fill: #000000;
}

footer.footer.lp_footer .topFooter {
  padding-bottom: 40px;
}

footer.footer.lp_footer {
  padding: 48px 0 61px;
}

footer.footer .topFooter .nav .hs-menu-wrapper>ul>li a:hover {
  text-decoration-color: #ff0069;
}



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

footer.lp_footer.center .topFooter .logoWrap{
  width: 100%;
}

footer.lp_footer.center .page-center, footer.lp_footer.center  .bottomInnerWrap{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

@media(max-width:1440px){
  footer.footer .topFooter .nav .hs-menu-wrapper>ul {
    gap: 30px;
    justify-content: space-between;
  }
}

@media(max-width:1200px){
  footer.footer .topFooter .nav .hs-menu-wrapper>ul {
    gap: 10px;
  }
  footer.footer .topFooter .topInnerWrap .logoWrap {
    width: 15%;
  }

  footer.footer .topFooter .topInnerWrap .nav {
    width: 85%;
  }

  footer.footer {
    padding: 80px 0;
  }

  footer.footer .bottomInnerWrap .copyright-menu {
    width: 100%;
    /* justify-content: center; */
    text-align: center;
  }

  footer.footer .bottomInnerWrap .socialShare {
    width: 100%;
  }

  footer.footer .bottomInnerWrap .footerSocial ul {
    justify-content: flex-start;
  }

  footer.footer .topFooter {
    padding-bottom: 80px;
  }
  footer.footer .bottomInnerWrap {
    /* justify-content: center; */
  }

  footer.footer.lp_footer .topFooter {
    text-align: center;
  }

  footer.footer.lp_footer .topFooter .topInnerWrap .logoWrap {
    width: 100%;
  }
}


@media(max-width:1024px){

  footer.footer .topFooter .topInnerWrap .logoWrap {
    width: 100%;
  }

  footer.footer .topFooter .topInnerWrap {
    row-gap: 30px;
  }

  footer.footer .topFooter .topInnerWrap .nav {
    width: 100%;
  }

  footer.footer .topFooter .nav .hs-menu-wrapper>ul>li {
    padding:0 10px;
  }

  footer.footer .topFooter .nav .hs-menu-wrapper>ul {
    flex-wrap: wrap;
    gap: 30px 0;
    justify-content: start;
    margin:0 -10px;
  }

}

@media(max-width:1024px) and (min-width:768px){
  footer.footer .topFooter .nav .hs-menu-wrapper>ul>li {
    width: 33.33%;
  }
}

@media(max-width:767px){


  footer.footer,
  footer.footer.lp_footer{
    padding: 50px 0;
  }

  footer.footer .topFooter {
    padding-bottom: 50px;
  }

  /* footer.footer .topFooter .topInnerWrap {
    flex-direction: column-reverse;
  } */

}

@media(max-width:767px) and (min-width:480px){
  footer.footer .topFooter .nav .hs-menu-wrapper>ul>li {
    width: 50%;
  }
}

@media(max-width:479px){
  footer.footer .topFooter .nav .hs-menu-wrapper>ul>li {
    width: 100%;
  }
  footer.footer .topFooter,
  footer.footer.lp_footer .topFooter{
    padding-bottom: 30px;
  }

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


h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-weight: normal;
}
/************************************************************************************/
/*************************************** 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: 22px;
  height: 22px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

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

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



.arrow-btn .arrowBox {
  color: inherit;
  transform: none;
  transition: 0.3s all ease;
}

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

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


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


.bg_el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg_overlay.bg_el{
  z-index: 2;
}

.bg_el ~ .container {
  position: relative;
  z-index: 3;
}

.bg_image.bg_el {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/************************************************************************************/
/********************************** 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{
  font-weight: 500;
  letter-spacing: 2px; 
  line-height: 1.0714285714285714;
  margin-bottom: 10px;
  text-transform: uppercase;
} 

.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 {
  width: 650px;
  max-width:100%;
  margin: 0 auto;
}

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

.introTitle {
  margin-bottom: 15px;
}

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

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


blockquote {
  margin: 0;
  padding: 10px 20px;
  position: relative;
}

blockquote:before {
  content: "\f10d";
  top: -8px;
  padding-right: 5px;
}

blockquote:before,
blockquote:after {
  font-family: "Font Awesome 6 Pro";
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  display: inline-block;
  position: relative;
}

blockquote:after {
  content: "\f10e";
  bottom: -8px;
  padding-left: 5px;
}

.home-banner .bg_image,
.bottom_pane .bg_image {
  filter: saturate(0);
  transition: 0.2s ease;
  @media (max-width: 1024px) {
    filter: saturate(1);
  }
}

.home-banner:hover .bg_image,
.bottom_pane:hover .bg_image {
  filter: saturate(1);
}

/* splider slider arrows  */

.splide button.splide__arrow {
  border-radius: 100%;
  font-size: 16px;
  height: 40px;
  margin: 0;
  width: 40px;
  outline: none !important;
}

.splide button.splide__arrow svg {
  height: auto;
  width: 1em;
}

@media(max-width: 767px){
  .splide button.splide__arrow {
    font-size: 13px;
    height: 30px;
    width: 30px;
  }
}

.arrow-btn:before {
  content: "";
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -2px;
  background: #FF0069;
  transition: 0.2s all ease-in;
}

.arrow-btn {
  position: relative;
}

.arrow-btn:hover:before {
  width: calc(100% - 27px);
}

.fancybox__nav .f-button.is-prev, 
.fancybox__nav .f-button.is-next {
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.fancybox__nav .f-button.is-next svg,
.fancybox__nav .f-button.is-prev svg {
  stroke: none;
  fill: #fff;
  text-shadow: none;
  filter: none;
  width: 1em;
  height: 1em;
}

.fancybox__nav .f-button.is-prev svg {
  transform: scaleX(-1);
}

@media(max-width: 767px){
  .fancybox__nav .f-button.is-next, 
  .fancybox__nav .f-button.is-prev {
    height: 40px;
    width: 40px;
    font-size: 17px;
  }
}


.bg_image.bg_el,
img{
  transition: 0.3s all ease;
}


@media(max-width: 767px){
  .contentWithVideo .cardVideoPoster .playIcon svg {
    height: 30px;
    width: 30px;
    margin-left: 9px;
  }
}

/*All The New Overrides */
body.show-demo {
  --font-1: natom-pro, sans-serif;
  --font-2: "Covered By Your Grace", cursive;
  --raspberry-pink: #FF0069;
  max-width: 100%;
}
body.show-demo .body-wrapper {
  max-width: 100%;
}
@media(max-width: 767px) {
  body.show-demo .outerHeader .mainHeader .hdLeft .custom_logo {
    max-width: 230px;
  }
}
body.show-demo.hs-web-interactives-top-banner-open .header_inner {
  top: 88px;
}
body.show-demo h1,
body.show-demo h2,
body.show-demo h3,
body.show-demo h4,
body.show-demo h5,
body.show-demo h6 {
  font-family: var(--font-1);
  letter-spacing: 0;
}

body.show-demo h1 {
  font-size: 65px;
  line-height: 1.2;
}
body.show-demo h2 {
  font-size: 55px;
  line-height: 1.2;
}
body.show-demo h3 {
  font-size: 35px;
  line-height: 1.2;
  margin-top: 15px;
}
body.show-demo h4 {
  font-size: 25px;
  line-height: 1.2;
  margin-top: 15px;
}
body.show-demo h5 {
  font-weight: 700;
}

body.show-demo h1 span,
body.show-demo h2 span,
body.show-demo h3 span,
body.show-demo h4 span,
body.show-demo h5 span,
body.show-demo h6 span {
  font-family: var(--font-2);
  color: var(--raspberry-pink) !important;
  letter-spacing: 0;
  font-kerning: none;
  word-spacing: -0.2em;
}

body.show-demo h1 span {
  font-size: 85px;
  line-height: 75px;
}
body.show-demo h2 span {
  font-size: 70px;
  line-height: 1;
}
body.show-demo sup.global-tm {
  font-size: 13px;
  line-height: 0;
  vertical-align: super;
  position: relative;
  top: -2px;
  font-family: inherit;
}

body.show-demo h1 span:after,
body.show-demo h2 span:after,
body.show-demo h3 span:after,
body.show-demo h4 span:after,
body.show-demo h5 span:after,
body.show-demo h6 span:after {
  display: none;
}

body.show-demo .btmHeader, body.show-demo .outerHeader .mainHeader {
  background-color: #000000;
}
body.show-demo .hdrMegaMenu .hs-menu-wrapper>ul>li>a, body.show-demo .hdrMegaMenu .hs-menu-wrapper>ul>li>a:hover {
  color: #ffffff;
}
body.show-demo .hdrMegaMenu .hs-menu-wrapper>ul>li>a img, body.show-demo .hdrMegaMenu .hs-menu-wrapper>ul>li>a:hover img {
  filter: invert(28%) sepia(93%) saturate(7495%) hue-rotate(327deg) brightness(98%) contrast(115%);
}

body.show-demo .custom_logo img {
  filter: brightness(0) invert(1);
}
body.show-demo .home-banner .bg_image, body.show-demo .contentWithVideo .col_img_inner, body.show-demo .cardsWrapper .cardImg,
body.show-demo .contentWithVideo .cardVideoPosterin, body.show-demo .blogFeedWrapper .bIItmTitle, body.show-demo .banner.type2 .bnrColImg .bnrColImgin, body.show-demo .logoSlider .col img {
  filter: saturate(1);
}
body.show-demo .cardsWrapper .cardTitle h3 {
  font-size: 24px;
  line-height: 1;
}
body.show-demo .imageGallery .introSecInr {
  max-width: 900px;
}
body.show-demo .contentWithVideo .cmColText {
  padding: 69px 84px 83px 84px;
}
body.show-demo .contentWithVideo .cmColText.has-gradient {
  background:
  linear-gradient(90deg, rgba(255, 0, 105, 0) 55%, rgba(255, 0, 105, 0.8) 100%),
  linear-gradient(90deg, #242021 0%, #242021 100%);
  color: #ffffff;
}
body.show-demo .contentWithVideo .cmColText.has-gradient h2, body.show-demo .contentWithVideo .cmColText.has-gradient h3 {
  color: #ffffff;
}
body.show-demo .contentWithVideo .cmColText .introSection {
  max-width: 502px;
  margin: 0 0 40px;
}
body.show-demo .contentWithVideo.right_mod .cmColText .introSection {
  margin: 0 0 40px auto;
}
body.show-demo .cardsWrapper .col .shape-icon {
  background-color: var(--raspberry-pink);
}
body.show-demo .TabberWrapper .ctLeft {
  max-width: calc(50% - 45px);
  width: 100%;
  margin-right: 85px;
}
body.show-demo .TabberWrapper .ctRight {
  width: 100%;
  /*max-width: calc(50% - 45px);*/
  max-width: 500px;
}
body.show-demo .TabberWrapper .ctLeft .ctImg {
  box-shadow: 0px 0px 50px rgba(255, 0, 105, 0.3); 
}
body.show-demo .TabberWrapper .ctLeft .ctImg.has-padding {
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px;
  max-width: 500px;
}
body.show-demo .TabberWrapper .ctRight .introSection .introTitle h4 {
  font-size: 35px;
  line-height: 1.2;
}
body.show-demo .blogFeedWrapper .bIItmTitle {
  height: 223px;
  margin-bottom: 20px; 
  overflow: hidden;
}
body.show-demo .blogFeedWrapper .restitle {
  font-weight: bold;
}
body.show-demo .blogFeedWrapper .bg_image.bg_el.demo-image {
  mask-image: none;
}
body.show-demo .blogFeedWrapper .bg_image.bg_el.demo-image img {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  z-index: 100;
}
body.show-demo .home-banner .mobile-background-image {
  display: none;
}

body.show-demo .home-banner .white_color .btn_row .btn_item:first-child a {
  border-color: var(--raspberry-pink);
}
body.show-demo .contentWithVideo {
  /*max-width: 1340px;*/
  margin: 0 auto;
}
body.show-demo .contentWithVideo .cmColVd .mobile-tear {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }
.anchor-target {
  scroll-margin-top: 100px;
}
@media(max-width: 1024px) {
  body.show-demo .blogFeedWrapper .bIItmTitle {
    height: unset;
  }
  body.show-demo .TabberWrapper .ctRight {
    max-width: 100%;
  }
  body.show-demo .TabberWrapper .ctLeft .ctImg.has-padding {
    padding: 30px;
    height: auto;
    max-width: 100%;
  }
  
}
@media(max-width: 991px) {
  body.show-demo .mobile-trigger i, body.show-demo .mobile-trigger i:after, body.show-demo .mobile-trigger i:before {
    background: #ffffff;
  }
  body.show-demo  .home-banner .intro_outer_wrap {
  padding-right: 0;
}

body.show-demo .home-banner {
    padding-top: 0;
    padding-bottom: 0;
  }
  body.show-demo .home-banner .intro_outer_wrap.border-none {
   padding-top: 10px;
  }
  body.show-demo .home-banner .mobile-background-image {
    display: block;
  }
  body.show-demo .home-banner .bg_image.bg_el {
    display: none;
  }
  body.show-demo .home-banner .container {
    background-image: url(https://3958315.fs1.hubspotusercontent-na2.net/hubfs/3958315/long-form-content_assets/additional-assets/mobile-hero-bg-580.webp);
    background-repeat: repeat-y;
    background-position: right top;
    background-size: contain;
  }
  body.show-demo .home-banner .introTitle {
    margin-bottom: 5px;
  }
}
@media(max-width: 767px) {
  body.show-demo .TabberWrapper .ctLeft {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
    margin-top: 40px;
  }
  body.show-demo .TabberWrapper .ctRight {
    max-width: 100%;
  }
  body.show-demo .contentWithVideo {
    padding-bottom: 0;
  }

  body.show-demo .contentWithVideo .container>.flex_row {
    gap: 0;
  }
  body.show-demo .contentWithVideo.dnd_padd {
    padding-top: 0;
  }
  body.show-demo .contentWithVideo .container.full_width {
    padding: 0;
  }
  body.show-demo .TabberWrapper .tabDots ul.ctTabs {
    padding-left: 0;
    padding-right: 0;
  }
  body.show-demo .introSection .btn_row {
    gap: 20px;
  }
  body.show-demo .contentWithVideo .cmColVd .mobile-tear {
    display: block;

  }
  body.show-demo .banner .bnrColImg .bnrColImgin {
    background-size: cover !important;
  }

}
@media(max-width: 580px) {
  body.show-demo .contentWithVideo .cmColText {
    padding: 40px 20px;
  }
  
  body.show-demo h1 {
  font-size: 40px
}
body.show-demo h2 {
  font-size: 30px;
}
body.show-demo h3 {
  font-size: 25px;
}
body.show-demo h4 {
  font-size: 20px;
}
body.show-demo h1 span {
  font-size: 50px;
  line-height: 62px;
}
body.show-demo h2 span {
  font-size: 38px;
  line-height: 1;
}
body.show-demo .TabberWrapper .ctRight .introSection .introTitle h4 {
  font-size: 20px;
}
  body.show-demo .custom_logo img {
  max-width: 150px !important;
}
  
}

/*End All The New Overrides */