/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/


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

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

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

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

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

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

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

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

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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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-size: 1em; 
}

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

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/*==================================================
Dnd styling
====================================================*/

.dnd-section .dnd-column {
  padding: 0 1rem;
}

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

.dnd-section {
  padding:0px;
}

.dnd-section {
  position: relative;
  z-index: 1;
}

.dnd-section > .row-fluid {
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding:0 15px;
  width: auto;
	float:none;
}

.dnd-section .widget-type-cell {
  padding-left: 0px;
  padding-right: 0px;
}

body .container-fluid .dnd-section .force-full-width-section > .row-fluid{
  padding: 0px!important;
}

@media (max-width: 767px) {

  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }

}
/* Responsive grid */

.row-fluid {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid [class*='span'] {
    display: block;
    float: left;
    width: 100%;
    min-height: 1px;
    margin-left: 2.564102564%;
    -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.45299145300001%;
  }

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

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

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

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

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

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

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

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

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

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

/* Clearfix */

.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: 1139px) {
  .visible-tablet {
    display: inherit !important;
  }

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

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

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

.fancybox-container .fancybox-stage {
    max-width: 1000px;
    margin: 0 auto;
}

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

/*-----------------------------------------------------------------------------------
CSS INDEX
===================
01. Common 
02. Light Scheme colors styling
04. Typography Responsive Styling
05. Two Column to Six Column Adjust Styling
06. Theme Color Scheme Switcher
07. Footer styling
08. Border Sperator Module Styling
09. Cta Module Styling
10. Social Follow Styling And Subscrbe blog
12. 

-----------------------------------------------------------------------------------*/
/* These includes are optional, but helpful. */

/*=======  CSS DECLARATIONS =======*/





/*=======  COMMON CSS  =======*/

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
	line-break: strict;
	word-break: break-all;
}

html {
	font-size: ;
	overflow-x:hidden;
	scroll-behavior: smooth;
}

.header-grp.simple-header-sec{
  background-color: rgba(255, 255, 255, 1.0);
}

body {
	
	
	font-family: 'DM Sans', sans-serif;
	
	font-size: 14px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	
	
	
	
	
	
	
	
	
	
	text-decoration: none;
	margin: 0px;
	line-height: 23.8px;
	letter-spacing: 0px;
	overflow-x: hidden;
	
	font-smooth: antialiased;
	-webkit-font-smoothing: antialiased;	
	
	word-break: break-word;
	position:relative;
	border-radius:6px;
}

body .row-fluid .wrapper{
	max-width: 1110px;
	margin-left:auto!important;
	margin-right:auto!important;
	float: none;
	z-index:2;
	box-sizing:border-box;
	padding: 0px 15px;
}

.body-container-wrapper li {
	margin-left: 26px;
	margin-bottom: 0;
/* 	list-style-type: disc; */
}


@media(max-width: 767px) {
	.body-container-wrapper li {
		text-align: left;
	}
}


p {
	
	
	font-family: 'DM Sans', sans-serif;
	
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 22px;
	text-decoration: none;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 35.2px;
	letter-spacing: 0px;
}

img{
	height:auto;
}

/* Image alt text */

img {
	font-size: 0.583rem;
	word-break: normal;
}

/* Anchor Links */

a {
	
	
	font-size: 16px;
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	line-height: px;
	letter-spacing: px;
	
	text-transform: initial;
	
	cursor: pointer;
	margin-bottom:0;
}

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

h1 {
	
	font-family: Rajdhani;
	
	
	font-size: 80px;
	
	
	
	
	
	
	
	
	
	
	
	
	
	font-weight: 700;
	font-style: normal;
	
	
	
	
	
	
	line-height: 80px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	margin-bottom: 20px;
	text-decoration: none;
}

h2 {
	
	font-family: Rajdhani;
	
	
	font-size: 50px;
	
	
	
	
	
	
	
	
	
	
	
	
	
	font-weight: 700;
	font-style: normal;
	
	
	
	
	
	
	line-height: 50px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	margin-bottom:15px;
	text-decoration: none;
}

h3 {
	
	font-family: Rajdhani;
	
	
	font-size: 22px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 22px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	margin-bottom:15px;
	text-decoration: none;
}

h4 {
	
	font-family: Rajdhani;
	
	
	font-size: 18px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 18px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	margin-bottom:10px;
	text-decoration: none;
}

h5 {
	
	font-family: Rajdhani;
	
	
	font-size: 16px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 16px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	margin-bottom:15px;
	text-decoration: none;
}

h6 {
	
	font-family: Rajdhani;
	
	
	font-size: 14px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 14px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	margin-bottom:15px;
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6,p,a{
	margin-top:0;
	padding:0;
}

.h4_24 h4{
	
	font-family: Rajdhani;
	
	
	font-size: 24px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 34px;
	letter-spacing: -1px;
	
	text-transform: initial;
	
	text-decoration: none;
	margin-bottom:15px;
}

.h4_18 h4{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0;
}

.h5_dark h5{
	font-weight:700;
	color: #425b76;
}

strong {
	font-weight: 800;
}
h6.h6-16 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: normal;
	text-align: left;
}
code {
	vertical-align: bottom;
}

ul ul,
ol ul,
ul ol,
ol ol {
	margin: 0;
}

ul.no-list {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

/* Code blocks */

pre {
	overflow: auto;
}

svg {
	width: 20px;
	fill: #ffc72c;
}
.body-container-wrapper {
	background:#ffffff;
	overflow:hidden;
}
body a {  
	
	font-family: inherit;
	
	
	
	
	font-size: inherit;
	
	
	
	font-weight: inherit;
	font-style: inherit;
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
		
	letter-spacing: inherit;
	line-height: inherit;
	border-radius:  unset;
	padding: unset;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
	border:none;
	text-decoration:none;
	color: #115e67;
}


body a:hover {  
	color: #ffc72c;
	text-decoration:underline;
}
.body-container-wrapper ul{
	padding:0;
	text-decoration:none;
  list-style: none;
	margin:20px 0;
}

.body-container-wrapper ol li,
.body-container-wrapper ol{
	list-style: decimal;
}

ol li::marker{
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: center;
	color: #2CD8B1;
}

ol li{
	padding-left: 10px;
	margin-bottom:12px;
} 

.body-container-wrapper ol{
	margin:0;
	padding:0;
	text-decoration:none;
	margin-bottom:15px;    
}

.body-container-wrapper li{
	
	
	font-family: 'DM Sans', sans-serif;
	
	font-size: 22px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 26px;
	letter-spacing: 0px;
	text-transform: initial;
	text-decoration: none;
	position: relative;
/* 	list-style:none; */
	margin-bottom:0;
	margin-left:15px;
}

body .row-fluid form ul,
.no-list-style li ul{
	margin:0;
	padding:0;
}

script{
	visibility:hidden;
}
body .row-fluid form li,
.no-list-style li{
	margin:0;    
}

.check-mark li:before {
	position: absolute;
	top: 7px;
	left: -24px;
	content: '';
	width: 13px;
	height: 13px;
	background: url()no-repeat;
	background-position: center;
	background-size: cover;
} 

body .row-fluid form li:before,
.no-list-style li:before{
	display:none;
}

hr {
	background-color: #E2E2E2;
	border: none;
	height: 1px;
	width:100%;
	margin:0;
}

blockquote{
	margin:0;
	
	
	font-family: 'DM Sans', sans-serif;
	
	font-size: 22px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 35.2px;
	letter-spacing: 0px;
	font-weight: ;
	margin-top: 45px;
	margin-bottom: 40px;
	padding-left: 20px;
}

.waana_box_shadow	{
	box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);

}



p,body {
	color: #101820;
	transition: all .15s ease-in;
	-webkit-transition: all .15s ease-in;
}


h1{
	color: #425b76;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

h2{
	color: #425b76;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

h3{
	color: #425b76;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

h4{
	color: #425b76;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

.h4_24 h4>span,
.h4_18 h4>span{
	color: #115e67;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}
h1>span, h2>span, h3>span, h4>span, h5>span,h6>span{
	color:#ffc72c;
}
.h4_24 h4>span:hover,
.h4_18 h4>span:hover{
	color: #115e67;
}

h5{
	color: #ffc72c;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}


h6{
	color: #425b76;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

.body-container-wrapper li{
	color: #101820;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

.body-container-wrapper li::marker {
	color: #ffc72c;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

blockquote{
	color: #101820;
	transition: all .15s ease;
	-webkit-transition: all .15s ease-in;
}

.gray-bg{
	background:#f2f2f2;
}




body .row-fluid .hide-module{
	display:none;
}

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

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

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

.float-left{
	float:left;
}

.float-right{
	float:right;
}

.overlay:before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background:rgba(43, 43, 43, 0.4);
	z-index: -1;
}

.all-text-white,
.all-text-white h1,
.all-text-white h2,
.all-text-white h3,
.all-text-white p,
.all-text-white h4,
.all-text-white h5,
.all-text-white h6,
.all-text-white li,
.all-text-white .fa,
.all-text-white a,
.all-text-white span{
	color:#ffffff!important;
	text-shadow: 0px 0px 20px rgb(0 0 0 / 22%);
}

.text-margin-zero h1,
.text-margin-zero h2,
.text-margin-zero h3,
.text-margin-zero p,
.text-margin-zero h4,
.text-margin-zero h5,
.text-margin-zero h6,
.text-margin-zero .fa,
.text-margin-zero a,
body .container-fluid .row-fluid .text-margin-zero.span12,
.text-margin-zero .widget-type-cta{
	margin:0;
	margin-bottom:0!important;
}


body .container-fluid .row-fluid [class*="span"]{
	min-height:0;
}

.hubspot-link__container.sproket{
	display:none!important;
}

.section-bg{
	background-size: cover!important;
	background-position: center center!important;
}


.section-padding {
	padding:100px 0;
}

.two-cta-container .left-cta {
	margin-right: 20px;
	margin-bottom: 15px;
}

@media(max-width: 1024px) and (min-width: 768px) {
	.two-cta-container .left-cta a.cta_button,
	.two-cta-container .right-cta a.cta_button{
		margin-bottom: 20px;
	}
}

@media(max-width: 767px) {
	.two-cta-container .left-cta a.cta_button {
		margin-bottom: 20px;
	}

	body .row-fluid blockquote{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	br{
		display:none;
	}
}

@media (min-width: 768px) {

	.equal-height-container > .row-fluid-wrapper > .row-fluid {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-align: stretch;
		-moz-box-align: stretch;
		-webkit-align-items: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}

	body .row-fluid .vertical-center{
		display: flex;
		display: -webkit-flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		justify-content: center;
		-webkit-justify-content: center;
		justify-content: center;
	}     
}





@media(max-width: 767px) {

	body [class*="flexbox-positioning"] {
		align-items: center !important;
	}

	body [class*="flexbox-positioning"] > div span>div {
		text-align: center !important;
	}


}




/*========================================================
Typography Responsive Styling
========================================================*/

@media (min-width:768px) and (max-width:1024px){

	.row-fluid [class*="span"].wrapper{
		padding-left:20px;
		padding-right:20px;
	}

	
	body {
		font-size: 16px;
		line-height: 26px;
		letter-spacing: 0px;
	}
	

	
	h1{
		font-size: 80px;
		line-height: 80px;
		letter-spacing: 0px;
	}
	

	
	h2{
		font-size: 50px;
		line-height: 50px;
		letter-spacing: 0px;
	}
	

	
	h3{
		font-size: 22px;
		line-height: 22px;
		letter-spacing: 0px;
	}
	

	
	h4{
		font-size: 18px;
		line-height: 18px;
		letter-spacing: 0px;
	}
	

	
	h5{
		font-size: 16px;
		line-height: 16px;
		letter-spacing: 0px;
	}
	

	
	h6{
		font-size: 14px;
		line-height: 14px;
		letter-spacing: 0px;
	}
	

	
	.body-container-wrapper li{
		font-size: 22px;
		line-height: 26px;
		letter-spacing: 0px;
	}
	

	
	p {
		font-size: 22px;
		line-height: 22px;
		letter-spacing: 0px;
	}
	

	
	blockquote {
		font-size: 16px;
		line-height: 25px;
		letter-spacing: 0px;
	}
	
	
	.h4_24 h4 {
		font-size: 20px;
		line-height: 26px;
		letter-spacing: -1.25px;
	}
	

	body a.cta_button[title], body .container-fluid .row-fluid .hs-button {
		white-space: normal;
	}

}

@media (max-width:767px){

	.row-fluid [class*="span"].wrapper{
		padding-left:20px;
		padding-right:20px;
	}

	
	body {
		font-size: 14px;
		line-height: 24px;
		letter-spacing: 0px;
	}
	

	
	h1{
		font-size: 50px;
		line-height: 50px;
		letter-spacing: 0px;
	}
	

	
	h2{
		font-size: 50px;
		line-height: 50px;
		letter-spacing: 0px;
	}
	

	
	h3{
		font-size: 22px;
		line-height: 22px;
		letter-spacing: 0px;
	}
	

	
	h4{
		font-size: 18px;
		line-height: 18px;
		letter-spacing: 0px;
	}
	

	
	h5{
		font-size: 16px;
		line-height: 16px;
		letter-spacing: 0px;
	}
	

	
	h6{
		font-size: 14px;
		line-height: 14px;
		letter-spacing: 0px;
	}
	

	
	.body-container-wrapper li{
		font-size: 22px;
		line-height: 26px;
		letter-spacing: 0px;
	}
	

	
	blockquote {
		font-size: 16px;
		line-height: 25px;
		letter-spacing: 0px;
	}
	

	
	p {
		font-size: 22px;
		line-height: 22px;
		letter-spacing: 0px;
	}
	

	
	.h4_24 h4 {
		font-size: 20px;
		line-height: 20px;
		letter-spacing: -1px;
	}
	

	.align-right {
		text-align: center;
		margin: 0 auto;
	}

	.align-left {
		text-align: center;    
		margin: 0 auto;
	}


	body a.cta_button[title], body .container-fluid .row-fluid .hs-button {
		white-space: normal;
	}

	body a.cta_button, body a.cta-button, body .row-fluid .hs-button{
		/*     display:block; */
		font-size: 14px;
		/*     box-sizing: border-box !important;
		width: 100%;
		max-width: 360px; */
		padding-left: 0;
		padding-right: 0;
	}

	.heading-underline {
		margin-bottom: 20px;
		padding-bottom: 2px;
	}

}

/*==================== Two Column to Six Column Adjust Styling ==========================*/

/*======================================================
Two Column Adjust
========================================================*/

body .container-fluid .row-fluid .two-col-adjust>span{
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	-webkit-box-align:stretch;
	-moz-box-align:stretch;
	-webkit-align-items:stretch;
	-ms-flex-align:stretch;
	align-items:stretch;
	flex-wrap:wrap;
	-wevkit-flex-wrap:wrap;
	flex-direction:row;
	-webkit-flex-direction:row;
	margin-right:-2.5%;
}

body .row-fluid .two-col-adjust span>.hs_cos_wrapper{
	display:-webkit-box;
	display:-moz-box;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:flex;
	flex-basis:46%;
	-webkit-flex-basis:46%;
	float:left;
	margin-right:4%;
	margin-top:40px;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	position:relative;
}

@media(max-width:767px){

	body .row-fluid .two-col-adjust span>.hs_cos_wrapper{
		display:block;
		width:100%;
		margin:20px auto 0;
		float:none
	}

	body .container-fluid .row-fluid .two-col-adjust>span{
		display:block;
		margin-right:0;
	}

}

/*Two Column Adjust
========================================================*/
.row-fluid .two-col-adjust>span {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	-wevkit-flex-wrap: wrap;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin-right: -2.5%;
}

body .row-fluid .two-col-adjust span>.hs_cos_wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-basis: 46%;
	-webkit-flex-basis: 46%;
	float: left;
	margin-right: 4%;
	margin-top: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

@media(max-width:767px) {
	body .row-fluid .two-col-adjust span>.hs_cos_wrapper {
		display: block;
		width: 100%;
		margin-top: 20px;
		width: 100%;
		margin: 10px 0;
		float: none
	}

	.row-fluid .two-col-adjust>span {
		display: block;
		margin-right: 0;
	}
}

/*==================================================
Three Col Adjust
==================================================*/
.row-fluid .three-col-adjust>span {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	-wevkit-flex-wrap: wrap;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin-right: -3.2%;
}

body .row-fluid .three-col-adjust span>.hs_cos_wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-basis: 29.96%;
	-webkit-flex-basis: 29.96%;
	float: left;
	margin-right: 3.2%;
	margin-top: 2.43%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	flex-direction: column;
	-webkit-flex-direction: column;
}

@media (max-width:767px) {
	.row-fluid .three-col-adjust>span {
		display: block;
		margin-right: 0;
	}

	body .row-fluid .three-col-adjust span>.hs_cos_wrapper {
		display: block;
		width: 100%;
		margin: 0;
		margin-top: 20px;
		max-width: 379px;
		width: 100%;
		margin: 30px auto 0;
		float: none;
	}
}

/*==================================================
Four Col Adjust
==================================================*/
.row-fluid .four-col-adjust>span {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	-wevkit-flex-wrap: wrap;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin-right: 0;
}

body .row-fluid .four-col-adjust span>.hs_cos_wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-basis: 22.5%;
	-webkit-flex-basis: 22.5%;
	float: left;
	margin-right: 2.5%;
	margin-top: 2.43%;
	box-sizing: border-box;
	position: relative;
}

@media (max-width:767px) { 
	.row-fluid .four-col-adjust>span {
		display: block;
		margin-right: 0;
	}

	body .row-fluid .four-col-adjust span>.hs_cos_wrapper {
		display: block;
		flex-basis: 100%;
		width: 100%;
		-webkit-flex-basis: 100%;
		margin: 0;
		margin-top: 20px;
	}
}

@media(min-width:768px) and (max-width:1024px) {
	.row-fluid .four-col-adjust>span {
		display: inline-block;
		margin-right: 0;
	}

	body .row-fluid .four-col-adjust span>.hs_cos_wrapper {
		display: block;
		flex-basis: 50%;
		width: 47%;
		-webkit-flex-basis: 50%;
		margin: 0;
		margin-top: 20px;
	}
}

/*==================================================
Five Col Adjust
==================================================*/
.row-fluid .five-col-adjust>span {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	-wevkit-flex-wrap: wrap;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin-right: -2.565%;
}

body .row-fluid .five-col-adjust span>.hs_cos_wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-basis: 17.5%;
	-webkit-flex-basis: 17.5%;
	float: left;
	margin-right: 2.5%;
	margin-top: 2.43%;
	box-sizing: border-box;
	position: relative;
}

@media (max-width:767px) {
	.row-fluid .five-col-adjust>span {
		display: block;
		margin-right: 0;
	}

	body .row-fluid .five-col-adjust span>.hs_cos_wrapper {
		display: block;
		flex-basis: 100%;
		width: 100%;
		-webkit-flex-basis: 100%;
		margin: 0;
		margin-top: 30px;
	}
}

/*==================================================
Six Col Adjust
==================================================*/
.row-fluid .six-col-adjust>span {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	-wevkit-flex-wrap: wrap;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin-right: -2.565%;
}

body .row-fluid .six-col-adjust span>.hs_cos_wrapper {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-basis: 14%;
	-webkit-flex-basis: 14%;
	float: left;
	margin-right: 2.5%;
	margin-top: 2.43%;
	box-sizing: border-box;
	position: relative;
}

@media (max-width:767px) {
	.row-fluid .six-col-adjust>span {
		display: flex;
	}

	body .row-fluid .six-col-adjust span>.hs_cos_wrapper {
		display: flex;
		flex-basis: 25%;
		width: 24%;
		-webkit-flex-basis: 25%;
	}
}


/*================ Theme Color Scheme Switcher =====================*/

.switch_theme_scheme {
	position: relative;
	display: inline-block;
	width: 38px;
	height: 20px;
}

.switch_theme_scheme input { 
	opacity: 0;
	width: 0;
	height: 0;
}



/* Rounded sliders */

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

/*================================= Footer styling  ===================================*/

.footer-section{
	position:relative;
	z-index:0;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
	max-width:100%;
}

body .footer-section .widget-type-header h1,
body .footer-section .widget-type-header h2,
body .footer-section .widget-type-header h3,
body .footer-section .widget-type-header h4,
body .footer-section .widget-type-header h5,
body .footer-section .widget-type-header h6 {
	
	
	font-family: 'DM Sans', sans-serif;
	
	font-size: 20px;
	
	
	
	
	
	
	
	
	
	
	
	
	
	font-weight: 700;
	font-style: normal;
	
	
	
	
	
	
	line-height: 28px;
	letter-spacing: 0px;
	
	text-transform: initial;
	
	color:#FFC72C;
	text-decoration: none;
}

.footer-section p{
	
	
	font-family: 'DM Sans', sans-serif;
	
	font-size: 14px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 23.8px;
	letter-spacing: 0px;
	text-transform: initial;

	color:#ffffff!important;
	text-decoration: ;
	margin: 25px 0px 15px;
}

.footer-section a,
.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
	
	font-family: Rajdhani;
	
	
	font-size: 16px;
	
	
	
	
	
	
	
	
	
	font-weight: 500;
	font-style: normal;
	
	
	
	
	
	
	
	
	
	
	line-height: 24px;
	letter-spacing: 0px;
	text-transform: initial;

	padding: 0;
	margin:8px 0;
	color: #ffffff;
	width:fit-content;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a:hover{
	color: #FFC72C;
}

.social-links a:first-child{
	margin-left:0;
}
.social-links a img{
  transition: all 0.3s ease-in-out;
}
.social-links a:hover img {
	filter: opacity(0.5);
}

.social-links a {
	padding:0;
	margin:10px;
	display:flex;
  transition: all 0.3s ease-in-out;
}

body .footer-section .widget-type-header h4{
	margin-bottom:20px!important;
}

#hs_cos_wrapper_footer_1-module-18_ p{
	margin:0;
}

.row-fluid-wrapper.row-depth-1.row-number-1.dnd-row.footer_1-column-2-row-1-vertical-alignment{
	border-top:1px solid #e6e6e617;
	margin-top:40px;
}

.footer-section .hs-menu-wrapper.hs-menu-flow-vertical ul li{
	list-style-type:none;
	margin-left:0;
}
footer .footer_growthkit_pre-column-13-padding {
	padding-left: 0px !important;
}
@media (min-width:768px) and (max-width: 1024px) {

	
	body .footer-section .widget-type-header h1,
	body .footer-section .widget-type-header h2,
	body .footer-section .widget-type-header h3,
	body .footer-section .widget-type-header h4,
	body .footer-section .widget-type-header h5,
	body .footer-section .widget-type-header h6 {
		font-size: 18px;
		line-height: 28px;
		letter-spacing: -1px;
	}
	

	
	.footer-section p{
		font-size: 14px;
		line-height: 23.8px;
		letter-spacing: 0px;
	}
	

	
	.footer-section a,
	.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
		font-size: 14px;
		line-height: 24px;
		letter-spacing: 0px;
	}
	


}

@media(max-width:767px){

	
	body .footer-section .widget-type-header h1,
	body .footer-section .widget-type-header h2,
	body .footer-section .widget-type-header h3,
	body .footer-section .widget-type-header h4,
	body .footer-section .widget-type-header h5,
	body .footer-section .widget-type-header h6 {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0px;
	}
	

	
	.footer-section p{
		font-size: 14px;
		line-height: 23.8px;
		letter-spacing: 0px;
	}
	

	
	.footer-section a,
	.footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0px;
	}
	

	body .footer-section p{
		margin:0;
		margin-top:15px;
	}
	body .footer_1-column-15-padding{
		padding-left:0 !important;
	}
	body .row-fluid-wrapper.row-depth-1.row-number-1.dnd-row.footer_1-column-2-row-1-vertical-alignment{
		margin-top:0px;
	}
	#hs_cos_wrapper_footer_1-module-18_ p{
		text-align: center;
		margin-top: 20px;
	}

	body .row-fluid .span12.widget-span.widget-type-cell.dnd-column.footer_1-column-7-padding,
	body .row-fluid .span12.widget-span.widget-type-cell.footer_1-column-11-padding.dnd-column {

		padding-left: 0!important;
	}

	.footer-section .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 {
		float: none;
	}

	.footer-section .social-links {
		justify-content: left !important;
		margin-top:15px;
		margin-bottom: 20px;
	}

	.footer-section div {
		text-align: left!important;
	}  

}

[class*="-force-full-width-section"] > .row-fluid{
	padding:0px!important;
}

sub {
	font-size: 15px;
	font-weight: 400;
	color: #9b9b9b;
	position: relative;
	top:4px;
	left: -10px;
	right: 0;
}


/* ================================= Border Sperator Module Styling starts Here  ================================= */

@media (min-width:768px){
	.alignment-underline{
		margin-left:auto;
		margin-right:auto;
	}
	.underline-border.alignment-underline:before{
		right: 0;
		text-align: center;
		margin: 0 auto;
	}
}


@media (max-width:767px){
	body #main-content .container-fluid .row-fluid .underline-border{
		text-align: left;
	}
}

/*================================= Boder Sperator Module Styling ends Here =================================*/

/*================================= Cta Module Styling starts Here =================================*/


.cta-choices span.left-cta .video-container .video-title h6 {
	position: relative;
}

.cta-choices .left-cta .arrow-cta {
	margin-right: 50px;
}

body .simple-cta a.cta_button, body .simple-cta a{
	margin-top:0;
}

body.overflow-hidden{
	overflow:hidden;
}

.cta-choices .video-title a.cta-button {
	margin-top: 20px;
}

.cta-choices span {
	display: inline-block;
}

.cta-choices .video-container .video-section .video-title{
	display:inline-block;
	margin-left:0px;
}

.cta-choices .arrow-cta a.cta-button:after,.cta-choices .arrow-cta a:after{
	display:none;
}

@media(max-width: 767px) {
	.custom-model-main .custom-model-inner {
		max-width: 80%;
	}

	.cta-choices {
		margin-top: 15px;
	}

	.cta-choices .arrow-cta a.cta_button {
		display: inline-block ;
		width: auto;
		box-sizing: border-box;
	}

	.cta-choices span.left-cta .cta-container .video-title h6:after {
		left: 22%;  
	}
}


.wistia_click_to_play {
	width: 100% ;
	height: auto ;
}


.nor-card .text-conta { 
	padding: 10px 30px;
	background: #f5f7fa;
}
body .row-fluid .nor-card .hs_cos_wrapper.hove{ 
	margin-top:10px;
}
.nor-card .description-conta { 
	padding: 30px;
}

.nor-card .hove{
	border:1px solid #E2E2E2;
}

@media(max-width:767px){
	.nor-card .text-conta {
		padding:10px;
	}
	.nor-card .description-conta { 
		padding: 10px;
	}
}


/*================================= Social Follow Styling And Subscrbe blog =================================*/

.social-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
}

.social-links__icon {
	height: 1.75rem;
	margin: 0 0.35rem;
	position: relative;
	width: 1.75rem;
}

.social-links__icon svg {
	fill: #FFF;
	height: 0.625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: auto;
}

.social-links__icon:hover svg,
.social-links__icon:focus svg,
.social-links__icon:active svg {
	fill: #FFF;
}


.sub-form h3{
	font-size: 16px;
	line-height: 23px;
	font-weight: 600;
	letter-spacing: normal;
	margin-bottom: 10px;
	margin-top: 25px;
	text-transform: uppercase;

}

.sub-form .form-conta form{
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0px;
	margin: 0 auto;
}

.sub-form .form-conta form .hs-button{
	margin: 0;
	padding-right: 0;
	padding-left: 0;
	width: 100%;
	margin-top: 10px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
	body .hover-section-1 .row-fluid>.box-container{
		display:block;
	}
	body .row-fluid .two-col-adjust span > .hs_cos_wrapper{
		flex-basis: 40%;
		-webkit-flex-basis: 40%;
		margin-right: 2.5%;
	}

}

/*================================= Extra stylings  =================================*/



body form label span.hs-form-required {
	display: none;
}


.map_with_grascale{
	filter: grayscale(0.6) !important;
}
body .hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-menu-depth-1>a{
	width:auto;
}
@media(min-width:768px) and (max-width:1140px){
	.footer-section a, .footer-section .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
		white-space:normal;
	}
}




/*====================================================================================== extra fixes all pages =======================================================*/

body .hs-common-confirm-message{
	color: #2CD8B1 !important;
	background: #2cd8b12e !important;
	border-color: #2CD8B1 !important;
}
body .section.post-footer .hs-button {
	max-width: none;
	min-width: auto;
}

.dnd_area_download_app-row-7-padding img {
	max-width: 110px;
}
.row-number-18 .cta-choices {
	margin-top: 25px;
}
body .dnd_area_event_listing-column-1-row-1-padding{
	padding-right: 58px !important;
}
body #hs_cos_wrapper_dnd_area_privacy_policy-module-4 .sticky-sidebar .left_side_cont .sidebar-conta .simple-card{
	background-color: #101A29;
}

@media (max-width: 767px){
	body .gallery_section .cards {
		margin-top: 50px;
	}
}
.body-container-product-single .card-section .card.color-bg.padding {
	border-radius: 5px;
}
body .submitted-message.hs-main-font-element {
	font-size: 22px;
	flex-direction: column;
	min-height: 150px;
}

/* =====================================================================================Event Single ============================================================================*/

/* body .dnd-section .progress-section .timeline ol li.card_1:before{
	min-width: 14px;
	min-height: 14px;
	left: -8px;
  padding: 8px;
}
body .dnd-section .progress-section .timeline ol li.card_5:before,
body .dnd-section .progress-section .timeline ol li.card_8:before {
	min-width: 14px;
	min-height: 14px;
	left: -8px;
	top: 66.5%;
  padding: 8px;
} */
/* body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_2:before,
body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_3:before,
body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_4:before,
body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_6:before,
body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_7:before{
	left: -20px;
} */
/* body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_6:before{
	content: "01";
}
body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_7:before{
	content: "02";
} */
body .body-container-event_single .dnd-section table tr td h4 {
	font-weight: 400;
}
body .body-container-event_single .row-number-8 a{
	font-weight: 500;
}
@media (min-width: 1060px){
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:nth-child(odd) .inner {
		left: 120px;
	}
/* 	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:first-child .inner::before {
		left: -104px !important;
	} */
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:nth-child(5) .inner::before {
		left: -104px !important;
	}
	.body-container-event_single .progress-section.custom .timeline ol li:first-child .inner{
		max-width: 219px;
	}
	.body-container-event_single .progress-section.custom .timeline ol li:nth-child(5) .inner{
		max-width: 219px;
	}
	.body-container-event_single .progress-section.custom .timeline ol li:nth-child(8) .inner{
		max-width: 219px;
	}
	body .body-container-event_single .progress-section.custom .timeline ol li.card_1 .event,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_5 .event,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_8 .event{
		padding: 17px 25px 17px 24px !important;
	}
/* 	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:nth-child(even) .inner::before {
		right: -90px;
	} */
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:nth-child(even) .inner {
		left: -504px;
	}
/*    body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:last-child .inner {
		left: -340px !important;
	}
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li:last-child .inner::before {
		right: -104px !important;
	}  */
}

/* @media (max-width: 1024px){
	body .dnd-section .progress-section.custom .timeline ol li.card_1:before,
	body .dnd-section .progress-section.custom .timeline ol li.card_5:before,
	body .dnd-section .progress-section.custom .timeline ol li.card_8:before{
		top: 65%;
    padding: 6px;
	}
} */

@media (min-width: 768px){
	body .body-container-event_single .dnd_area_event_single-row-4-padding .text-value-container p{
		max-width: 480px;
	}
}

@media (max-width: 430px){
	body .body-container-event_single .event-heading, body .body-container-event_single .host-name{
		font-size: 16px;
	}
	body .body-container-event_single .dnd_area_event_single-row-6-padding .host-designation{
		font-size: 13px;
	}
/* 	body .body-container-event_single .progress-section.custom .timeline ol li:nth-child(even) .inner {
		left: 25px;
		max-width: 200px;
	}
	body .body-container-event_single .progress-section.custom .timeline ol li:nth-child(odd) .inner {
		left: 25px;
		max-width: 200px;
	}
	body .dnd-section .progress-section.custom .timeline ol li.card_1:before,
	body .dnd-section .progress-section.custom .timeline ol li.card_5:before,
	body .dnd-section .progress-section.custom .timeline ol li.card_8:before{
		top: 64%;
	}
	body .body-container-event_single .progress-section.custom .timeline ol li.card_2 .event,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_3 .event,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_4 .event,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_6 .event,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_7 .event{
		padding-top: 15px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 15px;
	}
	body .body-container-event_single .progress-section.custom .timeline ol li.card_2 .host-profile,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_3 .host-profile,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_4 .host-profile,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_6 .host-profile,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_7 .host-profile{
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 15px;
		padding-left: 15px;
	}

	body .body-container-event_single .progress-section.custom .timeline ol li.card_2:after,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_3:after,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_4:after,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_6:after,
	body .body-container-event_single .progress-section.custom .timeline ol li.card_7:after{
		min-width: 40px;
		min-height: 40px;
		left: -20px;
		top: 54%;
	}
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_2:before,
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_3:before,
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_4:before,
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_6:before,
	body .body-container-event_single .dnd-section .progress-section.custom .timeline ol li.card_7:before{
		left: -14px;
		min-width: 28px;
		min-height: 28px;
		padding: 1px;
		font-size: 15px;
		top: 56.5%;
	} */
}

/* ===================================================================================== Event Listing ============================================================================*/

.body-container-event_listing .filter-cont.search {
	width: 100%;
	max-width: 287px;
}

.body-container-event_listing .main-search svg {
	width: 22.73px;
	fill: #246BFD;
}
@media (max-width: 767px){
	.body-container-event_listing .event-section.hs_cos_wrapper.filter_all.dnd_area_event_listing-module-8{
		margin-bottom: 30px;
	}
}

/*================================================================================= Ebook Download ==============================================================*/
body .vector-section.vertical-separator1 .main-cont .text-cont.tab-3 .content-conta {
	padding-bottom: 58px;
}
body .body-container-ebook-download div#hs_cos_wrapper_dnd_area_ebook_download-module-4 {
	max-width: 465px;
	width: 100%;
}
body .body-container-ebook-download .form-cm .form-conta form .hs-input{
	margin-bottom: 30px !important;
}
body .body-container-ebook-download  label#label-email-4af3ed68-bdc2-4622-a0b6-e011df252183_9436 {
	margin-top: 20px;
}
body .body-container-ebook-download .dnd_area_ebook_download-row-3-padding .hs-form label{
	color: #101820;
}
@media (max-width: 1100px) and (min-width: 1025px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 600px;
	}
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 107px;
		margin-bottom: 18px;
	}
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-1,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-2,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-3,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-4,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-5{
		width: 100%;
		min-height: 94px;
		max-height: max-content;
	}
}
@media (max-width: 1024px) and (min-width: 900px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 540px !important;
	}
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 102px;
		margin-bottom: 10px;
	}
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-1,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-2,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-3,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-4,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-5{
		min-height: 90px;
	}
}
@media (max-width: 899px) and (min-width: 820px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 480px !important;
	}
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 89px;
		margin-bottom: 10px;
	}
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-1,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-2,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-3,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-4,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-5{
		min-height: 78px;
	}
}
@media (max-width: 819px) and (min-width: 768px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 445px !important;
	}
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 85px;
		margin-bottom: 5px;
	}
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-1,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-2,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-3,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-4,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-5{
		min-height: 74px;
	}
}
@media (max-width: 767px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 123px;
		margin-bottom: 5px;
	}
}
@media (max-width: 767px) and (min-width: 370px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 123px;
		margin-bottom: 5px;
	}
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-1,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-2,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-3,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-4,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-5{
		min-height: 110px;
	}
}
@media (max-width: 767px) and (min-width: 460px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 630px !important;
	}
}
@media (max-width: 459px) and (min-width: 416px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 565px !important;
	}
}
@media (max-width: 415px) and (min-width: 370px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 510px !important;
	}
}
@media (max-width: 369px){
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .vertical-tabber-section.vertical_tabber1 .content-page {
		height: 445px !important;
	}
	body .body-container-ebook-download #hs_cos_wrapper_dnd_area_ebook_download-module-15 .tab-row.tab-links {
		height: 87px;
	}
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-1,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-2,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-3,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-4,
	body .body-container-ebook-download .row-fluid .vertical-tabber-section.vertical_tabber1 .tab-links .tab-link.link-5{
		min-height: 75px;
	}
}


/*=================================================================== Home-1 home-2 home-3 =========================================================================*/
body .body-container-home-two .row-fluid .four-col-adjust>span{
	justify-content: center;
}
body .body-container-home-1 .dnd-section .gallery_section .cards,
body .body-container-home-two .dnd-section .gallery_section .cards,
body .body-container-home-three .dnd-section .gallery_section .cards{
	max-width: 480px;
}
body .body-container-home-1 .dnd-section .gallery_section .right-col .cards,
body .body-container-home-three .dnd-section .gallery_section .right-col .cards,
body .body-container-home-two .dnd-section .gallery_section .right-col .cards{
	float: right;
}
@media (max-width: 767px){
	body .body-container-home-1 .dnd-section .gallery_section .cards,
	body .body-container-home-two .dnd-section .gallery_section .cards,
	body .body-container-home-three .dnd-section .gallery_section .cards{
		width: 100%;
		max-width: inherit;
	}
}

/*====================================================================== partner ===========================================================*/

@media (min-width: 1025px){
	body .body-container-partner .dnd_area_partner-column-44-padding{
		padding-left: 28px !important;
	}
}
@media (max-width: 1024px){
	body .body-container-partner .dnd_area_partner-column-44-padding{
		padding-left: 0px !important;
	}
}

/* Pillar */
body .body-container-pillar div#content-1{
	scroll-margin-top: 150px;
}
body .body-container-pillar div#content-2,
body .body-container-pillar div#content-3,
body .body-container-pillar div#content-4,
body .body-container-pillar div#content-5{
	scroll-margin-top: 80px;
}

/*========================================================================== About us 1 and 2 ==================================================================*/
.body-container-about-us-one .counter-conta h2{
	font-size: 56px;
	line-height: 88%;
}

.body-container-about-us-one .dnd_area_-row-2-padding .row-fluid [class*='span']{
	margin-left: 0!important;
}
body #hs_cos_wrapper_dnd_area_-module-20 .vector-section.custom .main-cont .text-cont {
	max-width: none !important;
}
body .body-container-about-us-two .row-fluid .four-col-adjust>span{
	justify-content: center;
}
body .body-container-about-us .row-number-15 .text-value-container p{
	margin-bottom: 23px;
}
@media (min-width: 1025px){
	body .body-container-about-us .counter-conta h2{
		font-size: 56px;
	}
}
/*=========================================================================== Book a webinar ================================================================*/
body .body-container-book-a-webinar .list-items.dnd_area-module-13 ul li.list-item-1::before,
body .body-container-book-a-webinar .list-items.dnd_area-module-14 ul li.list-item-1::before,
body .body-container-book-a-webinar .list-items.dnd_area-module-15 ul li.list-item-1::before,
body .body-container-book-a-webinar .list-items.dnd_area-module-16 ul li.list-item-1::before{
	height: 25px;
	top: -2px;
}
body .body-container-book-a-webinar .dnd_area-module-22-flexbox-positioning > div{
	width: 100%;
}
body .body-container-book-a-webinar form{
	padding: 31px 45px 45px;
}
body .body-container-book-a-webinar form textarea.hs-input{
	height: 179px;
}
body .body-container-book-a-webinar .hs-form label{
	margin-bottom: 8px;
	margin-top: 9px;
}
/*======================================================================= recent blogs ======================================================================*/

@media (min-width: 768px){
	body .row-fluid .recent-blog.three-col-adjust span>.hs_cos_wrapper {
		flex-basis: 30.3%;
		-webkit-flex-basis: 30.3%;
		margin-right: 3%;
	}
	.recent-blog .recent-blog-card:nth-child(3) .text-conta .post-title,
	.recent-blog .recent-blog-card:nth-child(4) .text-conta .post-title{
		margin-top: 4px;
	}
	body .dnd-section .recent-blog .text-conta .post-title h4{
		margin-bottom: 10px;
	}
}

/*======================================================================= privact Policy ===================================================================== */

body .body-container-privacy-policy div#content-1 {
	scroll-margin-top: 100px;
}
body .body-container-privacy-policy div#content-2,
body .body-container-privacy-policy div#content-3{
	scroll-margin-top: 150px;
} 
@media (max-width: 767px){
	body .body-container-privacy-policy div#content-1 {
		scroll-margin-top: 200px;
	}
	body .body-container-privacy-policy div#content-2{
		scroll-margin-top: 200px;
	}
	body .body-container-privacy-policy div#content-3{
		scroll-margin-top: 200px;
	} 
}
/*========================================================================== Product =====================================================================*/

body .body-container-product .row-fluid .four-col-adjust>span{
	justify-content: center;
}
/*========================================================================== Contact us 1 and 2 =====================================================================*/

.body-container-contact-us-two .hs-responsive-embed-wrapper.hs-responsive-embed {
	max-height: 826px !important;
}
.body-container-contact-us-two .hs-responsive-embed-inner-wrapper {
	padding-bottom: 180% !important;
}
.body-container-contact-us-two .form-columns-1 .hs_file_upload input.hs-input {
	height: 85px;
	position: relative;
	padding: 20px;
}
/*========================================================================== Thank You =====================================================================*/

body .customer_experience ul li.reaction {
	cursor: default !important;
}


body .refer-a-friend form button {
	line-height: 1;
}

.footer-bottom-right-text-conta a:hover {
	text-decoration: none;
}
/*-----------------------------------------------------------------------------------
CSS INDEX
===================

01. No button
02. imple links styling , links that does not have any specific class or links present in the rich-text-field 
03. Primary CTAs Styling 
04. Secondary CTAs Styling
05. Video CTAs Styling 
06. Video Button Styling 
07. Responsive Styling

-----------------------------------------------------------------------------------*/







button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}


/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

body a.no-style-link:hover{
  text-decoration:none;
}

/*****************************************/
/* Primary CTAs Styling  */
/*****************************************/

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li .primary-cta a.cta-button,
.hs-menu-wrapper.hs-menu-flow-horizontal>ul li .primary-cta.solid-cta a.cta_button,
body .primary-cta button,
body .primary-cta .button,
body .primary-cta a.cta-button,
body .primary-cta a.cta_button,
body .header-cta .primary-cta button,
body .header-cta .primary-cta .button,
body .header-cta .primary-cta a.cta-button,
body .header-cta .primary-cta a.cta_button,
body .modal-popup-btn,
body .subscribe-popup-btn,
body .cookie-popup .solid-cta a
{    
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 15px;
  
  
  
  
  
  
  
  
  
  
  
  font-weight: 600;
  font-style: normal;
  
  
  
  
  
  
  
  	
  letter-spacing: 0px;
  line-height: 25.5px;
  border-radius:  10px;
  padding: 14.5px
    33.5px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  margin-bottom: 0;
  position: relative; 
  z-index: 1;
  text-decoration:none;
  border:1px solid transparent;
  color: #101820;
  background: rgba(255, 199, 44, 1.0);
  border: 1px solid 
    rgba(255, 199, 44, 1.0);
  box-sizing:border-box !important;
  width: 100%;
  max-width: max-content;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li .primary-cta a.cta-button:hover,
.hs-menu-wrapper.hs-menu-flow-horizontal>ul li .primary-cta.solid-cta a.cta_button:hover,
body .primary-cta button:hover,
body .primary-cta .button:hover,
body .primary-cta a.cta-button:hover,
body .primary-cta a.cta_button:hover,
body .header-cta .primary-cta button:hover,
body .header-cta .primary-cta .button:hover,
body .header-cta .primary-cta a.cta-button:hover,
body .header-cta .primary-cta a.cta_button:hover,
body .modal-popup-btn:hover,
body .subscribe-popup-btn:hover,
body .cookie-popup .solid-cta a:hover{
  border-radius:  10px;
  border: 1px solid 
    rgba(255, 199, 44, 1.0);
  color: #115e67;
  background: rgba(255, 255, 255, 1.0 );
}

body form input.hs-button{
  width: 100%;
  max-width: 100%;
}
@media(max-width:1024px) and (min-width:768px){
  body .header-cta .primary-cta a.cta_button{
    min-width: 100px !important;
  }
}
@media(max-width:767px){
  .header-cta.right-group.align-right {
    text-align: left;
    padding-top: 20px;
    padding-left: 15px;
  }
}


.hs-menu-wrapper.hs-menu-flow-horizontal>ul li .primary-cta.transparent-cta a.cta-button,
body .primary-cta.transparent-cta button,
body .primary-cta.transparent-cta .button,
body .primary-cta.transparent-cta a.cta-button,
body .primary-cta.transparent-cta a.cta_button,
body .header-cta.transparent-cta .primary-cta button,
body .header-cta.transparent-cta .primary-cta .button,
body .header-cta.transparent-cta .primary-cta a.cta-button,
body .header-cta.transparent-cta .primary-cta a.cta_button{
  color: #425b76;
  background: transparent;
  border: 1px solid 
    rgba(255, 199, 44, 1.0);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}



body .header-cta .primary-cta button,
body .header-cta .primary-cta .button,
body .header-cta .primary-cta a.cta-button,
body .header-cta .primary-cta a.cta_button
{    
  padding: 8.5px 12px;
}
li.hs-menu-item.hs-menu-depth-1.hs-item-has-children .primary-cta.solid-cta a.cta_button {
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  padding: 6.5px 15.5px;
}

/*****************************************/
/* Secondary CTAs Styling  */
/*****************************************/

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .secondary-cta a.cta_button,
body .secondary-cta button,
body .secondary-cta .button,
body .secondary-cta a.cta_button,
body .secondary-cta a.cta-button,
body .secondary-cta a
{
  
  font-family: Rajdhani;
  
  
  font-size: 16px;
  
  
  
  
  
  
  
  
  
  font-weight: 500;
  
  
  
  
  
  
  
  
  
  	
  letter-spacing: 0px;
  line-height: 20px;
  border-radius: none;
  padding: 0;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  color: #115e67;
  background: rgba(255, 255, 255, 0.0);
  text-decoration: none;
  border: 0;
  text-transform: capitalize;
}




/* .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .secondary-cta a.cta_button, body .secondary-cta button, body .secondary-cta .button, body .secondary-cta a.cta_button, body .secondary-cta a.cta-button, body .secondary-cta a{
font-size:14px;
line-height:normal;
} */



/*****************************************/
/* Video CTAs Styling  */
/*****************************************/

body .video-cta button,
body .video-cta .button,
body .video-cta a.cta-button,
body .video-cta a.cta_button,
body .video-cta a
{
  
  font-family: Rajdhani;
  
  
  font-size: 16px;
  
  
  
  
  
  
  
  
  
  font-weight: 500;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  	
  letter-spacing: 0px;
  line-height: 20px;
  border-radius:  10px;
  padding: 14.5px 33px 14.5px 50px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  border:1px solid 
    rgba(255, 255, 255, 0.0);
  color: #425b76;	
  background: transparent;

}

body .video-cta.solid-cta button,
body .video-cta.solid-cta .button,
body .video-cta.solid-cta a.cta-button,
body .video-cta.solid-cta a.cta_button,
body .video-cta.solid-cta a{
  background: rgba(17, 94, 103,
    1.0);
  color: #ffffff;	
}

body .video-cta.solid-cta button:hover,
body .video-cta.solid-cta .button:hover,
body .video-cta.solid-cta a.cta-button:hover,
body .video-cta.solid-cta a:hover{
  text-decoration:none;
  border: 1px solid 
		rgba(17, 94, 103, 1.0);
  background: rgba(255, 255, 255,1.0);
  color: #115e67;
}


body .video-cta button:hover,
body .video-cta .button:hover,
body .video-cta a:hover,
body .video-cta a.cta-button:hover,
body .video-cta a.cta_button:hover {    
  text-decoration:none;
  border: 1px solid 
		rgba(17, 94, 103, 1.0);
}


/*****************************************/
/* Video Button Styling  */
/*****************************************/

body .video-button button,
body .video-button .button,
body .video-button a.cta_button,
body .video-button a.cta-button,
body .video-button a {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  background: rgba (#null, 0.0);
  text-decoration: none;
  border: 0;
  text-transform: none;
}



/*****************************************/
/* Responsive Styling  */
/*****************************************/

@media(max-width: 1024px) and (min-width: 768px) {
  /* 	body .row-fluid .hs-button {
  font-size: 14px !important;
} */

  
  body .primary-cta button,
  body form input.hs-button,
  body .primary-cta .button,
  body .primary-cta a.cta-button,
  body .primary-cta a.cta_button,
  body .header-cta .primary-cta button,
  body .header-cta .primary-cta .button,
  body .header-cta .primary-cta a.cta-button,
  body .header-cta .primary-cta a.cta_button {
    font-size: 15px;
    line-height: 25.5px;
    letter-spacing: 0px;
  }
  	

  
  body .secondary-cta button,
  body .secondary-cta .button,
  body .secondary-cta a.cta_button,
  body .secondary-cta a.cta-button,
  body .secondary-cta a {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  	

  
  body .video-cta button,
  body .video-cta .button,
  body .video-cta a.cta-button,
  body .video-cta a.cta_button,
  body .video-cta a{
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  	

}

@media(max-width:768px) {

  
  body .primary-cta button,
  body form input.hs-button,
  body .primary-cta .button,
  body .primary-cta a.cta-button,
  body .primary-cta a.cta_button,
  body .header-cta .primary-cta button,
  body .header-cta .primary-cta .button,
  body .header-cta .primary-cta a.cta-button,
  body .header-cta .primary-cta a.cta_button {
    font-size: 16px;
    line-height: 25.5px;
    letter-spacing: 0px;
  }
  	


  
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .secondary-cta a.cta_button,
  body .secondary-cta button,
  body .secondary-cta .button,
  body .secondary-cta a.cta_button,
  body .secondary-cta a.cta-button,
  body .secondary-cta a {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  	

  
  body .video-cta button,
  body .video-cta .button,
  body .video-cta a.cta-button,
  body .video-cta a.cta_button,
  body .video-cta a{
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  	

}

@media(min-width:768px) and (max-width:1024px){
  body .primary-cta a.cta_button{
    padding: 14.5px 20.5px;
  }
}

/*****************************************/
/* Simple links styling , links that does not have any specific class or links present in the rich-text-field   */
/*****************************************/


button,
a.cta_button,
a.video-popup-cm{
  position: relative;
  display: block;
  overflow: hidden;
}
.primary-cta.transparent-cta a.cta_button:hover{
  color:#425b76 !important;
}
.primary-cta a.cta_button:hover span{
  background-color:#ffffff !important;
}
body .video-cta a,
body .video-cta a:hover,
body .video-cta a:focus{
  text-decoration: none;
}
body .video-cta.transparent-cta a.cta_button:hover,
body .video-cta.transparent-cta .video-title a:hover{
  color:#ffffff;
  background:#115e67;
}

body .video-cta a.cta_button:hover span{
  background:#ffffff !important;
}


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










/*=========================================================================
form styling
==========================================================================*/

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form input[type="checkbox"],
form .hs-form-booleancheckbox-display{
  cursor: pointer;
}

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

/* Inputs - checkbox/radio */

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

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

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

form .hs-input{
  margin-bottom:19px;
}

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

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


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

/*======= Placeholder Color ====*/

body .row-fluid .hs-input::placeholder{
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 16px;
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 25px;
  letter-spacing: 0px;
}
body .row-fluid .hs-input::-moz-placeholder,
body .row-fluid .hs-input::-ms-input-placeholder,
body .row-fluid .hs-input::-webkit-input-placeholder {
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 16px;
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 25px;
  letter-spacing: 0px;
}

.email-prefs .item .item-inner span {
  font-size: px;
  color: ;
  font-weight: ;
  line-height: ;
  letter-spacing: px;
}

.email-prefs .item .item-inner p {
  font-size: px;
  color: ;
  font-weight: ;
  line-height: ;
  letter-spacing: -px;
}

input:focus{
  outline: none;
}

select::-ms-expand {
  display: none;
}

input[type="file"]::-webkit-file-upload-button {
  -webkit-appearance: none;
  border: 0;
  /* opacity: 0.1; */
  border-radius: 2.5px;
  background-color: rgba(255, 199, 44, 1.0 );
  color: #425b76;
  position: absolute;
  bottom: 25%;
  right: 2%;
  width: 143px;
  height: 33px;
  font-size: 14px;
  font-weight:500;
}


form {
  padding: 60px 40px;
  background:rgba(242, 242, 242, 0.0);
  border: 1px solid rgba(66, 91, 118, 0.1);
  border-radius: 0px;
}

.form-title{
  color: #ffffff;
  background-color:rgba(242, 242, 242, 0.0);
  padding:20px;
  margin:0;
}


.form-cm .form-title{
  
  padding:0px;
  
}

body .row-fluid .hs-button {  
  
  font-family: Rajdhani;
  
  font-size: 16px;
  
  font-weight: 700;
  font-style: normal;
  	
  letter-spacing: 0px;
  line-height: 20px;
  padding: 15px 0px;
  color: #101820;
  background-color: #ffc72c ;
  text-align: center;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all .5s ease-in-out;
  top: 0;
  border:1px solid transparent;
  width:100%;
  border-radius: 10px;
  text-transform: ;
  cursor: pointer;
}

body .row-fluid .hs-button:hover,
body .row-fluid .hs-button:focus{ 
  
  color: #101820 ;
  background-color: #b58500 ;
  transition:all 0.5s ease-in-out;
  text-decoration:none;
  border: 1px solid #b58500;
} 



.hs-form label {
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 15px;
  
  
  
  
  
  
  
  
  
  font-weight: 500;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  line-height: 18px;
  letter-spacing: 0px;
  text-transform: capitalize;
  text-decoration: none;
  text-transform: ;
  color: #ffffff;
  text-align: left;
  padding-top: 0;
  margin-bottom: 10px;
  margin-top: 11px;
  display: block;
  float: none;
  width: auto;
}

body .container-fluid .row-fluid .hs-error-msgs label {
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 14px;
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 18px;
  letter-spacing: 0px;
  text-decoration: none;
  color: #F2545B;
  margin-top: 0px;
  text-transform: none;
}

@media(min-width: 768px){
  body .container-fluid .row-fluid .form-columns-2 .hs-error-msgs label{
    font-size: 11px; 
    line-height: 11px;
  }
}


body .row-fluid .hs-input.invalid.error {
  border-color: #F2545B;
}
body .container-fluid .row-fluid .hs-field-desc {  
  margin-top: 0px;
  font-size: px;
  font-family: ;
  color: ;
  text-decoration: none;
  font-style: ;
  font-weight: ;
  text-transform: ;
}


.legal-consent-container .hs-input[type="checkbox"] {
  margin: 0 7px 0px 0px !important;
  top: 2px !important;
}

.legal-consent-container .hs-form-booleancheckbox-display p {
  vertical-align: middle;
}

body .row-fluid .hs-input,
.systems-page-psw input#hs-pwd-widget-password{
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 13.33px;
  
  font-weight: 400;
  font-style: normal;
  
  line-height: 24px;
  letter-spacing: 0px;
  color: #ffffff;
  display: inline-block;
  width: 100%;
  height:px;
  padding: 10px 16px;
  background: ;
  border: 1px solid #E2E2E2;
  box-sizing: border-box;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
}

.systems-page-psw input#hs-pwd-widget-password{
  margin-bottom: 6px;  
}

body .row-fluid .hs-input{
  margin-bottom: 20px;
}

.body-container-wrapper .hs-error-msgs,
.hs-error-msg{
  margin:0;
}

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

/*=======================================================
CHECKBOX AND RADIO BUTTONS STYLING
=======================================================*/            

.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  width:auto;
}

.row-fluid .hs-form .field .input input[type="checkbox"],
.row-fluid .hs-form .field .input  input[type="radio"]{
  padding: 0;
  background: ;
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: ;
  -webkit-appearance: none;
  border: ;
  margin-right: 8px;
  top: 4px;
  width: 18px;
  height: 18px;
}

.row-fluid .hs-form .field .input input[type="radio"]:checked:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  top: 2px;
  background-color: ;
  left: 2px;
  border-radius: 50%;
}

body .row-fluid textarea.hs-input {
  height: 179px;
  resize: none; 
}

.two-col-form-section textarea.hs-input {
  height: 122px;
}

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

.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  content: '';
  position: absolute;
  width: 12px;
  height: 6px;
  top: 4px;
  left: 2px;
  border: 2px solid rgba(255, 255, 255, 1.0);;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.row-fluid .hs-form .field .input input[type="checkbox"]:checked:after {
  display:transparent;
}

body .row-fluid .hs-form .field .input input[type="checkbox"] {
  padding: 0; 
  border: 1px solid rgba(255, 199, 44, 1.0);
  background: rgba(255, 255, 255, 1.0);
  margin-left: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 4px;
  -webkit-appearance: none;
  border-radius:2px;
  margin-right: 8px;
  top: 3px;
  width: 18px!important;
  height: 18px;
}

.row-fluid .hs-form .field .input input[type="checkbox"]:checked{
  background: rgba(255, 199, 44, 1.0);
}

.row-fluid .hs-form .field .input input[type="radio"]{
  border-radius: 50%;
  margin-bottom: 4px;
  height: auto;
  overflow: unset;
}

.row-fluid .hs-form .field .input input[type="radio"]::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 199, 44, 1.0);
  background: rgba(255, 255, 255, 1.0);
  border-radius: 50%;
  position: absolute;
  left: -22px;
  bottom: -10px;
  opacity: 1;
  transition: all 0.3s;
  padding: 4px;
}

.row-fluid .hs-form .field .input input[type="radio"]:checked::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 199, 44, 1.0);
  background: rgba(255, 199, 44, 1.0);
  border-radius: 50%;
  position: absolute;
  left: -18px;
  bottom: -6px;
  opacity: 1;
  transition: all 0.3s;
}

.row-fluid .hs-form .field .input input[type="radio"]:checked::before{
  border: ;
}

.row-fluid .hs-form .field .input input[type="radio"] {
  appearance: none;
  margin: 0;
}

.row-fluid .hs-form .field .input .hs-form-radio-display {
  margin-left: 20px;
}

form .file-upload-button-label {
  border: ;
  position: absolute;
  left: 11px;
  top: 7.5px;
  border-radius: 4px;
  padding: 0px 10px;
  color: ;
  font-size: 14px;
  line-height: 29px;
  letter-spacing: 0px;
  width: auto;
  height: 0;
  display: flex;
  cursor: pointer;
  display: flex;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 0px;
  height: 30px;
}

form .file-upload-file-name {
  height: 45px;
  color: ;
  line-height: normal;
  display: flex;
  border: ;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: normal;
  position: relative;
  right: 0;
  width: 100%;
  top: 0px;
  padding: 0 10px;
  cursor: pointer;
  max-width: 100%;
  margin-bottom: 20px;
  box-sizing:border-box;
  padding-left:134px;
}

form .file-upload-file-name:focus{
  border: 1px solid #64ee85;
}

form .input {
  display: block;
  position: relative;
  margin-bottom: 0px;
}

/* form input[type="file"] */

body .row-fluid select.hs-input{
  position:relative;
  background-color: ;
}

body .row-fluid select{
  background-position: 92.5% 54% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
  background-size: 11px !important;
  background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/angle-down.svg);
  background-repeat: no-repeat;
}

body .row-fluid .hs-form fieldset.form-columns-2 .hs-form-field {
  width: 47%;
  margin-right: 6%;
}

body .row-fluid .hs-form fieldset .hs-form-field:last-child{
  margin-right:0;
}

body .row-fluid .hs-form fieldset.form-columns-2 .input,
body .row-fluid .hs-form fieldset.form-columns-3 .input {
  margin-right:0px;
}

body .container-fluid .row-fluid .hs-form fieldset .field:last-child .input{
  margin-right:0;
}

@media(max-width:480px){

  body form.hs-form .form-columns-2 .hs-form-field .hs-input,body form.hs-form .form-columns-3 .hs-form-field .hs-input{
    width:100%;
  }

  body .row-fluid .hs-form fieldset .input{
    margin:0;
  }

  body .row-fluid .hs-form fieldset.form-columns-3 .hs-form-field {
    width: 100%;
    margin-right: 0;
  }

  .row-fluid form .hs_submit .actions{
    text-align:center;
  }

  body .row-fluid .hs-form fieldset.form-columns-2 .hs-form-field {
    width: 100%;
    margin-right: 0;
  }

  form .file-upload-button-label{
    font-size:12px;
  }

  form .file-upload-file-name{
    font-size:12px;
    padding-left: 102px;
  }

}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}

body .hs-input:focus {
  outline: 0;
  border: 1px solid #ff2121;
}

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

body .row-fluid fieldset {
  max-width: 100%;
}

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: #333e63;
}

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: #6315ff;
}

.actions {
  padding: 0;
  text-align:center
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
  margin-left:0;
}
form .inputs-list label {
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 13.33px;
  
  font-weight: 400;
  font-style: normal;
  
  line-height: 24px;
  letter-spacing: 0px;
  color:rgba(16, 24, 32, 1.0);
  display: block;
  float: none;
  width: auto;
  padding: 0;
  margin:2px 0;
  text-align: left;
  white-space: normal;
  text-transform: ;
}
.inputs-list:first-child {
  padding-top: 6px;
  margin-bottom: 18px;
}
.inputs-list > li + li {
  padding-top: 2px;
}


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

.hs-field-desc {
  color: #333e63;
  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%;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}

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

.email-correction a,
.email-validation a {
  cursor: pointer;
}

@media(max-width:767px){

  body .row-fluid form .form-columns-2 .hs-form-field .hs-input {
    width: 100%!important;
  }
  form{
    padding:25px 25px;
  }

}

@media(max-width:400px){

  form .input{
    margin-right:0px!important;
  }

}

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

}

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

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



/* Subscribe Form Stylings Here */

/*======= Placeholder Color ====*/

body .row-fluid .sub-form .hs-input::-webkit-input-placeholder {
  font-size: px;
  font-family: ;
  color: ;
  text-transform: ;
  font-style: ;
  font-weight: ;
  line-height: 1.75;
}

body .row-fluid .sub-form .hs-input::-moz-placeholder {
  font-size: px;
  font-family: ;
  color: ;
  text-transform: ;
  font-style: ;
  font-weight: ;
  line-height: 1.75;
}

body .row-fluid .sub-form .hs-input::-ms-input-placeholder {  
  font-size: px;
  font-family: ;
  color: ;
  text-transform: ;
  font-style: ;
  font-weight: ;
  line-height: 1.75;
}

.sub-form .email-prefs .item .item-inner span {
  font-size: px;
  color: ;
  font-weight: ;
  line-height: ;
  letter-spacing: px;
}


.sub-form input[type="file"]::-webkit-file-upload-button {
  -webkit-appearance:none;
  border:0;
  background:;
  color:#ffffff;
  position:absolute;
  bottom:40%;
  left:40%;
  width:100px;
  height:24px;
  font-size:16px;
  border-radius:4px;
}

.sub-form form {
  padding: 60px 40px;
  background: ;
  border: ;
  border-radius: px;
  max-width: px;
  margin: 0 auto;
}


.sub-form .form-title{
  margin: 0;
  max-width: px;
  color: ;
  background: ;
  padding:20px 20px 0;
  margin:0 auto;
}

body .row-fluid .sub-form .hs-button {  
  font-size: px;
  line-height: px;
  padding: px px;
  font-family: ;
  color: ;
  font-style: ;
  letter-spacing: px;
  background-color: ;
  border: ;
  border-radius: px;
  text-transform: ;
  font-weight: ;

}

body .row-fluid .sub-form .hs-button:hover{ 
  background: ;
  border-color:;
  color:;
} 

body .row-fluid .sub-form .hs-button:focus,
body .row-fluid .sub-form .hs-button:active{
  background-color: ;
  border: 1px solid ;
  border-radius: px;
  color: ;
}

.sub-form .hs-form label {
  font-size: px;
  font-family: ;
  color: ;
  text-decoration: initial;
  font-style: ;
  font-weight: ;
  text-transform: ;
}

body .container-fluid .row-fluid .sub-form .hs-error-msgs label {
  font-size: px;
  font-family: ;
  color: ;
  text-decoration: initial;
  font-style: ;
  font-weight: ;
  text-transform: ;
}

body .container-fluid .row-fluid .sub-form .hs-field-desc {  
  font-size: px;
  font-family: ;
  color: ;
  text-decoration: initial;
  font-style: ;
  font-weight: ;
  text-transform: ;
}

.sub-form form .hs-richtext p,
.sub-form .hs-form-booleancheckbox-display p,
.sub-form .legal-consent-container .hs-form-booleancheckbox-display{
  font-size: px ! important;
  font-family: ;
  color: ;
  text-decoration: initial;
  font-style: ;
  font-weight: ;
  text-transform: ;
}

body .row-fluid .sub-form .hs-input,
.sub-form .systems-page-psw input#hs-pwd-widget-password{
  height:px;
  padding: px px;
  font-size: px;
  font-family: ;
  color: ;
  text-transform: ;
  font-style: ;
  font-weight: ;
  background: ;
  border: px  ;
  -webkit-border-radius: px;
  -moz-border-radius: px;
  -ms-border-radius: px;
  border-radius: px;

}

/*=======================================================
CHECKBOX AND RADIO BUTTONS STYLING
=======================================================*/            

.sub-form input.hs-input.error,
.sub-form div.field.error input,
.sub-form div.field.error textarea,
.sub-form div.field.error .chzn-choices,
.sub-form textarea.hs-input.error,
.sub-form select.hs-input.error {
  border-color: #333e63;
}

.sub-form input.hs-input.error:focus,
.sub-form div.field.error input:focus,
.sub-form div.field.error textarea:focus,
.sub-form div.field.error .chzn-choices:focus,
.sub-form textarea.hs-input.error:focus,
.sub-form select.hs-input.error:focus {
  border-color: #6315ff;
}

.sub-form .sub-form .hs-field-desc {
  color: #333e63;
}

.sub-form .hs-richtext {
  font-size: ;
}

/*=========================== Light scheme Colors ==========================================*/

.submitted-message.hs-main-font-element {
  min-height: 300px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #101a29;
  background: #101a29;
}
body .row-fluid .hs-input,
.systems-page-psw input#hs-pwd-widget-password{
  color: #101820;
}

body .row-fluid .hs-input,
.systems-page-psw input#hs-pwd-widget-password{
  border: 1px solid rgba(226, 226, 226, 1.0);
}

body .container-fluid .row-fluid .hs-error-msgs label {
  color: #F2545B;
}

/*=========================== Light scheme Colors ends ==========================================*/

@media(min-width:768px){
  .body-container-event_single .form-cm form{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .body-container-event_single .form-cm form .hs_email{
    width:71.5%;
  }

  .body-container-event_single .form-cm form .hs-input{
    margin-bottom: 0px !important;
  }

  .body-container-event_single .form-cm form .hs_submit{
    width:23.5%
  }
}

.body-container-event_single .form-cm .hs-form label span{
  color: #fff !important;
}

.body-container-event_single .form-cm form .hs-button{
  background-color: #101A29 !important;
}

/* Styling the file input container */
.hs_file_upload .input {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}



@media(min-width:768px) and (max-width:1024px){
  body .row-fluid input.hs-button{
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
  }
}



@media(max-width:767px){
  body .row-fluid input.hs-button{
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 20px;
  }
}



.legal-consent-container .hs-form-booleancheckbox-display span,
form .legal-consent-container .hs-richtext{
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 16px;
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 25px;
  letter-spacing: 0px;

}


.hs_error_rollup,
.hs-error-msgs label a{
  display: none;
}

@media(max-width: 767px){
  body .container-fluid .row-fluid form .hs-error-msgs label{
    font-size: 11px;
  }
}
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

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


 


[class*="-force-full-width-section"] > .row-fluid{
	padding:0px!important;
}

/* [class*="-background-layers"].dnd-section {
background-image: none!important;
} */

/********************   Error 404 *********************/
.error-404 li {
	font-size: 16px;
	line-height: 23px;
	color: #9b9b9b;
	letter-spacing: 0;
	font-weight: 400;
}
body .row-fluid .search-bar input.hs-search-field__input {
    max-width: 359px;
    width: 100%;
}
.error-404.overlay:before,
.backup_unsubscribe.overlay:before,
.update.overlay:before,
.background-prefernces:before{
	background: #000;
	opacity: .6;
}
.error-404 .main-404{
	background: rgba(0,0,0,0.47058823529411764);
	width: 100%;
	max-width: 740px;
	padding: 50px;

}
.error-404 .underline-banner{
	border-bottom: 1px solid #e7e7e7;
	position: relative;
	width: 100%;
	max-width: 760px;
	margin-bottom: 40px;
}
.error-404 .underline-banner:before{
	position: absolute;
	content: '';
	bottom: -1px;
	left: 0;
	width: 71px;
	height: 4px;  
	background:#fff;
}
.error-404 .search-bar {
	margin-top: 24px;
}
@media(max-width:767px){

	.error-404 .main-404{
		padding:15px;
	}
	#hs_cos_wrapper_sys_404_error .cta-choices {
		text-align: center;
	}
}


/********************   Error 500 *********************/

.backup_unsubscribe  .main-500 ,
.password-wrapper .main-500 {
	background: rgba(0,0,0,0.47058823529411764);
	width: 100%;
	max-width: 740px;
	padding: 50px;

}

/***************backup_unsubscribe  *******/

.backup_unsubscribe {
	padding: 247px 0px 141px 0;
	border-bottom: 4px solid #ff4f0f;
	background-size:cover;
	background-position:center center;
	position: relative;
	z-index: 1;
}
.backup_unsubscribe .top-conta{
	max-width:588px;
}
.backup_unsubscribe p{
	margin:0;
}
.backup_unsubscribe p:last-child {
	margin-bottom:16px;
}
.backup_unsubscribe .systems-page ,
.password-wrapper .systems-page{
	margin: 0;
	max-width: 700px;
	padding:0;
}
.backup_unsubscribe .systems-page .page-header{
	display:none;
}


.backup_unsubscribe .systems-page .hs_cos_wrapper{
	padding:0;
	background:transparent;
}
.backup_unsubscribe .systems-page .hs_cos_wrapper form ,
.password-wrapper .systems-page .hs_cos_wrapper form {
	background:transparent;
	padding:0;
	border:none;
}
@media(max-width:767px){
	.backup_unsubscribe .top-conta{
		max-width:none;
	}
}


/*****************************************preferences***********************/

.background-prefernces{
	padding: 250px 0 140px;
	border-bottom: 4px solid #ff4f0f;
	background-size:cover;
	position:relative;
	z-index:1;
}
.pref-header .systems-page{
	max-width:none;
	padding:0;
	margin:0;
}
.pref-header .systems-page form{
	background: none;
	padding: 0;
}


/*****************************************/
/* Email Preferences  */
/*****************************************/

#email-preferences form {
	border: none;
	padding:0px;
	max-width: unset;
	background:none;
}

#email-preferences .checkbox-row span.fakelabel span {
	width: 86%;
}
.email-prefs .item .item-inner {
	-moz-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-moz-transition-property: background;
	-webkit-transition-property: background;
	-o-transition-property: background;
	transition-property: background;
	-moz-transition-duration: 0.15s;
	-webkit-transition-duration: 0.15s;
	-o-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-moz-transition-timing-function: linear;
	-webkit-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
	border: 1px solid #E4E4E4;
	overflow: hidden;
	margin-top: 0;
	padding: 15px;
	background: #f5f7fa;
}
#email-preferences .email-prefs .item .item-inner {
	border-radius: 0;
	border: 0;
	width: 100%;
	cursor:pointer;

}

.email-prefs .item {
	-moz-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	padding-bottom: 1px;
	position: relative;
	margin: 20px 0px;
}
#email-preferences .email-prefs .item {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-basis: 30.9%;
	-webkit-flex-basis: 30.9%;
	float: left;
	margin-right: 2.43%;
	margin-top: 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	margin-bottom: 0;
}

@media(max-width:1024px) and (min-width:768px){
	#email-preferences .email-prefs .item {

		flex-basis: 46.9%;
		-webkit-flex-basis: 46.9%;

	}
}
@media(max-width:767px){
	#email-preferences .email-prefs .item {

		flex-basis: 100%;
		-webkit-flex-basis: 100%;

	}
}
#email-preferences .subscribe-options {
	margin-bottom: 0;
	overflow: hidden;
	display: block;
	width: 100%;
	margin-top: 40px;
}
#email-preferences .form-style input[type="checkbox"] {
	border: solid 2px #000000;
	padding: 7px;
	border-radius: 3px;
	margin-bottom: 4px;
	height: auto;
	float: left;
	margin-top: -2px;
	position: relative;
	cursor: pointer;
}

#email-preferences input[type="checkbox"]:checked .email-prefs .item-inner{
	background: #f0f7fc;
	border: 1px solid #e0e7ec;
	transition: all .4s ease-in-out;
}


#email-preferences .email-prefs .item-inner:hover {
	-moz-box-shadow:rgb(0 0 0 / 35%) 0px 5px 10px;
	-webkit-box-shadow: rgb(0 0 0 / 35%) 0px 5px 10px;
	-o-box-shadow: rgb(0 0 0 / 35%) 0px 5px 10px;
	box-shadow:rgb(0 0 0 / 35%) 0px 5px 10px;
	transition: all .4s ease-in-out;
}

html body #email-preferences .page-header {
	margin: 0px;
	padding-bottom: 1em;
}


.widget-type-email_subscriptions p, .widget-type-email_subscriptions h1, .widget-type-email_subscriptions h2, .widget-type-email_subscriptions_confirmation p, .widget-type-email_subscriptions_confirmation h1, .widget-type-email_subscriptions_confirmation h2, .widget-type-email_simple_subscription p, .widget-type-email_simple_subscription h1, .widget-type-email_simple_subscription h2 {
	font-weight: normal;
	font-size: 20px;
	line-height: 25px;
	margin: 1px 0px 4px;
}

#email-preferences .widget-type-email_subscriptions h1, #email-preferences #content {
	font-weight: 700;
	line-height: normal;
}
#email-preferences #content {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: stretch;
	-moz-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-wrap: wrap;
	-wevkit-flex-wrap: wrap;
	flex-direction: row;
	-webkit-flex-direction: row;
	margin-right: -2.5%;
}

#email-preferences .header { 
	margin-left: 0;
	display: block;
	width: 100%;
}

#email-preferences .email-prefs .item p {
	clear: both;
	margin: 5px 20px 0px;
}

#email-preferences .email-prefs .item .item-inner span {
	font-size: 16px;
	color: #444;
	font-weight: bold;
	line-height: 1.3;
	letter-spacing: 0px;
	display:block;
}
#email-preferences .email-prefs .item .item-inner p {
	font-size: 14px;
	color: #444;
	font-weight: normal;
	line-height: 25px;
	letter-spacing: 0;
}

#email-preferences .hs-button {
	max-width: 315px;
	margin-left: 0px;
}
#email-preferences .subscribe-options label span {
	font-weight: normal;
	margin-left: 3px;
	font-size: 14px;
	font-weight: bold;
}
#email-preferences .subscribe-options label {
	margin-left: 0;
}
#email-preferences .subscribe-options input[type="checkbox"] {
	border: solid 2px #000000;
	top: 1px;
	position: relative;
	cursor: pointer;
	background: white;
	margin-left: 0px;
	margin-right: 3px;
}
.subscribe-options p:last-child{
	margin:0px;
}
.subscribe-options label span {
	vertical-align: top;
}
#email-preferences .checkbox-row {
	margin-top: 0;
	overflow: hidden;
}
#email-preferences .checkbox-row input {
	vertical-align: middle;
	margin: 0;
	padding: 0;
	float: left;
	top: 3px;
	position: relative;
	cursor: pointer;
}
#email-preferences .checkbox-row span.fakelabel span {
	float: left;
	font-weight: bold;
	margin-left: 7px;
	vertical-align: top;
}
#email-preferences .checkbox-row span.fakelabel {
	-moz-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	text-transform: normal;
	vertical-align: middle;
}


/*****************************************/
/* Subscriptions Conformation Page   */
/*****************************************/
.subscriptions-conformation{
	background:#f5f7fa;
	padding:149px 0px 158px;
}

.subscriptions-conf {
	max-width: 750px;
	margin: 0 auto;
	float: none;
	padding: 70px 85px 70px 92px;
	border: 2px solid #000000;
	background: #fff;
	box-sizing: border-box;
}
.subscriptions-conf h1 {
	font-size: 38px;
	line-height: 1.2;
	max-width: 500px;
}
.subscriptions-conf h2 {
	margin-bottom:10px;
}
#subscriptions_conf #content {
	font-weight: 700;
	margin-top: 20px;
	font-size:16px;
}


@media (max-width: 1024px) and (min-width:768px){
	.subscriptions-conformation {
		padding: 80px 0px;
	}
}
@media (max-width: 767px){
	.subscriptions-conf {
		padding: 20px 20px;
	}
	.subscriptions-conformation {
		padding: 60px 0px;
	}
	#subscriptions_conf .contact-cm .cm-container {
		text-align: center;
	}
	.subscriptions-conf h1 {
		font-size: 26px;

	}
}


/*****************************************/
/* System Pages Footer Section   */
/*****************************************/


body .row-fluid .footer-text-conta .right-col.vertical-center{
	justify-content:flex-end;
}
.footer-text-cta-box .contact-info p{
	margin-bottom:0;
}
.footer-text-conta{
	padding-bottom:70px;
}
.footer-text-cta-box hr {
	opacity:0.09;
}
.update{
	padding: 132px 0 88px;
	border-bottom:none;
}
.top-conta a h3 {
	color: #246bfd;
	margin-bottom: 4px;
	margin-top:21px;
}
.conform-msg {
	border: 1px solid #e2e2e2;
	background: #fafafa;
	border-radius: 6px;
	padding: 15px 20px 5px 40px;
	margin-top: 11px;
}
.update .top-conta {
	padding-bottom: 10px;
}
.update .image-container img{
	width: 100%;
	max-width: 487px;
	margin-left: auto;
}
.update-list li{
	list-style-image:url('//1818760.fs1.hubspotusercontent-na1.net/hubfs/1818760/raw_assets/public/@marketplace/www_palmspire_com/STORM/Images/icon/List.png');
		}
.update-list ul{
	margin:0;
}
.update-list li h4 {
	padding-left: 12px;
}

.footer-text-cta-box{
	background:#101a29;
	padding:87px 0 0px;
	position:relative;
	z-index:2;
}
.footer-text-cta-box .contact-info {
	padding-bottom: 60px;
	padding-top: 60px;
}


@media(max-width:767px){
	.footer-conta .span10 {
		margin-top: 20px;
		margin-left:0;
	}
}


@media(min-width:768px){
	.footer-conta{
		display: flex;
		vertical-align: middle;
		align-items: center; 
	}
	.footer-conta .span10 {
		margin-left: 17px;
	}
}

.footer-conta a h4{
	margin-bottom:0;
}

.recent-blog .top-hading-conta {
	padding-bottom: 55px;
}
.footer-text-conta .top-hading-conta{
	padding-right:30px;
}
.recent-blog .cta-container.bottom-cta {
	padding-top: 50px;
}

@media(max-width:767px){
	.update {
		padding: 80px 0 60px;
	}

	.top-conta a h3 {
		margin-top:0px;
	}
	.footer-text-cta-box .contact-info {
		padding-bottom: 20px;
		padding-top: 20px;
	}
	.footer-text-conta {
		padding-bottom: 35px;
	}
	.footer-text-cta-box {
		padding: 60px 0 0px;
	}
	.card-section .single {
		margin-bottom: 40px;
	}
	.recent-blog .top-hading-conta {
		padding-bottom: 30px;
	}
	body .footer-text-conta .cta-container {
		padding-top: 20px;
		text-align:left;
	}
	.recent-blog .cta-container.bottom-cta{
		padding-top: 30px;
	}
	.update .image-container img{
		max-width:100%;
	}
}




/*****************************************/
/* System Pages recent Blog Section */
/*****************************************/

.system_recent_blogs {
	padding: 140px 0;
	background-color: #fafafa;
}
.system_recent_blogs .text-container{
	margin-bottom:45px;
}
.sys_404_error {
	margin-top: 50px;
}

@media(min-width:768px) and (max-width:1024px){
	.system_recent_blogs{
		padding:80px 0;
	}
}

@media(max-width:767px){
	.system_recent_blogs .cta-container{
		margin-top:30px;
	}
	.system_recent_blogs .text-container{
		margin-bottom:0;
	}
	.system_recent_blogs{
		padding:60px 0;
	}
}




/*****************************************/
/* Password Prompt Page  */
/*****************************************/

body span.hs_cos_wrapper_type_password_prompt{
  margin-left: 62px;
  margin-top:15px;
}

body .password-wrapper {
	background-color: #fafafa;
	border-bottom: none;
	margin-top: 84px;
	padding: 150px 0;
}
body .password-wrapper form{
	padding: 0;
	background: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-left: 0px;
	border:none;
}
body .password-wrapper .right-col label{
	margin-left:62px;
	color:#000;
	font-size: 16px;
	font-weight: 600;
	line-height:normal;
	letter-spacing:normal;
}
body .password-wrapper form input#hs-pwd-widget-password {
	max-width: 450px;
	width: 100%;
	min-height: 45px;
	margin-top: 0 !important;
	margin-right: 28px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 4px;
}
body .password-wrapper form input.hs-button {
	max-width: 106px;
	display: flex;
	align-items: center;
	margin:0;
	justify-content: center;
	height:45px;
	padding:0px;
	border:none;
}
body .password-wrapper form input#hs-pwd-widget-password::placeholder{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: #737588;
}
@media(min-width:768px) and (max-width:1024px){
	body .password-wrapper {
		margin-top: 84px;
		padding: 100px 0;
	}
  body span.hs_cos_wrapper_type_password_prompt{
   margin-left: 0px; 
  }
  body .password-wrapper .right-col label{
    margin-left: 0px;
  }
}
@media(max-width:767px){
	body .password-wrapper {
		margin-top: 0;
		padding: 80px 0;
	}
	body .password-wrapper form{
		display:block;
	}
	body .password-wrapper form,
	body .password-wrapper .right-col label{
		margin-left:0;
	}
	body .password-wrapper form input.hs-button,
	body .password-wrapper form input#hs-pwd-widget-password{
		max-width:none;
	}
	body .password-wrapper form input.hs-button{
		margin-top:30px;
	}
  body .password-wrapper .right-col{
    margin-top: 30px;
  }
}




/*****************************************/
/* Subscription Preference Page  */
/*****************************************/

body .pref-header #email-preferences .subscription_preference_banner {
	background-color: #fafafa;
	margin-top: 141px;
	padding: 75px 0 80px;
}
body .pref-header #email-preferences .subscription_preference_banner .left-col .page-header br,
body .pref-header #email-preferences .subscription_preference .email-prefs#content p.header,
body .subscription_preference #email-prefs-form .page-header,
body .pref-header #email-preferences .subscription_preference_banner .left-col .email-prefs#content {
	display: none;
}
body .pref-header #email-preferences .subscription_preference_banner .left-col .page-header h1 br{
	display:block;
}
body .pref-header #email-preferences .widget-type-email_subscriptions h1 {
	font-size: 56px;
	font-weight: bold;
	line-height: 1.14;
	letter-spacing: -2.24px;
	color:#101a29;
	margin-bottom: 42px;
}
body .pref-header #email-preferences .subscription_preference_banner .left-col .page-header h2{
	font-size: 28px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.36;
	letter-spacing: normal;
	text-align: left;
	color: #246bfd;
}
body .pref-header #email-preferences #content .subscribe-options p.header,
body .pref-header #email-preferences .email-prefs .item .item-inner p,
body .pref-header #email-preferences .subscription_preference_banner .left-col .page-header p{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: #737588;
}
body .pref-header #email-preferences .subscription_preference {
	padding: 75px 0 120px;
}
body .pref-header #email-preferences .email-prefs .item .item-inner {
	padding: 20px 19px 17px 21px;
	border-radius: 4px;
	border: solid 1px transparent;
	background-color: #fafafa;
	transition:all .3s ease-in-out;
}
body .pref-header #email-preferences .email-prefs .item .item-inner:hover {
	box-shadow: 0 4px 70px 0 rgba(0, 0, 0, 0.1);
	border: solid 1px #e2e2e2;
	background-color: #fff;
}
body .pref-header #email-preferences input#globalunsub[type=checkbox],
body .pref-header #email-preferences .checkbox-row input[type=checkbox] {
	width: 18px;
	height: 18px;
	border-radius: 2px;
	position: relative;
	cursor: pointer;
	background:transparent;
}
body .pref-header #email-preferences input#globalunsub[type=checkbox]:before,
body .pref-header #email-preferences .checkbox-row input[type=checkbox]:before {
	content: "";
	display: block;
	position: absolute;
	width: 18px;
	height: 18px;
	top: 0;
	left: 0;
	border: 1px solid #2cd8b1;
	border-radius: 2px;
	background-color: #fff;
}
body .pref-header #email-preferences input#globalunsub[type=checkbox]:checked:before,
body .pref-header #email-preferences .checkbox-row input[type=checkbox]:checked:before {
	content: "";
	display: block;
	position: absolute;
	width: 18px;
	height: 18px;
	top: 0;
	left: 0;
	border: 1px solid #2cd8b1;
	border-radius: 2px;
	background-color: #2cd8b1;
}
body .pref-header #email-preferences input#globalunsub[type=checkbox]:checked:after ,
body .pref-header #email-preferences .checkbox-row input[type=checkbox]:checked:after {
	content: "";
	display: block;
	width: 5px;
	height: 10px;
	border-radius: 0;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 2px;
	left: 6px;
}
body .pref-header #email-preferences .email-prefs .item .item-inner span {
	color: #101a29;
	display: block;
	font-size: 20px;
	line-height: 28px;
}
body .pref-header #email-preferences .checkbox-row input{
	margin:3px;
	top:22px;
	position:absolute;
}
body .pref-header #email-preferences .email-prefs .item p,
body .pref-header #email-preferences .checkbox-row span.fakelabel span {
	margin: 0px 20px 0 37px;
}
body .pref-header #email-preferences .subscribe-options {
	border-top: 1px solid #e2e2e2;
	padding-top: 70px;
	margin-top:60px;
	display:flex;
	align-items:center;
	max-width:1128px;
	width:100%;
	margin-bottom:10px;
}
body .pref-header #email-preferences .subscription_preference .email-prefs#content .subscribe-options p.header{
	display:contents;
}
body .pref-header #email-preferences .subscription_preference .email-prefs#content{
	position:relative;
}
body .pref-header #email-preferences .hs-button {
	position: absolute;
	bottom: 0;
	top: auto;
	min-height: 45px;
	width: 100%;
	max-width: 250px;
	right: 28px;
	margin-top: 0;
}
body .pref-header #email-preferences .subscribe-options label{
	margin-left:60px;
}
body .pref-header #email-preferences .subscribe-options label span {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: normal;
	color: #101a29;
	margin-left: 6px;
}


@media(min-width:768px) and (max-width:1024px){
	body .pref-header #email-preferences .hs-button {
		position: relative;
		right: 0;
		margin: 20px auto 0;
	}
	body .pref-header #email-preferences .subscribe-options{
		justify-content:space-between;
		width:96%;
		padding-top: 30px;
		margin-top: 40px;
	}
	body .pref-header #email-preferences .subscribe-options label{
		margin-left:0;
	}
	body .pref-header #email-preferences .subscribe-options p{
		margin-left:15px;
	}
}
@media(max-width:767px){
	body .pref-header #email-preferences .hs-button {
		position: relative;
		right: 0;
		margin: 20px auto 0;
	}
	body .pref-header #email-preferences .subscribe-options{
		flex-direction: column;
		max-width: 100%;
		width: 98%;
		margin-bottom:0;
	}
	body .pref-header #email-preferences .subscribe-options label{
		margin-left:0;
	}
	body .pref-header #email-preferences .subscription_preference_banner {
		margin-top:0;
		padding: 60px 0 60px;
	}
	body .pref-header #email-preferences .widget-type-email_subscriptions h1{
		font-size: 40px;
	}
	body .pref-header #email-preferences .subscription_preference{
		padding: 60px 0 60px;
	}
}



/*****************************************/
/* Backup Unsubscribe Page  */
/*****************************************/

.backup_unsubscribe{
	margin-top:141px;
	padding:80px 0;
	border-bottom:none;
}
.backup_unsubscribe input.email-edit.hs-input {
	width: 100% !important;
	min-height:45px;
	margin-bottom:0;
}
.backup_unsubscribe input#submitbutton {
	max-width: 147px;
	width: 100%;
	margin: 0;
	padding:0;
	display: inline-block;
	height:45px;
	border:none;
}
.backup_unsubscribe form #content{
	display: flex;
	align-items: center;
} 
.backup_unsubscribe form #content>div{
	max-width: 413px;
	padding-bottom:0 !important;
	width:100%;
	margin-right: 28px;
}
.backup_unsubscribe form #content h3{
	display:none;
}

@media(max-width:767px){
	.backup_unsubscribe{
		margin-top:0;
		padding:40px 0;
	}
	.backup_unsubscribe form #content>div,
	.backup_unsubscribe input.email-edit.hs-input,
	.backup_unsubscribe input#submitbutton{
		max-width:none;
		width:100% !important;
		margin-right:0;
	}
	.backup_unsubscribe input#submitbutton{
		margin-top:30px;
	}
	.backup_unsubscribe form #content{
		display:block;
	}
	.backup_unsubscribe .right-col{
		margin-top:40px;
	}
}

/*****************************************/
/* Error 404 & 500 Page*/
/*****************************************/

.error-404.systems-page {
	margin-top: 84px;
	padding: 100px 0 110px;
}
.error-500.systems-page{
	margin-top:115px;
	padding:70px 0 110px;
}
.error-500 form,
.error-404 form {
	padding: 0;
	background: none;
	display:flex;
	border:none;
}
.error-500 form input.hs-search-field__input,
.error-404 form input.hs-search-field__input{
	padding: 9px 32px 11px 16px;
	border-radius: 4px;
	border: solid 1px #e2e2e2;
	background-color: #fff;
	height:45px;
	max-width:359px;
	width:100%;
	margin-right:28px;
}
.error-500 form button.search-button,
.error-404 form button.search-button{
	height: 45px;
	width: 104px;
	padding: 11px 10px 16px 10px;
	display: inline-block;
	text-align: center;
	border:none;
	outline:none;
}
.error-500 form button.search-button:hover,
.error-404 form button.search-button:hover{
	border-radius:45px;
}
.error-500 form input.hs-search-field__input,
.error-404 form input.hs-search-field__input{
	font-size: 16px;
	font-weight: bold;
	line-height: 1.56;
	letter-spacing: normal;
	color:#101a29;
}
.error-500 form input.hs-search-field__input::placeholder,
.error-404 form input.hs-search-field__input::placeholder{
	font-size: 16px;
	font-weight: normal;
	line-height: 1.56;
	letter-spacing: normal;
	color: #737588;
}
.error-404 .left-col{
	padding-right:50px;
}
.error-500 .left-col {
	padding-right: 142px;
}

@media(min-width:768px) and (max-width:1024px){
	.error-500.systems-page,
	.error-404.systems-page {
		margin-top: 70px;
		padding: 60px 0;
	}
	.error-500 .left-col,
	.error-404 .left-col{
		padding-right:0;
	}
}
@media(max-width:767px){
	.error-500.systems-page,
	.error-404.systems-page {
		margin-top: 0px;
		padding: 60px 0;
	}
	.error-500 form,
	.error-404 form{
		display:block;
	}
	.error-500 form input.hs-search-field__input,
	body .row-fluid .error-404 form input.hs-search-field__input{
		max-width:none;
		margin-right:0;
	}
	.error-500 form button.search-button,
	.error-404 form button.search-button{
		max-width:none;
		width:100%;
		margin-top:30px;
	}
	.error-500 .right-col,
	.error-404 .right-col{
		margin-top:40px;
	}
	.error-500 .left-col,
	.error-404 .left-col{
		padding-right:0;
	}
}






/*****************************************/
/* Search Result Page*/
/*****************************************/

.search-result-page .search-banner{
	background-color:#fafafa;
	margin-top: 84px;
	padding: 120px 0 105px;
}
.search-result-page .search-banner .banner-head{
	margin-bottom: 25px;
}
.search-result-page .search-banner form {
	padding: 0;
	background: none;
	position:relative;
	max-width:677px;
	width:100%;
	margin:0 auto;
	border:none;
}
body .row-fluid .search-result-page .search-banner form input.hs-search-field__input{
	height: 56px;
	padding: 13.5px 15.4px 14.1px 25px;
	max-width: 677px;
	margin: 0 auto;
	width: 100%;
	border-radius: 5.9px;
	border: solid 1.5px #e2e2e2;
	background-color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.56;
	letter-spacing: normal;
	color: #101a29;
}
body .row-fluid .search-result-page .search-banner form input.hs-search-field__input::placeholder{
	font-size: 16px;
	font-weight: normal;
	line-height: 1.56;
	letter-spacing: normal;
	color: #737588;
}
body .row-fluid .search-result-page .search-banner form button.search-button {
	position: absolute;
	right: 0;
	background: none;
	padding: 0;
	outline: none;
	border: none;
	top: 0;
	padding: 14px 14px;
	cursor: pointer;
}
body .row-fluid .search-result-page .search-banner form button.search-button img{
	width:28px;
	height:28px;
}
body .row-fluid .search-result-page .search-result {
	padding: 80px 0;
}
body .row-fluid .search-result-page .hs-search-results ul.hs-search-results__listing li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 58px;
	border-bottom: 1px solid #e6e6e6;
	padding-bottom:50px;
	margin-left:0;
}
body .row-fluid .search-result-page .hs-search-results ul.hs-search-results__listing li p.hs-search-results__description{
	max-width: 601px;
	margin: 0;
	padding: 0;
}
body .row-fluid .search-result-page .hs-search-results ul#hsresults.hs-search-results__listing li a{
	font-size: 20px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: normal;
	text-align: left;
	text-transform:none;
	text-decoration:none;
	color:#101a29;
	max-width:215px;
	width:max-content;
}
body .row-fluid .search-result-page .hs-search-results ul.hs-search-results__listing li p.hs-search-results__description span,
body .row-fluid .search-result-page .hs-search-results ul#hsresults.hs-search-results__listing li a span{
	color:#246bfd;
}
body .row-fluid .search-result-page .systems-page.systems-page-search-results {
	max-width: 950px;
	margin: 0 auto;
}

@media(min-width:768px) and (max-width:1024px){
	.search-result-page .search-banner{
		margin-top:70px;
		padding:60px 0;
	}
	body .row-fluid .search-result-page .hs-search-results ul.hs-search-results__listing li p.hs-search-results__description{
		max-width:500px;
	}
}

@media(max-width:767px){
	body .row-fluid .search-result-page .search-result,
	.search-result-page .search-banner{
		margin:0;
		padding:60px 0;
	}
	body .row-fluid .search-result-page .hs-search-results ul.hs-search-results__listing li {
		display: block;
		margin-top: 30px; 
		padding-bottom: 30px;
	}
	body .row-fluid .search-result-page .hs-search-results ul.hs-search-results__listing li p.hs-search-results__description {
		max-width: none;
		margin-top: 20px;
	}
	body .row-fluid .search-result-page .search-banner form button.search-button img {
		width: 24px;
		height: 24px; 
	}
}






/*****************************************/
/* Subscription Update Confirmation Page*/
/*****************************************/

body .update_confirmation{
	margin-top:111px;
	padding:70px 0 100px;
}
body .update_confirmation .confirmation-conta {
	position:relative;
	padding: 15px 39px 14px 22px;
	margin-top:10px;
	border-radius: 6px;
	border: solid 1px #e2e2e2;
	background-color: #fafafa;
	max-width:526px;
	width:100%;
}
body .update_confirmation .confirmation-conta::after{
	background:url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Updated%20Growthkit%20Pack/Check_Mark.png');
	background-position:center;
	background-size:cover;
	background-repeat:no-repeat;
	content:'';
	width:23px;
	height:23px;
	position:absolute;
	top:17px;
	left:20px;
}
body .update_confirmation .confirmation-conta h4{
	margin-left:43px;
	margin-bottom:0;
	letter-spacing:normal;
}
body .update_confirmation .email-conta{
	display:inline-block;
	margin-top:35px;
}
body .update_confirmation .right-col .image-container img{
	max-height:430px;
}

@media(min-width:768px) and (max-width:1024px){
	body .update_confirmation{
		padding:60px 0;
	}
	body .update_confirmation .confirmation-conta{
		padding:15px;
	}
	body .update_confirmation .confirmation-conta::after{
		top:23px;
	}
}
@media(max-width:767px){
	body .update_confirmation{
		padding:60px 0;
		margin-top:0;
	}
	body .update_confirmation .confirmation-conta{
		max-width:none;
		padding:20px;
	}
	body .update_confirmation .right-col{
		margin-top:30px;
	}
	body .update_confirmation .email-conta{
		margin-top:0;
	}
}

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

/* Images */
img {
  max-width: 100%;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* Videos */
video {
  max-width: 100%;
  height: auto;
}

/* Embed Container (iFrame, Object, Embed) */
.hs-responsive-embed {
  position: relative;
  height: auto;
  overflow: hidden;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.hs-responsive-embed iframe,
.hs-responsive-embed object,
.hs-responsive-embed embed {
  width: 100%;
  height: 100%;
  border: 0;
}

.hs-responsive-embed,
.hs-responsive-embed.hs-responsive-embed-youtube,
.hs-responsive-embed.hs-responsive-embed-wistia,
.hs-responsive-embed.hs-responsive-embed-vimeo {
  padding-bottom: 2%;
}

.hs-responsive-embed.hs-responsive-embed-instagram {
  padding-bottom: 116.01%;
}

.hs-responsive-embed.hs-responsive-embed-pinterest {
  height: auto;
  overflow: visible;
  padding: 0;
}

.hs-responsive-embed.hs-responsive-embed-pinterest iframe {
  position: static;
  width: auto;
  height: auto;
}

iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 568px) {
  iframe {
    max-width: 100%;
  }
}

/* Forms */
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select {
  padding: 6px;
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Menus */
.hs-menu-wrapper ul {
  padding: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
  list-style: none;
  margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul {
  display: inline-block;
  margin-bottom: 20px;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul:before {
  content: " ";
  display: table;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul:after {
  content: " ";
  display: table;
  clear: both;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 {
  float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  display: inline-block;
  padding: 10px 20px;
  white-space: nowrap;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  position: absolute;
  z-index: 10;
  left: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  display: block;
  white-space: nowrap;
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
  left: 180px;
  top: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}

.row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal>ul {
  margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch {
  position: relative;
  margin-bottom: 20px;
  min-height: 7em;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul {
  margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children {
  position: static;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper:before {
  content: " ";
  display: table;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper:after {
  content: " ";
  display: table;
  clear: both;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper>li {
  float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper>li a {
  display: inline-block;
  padding: 10px 20px;
  white-space: nowrap;
  max-width: 140px;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical {
  width: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  list-style: none;
  margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-vertical li a {
  display: block;
  white-space: nowrap;
  width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-vertical>ul {
  margin-bottom: 20px;
}

.hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-menu-depth-1>a {
  width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
  padding: 10px 20px;
  text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 180px;
}

.hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
  opacity: 1;
  visibility: visible;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li a {
  min-width: 140px;
  width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch>ul {
  max-width: 100%;
  overflow: hidden;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper>li.hs-item-has-children>ul.hs-menu-children-wrapper {
  display: block;
  visibility: visible;
  opacity: 1;
  position: static;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-2>a {
  padding-left: 4em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-3>a {
  padding-left: 6em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-4>a {
  padding-left: 8em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-5>a {
  padding-left: 140px;
}

.hs-menu-wrapper.hs-menu-not-show-active-branch li.hs-menu-depth-1 ul {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
}

@media (max-width: 568px) {

  .hs-menu-wrapper,
  .hs-menu-wrapper * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
    display: block;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal>ul {
    display: block;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 {
    float: none;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a,
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
  .hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch>ul li.hs-item-has-children.active-branch>ul.hs-menu-children-wrapper>li a {
    display: block;
    max-width: 100%;
    width: 100%;
  }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts>ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  visibility: visible;
  opacity: 1;
}

/* Space Module */
.widget-type-space {
  visibility: hidden;
}

/* Blog Author Section */
.hs-author-listing-header {
  margin: 0 0 0.75em 0;
}

.hs-author-social-links {
  display: inline-block;
}

.hs-author-social-links a.hs-author-social-link {
  width: 24px;
  height: 24px;
  border-width: 0px;
  border: 0px;
  line-height: 24px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  display: inline-block;
  text-indent: -99999px;
}

.hs-author-social-links a.hs-author-social-link.hs-social-facebook {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-linkedin {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-twitter {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/twitter-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-google-plus {
  background-image: url("//static.hubspot.com/final/img/common/icons/social/googleplus-24x24.png");
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/



 


/***********************Header fixed styling****************************/

@media(min-width:768px){

  

}

/********************Header fixed styling Ends************************/

.header-grp {
  /*   background:; */
  background:transparent;
  position: fixed;
  z-index:10;
  line-height:0;
  top:0;
  left:0;
  right:0;
  padding: 10px 0 0px;
  transition: 0.3s all ease-in-out;
}

.header-grp.header-section.fixed {
  /*   background: white; */
  background-color: rgba(255, 255, 255, 1.0);
  box-shadow: 0 0 70px 0 rgb(0 0 0 / 10%);
  transition: 0.3s all ease-in-out;
}


/*====================================================
Header No navigation Styling
====================================================*/   

header.header--no-navigation .header-grp{
  padding: 0;
}



@media (max-width: 767px){
  body .header-section .top-bar .top-bar-contact-info a ,
  body .header-section .top-bar .search-bar button.search-button{
    line-height: 0;
  }
}

@media (max-width: 415px){
  body .row-fluid .header-section .social-share .header-social-logo ul li,
  body .header-section .top-bar .top-bar-contact-info a,
  body .header-section .top-bar .search-bar button.search-button{
    padding-right: 4px!important;
    padding-left: 4px!important;
  }
  body .row-fluid .header-section .social-share .header-social-logo ul li:first-child{
    padding-left: 0px!important;
  }
  body .row-fluid .header-section .social-share .header-social-logo ul li:last-child{
    padding-right: 0px!important;
  }
}

/*====================================================
Header Search Styling
====================================================*/   


body .row-fluid .hs-search-field__bar button svg {
  height: 25px;
  fill:;
}

.hs-search-field__bar button {
  position: absolute;
  right: 0;
  width: 116px;
  background: ;
  border: 1px solid ;
  top:0px;
  border-radius:0;
  
}

body .row-fluid input.hs-search-field__input {
  padding: 20px;
  font-size: 32px;
  
}

#myOverlay .closebtn {
  width: 100%;
  max-width: 16px;
  position: absolute;
  right: 3px;
  font-size: 24px;
  z-index: 11;
  cursor: pointer;
  background: ;
  padding: 12px;
  border-radius: 50%;
  line-height: 0.7;
  text-align: center;
  color: ;
  top: -18px;
  box-sizing: unset;
}
#myOverlay .hs-search-field.hs-search-field--open form {
  max-width: 750px;
}
#myOverlay .overlay-content {
  max-width: 750px;
  margin: 0 auto;
}

ul#hsresults li {
  list-style-type: none;
}
ul#hsresults li a {
  text-transform: uppercase;
}

p.hs-search-results__description {
  margin-top: 20px;
}
.system-search-page h1 {
  margin-bottom: 40px;
}
.system-search-page {
  padding: 100px 0px;
}


@media(max-width: 1000px) and (min-width: 768px) {
  #myOverlay .closebtn {
    right: -19px;
  }
}

@media(max-width: 767px){
  p.hs-search-results__description {
    margin-top: 15px;
  }
  .system-search-page h1 {
    margin-bottom: 20px;
  }
  .system-search-page {
    padding: 60px 0px;
  }
}

/*====================================================
MOBILE MENU 
====================================================*/                

/* ==========================================================================
Custom Menu Primary
========================================================================== */



/* Child List */



/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width:768px) {
  .custom-menu-primary .hs-menu-wrapper { 
    display:block !important;
  }
}




/*===========================================================================
Mobile Menu - Hubspot Standard Toggle Menu
============================================================================*/


/**
* Special Note
*
* When the menu is open, a class of .mobile-open is applied to the body. You can 
* use this for custom styling on any element when the menu is in the open position.                     
*/

.mobile-trigger, .child-trigger{
  display: none; /* Hide button on Desktop */
}

@media(max-width: 767px){


  /* Variables
  ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* 
  * Menu Reset
  *
  * Remove styling from desktop version of custom-menu-primary. Place any 
  * additional CSS you want removed from the mobile menu in this reset 
  */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color:#ffffff;
  }


  /* Toggle Button
  ========================================================================== */

  .mobile-trigger{
    display: inline-block !important; /* Show button on mobile */
    cursor: pointer; /* Mouse pointer type on hover */
    position: absolute; /*******************************************/
    top:80px;          /* Position Button at right of screen  */
    right: 8px;        /*******************************************/
    width: auto; /* Button width */
    height: auto; /* Button height */      
    padding: 7px 10px 8px 10px;
    /*     background: #ffffff; /* Background color */
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    color: #246bfd; 
    transition: all .3s ease-in-out;
  }
  .mobile-trigger:hover{
    text-decoration: none; /* Removes link text underline on button */
    color:#246bfd;
    background-color: transparent; 
    border-color: transparent;
  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{
    color:#246bfd;
    background-color: transparent; 
    border-color: transparent;
  }


  /* Toggle Button Icon
  ========================================================================== */

  .mobile-trigger i{
    display: inline;
    position: relative;
    top: -4px;
  }
  .mobile-trigger i:before, .mobile-trigger i:after{
    position: absolute;
    content: '';
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{
    width: 25px;
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #246bfd; /* Icon color */
    display: inline-block;
    transition: all .3s ease-in-out;

  }
  .mobile-trigger i:before{
    top: -6px; /* Position top line */
  }
  .mobile-trigger i:after{
    top: 6px; /* Position bottom line */
  }

  .mobile-open .mobile-trigger i {
    background: transparent;
    transition: all .3s ease-in-out;
  }
  .mobile-open .mobile-trigger i:after {
    top: 0;
    width:25px;
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
  }

  .mobile-open .mobile-trigger i:before {
    top: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
  }
  /* 	.mobile-trigger:hover i:before, .mobile-trigger:hover i:after, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{
  background-color:#246bfd;
} */


  /* Child Toggle Button
  ========================================================================== */

  .child-trigger{
    display: block !important;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    min-width: 54px !important;
    height:54px !important;
    width: 100% !important;
    z-index:99999;
  }

  .child-trigger:hover{
    text-decoration: none;
  }
  .child-trigger i{
    position: relative;
    top: 50%; /* Centers icon inside button */
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i:after{
    position: absolute;
    content: '';
  }

  .child-trigger i, .child-trigger i:after{
    width: 10px; /* Icon line width */
    height: 2px; /* Icon line height */
    background-color:#000000; /* Icon color */
    display: block;
    transition:all 0.3s ease-in-out;
  }

  .child-trigger i:after{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition:.3s ease-in-out;
  }
  .child-trigger.child-open i:after{
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);	transition:.3s ease-in-out;
  }
  .child-trigger.child-open i{
  }

  /* Menu Styles on Mobile Devices
  ========================================================================== */  

  .custom-menu-primary.js-enabled{
    /*     position: inherit;
    top:-30px; */
    /*     padding-top: 44px; /* Makes room for button */
    /*     margin: 10px 0 10px 0; */ 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
    display: none;
  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{
    width: 100%;
    position: relative; /**************************************************************/
    top: 0;             /* Positions the menu to drop from the very top of the screen */
    left: 0;          /**************************************************************/
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper{
    background-color: #ffffff; /* Menu background color set off global menuColorMobile variable */
    width: 100%; /* Full screen width */
  }

  /* Level 1 Menu List Styles */
  /* 	.custom-menu-primary .hs-menu-wrapper > ul > li{
  position: relative;
} */
  .custom-menu-primary .hs-menu-wrapper > ul > li a{
    font-size: 22px; /* Font size of top level list items */
    line-height: 45px;
    overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul li{
    border-top: 1px solid #e7e7e7; /* Adds transparent dark highlights to top of top level list items */
  }
  .custom-menu-primary .hs-menu-wrapper >  ul li a{
    padding: 0 10px;
    color:#ffffff; /* link color set by global mobile-aColor variable */
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-wrapper > ul ul li{
    background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-wrapper > ul ul li a{
    text-indent: 10px!important; /* Indent Child lists */
    font-size: 16px; /* Font size of child lists */
  }

  /* Level 3 and Higher Menu List Styles */
  .header-grp .hs-menu-wrapper > ul ul ul li a{
    text-indent: 30px!important; /* Indent Child lists */
  }
  .header-grp .hs-menu-wrapper > ul ul ul ul li a{
    text-indent: 50px!important; /* Indent Child lists */
  }


  .child-trigger i{
    position: absolute;
    top: 26px;
    right: 24px;
  }  


}
.lang_list_class {
  min-width: 150px;
}


@media(min-width:1200px){
  body .header__search .image-popup-search {
    margin: -13px 0 0 auto;
  }
}
/* Styles for the Search Bar */

.header__search {
  width: auto;
}

.header-grp form {
  padding: unset;
  background: unset;
  border: 0;
}

.header__search input:focus {
  outline: none;
}

.header__search .hs-search-field__input {
  box-sizing: border-box;
  background-color: white;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: center right 15px;
  color: ;
  border: 0!important;
  font-family: ;
  font-weight: 300;
  font-size: 22px;
  cursor: pointer;
  line-height: 42;
  padding: 0 15px;
  height: 45px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border: 1.79px solid #D1D6DC;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background-color: white;
}

.header__search .hs-search-field__input::placeholder {
  color: transparent;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  background-color: white;
  border-top: -2px solid white;
  border: 1.79px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-family: ;
  font-size: 22px;
}

.header__search .hs-search-field__suggestions li a {
  color: ;
  text-decoration: none;
  padding: 3px 15px;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

.header__search .image-popup-search {
  cursor: pointer;
  margin: 0 0 0 auto;
  float: right;
  max-width: 20px;
  max-height:20px;
}

.header__search {
  position:relative;
}

body .row-fluid input.hs-search-field__input::placeholder {
  font-size: 32px;
}
.open-popup {
  opacity: 1;
  z-index: 9999;
}
p.hs-search-results__description {
  margin-bottom: 30px;
}

ul#hsresults li {
  margin-bottom: 20px;
}
#myOverlay.open-popup  {
  pointer-events: auto;
  opacity: 1;
  transition: all .3s ease-in-out;
  z-index: 3;
  height: 100vh;
}
body .row-fluid .hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000000;
  background: #FFFFFF;
  padding: 20px;
}

body .row-fluid .hs-search-field__suggestions li {
  margin-bottom: 15px;
}

#myOverlay .text-container {
  max-width: 800px;
  margin: 0 auto;
  float: none;
  position: relative;
  top: 40%;
  z-index: 1;
}
body .row-fluid input.hs-search-field__input:focus {
  outline: none;
}
#myOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  top: -226px;
  opacity: 0;
  overflow: hidden;
  transition: all .3s ease-in-out;
  width: 100%;
  padding: 37px 0px;
}

body .row-fluid input.hs-search-field__input {
  padding: 20px 120px 20px 20px;
  border: 0;
}

#myOverlay.open-popup {
  background-color: #ffffff;
  top: 0px;
  bottom: 0px;
  background: rgba(0,0,0,0.9);
}



.lang_switcher_class .lang_list_class li a:hover {
  color: #ff4f0f;
}
@media(max-width:1024px) and (min-width:768px) {
  .header__search .image-popup-search {
    margin: 0 auto;
  }
  #myOverlay .text-container {
    max-width: 80%
  }

  body .row-fluid input.hs-search-field__input {
    padding: 20px 130px 20px 20px;
  }
  .header-grp.mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    font-size:14px;
  }
}

@media(max-width:767px) {
  body .header-grp .span1.header__search.header--element.vertical-center {
    display: block;
    position: absolute;
    right: 60px;
    top:18px;
  }

  .header-section .logo-image img{
    max-width:140px;
  }
}





body .row-fluid .side-bar-menu {
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 11;
  width: 70px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 14px 0 rgb(141 140 140 / 50%);
  padding: 65px 30px;
  transition: .4s all ease-in-out;
}


@media(max-width:767px){
  .header-section .wrapper.equal-height-container.simple-header> .row-fluid-wrapper> .row-fluid,
  .top_bar> .equal-height-container> .row-fluid-wrapper> .row-fluid{
    display: flex;
    align-items:center;
  }
  .top_bar> .equal-height-container> .row-fluid-wrapper> .row-fluid .right-col{
    margin-left:auto;
  }
  .header-section .wrapper.equal-height-container.simple-header .logo-image{
    margin-right:10px;
  }
  .top_bar .right-col .search-button .button-text,
  .top_bar span.info-text{
    display:none;
  }
  .top_bar ul.list_icons li{
    margin-right:14px;
  }
  .header-section .top_bar .right-col .contact_info a{
    padding:0 7px;
    display: initial;
  }
  body .header-section .header-search-popup .text-container{
    margin:0 30px;
  }
  .header-search-popup .overlay-bg{
    right:80px;
  }

  .top_bar .right-col button.search-button{
    padding:0 10px;
  }

  .header-section .wrapper.equal-height-container.simple-header{
    padding-bottom:0px !important;
  }
  /* 	hamburger trigger */
  .mobile-trigger i{
    width:20px;
  }
  .mobile-trigger i:after,
  .mobile-trigger i:before{
    right:0;
  }
  .mobile-trigger i:after{
    width:27px;
  }
}

/*=====================================================================
Logo Switch on changing of theme scheme
========================================================================*/

.simple-header-sec .logo-image .normal-theme-logo-conta{
  display:block;
  opacity:1;
}

.simple-header-sec .logo-image .dark-theme-logo-conta{
  display:none;
  opacity:0;
}

.header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
  right: 20px !important;
  margin-top: 0 !important;
  transform: rotate(-45deg) !important;
}
body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  display:inline-block !important;
  width:100% !important;
}
@media(min-width:768px){
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper::before{
    display:none;
  }
}

.header .lang_list_class {
  -webkit-transform: translateX(-70%);
  transform: translateX(-70%);
  left:0;

}
.header .lang_list_class:after, .header .lang_list_class:before {
  left: 70%;
  margin-left: 0px;
}

@media(max-width:767px){
  .header .top_visuals{
    display:flex;
  }
  .header .top_visuals .left_div {
    width: 100%;
  }
  body .header .lang_list_class {
    top: 18px;
    left: 0px;
    transform: translateX(-73%);
  }
  body .lang_list_class:after, 
  body .lang_list_class:before {
    left: 73%;
    margin-left: 0;
  }
}
.top_visuals{
  display:flex;
  align-items:center;
  margin-bottom:10px;
}
.top_visuals .right_div {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-section .top_bar .list_icons li svg{
  max-width:22px;
}

body .globe_class{
  background-image:url(//1818760.fs1.hubspotusercontent-na1.net/hubfs/1818760/raw_assets/public/@marketplace/www_palmspire_com/STORM/Images/icon/language-Switcher1.png);
}

.container-fluid.body-container-privacy-policy form .hs-error-msgs label{
  bottom:14px;
}

/*============================================================================= Extra fixes for header =========================================================================*/

/* coming soon header started */
body .body-container-coming-soon .countdown-section .logo {
  max-width: 160.7px;
}
body .body-container-coming-soon .countdown-section .dark-theme-logo {
  display: none;
}

/* coming soon header ended */

.span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 20px;
}

.span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .logo-image{
  max-width:180px;
  width:100%;
}

.span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .scheme_toggle_sec .toggle_me_now{
  display:flex;
  align-items:center;
  gap:6px;
}
.span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .scheme_toggle_sec .toggle_me_now p{
  margin-bottom:0px;
  font-size:14px;
  line-height:normal;
}
.header-grp .header-cta script {
  height: 0;
}

@media(min-width:768px) and (max-width:800px){
  .span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .scheme_toggle_sec .toggle_me_now p{
    font-size:8px;
  }
}

@media(max-width:767px){
  .span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header{
    justify-content:flex-start;
  }
  .span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .logo-image{
    max-width:none;
    width:auto;
  }
  .span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .custom-menu-primary.js-enabled .mobile-trigger{
    top: 72px;
  }
  .header-cta.right-group.align-right{
    clear: both;
  }
}
@media(max-width:360px){
  body .span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .scheme_toggle_sec .toggle_me_now p {
    font-size: 8px;
  }
  .span12.widget-span.widget-type-cell.wrapper.equal-height-container.simple-header .scheme_toggle_sec .toggle_me_now {
    gap: 2px;
  }
}


@media(max-width: 1200px){
  .header-grp.simple-header-sec .span12.top_visuals{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  /*   .header-grp.simple-header-sec .span11.left_div{
  max-width: calc(100% - 90px);
} */
  .header-grp.simple-header-sec .span1.right_div{
    margin-left: auto;
    min-width: 60px;
    max-width: 60px;
  }
}

body .hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-menu-depth-1>a{
  white-space: normal;
}

body .footer-section .widget-type-header h4,
body footer .hs-menu-wrapper.hs-menu-flow-vertical>ul li.hs-menu-depth-1>a{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}



@media(min-width:768px){
  /*   .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children{
  z-index:9999;
} */
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:before {
    bottom: -40px;
    content: "";
    height: 0;
    left: 0;
    top: 15px;
    position: absolute;
    right: 0;
    width: 100%;
    z-index:999999999;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover:before {
    height: 20px;
  }
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/



 



/*===================================================================== header Mega Menu Typography ========================================================================*/


.header-grp.mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
  
  font-family: Rajdhani;
  
  
  font-size: 16px;
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 21px;
  letter-spacing: 0px;
}

.mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
  
  font-family: Rajdhani;
  
  
  font-size: 16px; 
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 21px;
  letter-spacing: 0px;			
  color:#101820;
  padding: 6px 0;
  background: ;
}


/*=====================================================================   header Mega Menu styling    ========================================================================*/

section.mega-menues-container-all {
  display: none;
}
.mega_menu_container .logo-image .dark-theme-logo-conta{
  display:none;
  opacity:0;
}
body.dark_theme .mega_menu_container .logo-image .dark-theme-logo-conta{
  display:block;
  opacity:1;
}

body.dark_theme .mega_menu_container .logo-image .normal-theme-logo-conta {
  display:none;
  opacity:0;
}

.mega_menu_container .hs-menu-wrapper.hs-menu-flow-horizontal>ul li > a {
  transition: all 0.3s ease-in-out;
}
.mega_menu_container .hs-menu-wrapper.hs-menu-flow-horizontal>ul li:hover > a {
  color: #246BFD;
  transition: all 0.3s ease-in-out;
}
.mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li a:hover {
  color:#115e67;
  background: ;
  transition: all .15s ease;
  -webkit-transition: all .15s ease-in;
}

.mega_menu_container .mega-menu-header-grp.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li>a {
  padding-top:25px;
  padding-bottom:25px;
}

.mega_menu_container .mega-menu-header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after {
  right: 5px;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child{
  position:static !important;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul{
  width:100% !important;
  max-width: 980px;
  left: auto !important;
  right:0 !important;
  float: right !important;
  padding: 30px 20px;
}

.mega_menu_container li.hs-menu-item.hs-menu-depth-1.hs-item-has-children .primary-cta.solid-cta a.cta_button {
  width: initial !important;
}

.mega_menu_container.header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .hs_cos_wrapper_type_linked_image a {
  padding: 0;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li > ul{
  position:static !important;  
  margin-top: 11px;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li{
  float: left!important;
  width: 33.33%;
  padding:0;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li > a{
  color: #00968F;
  font-size: 18px;
  border-bottom: 1px solid rgba(0,0,0,.03);
  font-weight: 700;
  padding: 0 20px 10px;
  cursor: default;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li > a:hover{
  opacity: .7;
  background:transparent;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child:hover > ul > li > ul{
  opacity:1 !important;
  visibility:visible !important;
  display:block !important;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li > ul li{
  padding:0px;
}

.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li > ul li a{
  padding: 6px 20px;
  color: #666666;
  display: block;
  text-decoration: none;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  position: relative;
  font-size: 14px;
}

.mega_menu_container .hs-menu-wrapper ul>li.hs-item-has-children>a:after, 
.mega_menu_container .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after{
  top:26px;
}


.mega_menu_container .custom-menu-primary .hs-menu-wrapper > ul > li:first-child > ul > li > ul li a:hover{
  color: #115E67;
  opacity: .7;
  background-color: rgba(0,0,0,.03);
}
@media(min-width:768px){
  .mega_menu_container .mega-menu-popout-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px; 
    max-width:1400px;
    margin:0 auto;
    display: none !important;     
    opacity: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;			
    transition: 0.3s all ease-in-out;
  }
}
@media (max-width: 1200px) and (min-width: 1025px){
  .growthkit-mega-menu_header	.header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after{
    top: 26px!important;
  }
}

@media(min-width: 768px) and (max-width:1024px){
  .mega_menu_container .mega-menu-header-grp.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li>a {
    margin-left:2px;
    padding-right: 11px;
  }

  .mega_menu_container .mega-menu-header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after {
    right: 2px;
  }

  .mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li a {
    font-size: 0.8rem;
    line-height: 1rem;
  }
}

@media(max-width:767px){
  .header-grp.mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    
    font-family: Rajdhani;
    
    
    font-size: 16px;
    
    
    
    
    
    
    
    font-weight: 400;
    font-style: normal;
    
    
    
    
    
    
    
    
    
    
    
    
    line-height: 20px;
    letter-spacing: 0px;
  }

  .mega_menu_container .hs-menu-wrapper.flyouts .hs-menu-children-wrapper, .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    display: none;
  }

  .mega_menu_container .mega-menu-popout-container .dnd-section > .row-fluid{
    padding:0; 
  }
  .mega_menu_container .mega-menu-popout-container .align-center,
  .mega_menu_container .mega-menu-popout-container .align-right{
    text-align: left;
  }

  .mega_menu_container .mega-menu-popout-container {
    border-top: 1px solid #e3e3e3;
    padding-top:20px;
    display:none ;
  }

  .mega_menu_container .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1.hs-item-has-children {

    display:none;
  }
  .mega_menu_container .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li.hs-menu-depth-1>a{
    border-top: 1px solid #e3e3e3;
  }

  .mega_menu_container .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li.hs-menu-depth-1:hover>a{
    border-color:#e3e3e3 !important;
  }

  body.mobile-open .mega_menu_container .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1.hs-item-has-children {
    display:block;
  }

  .mega_menu_container .mega-header-cta-container.header-cta {
    padding-top: 24px;
    border-top: 1px solid #e3e3e3;
  }

  .mega-header-cta-container.header-cta .single-cta .cta_button{
    width:100%;
  }

  .mega_menu_container .growthkit_mega_menu_drop_321-dnd_partial-1-row-0-padding {
    padding-top: 0px !important;
  }

  .mega_menu_container .growthkit_mega_menu_drop_123-dnd_partial-1-row-0-padding {
    padding-top: 0 !important;
  }

  .mega_menu_container .mega-menu-header-grp.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li>a {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left:0;
  }

  .mega_menu_container .row-fluid [class*="span"].wrapper {
    padding-right: 20px;
  }

  .mega_menu_container .mega-menu-popout-container.waana_box_shadow{
    box-shadow:none;
  }

  .mega_menu_container .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1{
    float:none;
  }

  .mega_menu_container .row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal>ul{
    display:block;
    margin-top: 20px;
    padding-right: 0px;
    padding-bottom: 40px;
  }

  .mega_menu_container .header-menu.vertical-center.custom-mega-menu-primary.js-enabled div#hs_menu_wrapper_footer_menu_four_ {
    display:none;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s visibility, 0.5s opacity;
  }

  body.mobile-open .mega_menu_container .header-menu.vertical-center.custom-mega-menu-primary.js-enabled div#hs_menu_wrapper_footer_menu_four_ {
    height: calc(100vh - 50px) !important;
    overflow: auto !important;
    opacity: 1;
    visibility: visible;
    transition: 0.5s visibility, 0.5s opacity;
  }
  body.mobile-open .mega_menu_container .header-menu.vertical-center.custom-mega-menu-primary.js-enabled div#hs_menu_wrapper_footer_menu_four_::-webkit-scrollbar{
    width:0px;
  }

  .mega_menu_container .mobile-trigger-new mi:before, .mega_menu_container .mobile-trigger-new mi:after {
    position: absolute;
    content: '';
  }
  .mega_menu_container .mobile-trigger-new mi:after {
    width: 27px;
    top: 6px;
  }

  .mega_menu_container .mobile-trigger-new mi:before {
    top: -6px;
  }

  .mega_menu_container .mobile-trigger-new mi:after, .mega_menu_container .mobile-trigger-new mi:before {
    right: 0;
  }

  .mega_menu_container .mobile-trigger-new mi, .mega_menu_container .mobile-trigger-new mi:before, .mega_menu_container .mobile-trigger-new mi:after {
    width: 26px;
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #246bfd;
    display: inline-block;
    transition: all .3s ease-in-out;
  }

  .mega_menu_container .mobile-trigger-new mi {
    position: relative;
    top: 0;
    right:-3px;
  }

  .mega_menu_container .mobile-trigger-new mi {
    width: 20px;
  }

  .mega_menu_container .mobile-trigger-new {
    display: inline-block !important;
    cursor: pointer;
    position: absolute;
    top: 22px;
    right: 20px;
    width: auto;
    height: auto;
    padding: 8px 3px 10px 3px;
    box-sizing: border-box !important;
  }

  .mobile-open .mega_menu_container .mobile-trigger-new mi:after {
    top: 0;
    width: 26px;
    transform: rotate(-45deg);
    transition: all .3s ease-in-out;
  }

  .mobile-open .mega_menu_container .mobile-trigger-new mi {
    background: transparent;
    transition: all .3s ease-in-out;
  }

  body.mobile-open .mega_menu_container .mobile-trigger-new mi:before {
    top: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
  }

  .mega_menu_container .scheme_toggle_sec.vertical-center {
    position: absolute;
    right: 76px;
    top: 19.5px;
  }

  .mega_menu_container .child-trigger-new ci:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .mega_menu_container .child-trigger-new ci, .child-trigger-new ci:after {
    width: 10px;
    height: 1px;
    background-color: #000000;
    display: block;
  }

  body.dark_theme .mega_menu_container .child-trigger-new ci, body.dark_theme .child-trigger-new ci:after{
    background-color:#ffffff;
  }

  .mega_menu_container .child-trigger-new ci:after {
    position: absolute;
    content: '';
  }

  .mega_menu_container .child-trigger-new ci {
    position: absolute;
    top: 27px;
    right: 24px;
  }

  .mega_menu_container .child-trigger-new {
    display: block !important;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    min-width: 55px !important;
    padding: 0 !important;
    z-index: 999;
    height:55px;
  }

  .mega_menu_container .child-trigger-new.child-open ci:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

}
@media (max-width: 568px) {
  .mega_menu_container .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    margin-bottom: 20px;
  }
}


body .header-cta .cta-choices.mega_menu_header {
  text-align: right;
}

body .header-cta .cta-choices.mega_menu_header .span.left-cta{
  margin:0;
}

.mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
  float: none;
  padding: 0 !important;
  margin-bottom: 14px;
  font-size:14px !important;
  /* 	background:none; */
}

.header .mega_menu_container h4 {
  /*   text-transform: uppercase; */
  font-size:16px !important;
  margin-bottom: 16px;
}

.mega-menu-popout-container .video-cm.video .video-section{
  max-width: 400px !important;
  min-height: 250px !important;
}

.mega-menu-popout-container .wistia_click_to_play{
  width:100% !important;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex !important;
}


.mega-menu-popout-container,
.mega-menu-popout-container .dnd-section{
  border-radius: 18px;
}



/***************************************** MEGAMENU WITH BACKGROUND IMAGE *****************************************************/


.megamenu-with-bg-image, .megamenu-with-cards, .megamenu-divided-with-cta{
  overflow:hidden;
}
.megamenu-with-bg-image.dnd-section > .row-fluid{
  padding:0px;
}
.megamenu-with-bg-image .margin-zero p{
  margin-bottom:0px;
}
.megamenu-with-bg-image .hs-menu-wrapper.hs-menu-flow-vertical li a{
  white-space: break-spaces;
  /* 	background: transparent !important; */
  position:relative;
}
.megamenu-with-bg-image > .row-fluid > .span12.dnd-column > .dnd-row {
  overflow:hidden;
}
.megamenu-with-bg-image .span3.dnd-column,
.megamenu-with-cards .span3.dnd-column,
.megamenu-divided-with-cta .span3.dnd-column,
.megamenu-with-banner-cta .span6.dnd-column{
  position: relative;
  box-sizing: border-box;
}
.megamenu-with-bg-image .span3.dnd-column:first-child:before,
.megamenu-with-cards .span3.dnd-column:first-child:before,
.megamenu-divided-with-cta .span3.dnd-column:first-child:before{
  background:none;
}
.megamenu-with-bg-image .span3.dnd-column:before,
.megamenu-with-cards .span3.dnd-column:before,
.megamenu-with-banner-cta .span6.dnd-column:before
{
  position: absolute;
  content: '';
}
.megamenu-with-cards .span3.dnd-column:before
{
  background: #e3e3e3;
}
.megamenu-with-bg-image .span3.dnd-column:before,
.megamenu-with-banner-cta .span6.dnd-column:before{
  background: #fff;
}
.megamenu-with-bg-image .hs-menu-wrapper.hs-menu-flow-vertical li a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.megamenu-with-bg-image .hs-menu-wrapper.hs-menu-flow-vertical li a:hover:after { 
  width: 100%; 
  left: 0; 
}

.megamenu-divided-with-cta .cta-choices .secondary-cta a{
  color: rgba(36, 107, 253, 1.0) !important;
  padding:0px !important;
}


.container-fluid.body-container-event_single .submitted-message.hs-main-font-element{
  color:#ffffff !important;
}

body .mega_menu_container .mega-menu-header-grp.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li>a {
  padding-bottom: 22px;
  padding-top: 21px;
}

@media(min-width:768px) and (max-width: 1024px){
  .megamenu-with-bg-image .hs-menu-wrapper.hs-menu-flow-vertical li a{
    padding: 10px 0px;
  }
}
@media(min-width: 768px){
  .megamenu-with-bg-image .span3.dnd-column:before,
  .megamenu-with-cards .span3.dnd-column:before,
  .megamenu-with-banner-cta .span6.dnd-column:before{
    left: -5.282051282%;
    top: 0;
    bottom: 0;
    width: 1px;
  }
  .megamenu-with-bg-image .span3.dnd-column:before,
  .megamenu-with-cards .span3.dnd-column:before,
  .megamenu-with-banner-cta .span6.dnd-column:before{
    height: 200vh;
  }
  .mega_menu_container .mega-menu-popout-container.full-width{
    max-width: 100% !important;
  }
  .megamenu-divided-with-cta .span3.dnd-column:nth-child(2):before{
    position: absolute;
    content:'';
    width: 1px;
    height:200vh;
    background:#e3e3e3;
    top:0px;
    left:-1%
  }
  .mega_menu_container .mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1:hover > .container-fluid.mega-menu-popout-container {
    display: inherit!important;
    transition: opacity .2s ease-in-out,visibility .2s ease-in-out;
  }

  .mega_menu_container .mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    top: 64px;
  }

  .mega_menu_container .mega-menu-header-grp.header-grp.header-section.fixed{
    padding-bottom:0;
    padding-top:0;
  }

  .mega_menu_container .mega-menu-header-grp.fixed .mega-menu-popout-container {
    top: 64px;
  }

  .mega_menu_container .mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul > li.hs-menu-item.hs-menu-depth-1:hover .mega-menu-popout-container {
    display: block;
    opacity: 1;
  }

  .mega_menu_container .mega-menu-header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1{
    margin:0px!important;
  }
}

@media(max-width:767px){
  .mega_menu_container .mega-menu-popout-container{
    max-width:1128px !important;
  }

  .megamenu-with-bg-image .hs-menu-wrapper.hs-menu-flow-vertical > ul{
    margin-bottom: 0px;
  }
  .megamenu-with-bg-image .span3.dnd-column:before,
  .megamenu-with-banner-cta .span6.dnd-column:before{
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
  .header-container-wrapper .megamenu-with-bg-image .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
    width: auto !important;
    max-width: max-content;
  }
  .megamenu-divided-with-cta .span3.dnd-column:before{
    position: absolute;
    content:'';
    width:100%;
    height:1px;
    top:0;
    left:0;
    right:0;
    background:#e3e3e3;
  }
}



body .mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
  background:transparent;
}


@media(max-width:767px){
  .mega-menu-popout-container .dnd-section{
    border: none;
    border-radius: 0px !important;
  }
  .mega_menu_container .mega-menu-popout-container {
    border-radius:0px !important;
  }
  .mega_menu_container .row-fluid [class*="span"].wrapper {
    padding-right: 0;
  }

}



.mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .row-fluid-wrapper.row-depth-1.row-number-1.mega_menu_drop_100-row-0-max-width-section-centering.dnd-section.megamenu-with-highlight-text.mega_menu_drop_100-row-0-background-color .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
  background:transparent;
}

.mega_menu_container .mega-menu-header-grp .mega-menu-popout-container .row-fluid-wrapper.row-depth-1.row-number-1.mega_menu_drop_100-row-0-max-width-section-centering.dnd-section.megamenu-with-below.mega_menu_drop_100-row-0-background-color .hs-menu-wrapper.hs-menu-flow-vertical>ul li a{
  background:transparent;
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/





   

/* Menu and simple menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

/* .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
left: -9999px;
opacity: 0;
position: absolute;
} */
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}
/* .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
left: 0;
opacity: 1;
top:69px; 
width: 100%;
} */
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children > .hs-menu-children-wrapper.open_dropdown {
  left: 0;
  opacity: 1;
  width: 100%;
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children > .hs-menu-children-wrapper {
  min-width: 235px;
  top:30px;
}
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children > .hs-menu-children-wrapper.open_dropdown {
  left: 100%;
  opacity: 1;
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.active-branch > a,
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.active.active-branch a,
.header-grp .hs-menu-wrapper ul>li.hs-item-has-children.active-branch>a:after,
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>a{
  color:  !important;
  border-color:  !important;
}


.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>a{
  position:relative;
  z-index:11;
}
/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  
  font-family: Rajdhani;
  
  
  font-size: 14px;
  
  
  
  
  
  
  
  
  
  font-weight: 500;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  line-height: 14px;
  letter-spacing: 0px;
  text-transform: initial;
  color: #101820;
  
  text-decoration: none;
  white-space: normal;
  max-width: 100%;
  
}

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 a {
  color: #425b76;
}


body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li>a:hover {
  color: #115e67; 
  
  transition: all 0.3s ease-in-out;
}
.custom-menu-primary .hs-menu-wrapper > ul > li:hover {
  color: #115e67; 
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1440px) and (min-width:1025px) {
  /*   body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover>.hs-menu-children-wrapper, */
  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children>.hs-menu-children-wrapper.open_dropdown{
    min-width: 235px !important;
  }
  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper{
    left:170px!important;
  }
  body .row-fluid .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a,
  body .row-fluid .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a,
  body .row-fluid .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
    font-size:14px;
  }
}

@media(min-width:1025px){
  .header-grp.simple-header-sec	.hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 27.5px 12px 27.5px 25px;
  }
}

@media(max-width: 900px)and(min-width: 768px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 32px 13px;
  }
}

@media(min-width: 768px) {
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after,  
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
    position: absolute;
    content: '';
    right: 2px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
  }

  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after{
    border: solid #425b76;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top:3px;
  }

  body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a.active:after {
    /*     background-size: contain;
    background-position: center center; */
    transform: rotate(-135deg);
    /*     background-repeat:no-repeat;
    border: solid #115e67;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px; */
  }

  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after{
    background: none;
  }
  /*   .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after,
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children:hover>a:after{
  top: 14px!important;
  right: 14px!important;
} */
  /*   .header-grp .hs-menu-wrapper ul>li.hs-item-has-children:hover>a:after,  */
  /*   .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children:hover>a:after, */
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a.active:after{
    transform: rotate(225deg);
    transition: all 0.3s ease-in-out;
    border: solid #115e67;
    border-width: 0 2px 2px 0;
    display: inline-block;
    /* 		padding: 2px; */
    margin-top: 5px;
    color: #246BFD;
  }
  body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:hover:after,
  body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a.active:hover:after{
    border: solid #115e67;
    border-width: 0 2px 2px 0;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children > ul.hs-menu-children-wrapper.open_dropdown {
    opacity: 1; 
    visibility: visible;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 180px!important;
    top: 0!important;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>a {
    border-bottom: 0;
    border-top: 0;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul>li a:hover {
    border-radius: 0;
  }
  .header-grp .hs-menu-wrapper {
    line-height: 0;
    float: right;
    position: relative;
  }
  .header-grp .hs-menu-wrapper {
    display: block !important;
  }
  body .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children:hover>ul.hs-menu-children-wrapper{
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }

  body .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    
    font-family: Rajdhani;
    
    
    font-size: 16px;
    
    
    
    
    
    
    
    
    
    font-weight: 500;
    font-style: normal;
    
    
    
    
    
    
    
    
    
    
    line-height: 14px;
    letter-spacing: 0px;
  }
}




/*Sub Menu*/

.header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
  
  font-family: Rajdhani;
  
  
  font-size: 15px;
  
  
  
  
  
  
  
  
  
  font-weight: 500;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  line-height: 24px;
  letter-spacing: 0px;
  color:#101820;

  margin: 0px;
  padding:10px 20px;
  text-align: left;
  text-indent: 0;
  text-transform: capitalize;
}

/*===== New Header Styling ===========*/

@media(min-width:768px)and(max-width:1180px){
  body .header-grp a.cta_button {
    width: 100%;
    display: block;
    padding: 19px 5px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1{
    margin:0px !important;
  }
  .header-grp .hs-menu-wrapper {
    float: none;
  }
}
@media(max-width: 1120px) and (min-width: 1025px) {
  .header-grp.simple-header-sec .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 35px 12px 35px 16px;
  }
}
@media(max-width: 1200px) and (min-width: 1025px) {
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after, 
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
    right: 2px !important;
  }
}
@media(max-width: 1024px) and (min-width: 768px) {
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    min-width: unset !important;
    padding: 5px 20px 5px 10px;
    font-size: 14px;
  }
  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children >.hs-menu-children-wrapper.open_dropdown{
    width:unset;
    min-width: 170px;
    left:0px;
  }
  body .row-fluid .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a,
  body .row-fluid .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a{
    font-size:11px;
  }
  .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 134px !important;
  }
  .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>a:after{
    right: 2px;
  }
  body .row-fluid .header-grp .hs-menu-wrapper ul>li.hs-item-has-children>ul>li.hs-item-has-children>a:after {
    right: 4px !important;
    width: 8px;
    height: 8px;
    top: 35px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1:last-child {
    margin: 0;
  }
  .header-grp .header-cta span.left-cta .single-cta a.cta_button {
    width: auto;
    padding: 5px	5px;
    font-size: 12px;
  }
  body .row-fluid .header-grp{
    padding-top:15px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1 {
    margin: 0 !important;
  }
}
@media(max-width: 1024px) and (min-width: 880px){
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 25px 18px 25px 1vw;
    /*     font-size: 12px;
    letter-spacing: 0px; */
  }
}
@media(max-width: 879px) and (min-width: 768px){
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 25px 12px 25px 0.8vw;
    /*     font-size: 11px;
    letter-spacing: 0px; */
  }
}
@media (min-width:1025px) and (max-width:1200px){
  body .header-cta  a.cta_button {
    font-size: 14px !important;
  }
}

@media(min-width: 768px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.make-it-table.hs-menu-children-wrapper{
    display:inherit !important;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li:hover{
    background:  #fafafa;
  }
  body .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 153px;
    top:5px;
  }
  body .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li{
    margin:0;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a{
    padding: 4px 8px;
  }

  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper li a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper  ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li a {
    
    font-family: Rajdhani;
    
    
    font-size: 15px;
    
    
    
    
    
    
    
    
    
    font-weight: 500;
    font-style: normal;
    
    
    
    
    
    
    
    
    
    
    line-height: 24px;
    letter-spacing: 0px;
    color:#101820;
    margin: 0px;
    line-height: ;
    letter-spacing: px;
    padding: 10px 15px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li:hover a,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper ul.hs-menu-children-wrapper li:hover a{
    color:#115e67;
    background: ;
  } 
    
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper ul {
    left: 160px !important;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children > ul.hs-menu-children-wrapper{
    /*     transform: translateY(30px); */
    opacity:0;
    padding: 17px 15px 17px;
    box-shadow: 0 18px 54px 0 rgb(20 20 43 / 14%);
    background:#ffffff;
    border-radius: 10px;
    transition: all 0.1s ease-in-out;
    display:block !important;
  }

  

  .header-grp.simple-header-sec .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1{
    padding: 0px 12px 0px 0px;
  }
  .header-grp.simple-header-sec .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1:last-child{
    padding-right: 0;
  }
  .header-grp.simple-header-sec .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 > a {
    padding: 2px 16px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-item.hs-menu-depth-1 a.active{
    color:#115e67;
  }
}

@media(min-width:768px) and (max-width:1024px){
  body .header-grp.simple-header-sec .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1{
    padding:0px;
  }
}
@media(max-width:767px){

  .header-grp {
    z-index: 9999;
  }
  body .row-fluid .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    padding:0px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    font-size: 14px;
    padding: 15px 15px;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    box-shadow: none;
  }
  .header-grp ul.hs-menu-children-wrapper{
    box-shadow: none;
  }
  .header-grp {
    padding: 20px 0px;
    background:;
  }  
  .custom-menu-primary .hs-menu-wrapper,
  .span1.header__search.header--element.vertical-center,
  .span3.right-col.vertical-center.align-right{
    display:none;
  }  
  body .container-fluid .row-fluid  .mobile-trigger{
    top:-33px;
    cursor:pointer;
  }
  body .row-fluid .custom-menu-primary.js-enabled .hs-menu-wrapper{
    top: 119px;
    position:absolute;
  }
  .header-container-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a{
    padding: 20px 15px;
    font-weight: 600;
    color:#101a29;
    width:100%;
  }
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal>ul li:hover a{
    color:#101a29;
  }
  body .container-fluid .row-fluid .custom-menu-primary.js-enabled {
    position: absolute;
    width: 100%;
    left: 0;
    margin: 0;
    right: 0;
    top: 36px;
    padding: 0;
  }  
  body .container-fluid .row-fluid  .mobile-open .mobile-trigger,
  body .container-fluid .row-fluid  .mobile-trigger {
    background-color: transparent;
    border: none;
  }
  body .container-fluid .row-fluid .mobile-trigger:hover i, 
  body .container-fluid .row-fluid .mobile-trigger:hover i:before, 
  body .container-fluid .row-fluid .mobile-trigger:hover i:after, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i:before, 
  body .container-fluid .row-fluid .mobile-open .mobile-trigger i:after {
    background-color: #246bfd;
  }
  body .container-fluid .row-fluid .mobile-trigger i, 
  body .container-fluid .row-fluid .mobile-trigger i:before, 
  body .container-fluid .row-fluid .mobile-trigger i:after {
    width: 30px;
    height: 4px;
    background-color: #246bfd;
  }
  body .container-fluid .row-fluid .mobile-trigger i:before {
    top: -8px;
  }
  body .container-fluid .row-fluid .mobile-trigger i:after {
    top: 8px;
  } 
  body .container-fluid .row-fluid .mobile-trigger{
    top: -33px;  
  }  
  .span3.logo-image.vertical-center {
    max-width:116px;
    float:left;
  }
}

@media(min-width:768px){
  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.make-it-table.hs-menu-children-wrapper{
    display: table-column-group;
    column-count: 2;
    max-width: 370px;
    width: auto !important;
    background-color:#fff;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper::before{
    border-bottom: 20px solid #fff;
    border-top: 0px solid transparent;
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    position: absolute;
    content: '';
    left: 33px;
    top: -20px;
  }
}

@media(min-width:768px) and (max-width:1024px){
  .header_cta_cont .cta-choices > span{
    margin:0;
  }
}
@media(max-width:767px){
  .row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal>ul .header-cta .cta-choices{
    float:none;
    clear:both;
    margin-bottom:10px;
  }
  .row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal>ul .header-cta .cta-choices span{
    display:block;
  }
  .row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal>ul .header-cta .cta-choices span a.cta_button{
    width:100%;
    max-width:100%;
    display:block;
  }
  body .row-fluid .custom-menu-primary.js-enabled .hs-menu-wrapper {
    top: 119px;
    position: absolute;
    height: calc(100vh - 119px);
    overflow-y: auto;
  }
  body .row-fluid .custom-menu-primary.js-enabled .hs-menu-wrapper::-webkit-scrollbar{
    display:none;
  }
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children.make-it-table ul.hs-menu-children-wrapper::after{
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0;
  left: 0;
  content: '';
  background: #e2e2e2;
  margin: 0 auto;
  top: 0;
}


/****************Table Styling Starts Here*******************/


table thead tr th,
thead tr th,
th{
  
  font-family: Rajdhani;
  
  
  font-size: 20px;
  
  
  
  
  
  
  
  
  
  
  
  
  
  font-weight: 700;
  font-style: normal;
  
  
  
  
  
  
  line-height: 28px;
  letter-spacing: -1px;
  text-align:center;
  text-decoration: none;

  color: #425b76;
  padding: 25px 0px;
  border: px  ;
  background-color: #ffffff;
}
table thead tr th>span,
thead tr th>span,
th>span{
  color: #115e67;
}

table thead tr th:first-child,
thead tr td:first-child{
  text-align: left;
}
td {
  
  
  font-family: 'DM Sans', sans-serif;
  
  font-size: 20px;
  
  
  
  
  
  
  
  font-weight: 400;
  font-style: normal;
  
  
  
  
  
  
  
  
  
  
  
  
  line-height: 28px;
  letter-spacing: 0px;
  text-align:CENTER;
  text-decoration: none;

  color: #425b76;
  text-decoration: none;
  border:  px  ;
  padding: 25px 0px;
}
table tr td.check svg {
  max-width: 20px;
  fill: #ffc72c;
}
table tr td.check svg g#minus1_layer,
table tr td.check svg g#minus2_layer,
table tr td.check svg g#minus3_layer,
table tr td.check svg g#minus4_layer,
table tr td.check svg g#minus5_layer,
table tr td.check svg g#minus6_layer
{
  fill: #E2E2E2
}

table {
  background-color: #ffffff;
  border-collapse: collapse;
  width: 100%;
  padding: 20px;
  overflow-wrap: break-word;
}

/* Table cells */

table tr td h4{
  color:#425b76;
}

table thead tr td h4,
.pricing-calculator .table .data p {
  color:#425b76;
}

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

@media(max-width: 1024px) and (min-width: 768px) {

  
  
  body table thead tr th {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -1.25px;
  }
  

}

@media(max-width: 767px) {
  table { 
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
  } 

  
  
  body table thead tr th {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -1px;
  }
  
  li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.active-branch > .child-trigger i,
  li.hs-menu-item.hs-menu-depth-1.hs-item-has-children.active-branch > .child-trigger i:after,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>.child-trigger i:after,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>.child-trigger i,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>.child-trigger-new ci:after,
  .header-grp .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:hover>.child-trigger-new ci{
    background-color:  !important;
    color:  !important;
  } 
}


body .body-container-coming-soon-two .form-conta.dnd_area_coming_soon_two-module-4 form {
  background: transparent !important;
  padding: 0 !important;
  position:relative;
}
body .body-container-coming-soon-two .rich-text-section .single-content .contact-conta svg{
  fill: #101A29;
  width: 20px;
  height: 20px;
}
body .body-container-coming-soon-two .rich-text-section .single-content .contact-conta .social_icons{
  top: 3px;
  position: relative;
}
body .body-container-coming-soon-two .rich-text-section .single-content .contact-conta .social-follows h4{
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: #737588;
}
body .body-container-coming-soon-two .rich-text-section.coming_soon_card_2 .single-content .text-value-container p{
  color: #101A29;
  font-weight:500;
}
@media(min-width:767px){
  body .body-container-coming-soon-two .form-conta form .hs-input {
    width: 100%;
    max-width: 512px;
    float: left;
    min-height: 50px;
  }
  body .body-container-coming-soon-two .form-conta form input.hs-button.primary.large {
    width: 100%;
    max-width: max-content;
    min-width: 149px;
    margin-right: 0;
    float: right;
  }
  body .body-container-coming-soon-two .form-conta form ul.no-list.hs-error-msgs.inputs-list {
    position: absolute;
    top: 57px;
  }
}

@media(max-width:767px){
  body .body-container-coming-soon-two .rich-text-section .single-content .text-value-container {
    text-align: left;
  }
  body .body-container-coming-soon-two .rich-text-section .single-content .text-value-container h1{
    font-size: 60px !important;
    line-height: 70px !important;
  }
  main#main-content .container-fluid.body-container-request-a-demo .dnd-section:first-child > .row-fluid {
    padding: 0;
  }
  main#main-content .container-fluid.body-container-request-a-demo .dnd-section:first-child > .row-fluid .span6.widget-span.widget-type-cell.dnd_area_request_a_demo_1-column-4-padding.dnd-column {
    background: #101A29;
    color:#ffffff;
  }
  main#main-content .container-fluid.body-container-request-a-demo .dnd-section:first-child > .row-fluid .span6.widget-span.widget-type-cell.dnd_area_request_a_demo_1-column-4-padding.dnd-column .request_demo_text_conta {
    justify-content: center !important;
  }
  main#main-content .container-fluid.body-container-request-a-demo .dnd-section:first-child > .row-fluid .span6.widget-span.widget-type-cell.dnd_area_request_a_demo_1-column-4-padding.dnd-column .request_demo_text_conta  p{
    color: #ffffff !important;
  }

  .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper{
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    position: relative;
    z-index: 10;
    left: 0;
    height: auto;
    width: 100%;
    /*     border-top: 1px solid #e3e3e3; */
  }
}

body .container-fluid .row-fluid .hs-error-msgs label{
  position:absolute;
  bottom:-6px;
}
body .container-fluid .row-fluid .hs_message .hs-error-msgs label{
  bottom:3px;
}


/* templates
Specific pieces of UI that are stylized. Typically used for Pages styling
*/

/* Blog post */

.blog-post {
	margin: 0 auto;
	max-width: 960px;
}

.blog-post__meta {
	margin-bottom: 1.4rem;
}

.blog-post__meta a {
	text-decoration: underline;
}

.blog-post__timestamp {
	display: block;
}

.blog-post__tags svg {
	height: auto;
	margin-right: 0.35rem;
	width: 15px;
}

.blog-post__tag-link {
	font-size: 0.875rem;
}

/* Blog related posts */

.blog-related-posts {
	background-color: #F8FAFC;
}

.blog-related-posts h2 {
	text-align: center;
}

.blog-related-posts__list {
	display: flex;
	flex-wrap: wrap;
}

.blog-related-posts__post {
	flex: 0 0 100%;
	padding: 1rem;
}

@media screen and (min-width: 768px) {
	.blog-related-posts__post {
		flex: 0 0 calc(100% / 2);
	}
}

@media screen and (min-width: 1000px) {
	.blog-related-posts__post {
		flex: 0 0 calc(100% / 3);
	}
}

.blog-related-posts__image {
	height: auto;
	max-width: 100%;
}

.blog-related-posts__title {
	margin: 0.7rem 0;
}

/* Blog comments */

.blog-comments {
	margin: 0 auto;
	max-width: 680px;
}

.blog-comments .hs-submit {
	text-align: center;
}

.blog-comments .comment-reply-to {
	border: 0 none;
}

.blog-comments .comment-reply-to:hover,
.blog-comments .comment-reply-to:focus {
	background-color: transparent;
	text-decoration: underline;
}



/* Blog Navigation */

.blog-navigation {
	background-color: #fff;
	box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 767px) {
	.blog-navigation {
		display: block;
		padding: 0;
		text-align: center;
	}
}

.blog-navigation__tag-filter form {
	background-color: #f2f4f6;
	border: none;
	color: #051f46;
	padding: 30px;
}

#blog-filter__category {
	background-color: #f2f4f6;
	border: none;
	color: #051f46;
	width: auto;
}

@media (max-width: 767px) {
	.blog-filter-tags {
		text-align: center;
	}
}

.blog-navigation__search .hs-search-field,
.blog-navigation__search .hs-search-field__bar {
	height: 100%;
}

.blog-navigation__search form {
	align-items: center;
	background-color: transparent;
	border: none;
	display: flex;
	flex-direction: row;
	height: 100%;
	margin-left: auto;
	max-width: 100%;
	padding: 0;
	position: relative;
}

@media (max-width: 767px) {
	.blog-navigation__search form {
		margin: 0 auto;
		padding: 0;
	}
}

.blog-navigation__search--no-label form:before {
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='25px' height='22px' viewBox='0 0 25 22' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Blog' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Construction---Blog---2-col' transform='translate(-1085.000000, -388.000000)'%3E%3Cg id='hero' transform='translate(0.000000, 105.000000)'%3E%3Cg id='Group-5' transform='translate(1086.000000, 284.000000)'%3E%3Ccircle id='Oval' stroke='%231F2E43' cx='5.33333333' cy='5.33333333' r='5.33333333'%3E%3C/circle%3E%3Cline x1='9.47691329' y1='8.66666667' x2='16' y2='13.2736132' id='Path-3' stroke='%23051F46'%3E%3C/line%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	content: '';
	height: 25px;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 55%;
	transform: translateY(-50%);
	width: 25px;
}

@media (max-width: 767px) {
	.blog-navigation__search--no-label form:before {
		left: 10px;
	}
}

.blog-navigation__search form label {
	display: block;
	flex-shrink: 0;
}

.blog-navigation__search form input.hs-search-field__input {
	border: none;
	color: #051f46;
	padding: 0.75rem 2.25rem;
}

.blog-navigation__search .hs-search-field--open .hs-search-field__suggestions {
	background-color: #fff;
	border-color: #d0d0d0;
	padding: 10px;
	position: absolute;
	width: 100%;
	z-index: 1;
}

/* prettier-ignore */
.blog-navigation__search .hs-search-field--open .hs-search-field__suggestions li {
	padding: 5px 0;
}

.blog-navigation__search form button {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	height: 100%;
}

/* Blog Post Header */

.blog-header {
	background-color: #f2f4f6;
	margin-bottom: 10px;
	padding: 10px 0;
}

/* Blog Post Listing */

.blog-index__post {
	border-bottom: 4px solid #ff5e14;
	box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
	display: flex;
	margin: 75px 0;
}

.blog-index__post-image-wrapper {
	flex-shrink: 0;
	position: relative;
	width: 50%;
}

.blog-index__post-image {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top left;
	object-position: top left;
	position: absolute;
	width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.blog-index__post-image-wrapper,
	.blog-index__post-image {
		display: block;
		height: auto;
		position: static;
	}
}

@media screen and (max-width: 1000px) {
	.blog-index__post {
		flex-direction: column;
		height: 100%;
	}

	.blog-index__post-image-wrapper {
		border-radius: 0;
		display: block;
		height: 175px;
		width: 100%;
	}
}

.blog-index__post-content {
	padding: 30px 50px;
}

h3.blog-index__post-content__title {
	margin: 0;
}

.blog-index__post-content__title a {
	color: inherit;
	text-decoration: none;
}

.blog-author {
	align-items: center;
	display: flex;
}

.blog-author__image {
	height: 60px;
	margin-right: 20px;
	overflow: hidden;
	width: 60px;
}

.blog-author__image img {
	height: 100%;
	width: auto;
}

.blog-author__name h5 {
	margin: 10px 0;
}

.blog-index__tag-header {
	margin-top: 80px;
}

.blog-tags,
.blog-author,
.blog-index__post__date {
	margin-bottom: 20px;
}

.blog-tag:after {
	content: ',';
}

.blog-tag:last-child:after {
	content: '';
}

/* .blog-summary {
border-top: 2px solid #e7ebef;
flex-grow: 1;
margin: 20px 0;
padding-top: 20px;
} */

.blog-summary h1,
.blog-summary h2,
.blog-summary h3,
.blog-summary h4,
.blog-summary h5,
.blog-summary h6,
.blog-summary p {
	font-size: 16px !important;
	line-height: 1.5;
	margin: 0;
}

/* Blog Pagination */

.blog-pagination {
	margin: 25px 0 50px;
	text-align: center;
}

.blog-pagination__link {
	letter-spacing: 1.6px;
	margin: 0 3px;
	padding: 10px;
}

a.blog-pagination__link--active {
	background-color: #051f46;
	color: #fff;
}

.blog-pagination .blog-pagination__prev-link--disabled,
.blog-pagination .blog-pagination__next-link--disabled {
	color: #d0d0d0;
	cursor: default;
	pointer-events: none;
}

/* Two Column Blog Styles  */

.blog-index--2-col {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 80px;
}

.blog-index--2-col__post {
	box-shadow: -12px 12px 22px -1px rgba(0, 0, 0, 0.1);
	margin-top: 80px;
	width: calc(50% - 50px);
}

@media screen and (max-width: 1000px) {
	.blog-index--2-col {
		flex-direction: column;
	}

	.blog-index--2-col__post {
		width: 100%;
	}
}

.blog-index--2-col__post-image-wrapper {
	border-bottom: 4px solid #ff5e14;
	display: block;
	height: 230px;
	margin-bottom: 20px;
	width: 100%;
}

.blog-index--2-col__post-image {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top left;
	object-position: top left;
	width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.blog-index--2-col__post-image-wrapper,
	.blog-index--2-col__post-image {
		display: block;
		height: auto;
	}
}

.blog-index--2-col__post-content {
	display: flex;
	flex-direction: column;
	padding: 10px 40px 50px;
}

.blog-post__tags {
	padding: 20px 0;
}

.blog-index--2-col__post-content__title {
	margin: 20px 0 0;
}

.blog-index--2-col__post-content__title a {
	color: inherit;
	text-decoration: none;
}

/* Blog Post Styles  */

.blog-post {
	padding: 0 100px;
	position: relative;
}

@media screen and (max-width: 1000px) {
	.blog-post {
		padding: 0 20px;
	}
}

a.back-to-blog {
	font-weight: 700;
	text-decoration: none;
}

a.back-to-blog:hover {
	font-weight: 700;
}

.back-to-blog div {
	display: inline;
}

.blog-post__tag {
	font-weight: 300;
	text-decoration: none;
}

.blog-post__tag:after {
	content: ',';
}

.blog-post__tag:last-child:after {
	content: '';
}

.blog-post__title {
	margin: 10px 0;
}
.blog-post__title span{
	color: #101A29;
}
.blog-author__name {
	color: inherit;
	text-decoration: none;
}

.blog-post__image-wrapper {
	height: 420px;
	margin: 35px 0;
	position: relative;
	width: 100%;
}

.blog-post__image {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.blog-post__image-wrapper,
	.blog-post__image {
		display: block;
		height: auto;
	}
}

.blog-post__social-sharing .share-title {
	display: none;
}

.blog-post__social-sharing .social-links {
	align-items: center;
	color: #19cca3;
	display: flex;
	flex-direction: row;
}

.blog-post__social-sharing .social-links__icon span {
	align-items: center;
	display: flex;
	justify-content: center;
}

.blog-post__social-sharing .social-links__icon {
	align-items: center;
	background-color: #f2f4f6;
	display: flex;
	height: 30px;
	justify-content: center;
	margin: 20px 10px 10px 0;
	width: 30px;
}

.blog-post__social-sharing .social-links__icon svg {
	fill: #ff5e14;
	height: 15px;
}

@media screen and (min-width: 1300px) {
	.blog-post__social-sharing .social-links {
		display: inline-flex;
		flex-direction: column;
	}

	.blog-post__social-sharing {
		left: -2rem;
		margin-bottom: 0;
		position: absolute;
		text-align: left;
		top: 2rem;
	}
}

@media screen and (min-width: 1024px) {
	.blog-post__social-sharing {
		left: 0;
		margin-bottom: 0;
		position: absolute;
		text-align: left;
		top: 2rem;
	}

	.blog-post__social-sharing .share-title {
		display: block;
	}

	.blog-post__social-sharing .social-links {
		display: inline-flex;
		flex-direction: column;
	}

	.blog-post__social-sharing .social-links__icon {
		margin: 10px 0;
	}
}

.sample-icon {
	background-color: #19cca3;
	border-radius: 50%;
	height: 30px;
	margin: 5px;
	width: 30px;
}

.blog-post__body {
	line-height: 24px;
}

.blog-post__comments-listing {
	margin: 3rem 0;
}

.blog-post__author {
	background-color: #f2f4f6;
	padding: 20px 0;
}

.blog-post__author .container {
	padding: 0 100px;
}

.blog-post__author .buffer {
	background-color: #fff;
	display: flex;
	padding: 20px 100px;
}

.blog-post__author__image {
	height: 150px;
	width: 150px;
}

.blog-post__author__image img {
	height: 100%;
	width: auto;
}

.blog-post__author__text {
	margin-left: 35px;
}

.blog-post__author__text h6 {
	margin: 10px 0;
}

.blog-post__author__sharing {
	display: flex;
}

.sample-icon.small {
	height: 15px;
	width: 15px;
}

/* Related Posts */

.blog-recent-posts {
	padding-bottom: 100px;
}

.blog-recent-posts__title {
	margin: 50px 0;
}

.blog-recent-posts__list {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 1000px) {
	.blog-recent-posts__list {
		flex-direction: column;
	}
}

@media screen and (max-width: 767px) {
	.blog-post__author .buffer {
		display: block;
		padding: 20px;
	}
	.hs-blog-post .blog-banner .content-section .left-col .content-body{
		max-width:100%;
	}

	.blog-post__author__text {
		margin-left: 0;
	}
	.header-cta.right-group.align-right{
		padding-right:15px;
	}
}

.content-wrapper-blog, .container-blog{
	max-width: 1200px;
}

.container-blog {
	margin: 0 auto;
	overflow: visible;
	padding: 0 25px;
}

body .row-fluid select.hs-input {
    position: relative;
    background: #fff;
    z-index: 0;
}


/* Blog Post and Listing */
/* .hs-blog-listing .author-banner,
.hs-blog-listing .blog-listing .listing-banner,
.hs-blog-post .blog-banner{
	margin-top: 84px;
} */
.hs-blog-listing .blog-listing .listing-banner{
	background-color:#fafafa;
}
.hs-blog-listing .listing-posts{
	padding-bottom:140px;
}
.hs-blog-listing .blog-listing .banner-section{
	padding:96px 0 99px;
	display:flex;
	align-items:flex-end;
}
.hs-blog-post .blog-banner .main-section {
	padding: 100px 0 100px;
	border-bottom: 1px solid #e2e2e2;
}
.hs-blog-post .blog-banner .content-section{
	padding:100px 0;
}
.hs-blog-listing .listing-posts .listing-post .blog-author__image .blog-author_image{
	line-height:normal;
}
.related-blog-post .blog-post__tags .author-avatar .hs-author-avatar,
.hs-blog-listing .listing-posts .listing-post .blog-author__image,
.hs-blog-post .author-info .blog-author__image{
	width:22px;
	height:22px;
	margin-right:9px;
	line-height:normal;
}
.hs-blog-listing .listing-posts .listing-post .blog-author__image img,
.related-blog-post .blog-post__tags .author-avatar img,
.hs-blog-post .author-info .blog-author__image img {
	max-width:22px;
	height:22px;
	width:100%;
	border-radius: 100%;
}
.hs-blog-listing .listing-posts .listing-post .author-info,
.hs-blog-post .blog-banner .left-col .author-info {
	display: flex;
	align-items: center;
}
.hs-blog-post .blog-banner .left-col .author-info{
	padding: 22px 0 20px;
}
.hs-blog-listing .blog-post__tags,
.hs-blog-post .blog-post__tags{
	padding:0;
}
.hs-blog-listing .blog-post__tag,
.hs-blog-post .blog-post__tag{
	padding: 4px 8px 3px;
	background-color: #246bfd1a;
	border-radius:2px;
	color:#000;
}
.hs-blog-listing .listing-posts .listing-post .author-info ul li,
.hs-blog-post .blog-banner .left-col .author-info ul li{
	line-height:normal;
	list-style-type: disc;
}
.hs-blog-listing .listing-posts .listing-post .author-info ul,
.hs-blog-post .blog-banner .left-col .author-info ul{
	margin:0;
	margin-left:17px;
	list-style-type: disc;
}
.post-listing .post-item h6,
.hs-blog-listing .listing-posts .listing-post .bottom-conta h6,
.hs-blog-listing .listing-posts .listing-post .author-info h6,
.hs-blog-post .blog-banner .left-col .author-info  h6{
	text-transform:uppercase;
	margin-bottom:0;
	line-height:normal;
}
.hs-blog-listing .listing-posts .listing-post .author-info ul li::marker,
.hs-blog-post .blog-banner .left-col .author-info  ul li::marker{
	color:#2cd8b1;
	line-height:0;
}
.hs-blog-post .blog-banner .right-col .blog-post__image-wrapper{
	height:369px;
	margin:0;
	max-width:530px;
	margin-left:auto;
}
.hs-blog-post .blog-banner .right-col .blog-post__image-wrapper img{
	border-radius:8px;
}
.hs-blog-post .blog-banner .content-section{
	position:relative !important;
}
.hs-blog-post .blog-banner .content-section .left-col .content-body{
	max-width:689px;
}
.hs-blog-post .blog-banner .content-section .right-col .right-content{
	max-width: 354px;
	width: 100%;
	margin-left: auto;
}
.hs-blog-post .blog-banner .content-section .right-col .right-content .subscribe-email{
	padding:20px;
	background-color:#101a29;
	border-radius:8px;
}
.hs-blog-post .blog-banner .content-section .social-icons {
	position:absolute;
	left: -9.5%;
}
.blog-post_social-sharing.addclass{
	position:fixed;
	top:17%;
	left:auto;
}
.hs-blog-post .blog-banner .content-section .social-links{
	display:block;
}
.hs-blog-post .blog-banner .content-section .social-links a{
	padding: 0;
	display: block;
	margin: 0 auto;
	height: 16px;
	width: 16px;
	margin-bottom: 15px;
}
.hs-blog-post .blog-banner .content-section .left-col{
	margin:0;
}
.hs-blog-post .blog-author_image img {
	max-width:121px;
	max-height:121px;
	width: 100%;
	height: 100%;
	border-radius:100%;
}
.hs-blog-post .author-container {
	background-color: #fafafa;
	border-radius: 8px;
	padding: 30px;
	margin-left: 0 ;
}
.hs-blog-post .author-container .author-details{
	margin-top:10px;
}
.hs-blog-post .author-container .author-details .design-conta {
	margin-top: 5px;
}
.hs-blog-post .author-container .description-conta {
	padding-left: 25px;
}
.hs-blog-post .blog-post__body{
	margin-bottom:78px;
}
.hs-blog-post .related-blog {
	background-color: #fafafa;
	padding: 116px 0 125px;
	z-index: 2;
	position: relative;
}
.hs-blog-post .comment-form.span12{
	margin-left:0;
	margin-top:70px;
}
.hs-blog-post .left-col .form-container form {
	padding: 40px;
	background: #fafafa;
	border-radius: 6px;
	max-width:none;
	margin: 0 auto;
}

body ul{
	margin-top: 35px;
	margin-bottom: 30px;
}
.hs-blog-post .blog-post__body ol li,
.hs-blog-post .blog-post__body ul li{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.56;
	letter-spacing: normal;
	text-align: left;
	color: #737588;
	margin:0;
	padding-left:34px;
	margin:8px 0;
}
.hs-blog-post .blog-post__body ol li:first-child{
	padding-left:12px;
	margin-left:20px;
}
.hs-blog-post .blog-post__body ol li{
	padding-left: 10px;
	margin-left: 22px;
}
.hs-blog-post .blog-post__body ol li::marker{
	font-size: 20px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: normal;
	text-align: center;
	color: #2cd8b1;
}
.hs-blog-post .blog-post__body ul.tick li::marker{
	font-size:0;
}
.hs-blog-post .blog-post__body ul.tick li:before{
	position: absolute;
	left: 0;
	top: 3px;
	background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Free%20Pack/Check.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	content: '';
	width: 18px;
	height: 25px;
}
.hs-blog-post .blog-post__body ul.tick li:before{
	position: absolute;
	left: 0;
	top: 3px;
	background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Free%20Pack/Check.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	content: '';
	width: 20px;
	height: 15px;
}
.hs-blog-post .blog-post__body ul li{
	padding-left:32px;
}
.hs-blog-post .blog-post__body img{
	border-radius:8px;
}
.hs-blog-listing .blog-listing .listing-posts .post-item:first-child{
	-webkit-flex-basis:100%;
	flex-basis:100%;
	margin-top:0;
	margin-right:0;
}
.hs-blog-listing .listing-posts .post-item{
	margin-bottom:50px;
}
.hs-blog-listing .block h3,
.hs-blog-listing .filter ul li a span.filter-link-count,
.hs-blog-listing .listing-posts .post-item:not(:first-child) .first-listing,
.hs-blog-listing .listing-posts .post-item:first-child .not-first-listing,
.hs-blog-listing .listing-posts .post-item:first-child .min-read,
.hs-blog-listing .listing-posts .post-item:not(:first-child) .post-read,
.hs-blog-listing .listing-posts .post-item:not(:first-child) .date-conta{
	display:none;
}
.hs-blog-listing .listing-posts .post-item:first-child .hs-featured-image-link{
	min-height:473px;
}
.hs-blog-listing .listing-posts .post-item .post-content .top-details{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin: 29px 0 20px;
}
.related-blog-post .blog-post__tags .post-author,
.related-blog-post .blog-post__tags,
.hs-blog-listing .listing-posts .listing-post .bottom-conta{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.hs-blog-listing .filter ul {
	margin: 0;
	text-align:center;
}
.hs-blog-listing .filter .all-tag ul li {
	margin-left: 0;
	margin-right:52px;
}
.hs-blog-listing .filter ul li:first-child{
	margin-left:0;
}
.hs-blog-listing .filter .block,
.hs-blog-listing .filter ul,
.hs-blog-listing .filter,
.hs-blog-listing .filter ul li,
.hs-blog-listing .filter .all-tag{
	display:inline-block;
}
.hs-blog-listing .filter ul li{
	list-style-type:none;
	margin:0 26px;
}
.hs-blog-listing .filter ul li a:hover{
	text-decoration:none;
}
.hs-blog-listing .filter ul li a{
	font-weight: normal;
	line-height: 1.56;
	letter-spacing: normal;
	color: #737588;
	text-transform:uppercase;
}
.hs-blog-listing .filter .all-tag ul li a.active,
.hs-blog-listing .filter .widget-module ul li a.active{
	color: #246bfd;
	font-weight:bold;
	border-bottom:2px solid #101a29;
}
.hs-blog-listing .filter-search{
	padding:27px 0 78px;
}
body.hs-single-author .hs-blog-listing .post-search .search #search_form,
.hs-blog-listing .filter-search .search #search_form{
	position: relative;
	margin-left: auto;
	max-width: 287px;
}
.hs-blog-listing .filter-search .search #search_form input.hs-input{
	margin:0;
}
.hs-blog-listing .filter-search .search #search_form input.hs-input:focus{
	border:1px solid #e2e2e2;
}
body.hs-single-author .hs-blog-listing .post-search .search #search_form div.search-icon,
.hs-blog-listing .filter-search .search #search_form div.search-icon {
	background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Updated%20Growthkit%20Pack/Search_Icon.svg);
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 23px;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 13px;
	top: 12px;
	width: 23px;
}
.hidden_div {
	display: none!important;
	visibility: hidden;
}

.hs-blog-listing .filter-search .search #search_form{
	margin-left: auto;
	margin-right: 0;
}
@media(min-width:1180px){
	.drop_down.showMenu,
	.dropdown.span8.vertical-center,
	.hs-blog-listing .filter-search .filter.span8,
	.hs-blog-listing .listing-post.left-col.span8,
	.hs-blog-listing .listing-post.left-col.span8 .post-item:first-child{
		max-width: 719px;
		width: 100%;
	}
	.hs-blog-listing .filter-search .search,
	.hs-blog-listing .right-col.span4 {
		max-width: 354px;
		width: 100%;
		margin-left: 55px;
	}
	body .hs-blog-listing .blog-listing .post-item.hs_cos_wrapper:nth-child(2n+1) {
		margin-right: 0 ;
		max-width:325px;
	}
	body .hs-blog-listing .blog-listing .post-item:nth-child(2n) {
		margin-right: 57px ;
		max-width:325px;
	}
}

@media(max-width:1420px){
	.hs-blog-post .blog-banner .content-section .social-icons {
		position: relative;
		left: 0;
	}
	.hs-blog-post .blog-banner .content-section .social-links {
		display: flex;
		align-items: center;
	}
	.hs-blog-post .blog-banner .content-section .blog-post_social-sharing{
		display:flex;
		align-items:center;
	}
	.hs-blog-post .blog-banner .content-section .blog-post_social-sharing h6{
		margin:0;
	}
	.hs-blog-post .blog-banner .content-section .social-links a {
		padding: 0;
		display: flex;
		margin: 0 15px;
		height: auto;
		width: auto;
	}
	.hs-blog-post .blog-banner .content-section .left-col .content-body{
		margin-top:30px;
	}
	.blog-post_social-sharing.addclass{
		position:relative;
	}
	.hs-blog-post .blog-post__body {
		margin-bottom: 50px;
	}
}

@media(min-width:768px) and (max-width:1024px){
	.hs-blog-listing .blog-listing .banner-section{
		padding:80px 0;
	}
	.hs-blog-listing .filter-search{
		padding:30px 0;
	}
	.hs-blog-listing .filter ul li{
		margin:0 20px;
	}
	.hs-blog-listing .filter .all-tag ul li{
		margin-right:40px;
	}
	.hs-blog-listing .listing-posts {
		padding-bottom: 80px;
	}
}

@media(max-width:767px){
	.hs-blog-listing .blog-listing .banner-section {
		display: block;
		padding: 60px 0;
	}
	.hs-blog-listing .blog-listing .banner-section .banner-description{
		margin-top:15px;
	}
	.hs-blog-listing .author-banner,
	.hs-blog-listing .blog-listing .listing-banner,
	.hs-blog-post .blog-banner{
		margin-top:0;
	}
	.hs-blog-post .blog-banner .content-section,
	.hs-blog-post .blog-banner .main-section{
		padding:60px 0;
	}
	.hs-blog-post .blog-banner .content-section .right-col .right-content,
	.hs-blog-post .blog-banner .right-col .blog-post__image-wrapper{
		max-width:none;
		height:auto;
	}
	.hs-blog-post .blog-banner .left-col .author-info{
		padding:10px 0;
	}
	.hs-blog-post .blog-banner .right-col{
		margin-top:20px;
	}
	.hs-blog-post .blog-author_image {
		width: 100%;
		display: inline-block;
	}
	.hs-blog-post .blog-author_image img {
		float: left;
	}
	.hs-blog-post .author-container .author-details {
		text-align: left;
	}
	.hs-blog-post .author-container .description-conta{
		padding-left:0;
	}
	.hs-blog-post .left-col .form-container form{
		padding:20px;
	}
	body.hs-single-author .hs-blog-listing .post-search .search #search_form,
	.hs-blog-listing .filter-search .search #search_form {
		margin: 0 auto;
		max-width: none;
	}
	.hs-blog-listing .filter-search {
		padding: 20px 0;
	}
	.hs-blog-listing .filter-search .search{
		margin-top:20px;
	}
	.hs-blog-listing .filter ul li {
		margin: 0 15px;
	}
	.hs-blog-listing .filter .all-tag ul li {
		margin-right: 30px;
	}
	.hs-blog-listing .listing-posts .post-item:first-child .hs-featured-image-link{
		min-height:223px;
	}
	.hs-blog-listing .listing-posts .listing-post .listing .post-item:first-child .post-read,
	.hs-blog-listing .listing-posts .listing-post .listing .post-item:first-child .date-conta{
		display:none;
	}
	.hs-blog-listing .listing-posts .post-item:first-child .min-read {
		display: block;
	}
	body .hs-blog-listing .listing-posts .post-item:not(:first-child) {
		margin-top: 30px;
	}
	.hs-blog-listing .listing-posts {
		padding-bottom: 60px;
	}
	.hs-blog-listing .listing-posts .right-col{
		margin-top:30px;
	}
	.hs-blog-post .related-blog {
		padding: 80px 0 85px;
	}
}
@media(max-width:450px){
	.hs-blog-listing h6,
	.hs-blog-post h6{
		font-size:10px;
		line-height:normal;
	}
	.hs-blog-listing .listing-posts .listing-post .author-info ul, .hs-blog-post .blog-banner .left-col .author-info ul{
		margin-left:10px;
	}
}



/* Related Blog Post Styling */

.blog-card .related-blog-content .post-title {
	margin-top: 22px;
	margin-bottom:12px;
}
.hs-blog-listing .listing-posts .post-item .hs-featured-image-wrapper,
.blog-card .featured-image-conta{
	overflow:hidden;
	border-radius:4px;
}
.hs-blog-listing .listing-posts .post-item .hs-featured-image-link,
.blog-card .featured-image-conta .featured-image{
	min-height:223px;
	transition:all .5s ease-in-out;
}
.hs-blog-listing .listing-posts .listing-post .post-item:hover .hs-featured-image-wrapper .hs-featured-image-link,
.blog-card:hover .featured-image-conta .featured-image{
	transform:scale(1.2);
	transition:all .5s ease-in-out;
}
.hs-blog-listing .listing-posts .post-item .bottom-conta .cta-container.simple-cta a.cta_button,
.blog-card .cta-container.simple-cta a.cta_button{
	padding:0;
}
.blog-card .post-bottom{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-top:18px;
}



/* Post Listing and post item */

@media(min-width:767px){
	.post-listing {
		-webkit-box-align: stretch;
		-moz-box-align: stretch;
		-ms-flex-align: stretch;
		-webkit-align-items: stretch;
		align-items: stretch;
		flex-direction: row;
		-webkit-flex-direction: row;
		flex-wrap: wrap;
		-wevkit-flex-wrap: wrap;
		margin-right: -3.1%;
		margin-top: 0;
	}
	.post-item, .post-listing {
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
	.post-item {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		flex-basis: 30.8%;
		-webkit-flex-basis: 30.8%;
		flex-direction: column;
		-webkit-flex-direction: column;
		float: left;
		margin-right: 2.4%;
		margin-top: 50px;
	}
}
@media(max-width:767px){
	.post-item:not(:first-child){
		margin-top:30px;
	}
}


/* Blog Pagination Styling */

.hs-blog-listing .listing-post .blog-pagination a.blog-pagination__number-link {
	font-weight: bold;
	line-height: 1.56;
	letter-spacing: normal;
	color: #737588;
}
.hs-blog-listing .listing-post .blog-pagination .blog-pagination__link{
	padding:0;
	margin:0 17px;
}
.hs-blog-listing .listing-post .blog-pagination a.blog-pagination__link--active{
	background-color:#246bfd;
	color:#fff;
	border-radius:3px;
	padding: 5px 13px 5px 12px;
	border:1px solid transparent;
}
.hs-blog-listing .listing-post .blog-pagination a.blog-pagination__link--active:hover {
	background-color: transparent;
	border: 1px solid #246bfd;
	color: #246bfd;
}
.hs-blog-listing .listing-post .blog-pagination a.blog-pagination__number-link:hover{
	color:#246bfd;
}
.hs-blog-listing .listing-post .blog-pagination,
.hs-blog-listing .listing-post .blog-pagination .blog-pagination__link{
	display:flex;
	align-items:center;
	justify-content:center;
}
.hs-blog-listing .listing-post .blog-pagination{
	margin:38px 0 0;
}


/* Blog Author */
body.hs-single-author .hs-blog-listing .listing-posts .post-item .date-conta,
body.hs-single-author .hs-blog-listing .listing-posts .post-item .post-read,
body.hs-single-author .hs-blog-listing .blog-listing  {
	display: none;
}
body.hs-single-author .hs-blog-listing .listing-posts .post-item .min-read{
	display:block;
}
body.hs-single-author .hs-blog-listing .blog-listing .filter-search .search{
	width:100%;
}
body.hs-single-author .hs-blog-listing .author-banner .blog-header__author-avatar {
	min-height: 233px;
	max-width: 233px;
	background-position: center;
	background-size: cover;
	border-radius:100%;
	margin:0 auto;
}
body.hs-single-author .hs-blog-listing .author-banner .author {
	padding:80px 0;
	border-bottom:1px solid #e6e6e6;
}
body.hs-single-author .hs-blog-listing .author-banner .author .author-bio{
	max-width: 665px;
	margin: 0 auto;
}
body.hs-single-author .hs-blog-listing .listing-posts .post-item:first-child .hs-featured-image-link{
	min-height:223px;
}
body.hs-single-author .hs-blog-listing .post-search .search #search_form input.hs-input{
	margin:0;
}
body.hs-single-author .hs-blog-listing .author-banner .post-search{
	padding:80px 0 50px;
}
body.hs-single-author .hs-blog-listing .author-banner .author-avatar {
	margin-bottom: 15px;
}
body.hs-single-author .hs-blog-listing .author-banner .blog-header__author-social-links {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 20px;
}
body.hs-single-author .hs-blog-listing .author-banner .blog-header__author-social-links a{
	display: flex;
	align-items: center;
	margin:0 13px;
}
body.hs-single-author .hs-blog-listing .pop-up-box input#myInput {
	display: none;
}
body.hs-single-author .hs-blog-listing .pop-up-box #popupbox {
	visibility: hidden;
	opacity: 0;
	transition:all .3s linear;
	position:absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	border:0.5px solid #e2e2e2;
	width:90px;
	height:30px;
}
body.hs-single-author .hs-blog-listing .pop-up-box{
	position:relative;
}
body.hs-single-author .hs-blog-listing .pop-up-box.popupbox_one #popupbox {
	visibility: visible;
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	position:absolute;
	width:90px;
	height:30px;
	background:#fff;
	border:0.5px solid #e2e2e2;
	border-radius:4px; 
	line-height:normal;
	margin-top:5px;
}

@media(min-width:767px){
	body.hs-single-author .hs-blog-listing .listing-posts .post-item:first-child{
		flex-basis: 29.96%;
		-webkit-flex-basis: 29.96%;
		margin-top: 2.43%;
	}
	.section.post-footer .hs-button {
		max-width: max-content;
		min-width: 289px;
	}
}

@media(min-width:768px) and (max-width:1024px){
	body.hs-single-author .hs-blog-listing .author-banner .author{
		padding:60px 0;
	}
	body.hs-single-author .hs-blog-listing .author-banner .post-search {
		padding: 40px 0 25px;
	}
}

@media(max-width:767px){
	body.hs-single-author .hs-blog-listing .author-banner .author{
		padding:40px 0;
	}
	body.hs-single-author .hs-blog-listing .author-banner .post-search{
		padding:30px 0;
	}
	body.hs-single-author .hs-blog-listing .author-banner .post-search .search{
		margin-top: 30px;
	}
	body.hs-single-author .hs-blog-listing main .listing-posts .post-item{
		flex-basis: 100%; 
		-webkit-flex-basis: 100%;
		max-width:none;
	}
	body.hs-single-author .hs-blog-listing .pop-up-box.popupbox_one #popupbox{
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
	}
}

/* Blog Load_More_pagination styling */

.load-more-pagination a#next {
	background-color: #246bfd;
	color: #fff;
	padding: 13px 20px;
	border-radius: 8px;
}
.load-more-pagination {
	text-align:center;
}

/* Blog Post Navigation Bar Styling */

.navigation-bar .breadcrumb-menu ul li:first-child{
	margin-left:17px;
}
.navigation-bar .breadcrumb-menu ul li{
	margin-left:34px;
}
.navigation-bar .breadcrumb-menu ul li::marker {
	color: #2cd8b1;
	line-height: 0;
}
.navigation-bar .breadcrumb-menu ul li.trim {
	font-weight: bold;
	text-decoration: underline;
	color: #246BFD;
	text-transform:uppercase;
}
.navigation-bar .breadcrumb-menu ul li a {
	color: #737588;
	font-weight: bold;
	text-decoration: none;
	text-transform:uppercase;
}


/* blog listing dropdown */

.drop_down{
	position: relative;
	overflow: hidden;
	height: 0;
	-webkit-transition: all 0.3s ease-in; 
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	user-select: none;
	-moz-user-select:none;
	-khtml-user-select: none;
}
.drop_down .block h3{
	display:none;
}
.drop_down.showMenu{
	border: 1px solid #E2E2E2;
	border-top:none;
	border-radius: 0 0 8px 8px;
	background-color: #fff;
	margin-top: -1px;
	height: auto;
	position: absolute;
	padding: 0px 20px 10px;
	z-index: 2;
	transition: all 0.3s linear;
}
.main-conta.showMenu{
	border-radius: 8px 8px 0 0;
	border-bottom: none;
	padding-bottom: 0;
}
.main-conta {
	border-radius: 8px;
	border: 1px solid #e2e2e2;
	padding: 10px 20px;
	margin-top:-1px;
}
.main-conta h4{
	cursor:pointer;
	position:relative;
	display:flex;
	align-items:center;
}
.main-conta h4::after{
	background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Updated%20Growthkit%20Pack/Next-Pagination.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	content: '';
	position: absolute;
	width: 12px;
	height: 20px;
	right: 0;
	transform: rotate(90deg);
	transition: all 0.3s ease-in;
}
.main-conta.showMenu h4::after {
	transform: rotate(270deg);
	transition: all 0.3s ease-in;
}
.drop_down.showMenu ul{
	margin:0;
}
.drop_down.showMenu li {
	margin: 12px 0;
	list-style-type: none;
	border-bottom: 1px solid #e2e2e2;
}
.drop_down.showMenu .widget-module ul li a span{
	display:none;
}
.drop_down.showMenu a {
	color: #101A29;
	text-decoration: none;
	border-bottom:2px solid transparent;
	font-weight:bold;
}
.drop_down.showMenu li:hover a{
	border-bottom: 2px solid #101a29;
	color: #246bfd;
	cursor:pointer;
}
@media(max-width:767px){
	.drop_down.showMenu{
		position:relative;

	}
}


/* Extra css */
.blog-listing .row-fluid .two-col-adjust.listing>span {
	margin-right: 0;
}
body #hs_cos_wrapper_module_16693109558398 .email-box{
	margin-bottom: 40px;
	margin-top: 0px;
}
@media(min-width:768px){
	.post-item.blog-card {
		margin: 40px 76px 40px 0;
	}
}

.container-fluid.body-container-home-1 #hs_cos_wrapper_dnd_area_home_1-module-123 .form-cm form label {
    color: #fff;
}
/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
.hero-overly {
  position: absolute;
  z-index: -1;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
}


/****************************Countdown Module Css Start Here ****************************************/


.countdown-cm .countdown-conta ul span {
  margin-top: 15px;
  padding:0;
}

.body-container-wrapper .countdown-cm .countdown-conta ul.timer {
  margin: 62px 0 70px;
  display:flex;
}

.countdown-cm .form-conta h3 {
  margin-bottom: 28px;
}

.countdown-cm form {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.countdown-cm .countdown-conta {
  padding-top: 30px;
  padding-bottom: 178px;
}

.countdown-cm .form-conta span {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: #101a29;
  padding: 0;
}

body .countdown-cm .form-conta .hs_email .input input{
  padding: 11.5px 16px;
}

.countdown-cm .header-conta{
  align-items: center;
  vertical-align: middle;
  margin-bottom: 142px;
  justify-content: space-between;
}

.countdown-cm .main-col .footer-cont,
.countdown-cm .main-col .footer-cont .social-icon{
  align-items: center;
  vertical-align: middle;
  justify-content: center;
}

.countdown-cm .main-col .footer-cont{
  max-width: 629px;
  margin: 150px auto 0;
}

.countdown-cm .main-col .countdown-conta.one {
  max-width: 821px;
  margin: 0 auto;
  padding-top: 72px;
  padding-bottom:60px;
}
.countdown-cm .main-col .countdown-conta.one .header-conta {
  margin-bottom: 132px;
}


.countdown-cm .main-col .countdown-conta.one .form-conta .hs_email label{
  display:none;
}
.countdown-cm .main-col .coun {
  line-height: 1.07;
  letter-spacing: -3.6px;
}

.countdown-cm .main-col .form-conta.one.row-fluid {
  max-width: 689px;
  margin: 35px auto 0;
}



.body-container-wrapper .countdown-cm .main-col .footer-cont .social-icon ul {
  margin: 0 10px;
}

.body-container-wrapper .countdown-cm .main-col .footer-cont .social-icon ul li {
  padding: 10px;
}

.body-container-wrapper .countdown-cm .main-col .footer-cont .social-icon h6 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.56; 
  letter-spacing: normal;
  color: #737588;
  margin: 0;
}

.body-container-wrapper .countdown-cm .main-col .footer-cont .social-icon ul li .icon {
  line-height: normal;
}

.countdown-cm .header-conta .details p,
.countdown-cm .main-col .footer-cont .details p{
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  color: #101a29;
}

@media (min-width:1024px){
  .countdown-conta {
    max-width: 586px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .countdown-cm .countdown-conta ul li {
    padding: 0 20px;
  }
  body .upcoming-event .event-section .right-col .text-conta h6{
    margin-left: 0;
    line-height: normal;
    font-size: 9px;
    margin-top: 10px;
  }
  .upcoming-event .event-section .right-col ul li .list-item{
    display:block;
  }
  body .row-fluid .recent-blog.three-col-adjust span>.hs_cos_wrapper{
    flex-basis: 47.3%;
    -webkit-flex-basis: 47.3%;
    margin-right: 2%;
  }
}

@media (min-width:768px){
  body .countdown-cm .bg-image img {
    display:none;
  }

  body .countdown-cm .form-conta .hs_email .input {
    width: 69.63%;
    float: left;
  }
  body .countdown-cm .form-conta  .hs_submit.hs-submit {
    width: 25.5%;
    float: left;
    margin-left: 1.45%;
  }

  body .countdown-cm .form-conta.one .hs-button{
    width:80%;
  }

  .countdown-cm .header-conta .logo,
  .countdown-cm .main-col .footer-cont .details{
    width: 48%;
    float: left;
  }

  .countdown-cm .header-conta .details,
  .countdown-cm .main-col .footer-cont .social-icon {
    width: 48%;
    margin-left:4%;
    float: left;
  }
}

@media (max-width:767px){
  .upcoming-event .event-section .left-col .image-conta{
    position:relative;
  }

  .body-container-wrapper .countdown-cm .countdown-conta ul.timer {
    margin: 40px 0 40px;
  }
  .countdown-cm .countdown-conta ul {
    justify-content: center;
  }
  .countdown-cm .countdown-conta ul li {
    padding: 20px 0px;
  }
  .flex_me {
    display: inline-block;
  }
  body .countdown-cm .bg-image {
    padding: 30px 0 60px;
  }
  .countdown-cm .countdown-conta {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .countdown-cm .header-conta {
    margin-bottom: 100px;
    /*     display: block; */
  }
  /*   .countdown-cm .header-conta	.logo {
  margin-bottom: 12px ;
} */
  .countdown-cm .details.align-right{
    text-align: right;
    margin-right: 0;
  }
  body .countdown-cm .form-conta span {
    display: block;
  }
  body .countdown-cm .form-conta span.hs-form-required {
    display: none;
  }

  .countdown-cm .main-col .footer-cont {
    margin: 70px auto 0;
    display: inline-block;
  }
  .countdown-cm .main-col .footer-cont .social-icon {
    display: inline-block;
  }
  .countdown-cm .main-col .footer-cont .details {
    margin: 20px 0;
  }
  .countdown-cm .main-col .countdown-conta.one .header-conta {
    margin-bottom: 100px;
  }
  .countdown-cm .main-col .countdown-conta.one .text-conta h1 {
    font-size: 60px;
    line-height:normal;
  } 
  .countdown-cm .countdown-conta ul span {
    margin-top: 26px;
    padding: 0;
    font-size: 28px;
    margin-left: 10px;
  }
  .body-container-wrapper .countdown-cm .main-col .footer-cont .social-icon ul li {
    padding: 2px;
  }
}

.countdown-cm .countdown-conta.one .text-conta{
  margin-bottom: 35px;
}

.countdown-cm .countdown-conta.one .form-conta.one {
  width: 89.6%;
  margin: 0 auto;
}


.countdown-cm .countdown-conta.one .text-conta h1{
  font-size:90px;
  line-height:1.07;
  letter-spacing: -3.6px;
  margin:0;
  margin-bottom:18px;
}

.countdown-cm .countdown-conta.one .form-conta ul.no-list.hs-error-msgs.inputs-list{
  position: absolute;
  bottom: -40px;
  left: 0;
}

.countdown-cm .countdown-conta .form-conta ul.no-list.hs-error-msgs.inputs-list{
  position: absolute;
  bottom: -104px;
  left: 0;
}

.countdown-cm .countdown-conta .form-conta{
  position:relative;
}
.countdown-cm .left-col .countdown-conta .form-conta .hs-input{
  width:95%;
}

@media(max-width:767px){
  .countdown-cm .countdown-conta .form-conta .hs_error_rollup {
    height:35px;
  }
  .countdown-cm .countdown-conta.one .form-conta ul.no-list.hs-error-msgs.inputs-list{
    bottom:20px;
  }
  .countdown-cm .countdown-conta .form-conta ul.no-list.hs-error-msgs.inputs-list{
    bottom:31px;
  }
  .countdown-cm .left-col .countdown-conta .form-conta .hs-input{
    width:100%;
  }
  body .upcoming-event .row-fluid-wrapper>.row-fluid{
    display:block;
  }
  .header-grp.mega-menu-header-grp.header-section .container-fluid.mega-menu-popout-container.child-grp-2.waana_box_shadow.mobile-mega-menu .span3.widget-span.widget-type-cell.growthkit_mega_menu_drop_2221-dnd_partial-1-column-5-padding.growthkit_mega_menu_drop_2221-dnd_partial-1-column-5-vertical-alignment.growthkit_mega_menu_drop_2221-dnd_partial-1-column-5-hidden.dnd-column .row-fluid-wrapper.row-depth-1.row-number-5.dnd-row {
    display: none;
  }
  .header-grp.mega-menu-header-grp.header-section .container-fluid.mega-menu-popout-container.child-grp-2.waana_box_shadow.mobile-mega-menu .row-fluid-wrapper.row-depth-1.row-number-8.dnd-row,.header-grp.mega-menu-header-grp.header-section .container-fluid.mega-menu-popout-container.child-grp-2.waana_box_shadow.mobile-mega-menu .row-fluid-wrapper.row-depth-1.row-number-7.dnd-row{
    display:none;
  }
}


@media(max-width:480px){
  body .upcoming-event .event-section .right-col .text-conta h6{
    font-size:9px;
  }

}

/****************************************CountDown Module Css End Here*************************************************************  */




/****************************************Event Module Css End Here*************************************************************  */

.upcoming-event	.event-section{
  position:relative;
}

@media(min-width:768px){
  .upcoming-event .event-section .left-col .image-conta.event-overlay{
    position: absolute;
    content:'';
    z-index:1;
    top:0;
    bottom:0;
    left:0;
    width: 35%; 
    height:auto;
  }
}

/* @media(max-width:768px){
.upcoming-event .event-section .left-col .image-conta.event-overlay{
position: relative;
width:100%;
}
} */

.event-sec .content-box .top-text-conta h6 , 
.event-sec .content-box .bottom-text-conta .text-conta h6{
  font-size:14px;
  font-weight:normal;
}

@media(max-width:1024px){
  .event-sec .content-box .top-text-conta h6 , 
  .event-sec .content-box .bottom-text-conta .text-conta h6{
    font-size:12px;
  }	
}

@media(max-width:767px){
  .content-box.hs_cos_wrapper.event-cards.filter_all {
    max-width: 100%;
  }
}

.next img, .prev img {
  padding-bottom: 4px;
}

.image-conta.event-overlay:before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 65%) 100%);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}



/*************************************Gallery Popup Styling Here******************************************  */

.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-container {
  text-align: center;
  position: relative;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  padding: 0 8px 80px 8px;
  box-sizing: border-box;
}
.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-figure figure {
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 4px 70px 0px rgb(0 0 0 / 10%);
  padding: 30px;
  width: 100%;
  max-width: 747px;
  border-radius: 20px;
}
.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc {
  width: 100%;
  max-width: 453px;
}
.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-image-holder .mfp-content{
  padding-top:70px;
}

.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-container.mfp-s-ready.mfp-image-holder{
  width:100%;
  max-width:950px;
  margin:0 auto;
}
.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-arrow{
  width:50px;
}
.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-arrow-left:after{
  left:10px;
}
.mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-image-holder .mfp-close:before{
  right: 5px !important;
}
@media(max-width:1024px){
  .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-title{
    display:Block;
  }
  .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-image-holder .mfp-content{
    max-width:100%;
  }
  .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-figure {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
  }
  .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc{
    max-width:100%;
  }
}
@media(max-width:767px){
  .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-container{
    top:70px;
  }
  .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .mfp-figure {
    max-width: 99%;
  }
}
/*************************************Gallery Popup Filter Styling Here******************************************  */

@media(max-width:767px){
  .gallery_section .cards {
    margin-top: 40px;
  }
}


.gallery_section .dropdown-filter{
  margin: 0 auto 30px auto;
  width: 100%;
}
.gallery_section .dropdown-filter .dropdown-title .title {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius:4px;
  color: #737588;     
  display: block;         
  width: 100%;
  text-decoration: none;
  transition: all 0.3s ease-out;
}        
.gallery_section .dropdown-filter .dropdown-title .title span {
  cursor: pointer;
  display: block;
  padding: 10px;
}


.gallery_section .dropdown-filter .dropdown {
  position: relative;
}      
.gallery_section .dropdown-filter .dropdown ul {
  border: 1px solid #e6e6e6;
  display: none;
  list-style: none;
  padding: 0;
  width: 100%;
  margin:0;
}         
.gallery_section .dropdown-filter .dropdown li {
  cursor: pointer;
  padding: 10px;
  margin:0;
  transition: all 0.3s ease-out;
}            
.gallery_section .dropdown-filter .dropdown span {
  color: inherit;
  text-decoration: none;
}

.gallery_section .dropdown-filter .dropdown li:hover {
  background-color: #f3f3f3 !important;
  color: #101a29;
}

.gallery_section .dropdown-title .title{
  position:relative;
}

.gallery_section .dropdown-title .title:before{
  position: absolute;
  content:'';
  right:15px;
  top:18px;
  background:url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Free%20Pack/Down%20Arrow.svg') no-repeat;
  background-size:contain;
  width:16px; 
  height:16px;
}

.gallery_section .dropdown-title .title.selected:before{
  top:12px;
  transform: rotate(180deg);
}

/*************************************Pricing Styling Here******************************************  */

th.data, td.first-data {
  padding-left: 40px;
}
body .colored_cells .primary-cta a.cta_button{
  color: #fff;
  background: #246bfd;
  border: none;
}
td.hs_cos_wrapper.price-container {
  padding: 0 10px 64px 10px;
}
.pricing-calculator .table tbody tr td:first-child.colored_cells {
  background: transparent;
}
.pricing-calculator .package-container {
  padding-top: 20px;
}
tr.pricing td.hs_cos_wrapper.price-container h4 {
  padding-top: 40px;
}
@media(max-width:767px){
  tr.pricing td.hs_cos_wrapper.price-container h4 {
    padding-top: 20px;
  }
}
.table-heading .pricing .cta-cont .cta-choices .single-cta.transparent-cta a.cta_button:hover,
body .pricing-calculator .pricing .package-container .packages .mid-cta-cont .cta-choices a.cta_button:hover{
  background-color:#101a29 !important;
  border: 1px solid rgba(16, 26, 41, 1.0);
}
body .pricing-calculator .pricing .package-container.selected .packages .mid-cta-cont .cta-choices a.cta_button:hover{
  background-color:#246BFD !important;
}

/*************************************Sidebar Header Module Styling Here******************************************  */

.side-bar-button .sidebar-cm {
  background: #101a29;
  height: 68px;
  width:68px;
}
.side-bar-button .icon-menu{
  max-width: 21px;
  width: 100%;
  cursor:pointer;
  margin:0 auto;
}
.side-bar-button .image-cont {
  text-align: center;
  padding-top:13px;
}
.side-bar-button .image-cont h6 {
  font-weight: 500;
  line-height: 1.29;
  color: #fff;
  margin-top: 5px;
}
.side-bar-menu .menu-open {
  display:none;
  transition: .4s all ease-in-out;
}

.side-bar-menu.cont-open .menu-open {
  display:block;
  transition: .4s all ease-in-out;
  -moz-transition:.4s all ease-in-out;
  -webkit-transition: .4s all ease-in-out;
}

.side-bar-menu.cont-open .menu-close {
  display:none;
  transition: .4s all ease-in-out;
  -moz-transition: .4s all ease-in-out;
  -webkit-transition: .4s all ease-in-out;
}

.side-bar-header-group .side-bar-button .icon-cont {
  position: absolute;
  bottom: 0;
  width: 68px;
}

.side-bar-header-group .side-bar-button .icon-cont .icon {
  max-width: 28px;
  margin: 0 auto 20px;
}



/*************************************Sticky Sidebar Module Styling Here******************************************  */


@media(max-width:767px){
  body .row-fluid .sticky-sidebar.piller-container .two-col-adjust span>.hs_cos_wrapper {
    margin: 40px 0 0 0;
  }
  body .sticky-sidebar .content-container .card-container .cards .logo-conta {
    margin-bottom: 10px;
  }
  .sticky-sidebar.piller-container br {
    display: block;
  }
}
.sticky-sidebar.piller-container .text-margin-zero h1,.sticky-sidebar.piller-container .text-margin-zero h2,.sticky-sidebar.piller-container .text-margin-zero h3,.sticky-sidebar.piller-container .text-margin-zero h4, .sticky-sidebar.piller-container .text-margin-zero h5,.sticky-sidebar.piller-container .text-margin-zero h6 {
  margin: 0 0 14px 0;
  margin-bottom : 14px !important;
}
.sticky-sidebar .row-reverse .left_side_cont .head-conta h3 {
  color: #101A29;
}



/*************************************Team Card Module Styling Here******************************************  */




.team-card-section .card-1 .company-logo {
  text-align: right;
}
body .team-card-section .card-1 .span6{
  margin-left:4px;
}
body .team-card-section .card-2 .team-info{
  display:flex;
  align-items:center;
}
body .team-card-section .card-2 .team-info .team-image{
  margin-right:15px;
}
@media(max-width:767px){
  .team-card-section .card-1 .company-logo {
    text-align: left;
  }	
  body .team-card-section .card-1 .span6{
    margin:0;
  }
  body .team-card-section .card-1 .span6 .detail{
    padding:10px 0;
  }
}
body .team-card-section .card-1 .span6 .detail h4{
  font-size:18px;
}
.team-card-section .card-2 .about-team-description p{
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
}
/* Align Left styling */
.team-card-section .card-2.left .about-team-description p{
  text-align:left;
}
body .team-card-section .card-2.left .team-info{
  justify-content:flex-start;
}
body .team-card-section .card-2.left .company-logo{
  margin-left:0;
}

/* Align Right Styling */
.team-card-section .card-2.right .about-team-description p{
  text-align:right;
}
body .team-card-section .card-2.right .team-info{
  justify-content:flex-end;
}
body .team-card-section .card-2.right .company-logo{
  margin-right:0;
}

/* Align Center */
.team-card-section .card-2.center .about-team-description p{
  text-align:center;
}
body .team-card-section .card-2.center .team-info{
  justify-content:center;
}
body .team-card-section .card-2.center .company-logo{
  margin:0 auto;
}

@media(min-width:768px) and (max-width:1024px){
  .team-card-section .card-1 .team-image{
    max-width:45px !important;
    height:45px !important;
  }
}

/****************************************** Header Top Bar ********************************************/

/****************************************** Updated Top Bar ********************************************/

.offer_bar{
  position:relative;
  z-index:1;
  visibility: visible;
  opacity:1;
}
.offer_bar.remove{
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s linear;
  height:0;
}
.offer_bar .offer_content{
  padding:0 30px;
}
.top_bar .right-col .language-swithcher ul.nav {
  margin:0;
  padding:0;
}
.offer_bar .icon_button {
  width: 24px;
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 9999;
  cursor:pointer;
}
ul.list_icons {
  margin: 0;
  padding:0;
  display:flex;
  align-items:center;
}
ul.list_icons li{
  display:inline-block;
  max-width:18px;
  margin:0;
  margin-right:22px;
}
.top_bar .right-col .contact_info {
  display: flex;
}
.top_bar .right-col .contact_info a{
  color: rgba(16, 24, 32, 1.0);
  font-size: 14px;
  font-family: 'DM Sans',sans-serif;
  padding:0 15px;
  display:flex;
  align-items:center;
}
.top_bar .right-col .contact_info a:hover{
  text-decoration: none; 
  color: rgba(17, 94, 103, 1.0);
}
.top_bar .right-col .contact_info a:hover svg{
  fill: rgba(17, 94, 103, 1.0);
}
.top_bar .right-col .search-button .button-text{
  color: #737588;
  font-size: 14px;
  font-family: 'DM Sans',sans-serif;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 5px;
}
.top_bar .right-col button.search-button {
  padding: 0 14px;
  background: none;
  border: none;
  cursor:pointer;
  position:relative;
  display:flex;
  align-items:center;
}
.top_bar .right-col .contact_info svg {
  width: 100%;
  max-width: 16px;
  height: 16px;
  color: #737588;
  font-size: 14px;
  font-family: 'DM Sans',sans-serif;;
}
.header-section svg{
  fill: rgba(66, 91, 118, 1.0);
  transition: all .15s ease;
  -webkit-transition: all .15s ease-in;
}
.header-section svg:hover{
  fill: rgba(17, 94, 103, 1.0);
}
.top_bar .right-col .align-right-col {
  display:flex;
  align-items:center;
  justify-content: right;
}
.header-section.toggled .header-search-popup{
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 1;
  overflow: hidden;
  transition: all .5s ease-in-out;
  width: 100%;
  padding: 37px 0px;
  background: rgba(0, 0, 0, 0.9);
  pointer-events: auto;
}
.header-section .header-search-popup .text-container {
  max-width: 720px;
  margin: 0 auto;
  float: none;
  position: relative;
  top: 40%;
  z-index: 1;
}
.top_bar .right-col button.search-button svg{
  width:16px;
}
.header-section .header-search-popup{
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
  z-index: -1;
  top: -226px;
  opacity: 0;
  overflow: hidden;
  transition: all .5s ease-in-out;
  width: 100%;
  padding: 37px 0px;
  pointer-events: none;
}
.hs-search-field__bar button{
  max-width: 99px;
  width:100%;
  height:100%;
  background-color: #246bfd;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  cursor:pointer;
}
.header-search-popup span.closebtn {
  background: #ffffff;
  border-radius: 50%;
  box-sizing: unset;
  color: #246bfd;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  height: 16px;
  max-width: 16px;
  padding: 8px 10px 12px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -20px;
  width: 100%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-grp.simple-header-sec.header-section.toggled{
  pointer-events:none;
}
/* body .row-fluid input.hs-search-field__input{
height:45px;
max-width:310px;
width:100%;
border-radius: 4px;
border: solid 1px #e2e2e2;
background-color: #fff;
padding: 9px 16px 11px 16px;
} */
body .row-fluid input.hs-search-field__input,
body .row-fluid input.hs-search-field__input::placeholder{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #000000;
}
span.info-logo {
  margin-right: 7px;
}
.overlay-bg{
  border-bottom: 16px solid #fff;
  border-top: 12px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  width: 13px;
  top: -28px;
  position: absolute;
  right: 118px;
}
@media(min-width:767px) and (max-width:1024px){
  .top_bar .right-col .contact_info a{
    padding-left:7px;
    padding-right:7px;
  }
}
ul.dropdown-menu.dropdown_active{
  background-color:#fff;
  z-index:99;
}
ul.dropdown-menu.dropdown_active:before{
  border-bottom: 16px solid #fff;
  border-top: 12px solid transparent;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  width: 13px;
  top: -28px;
  position: absolute;
  right: 22px;
  content:'';
}
.dropdown-icon{
  background: url(//3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/raw_assets/public/Updated%20Growthkit%20Pack/Images/angle-down.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 10px;
  height: 8px;
  transition: .5s;
}
body .language-swithcher .nav a.dropdown-toggle.active{
  transform:scale(1);
}
body .language-swithcher ul.nav li a.dropdown-toggle:hover{
  text-decoration:none !important;
}
body .nav a.dropdown-toggle.active .dropdown-icon{
  transform:rotate(180deg);
}
.header-section .search-popup{
  position:relative;
  z-index:11 !important;
}

@media(max-width:400px){
  .hs-search-field__bar button{
    width:35%;
  }
  body .row-fluid .header-search-popup input.hs-search-field__input{
    width:60%;
  }
}
body .row-fluid .hs-search-field__suggestions li{
  padding: 5px 0;
  margin-bottom: 0;
  margin-top: 5px;
}
body .row-fluid .hs-search-field--open .hs-search-field__suggestions{
  border-color: #e2e2e2;
  border-radius:4px;
  margin-top:10px;
}
.hs-search-field__suggestions li a{
  line-height:normal;
}

/****************************************** Updated Grwothkit Research ********************************************/

.hs-search-field {
  position: relative;
}
.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
}
.hs-search-field__bar button{
  color:#fff;
}
.hs-search-field__bar button svg {
  height: 10px;
}
.hs-search-field__suggestions {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hs-search-field--open .hs-search-field__suggestions {
  border: 1px solid #000;
}
.hs-search-field__suggestions li {
  display: block;
  margin: 0;
  padding: 0;
}
.hs-search-field__suggestions #results-for {
  font-weight: bold;
}
.hs-search-field__suggestions a,
.hs-search-field__suggestions #results-for {
  display: block;
}
.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: rgba(0, 0, 0, 0.1);
  outline: none;
}

/****************************************** Vertical Timeline Module Styling Here********************************************/

.all-text-white .event-heading, .host-name {
  color: #fff;
}
.event-heading, .host-name {
  color: #101a29;
  font-size: 20px;
  font-weight: bold;
}


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

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

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

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


/* Custom Modules styling starts here
*/
/* Indexing 
1. Accordion
2. Button
3. Content with directed lines
4. Counter and Countdown
5. Event Listing
6. Form
7. Full Width Slider
8. Gallery with filter
9. How it works
10. Image with video before Image
11. List Items
12. pricing
13. Product Designer
14. Recent Blogs
15. Refer a Friend
16. Related Blogs
17. Resource Filter
18. Rich Text
19. Share your Experience
20. Social Share
21. Sticky Sidebar
22. Tabber
23. Testimonial Slider
24. Testimonial Slider 2
25. Updated Top Bar
26. Vertical Separator
27. Vertical Tabber
28. Pricing table Module
29. Ebook Popup Styling
30. Gallery Popup Module
31. System and blog post CSS
32. Predefined Classes
33. Card Module
34. Job Detail card Module
35. popup Module
*/


ul.slick-dots button:focus-visible{
  outline: none;
}

/******************************************************** Accordion ********************************************************/

.accordion-section .accordion-header{
  cursor:pointer;
  padding-right:40px;
  cursor: pointer;
  position: relative;
}

.accordion-section .accordion-group.expanded .accordion-header:after {
  top: 5px;
  right: 20px;
  transform: rotate(90deg);
}


/******************************************************** Button ********************************************************/

.video-cta a.cta_button {
  border: none;
  padding-left:45px;
}

.transparent-cta.cta-container.video-cta a.cta_button {
  background: none;
}

.video-cta a:hover .play-icon-button,
.video-cta a .hover-play-icon{
  /* 	display:none; */
  opacity:0;
  transition: all 0.5s ease-in-out;
}

.video-cta a:hover .hover-play-icon,
.video-cta a .play-icon-button{
  /* 	display: block; */
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.cta-container.simple-cta a.cta_button:hover {
  background: none;
  transition: all 0.5s ease-in-out;
}

.video-cta a.cta_button::hover a.cta_button.popup{
  text-decoration: underline;
  color:#000;
}

/******************************************************** Content with directed lines ********************************************************/

.directed-lines-cm .left-content .content,
.directed-lines-cm .right-content .content{
  position: relative;
}

.directed-lines-cm .middle-content img{
  max-width:388px !important;
  min-height:813px;
  width:100%;
  margin:0 auto;
}

@media(min-width:768px) and (max-width:1115px){
  .directed-lines-cm .right-content p,
  .directed-lines-cm .left-content p{
    font-size:14px;
    line-height:normal;
  }
  .directed-lines-cm .right-content .content.margin,
  .directed-lines-cm .left-content .content.margin{
    margin-bottom:30px !important;
  }
  .directed-lines-cm .middle-content img{
    min-height: 450px !important;
    max-width: 310px !important;
  }

  bdoy .row-fluid .directed-lines-cm{
    float: none !important;
    max-width: 1000px;
    margin: 0 auto !important;
  }
}

@media(max-width:767px){
  .directed-lines-cm .middle-content img{
    height:auto !important;
    min-height: auto !important;
  }
  .directed-lines-cm .left-content{
    padding-right: 0px;	
    margin-bottom: 20px;
  }
  .directed-lines-cm .right-content{
    padding-left: 0px;	
    margin-top: 20px;
  }
}


/******************************************************** Counter and Countdown ********************************************************/

.countdown-cm .countdown-conta ul span {
  font-size: 38px;
  color: #246BFD;
  margin-left: 28px;
  margin-right: 28px;
}
.countdown-cm .timer li.item {
  margin: 0;
}
.body-container-wrapper .countdown-cm .countdown-conta ul.timer {
  flex-wrap: wrap;
}

@media (min-width:1024px){
  .countdown-cm	h2.count_down {
    font-size: 50px;
    line-height: 1.4;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .counter-section .row-fluid .four-col-adjust>span {
    display: block;
    margin-right: 0;
  }
  .counter-section .row-fluid .four-col-adjust span>.hs_cos_wrapper {
    display: block;
    flex-basis: 25%;
    width: 25%;
    -webkit-flex-basis: 25%;
    margin: 0;
    margin-top:0;
  }
  h1.h1_86 {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (min-width:768px){
  body .row-fluid .counter-section .four-col-adjust span>.hs_cos_wrapper {
    margin-right: 0;
    margin-top: 0%;
    flex-basis: 25% !important;
    -webkit-flex-basis: 25% !important;
  }
}

@media (max-width:767px){
  body .counter-section .counter-conta.spacing {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}
@media (max-width:470px){
  body .countdown-cm .countdown-conta ul span {
    font-size: 32px;
    margin-left: 7px;
    margin-right: 7px;
    line-height: 16px;
  }
  body .countdown-cm .countdown-conta ul li h5 {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
  body .countdown-cm .countdown-conta ul li h2 {
    font-size: 25px;
    line-height: 33px;
    letter-spacing: -1px;
  }
}
/******************************************************** Event Listing ********************************************************/


body .row-fluid .event-sec .three-col-adjust span>.hs_cos_wrapper{
  position: relative;
  left: 0;
  top: 0; 
}
.customers-cm .filter-container .list-item img{
  max-width:16px;
}
.customers-cm .filter-container .list-item{
  display:flex;
  align-items:center;
}
.event-sec .simple-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-sec ul {
  justify-content: space-between;
}
.body-container-wrapper .event-sec ul {
  padding: 0;
  text-decoration: none;
  list-style: none;
  margin: 20px 0;
}
.event-sec .pagination-container ul {
  max-width: 100%;
  margin: 70px auto 0px;
}
.event-sec .text-conta h6{
  font-size: 12px;
  color: #737588;
  margin-bottom: 0;
  margin-left: 7px;
}
.event-sec .event-cards .icon-conta svg,
.event-sec .event-cards .icon-conta{
  width: 14px;
}
.event-sec ul li{
  list-style-type: none;
  display: inline-flex;
  margin-left: 0;
  line-height: 18px;
  align-items:end;
}
.event-sec ul{
  justify-content: space-between;
  display: flex;
}
.event-sec .main-cont .tag h6 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 0;
}
.event-sec .main-cont .tag {
  padding: 4.1px 10px 2.9px;
  border-radius: 2px;
  background-color: #e9f8f4;
}
.event-sec .pagination-container li span,
.event-sec .pagination-container li a{
  font-size: 16px;
  line-height: 25px;
  border: none;
  min-width: 14px;
  padding: 5px 0;
  background: unset;
  box-shadow: none;
}
.event-sec input.quicksearch {
  height: 45px;
  width: 287px;
  max-width: 100%;
  border-radius: 4px;
  padding: 22px 17px;
  line-height: 25px;
  font-size: 16px;
}

.event-sec .pagination-container li .current.prev,
.event-sec .pagination-container li .current.next{
  background: unset;
}
.event-sec .pagination-container li.active .current {
  padding: 5px 12.9px;
  color: #fff;
}
.event-sec .pagination-container li .current {

  color: #fff;
  border-color: unset;
  box-shadow: unset;
}

.event-sec .pagination-container ul{
  display: block;
}
.event-sec .pagination-container ul li{
  display:inline-block;
}
.event-sec .pagination-container ul li a{
  padding: 5px 12.9px;
  font-weight: bold;
  color:#737588;
}
.event-sec .pagination-container ul li .prev ,
.event-sec .pagination-container ul li .next{
  line-height:normal !important;
}
@media (min-width: 768px){
  .event-sec .main-search {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  body .row-fluid .event-sec .three-col-adjust span>.hs_cos_wrapper {
    flex-basis: 27.96%;
    -webkit-flex-basis: 27.96%;
    float: left;
    margin-right: 6.5%;
  }
  body .row-fluid .event-sec .three-col-adjust span>.hs_cos_wrapper:nth-child(3n) {
    margin-right: 0px;
  }
}

@media (max-width: 767px){
  .event-sec .heading-text-cont {
    margin-bottom: 15px;
  }
  .event-sec input.quicksearch {
    width: 100%;
  }
}

@media(max-width:575px){
  .light-theme a, .light-theme span {
    margin:0;
  }
  .simple-pagination {
    padding:0;
  }
  .event-sec .pagination-container ul li .prev ,
  .event-sec .pagination-container ul li .next{
    line-height:normal !important;
  }
  .customers-cm .pagination-container ul li a {
    padding: 5px 0.4rem;
  }
  .event-sec .pagination-container li.active .current {
    padding: 5px 0.4rem;
  }
  .event-sec .pagination-container li span, .event-sec .pagination-container li a {
    font-size: 0.8rem;
    line-height: 0.9rem;
  }
}
.upcoming-event .video-cta a.cta_button {
  border: none;
}
.upcoming-event .transparent-cta.cta-container.video-cta a.cta_button {
  background: none;
}
.upcoming-event .event-section {
  transition: all ease-in-out .2s;
}

.upcoming-event .event-section .top-text-conta ul{
  margin-top: 0;
  margin-bottom: 20px;
}
.upcoming-event .event-section .bottom-text-conta ul{
  margin-bottom: 0;
  margin-top: 18px;
}
.upcoming-event .event-section .right-col .text-conta h6{
  font-size: 12px;
  color: #737588;
  font-weight: 400;
  margin-bottom: 0;
  margin-left: 7px;
}
.upcoming-event .event-section .right-col .icon-conta svg{
  width: 16px;
}
.upcoming-event .event-section .right-col ul li{
  list-style-type: none;
  display: inline-flex;
  margin-left: 0;
  line-height: 18px;
  align-items: center;
}
.upcoming-event .event-section .right-col ul li .icon-conta{
  padding-top: 4px;
}
.upcoming-event .event-section .right-col ul {
  justify-content: space-between;
  display: flex;
}
.upcoming-event .event-section .main-cont .mid-text-conta h4{
  margin-bottom:15px;
}
.upcoming-event .event-section .left-col .cta-choices{
  margin-bottom:15px;
  text-align:center;
  position: relative;
  z-index: 1;
}
.upcoming-event .event-section .main-cont .mid-text-conta p{
  margin-bottom:20px;
}
.upcoming-event .video_cta a.cta_button{
  padding-left:45px !important;
}
.upcoming-event .hover-play-icon{
  display:none;
}
.upcoming-event .video_cta a.cta_button:hover .hover-play-icon{
  display:block !important;
}
.upcoming-event .video_cta a.cta_button::hover a.cta_button.popup{
  text-decoration: underline;
  color:#000;
}
.upcoming-event .normal-play-icon {
  padding: 33px;
  height: 101px;
  width: 101px;
  border-radius: 50%;
  transition:.5s ease-in-out;
}
.upcoming-event .normal-play-icon:hover{
  border-radius: 6px; 
  transition:.5s ease-in-out;
}
.upcoming-event .solid-cta.video_cta.cta-container a.cta_button {
  background: none;
}
@media (min-width: 768px) and (max-width: 1024px){
  .upcoming-event .event-section .right-col .text-conta h6{
    margin-left: 2px;
  }
}
@media (min-width: 768px){
  .upcoming-event .event-section .right-col {
    width: 65% !important;
    margin-left: 0% !important;
  }
  .upcoming-event .event-section .left-col {
    width: 35%!important;
  }
}
@media (min-width: 768px) and (max-width: 1024px){
  .upcoming-event .event-section .right-col ul {}
}
@media (max-width: 767px){
  .upcoming-event .event-section .left-col .image-conta{
    border-radius: 4px 4px 0 0px;
  }
  body .upcoming-event .event-section .main-cont {
    padding: 21px 23px 25px 23px;
  } 
  .upcoming-event .row-fluid-wrapper>.row-fluid {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}


/******************************************************** Form ********************************************************/

form .hs_file_upload .input{
  position: relative;
}

form input[type= hidden] {
  background: #fafafa;
  color: #737588;
}
.popup.active .overlay::before {
  top:0;
  left:0;
  right:0;
  position:absolute;
  z-index:1;
  content:'';
  bottom:0;
  background: #fff;
  opacity: .96;
}
.main-btn-rect,
.main-btn-circle{
  position: relative;
  margin: 0;
  color: #000;
  background-color: transparent;
  cursor: pointer;
  z-index: 9;
}
.main-btn-rect {
  padding: 10px 80px;
  line-height: 30px;
}
.main-btn-rect:before, 
.main-btn-rect:after{
  position: absolute;
  content: '';
  top:0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.main-btn-rect:before {
  left: 0;
}
.main-btn-rect:after {
  right: 0;
}
.main-btn-rect:hover:before, 
.main-btn-rect:hover:after{
  width: 50%;
}
.main-btn-circle{
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.popup{
  position: fixed;
  top: 100%;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  z-index: 99999;
}
.popup.active{
  top:0px;
  left:0;
  right:0;
}
.popup .main-btn-rect{
  padding: 10px 100px;
}
.popup .popup-content{
  position: relative;
  top: 0;
  right:0;
  left: 0;
  width:100%;
  min-height: 100vh;
  height: auto;
  /* 	min-width: 320px; */
  margin-top: 150px;
  z-index: 2;
  padding: 15px;
  color: #070000;
}
.popup.active .popup-content{
  margin-top: 0px;
  padding-top:0;
  display: flex;
  align-items: center;
}
.popup-content h6{
  display: table;
  font-size: 16px;
  text-align: center;
  margin: 10px auto;
  font-family:'DM Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 100;  
}
.form-group{
  position: relative;
  width: 90%;
  margin: 0px auto;
}
.popup .fade-out{
  position: absolute;
  top: 20px;
  right: 31px;
  text-align: center;
  width:32px;
  height:35px;
}
.fade-out.main-btn-circle img{
  width:100%;
  max-width:32px;
  height:50px;
}
.popup .popup-content .vector-image,
.popup-content .form-conta {
  width: 100%;
  max-width: 616px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  position:relative;
  z-index: 1002;
  box-shadow: 0 4px 70px 0 rgb(0 0 0 / 10%);
}
.popup-content .form-conta form {
  padding: 45px 60px 60px 60px;
  border-radius: 20px;
}

@media(max-width:767px){
  .popup-content .form-conta form .hs-richtext h3 {
    font-size: 20px !important;
    line-height: normal;
  }
  .popup-content .form-conta form{
    padding:20px;
  }
}


/******************************************************** Full Width Slider ********************************************************/

.full-width-slider .slick-list.draggable {
  position: relative;
  right: 0;
  width: 100vw;
} 
.slide-card .slick-arrow span{
  display:none;
}
.full-width-slider .photo,
.full-width-slider .slider-logo {
  text-align: left;
}
.full-width-slider .photo img {
  width: auto;
  height: auto;
  min-height:60px;
  max-width:60px;
  border-radius:50%;
}
.full-width-slider .name h4 {
  margin-top: 0px;
  margin-bottom: 0px;
}
.full-width-slider .slider-main-heading {
  width: 100%;
  max-width: 73%;
  padding-bottom: 12px;
}
.slick-initialized .slick-slide{
  margin:40px 40px 40px 0px;
}
.full-width-slider .slick-initialized .slick-slide{
  margin:40px 20px 40px 0px;
}
.full-width-slider button.slick-prev.slick-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 40px;
  box-sizing: border-box;
  font-size: 0px;
}
.full-width-slider button.slick-next.slick-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 40px;
  font-size: 0px;
  box-sizing: border-box;
}  
.full-width-slider .arrow-container {
  border-radius: 3px;
  border: solid 1px #25252d;
  width: 158px;
  position: absolute;
  right: 70px;
  top: 162px;
  bottom: 50%;
  height: 52px;
}
.full-width-slider .left-arrow{
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
  background:tranmparent;
  padding: 26px 40px;
  box-sizing: border-box;
  font-size: 0px;
}
.full-width-slider .right-arrow{
  display: inline-block;
  right: 0;
  cursor: pointer;
  position: absolute;
  background: #fff;
  padding: 26px 40px;
}
.full-width-slider .left-arrow.slick-prev img {
  width: 40px;
  position: absolute;
  top: 6px;
  transform: rotate(180deg);
  height: 40px;
  left: 17px;
}
.full-width-slider .right-arrow img {
  width: 40px;
  position: absolute;
  top: 6px;
  height: 40px;
  left: 17px;
}
.full-width-slider button.slick-arrow {
  position: relative;
  z-index: 2;
  background:none;
  margin-top: -90px;
}
.full-width-slider .span9.vertical-center{
  padding-left:16px;
}
.full-width-slider .slid-card .slider-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
      height: 100%;
}


@media(min-width:768px) and (max-width:1024px){
  .full-width-slider .slick-list.draggable{
    width:100%;
  }
  .full-width-slider .slick-initialized .slick-slide{
    margin: 40px 10px 40px 10px;
  }
}

@media(max-width:767px){
  .full-width-slider .slick-list.draggable{
    width:100%;
  }
  .full-width-slider .slick-initialized .slick-slide{
    margin:0px;
  }
  .full-width-slider .slider-main-heading{
    max-width:100%;
  }
  .full-width-slider .name {
    margin-top: 30px;
  }
  .full-width-slider .slider-description{
    padding-top:5px;
  }
  .full-width-slider button.slick-arrow{
    margin-top:0px;
    margin-bottom:100px;
  }
  body .full-width-slider.full_width_slider .slick-prev.slick-arrow:before {
    left: 14px;
  }
  body .full-width-slider.full_width_slider .slick-next:before {
    left: 6px;
  }
  body .full-width-slider .slick-prev.slick-arrow:before,
  body .full-width-slider .slick-next:before{
    left: 0 !important;
  }
  body .full-width-slider .slide-card button:hover span{
    background-color: none !important;
  }
}

/******************************************************** Gallery with filter ********************************************************/

.gallery_section .text-cont{
  max-width: 480px;
}
.gallery_section .filter-tabs ul{
  padding-left:0;
  margin:0;
}
.gallery_section .filter-tabs ul li.btn{
  display:inline-block;
  margin: 0 25px;
  cursor: pointer;
}
.gallery_section .filter-tabs ul li.btn.active span{
  border-bottom: 2px solid #101a29;
}
.gallery_section .filter-tabs ul li.btn:first-child {
  margin-left: 0px;
}
.gallery_section .filter-tabs ul li.btn:last-child {
  margin-right: 0px;
}
.gallery_section .image-conta{
  margin-bottom: 23px;
}
.gallery_section .text-conta{
  margin-bottom: 98px;
}


@media(min-width:768px) and (max-width:1024px){
  .gallery_section .text-conta {
    margin-bottom: 50px;
  }
}

@media(max-width:767px){
  .gallery_section .text-conta {
    margin-bottom: 40px;
  }	
  .gallery_section .filter-tabs ul li.btn {
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  .gallery_section .row-fluid .right-col{
    padding-left:0;
  }
  .gallery_section .row-fluid .left-col{
    padding-right:0;
  }
}

/******************************************************** How it works ********************************************************/


.download-app-cm .download_app .cta-container{
  display:inline-block;
  margin-right:17px;
  margin-bottom:15px;
}
.download-app-cm .download_app a.download_button{
  background-color:#000;
  padding: 6px 9px;
  border-radius:6px;
  text-decoration:none;
  display:inline-block;
}
.download-app-cm .download_app a.download_button .image-cta img{
  width:37px;
  height:37px;
}
.download-app-cm .download_app a.download_button .cta-name,
.download-app-cm .download_app a.download_button .image-cta{
  display:inline-block;
}
.download-app-cm .download_app a.download_button .cta-name h6{
  font-size:12px;
  line-height:14px;
  font-weight:400;
  margin-bottom:0;
  color:#e2e2e2;
}
.download-app-cm .download_app a.download_button .cta-name h5{
  font-size:18px;
  line-height:18px;
  margin-bottom:0;
  letter-spacing: 1px;
  color:#fff;
}

@media(max-width:767px){
  .download-app-cm .how_it_works .border_top:before {
    border-top:none;
  }
  .download-app-cm .how_it_works .border_bottom:before {
    border-bottom:none;
  }
  .download-app-cm .download_app .cta-container{
    display:block;
    margin-left:0;
    margin-bottom:15px;
  }
  .download-app-cm .download_app a.download_button{
    width:100%;
    text-align:center;
  }
}


/******************************************************** Image with video before Image *************************************************/

.video-cm .play-button:hover {
  transform: scale(1.1);
  transition: 0.4s ease;
}


@media(max-width:1024px){
  body .row-fluid .image-video-cm .video-cm .video-section{
    max-width:100%;
    margin: 0 auto;
  }
}
@media(min-width:1025px) and (max-width:1440px){
  .image-video-cm .image-conta{
    width: 100%;
  }
}

@media(max-width:767px){
  body .row-fluid .video-cm .video-section {
    max-width: 92%;
    /* 		min-height: 340px; */
    margin: 0 auto;
  }
  body .video-cm.video_sec .play-button{
    max-width: 50px;
  }
}

/******************************************************** List Items ********************************************************/

body .list-items ul{
  margin: 0;
  padding:0;
}
body .list-items ul li{
  line-height:1.56;
  list-style-type: none;
  position: relative;
  z-index: 1;
}

/******************************************************** pricing ********************************************************/

body .pricing-calculator .primary-cta.wanna_dark_cta a.cta_button{
  background:#101A29;
}
body .pricing-calculator .primary-cta a.cta_button{ 
  width: 100%;
}
@media(min-width: 1025px){
  .pricing-calculator .pricing .row-fluid .four-col-adjust span>.hs_cos_wrapper{
    flex-basis: 23.2%;
    -webkit-flex-basis: 23.2% !important;
    margin-right: 1.8% !important;
  }
}

.pricing-calculator .video-cta a.cta_button {
  border: none;
}
.pricing-calculator .video-cta a.cta_button{
  padding-left:45x;
}
.pricing-calculator .hover-play-icon{
  display:none;
}
.pricing-calculator .transparent-cta.cta-container.video-cta a.cta_button,
.pricing-calculator .solid-cta.video-cta.cta-container a.cta_button,
.pricing-calculator .cta-container.secondary-cta a.cta_button:hover {
  background: none;
}
.pricing-calculator .video-cta a.cta_button:hover .hover-play-icon{
  display:block;
}
.pricing-calculator .video-cta a.cta_button::hover a.cta_button.popup{
  text-decoration: underline;
  color:#000;
}
.pricing-calculator .normal-play-icon {
  padding: 33px;
  height: 101px;
  width: 101px;
  border-radius: 50%;
  transition:.5s ease-in-out;
}
.pricing-calculator .normal-play-icon:hover{
  border-radius: 6px; 
  transition:.5s ease-in-out;
}
.pricing-calculator .pricing .inline-price {
  display: inline-flex;
  align-items: end;
  margin-bottom: 10px;
}
.pricing-calculator .pricing .package-container .text-cont {
  padding-bottom: 4px;
}
.pricing-calculator .pricing .package-container .bott-cta-cont {
  margin-top: 38px;
}
.pricing-calculator .pricing .package-container ul li {
  margin-bottom: 10px;
  margin-left: 35px;
  font-weight:500;
}
.pricing-calculator .pricing .package-container ul li:last-child,
.pricing-calculator .pricing .package-container ul {
  margin-bottom: 0px;
}
.pricing-calculator .pricing .package-container ul li:before {
  position: absolute;
  content: '';
  top: 0;
  left: -35px;
  height: 22px;
  background-image: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Theme%20Assets/Check.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  line-height: 1.4;
}
.pricing-calculator .pricing .package-container .heading-text-cont h3,
.pricing-calculator .pricing .package-container .heading-text-cont h5,
.pricing-calculator .pricing .price h2,
.inline-price h3 {
  margin-bottom: 0;
}
body .pricing-calculator .pricing .cta-choices button,
body .pricing-calculator .pricing .cta-choices .button,
body .pricing-calculator .pricing .cta-choices a.cta_button,
.pricing-calculator .pricing .cta-choices span{
  display: block;
}
.pricing-calculator .pricing .packages {
  box-sizing: border-box;
  border-radius: 4px;
}
.pricing-calculator .pricing .package-container .heading-text-cont {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.pricing-calculator .pricing .package-container .heading-text-cont h5 {
  font-size: 14px;
  line-height: normal;
  margin-left: 5px;
  padding: 0 4px;
}


.pricing-calculator .pricing .yearly  ,
.pricing-calculator .pricing .monthly{
  display:none;
}
.pricing-calculator .pricing .yearly.show-year,
.pricing-calculator .pricing .monthly.show-month{
  display:block;
}
.pricing-calculator .pricing button {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  padding: 13px 26.8px;
  border-radius: 2px;
  background: transparent;
  border:none;
  cursor: pointer;
  width: 100%;
  word-break: normal;
}
.pricing-calculator .pricing .toggle-btn {
  display: inline-flex;
  align-items: center;
}
.pricing-calculator .pricing .toggle-btn .switch {
  padding: 8px;
  border-radius: 4px;
  margin-left: 36px;
  display: flex;
}
.pricing-calculator .table th.data {
  max-width: 100%;
  width: 348px;
}
.pricing-calculator .table .icon {
  max-width: 20px;
  margin: 0 auto;
  align-items: center;
  display: inline-flex;
}

.pricing-calculator .table tr,
.pricing-calculator .table thead{
  border: none ;
  border-bottom: 1px solid #E2E2E2 ;
  text-align: center;
}

.pricing-calculator .table tr:last-child {
  border: none ;
}


.pricing-calculator .table tr td.data,
.pricing-calculator .table tr td.first-data{
  text-align: left ;
}
.pricing-calculator .bott-pri-cal .main-cont .inline-price h3,
.pricing-calculator .table tr td h4,
.pricing-calculator .pricing h4,
.pricing-calculator .pricing p{
  margin-bottom: 0;
}

.pricing-calculator .table tr td h4.pop{
  font-weight: 400;
}

.pricing-calculator .table tr span.left-cta .single-cta a.cta_button{
  width: 146px !important;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.pricing-calculator .pricing .package-container .packages{
  border: 1px solid transparent; 
}

body.dark_theme .pricing-calculator .pricing .package-container .packages{
  border: 1px solid #ffffff; 
}
.pricing-calculator .pricing .package-container.selected .packages{
  border-top: 0;
}
.pricing-calculator .pricing .package-container .packages .top-text-cont{
  border-top: 4px solid transparent;
}
body td.selected_cells .primary-cta.transparent-cta a.cta_button:hover {
  transition:all 0.5s ease-in-out;
  border-color: transparent;
  text-decoration:none;
}



@media (min-width: 1025px){
  .pricing-calculator .pricing .price span {
    min-height: 32px;
  }
  .pricing-calculator .bott-pri-cal .price span  {
    min-height: 28px;
  }
  .pricing-calculator .bott-pri-cal {
    max-width: 765px;
    margin-left: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  body .row-fluid .pricing-calculator .four-col-adjust span>.hs_cos_wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-basis: 22.5%;
    -webkit-flex-basis: 47.5%;
    float: left;
    margin-right: 2.5%;
    margin-top: 2.43%;
    box-sizing: border-box;
    position: relative;
  }
  .pricing-calculator .pricing .package-container .heading-text-cont {
    display:block;
  }
  .pricing-calculator .pricing .package-container .heading-text-cont h5{
    margin-left:0;
    margin-top:5px;
  }
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
  }
}

@media (max-width: 767px){
  .pricing-calculator .row-fluid .four-col-adjust>span{
    display:flex;
  }
  .pricing-calculator .pricing button{
    width:100%;
  }
  .pricing-calculator .pricing .toggle-btn{
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
  }
  .pricing-calculator .pricing .toggle-btn .switch{
    margin-left: 0px;
  }
}


/******************************************************** Product Designer ********************************************************/

.product-designer .bottom-row .right-conta li:last-child{
  margin-right: 0px;
}
.product-designer .bottom-row {
  margin-left:0;
}
.product-designer .bottom-row li{	
  list-style-type:none;
  display: inline-block;
  margin: 0px;
}
.product-designer .bottom-row .right-conta .icon-conta,
.product-designer .bottom-row .right-conta .text-conta{
  display:inline-block;
}
.product-designer .bottom-row .right-conta .icon-conta {
  position: relative;
  top: -3px;
}
.product-designer .bottom-row .right-conta li .list-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 5px;
}
.product-designer .bottom-row .right-conta .list-item img{
  max-width:16px;
}
.product-designer .bottom-row .text-conta h6, .product-designer .text-conta a, .product-designer .text-conta p{
  font-size:14px;
  font-weight:600;
  line-height:normal;
}

@media(min-width:320px) and (max-width:1024px){
  .product-designer .bottom-row.with-cta li{	
    display:block;
    margin-right:0;
  }
  .product-designer .bottom-row.without-cta li{
    margin-top:5px;
    margin-right: 5px;
  }
}

@media(max-width:767px){
  .product-designer .bottom-row.with-cta li{
    margin-top:10px;
  }
}

/******************************************************** Recent Blogs ********************************************************/

.email-box form {
  padding: 0;
  background: none;
  border: none;
}
body .row-fluid .email-box .hs-button{
  margin-top:26px;
}
.email-box .form-title {
  display: none;
}
.email-box .form-container {
  margin-top: 35px;
}
body .row-fluid .email-box .hs-input{
  margin-bottom: 0;
  padding: 9px 16px 11px 16px;
  border-radius: 4px;
  background-color: #fff;
  height: 45px;
}
body .recent-blog-conta .featured-image-conta .featured-image{
  height: auto;
  margin-right: 15px;
}
body .recent-blog-conta .featured-image-conta .featured-image img{
  max-width:108px;
  border-radius:4px;
}
body .recent-blog-card .featured-image-conta{
  border-radius:4px 4px 0 0;
}
body .recent-blog-card .featured-image{
  transition: all ease-in-out 0.5s;
}
body .recent-blog-card{
  transition: all ease-in-out 0.5s;
  border:1px solid transparent;
}
body .recent-blog-card:hover{
  background-color:#fff;
  border-radius:6px;
  border-color:#E2E2E2;
}
body .recent-blog-card:hover .featured-image{
  transform:scale(1.2);
  transition: all ease-in-out 0.5s;
}
body .recent-blog-card .featured-image-conta{
  display:block;
  overflow:hidden;
}
.recent-blog-conta .recent-blog-cards:first-child{
  margin:0;
}
.recent-blog-conta .recent-blog-cards{
  display:flex;
  align-items:center;
  margin-top:22px;
}
.recent-blog-card .cta-container.simple-cta a.cta_button{
  padding:0;
}
.recent-blog-card .post-title{
  margin-top:10px;
}
.recent-blog-card .post-content{
  margin-bottom:18px;
}
.recent-blog-card .text-conta .publish-date-conta h6{
  text-transform: capitalize;
}
@media(min-width:768px) and (max-width:1024px){
  .recent-blog-conta .recent-blog-cards{
    display:block;
  }	
  body .recent-blog-conta .featured-image-conta .featured-image{
    width:auto;
    margin-right:0;
  }
  .blog-title-conta.text-margin-zero {
    margin-top: 10px;
  }
  body .recent-blog-conta .featured-image-conta .featured-image img {
    width: 100%;
    max-width: none;
  }
}

@media(max-width:767px){
  .email-box .form-container{
    margin-top:15px;
  }
  .recent-blog-conta h6.h6-16{
    font-size:14px;
    line-height:normal;
  }
}


/******************************************************** Refer a Friend ********************************************************/

.refer-a-friend form {
  padding: 0;
  background: unset;
  border: none;
  border-radius: unset;
  position: relative;
  width: 100%;
}
.refer-a-friend form input {
  display: block;
  width: 100%;
  outline: 0;
  background: #FFF;
  padding: 9.2px 95px 9.2px 15px;
  margin-top: 32px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.56;
  letter-spacing: normal;
  border-radius: 4px;
  text-align: left;
}
.refer-a-friend form button {
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  line-height: 0;
  letter-spacing: normal;
  text-align: left;
}


/******************************************************** Related Blogs ********************************************************/

@media(min-width:1440px){
  .post-item.blog-card{
    max-width: 325px;
    width: 100%;
    margin-right: 76px;
  }
  .post-item.blog-card:nth-child(3){
    margin-right:0px;
  }
}

body.dark_theme .row-fluid .hs-button{
  box-shadow:none;
}
.popup-container{
  position:relative;
  z-index:1;
}

/******************************************************** Resource Filter ********************************************************/

.resource-filter .grid-item .card-conta .location svg,
.resource-filter .grid-item .card-conta .calender svg{
  width:12px;
}

@media(max-width:767px){
  .resource-filter .filter-tab ul{
    text-align:center;
  }
  .resource-filter .filter-tab ul li{
    display:inline-block;
    margin-right:20px;
  }
}

.resource-filter .three-col-adjust{
  padding-top: 50px;
}
.resource-filter .filter-tab ul{
  margin:0;
  padding:0;
}
.resource-filter .filter-tab ul li{
  list-style-type: none;
  margin:0;
  margin-right: 50px;
  padding:0;
  display:inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.resource-filter .filter-tab ul li a{
  color: #101820;
  font-size: 16px;
  font-weight: 400;
  text-decoration:none;
}
.resource-filter .filter-tab ul li a.active{
  color:;
  font-weight: 600;
  border-bottom: 2px solid #101a29;
  transition: opacity 0.5s ease;
}

.resource-filter .filter-search form{
  color: transparent;
  padding:0;
  margin:0;
  max-width:100%;
}
.resource-filter .filter-search input.text-search {
  border: 1px solid #E2E2E2;
  padding: 9px 16px 11px 16px;
  font-size: 16px;
  line-height: 1.56;
}
.resource-filter .filter-search .search-box input{
  margin-bottom:0;
}
.resource-filter .filter-search .search-box{
  position: relative;
  z-index:1;
}
.resource-filter .filter-search .search-box .search-icon{
  position: absolute;
  background: url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Free%20Pack/search_icon%20%281%29-1.png') no-repeat;
  background-size: contain;
  width: 23px;
  height: 23px;
  top:10px;
  right:13px;
  z-index:5;
}
.resource-filter i{
  font-size: 16px;
  color: #425b76;
}
.resource-filter .tab-name h6{
  padding: 3px 10px;
  border-radius: 2px;
}
.resource-filter h6{
  line-height:14px;
  display:inline-block;
}
.resource-filter .gray h6{
  color: #101820;
  font-weight: 400;
  padding-left:5px;
  font-size: 13px;
}
.resource-filter .simple-cta a.cta_button{
  padding:0;
}
.resource-filter .bottom-conta{
  padding-top:6px;
}
.resource-filter .wistia_click_to_play {
  width: 100% !important;
}
.resource-filter .isotope-pager a.active {
  color: #000;
  background-color: ;
  border-radius: 3px;
}
.resource-filter #container {
  height: auto !important;
  width: 100% !important;
}
.resource-filter .grid-item.cards {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}
.resource-filter .isotope-pager {
  padding-top: 30px;
  justify-content: center;
}
.resource-filter .isotope-pager a{
  font-weight: 600;
  padding: 5px 12.9px;
  margin-right: 7px;
  color: #101820;
  text-decoration:none;
}

@media(min-width:1025px){
  .resource-filter .location{
    text-align:right;
  }
  .resource-filter .filter-search .search-box{
    margin-left: 4.2%;
    max-width: 287px;
  }
  .resource-filter .filter-search button.search-button{
    right: 17.2%;
  }
}

@media(min-width:768px) and (max-width:1024px){
  .resource-filter .filter-search button.search-button{
    right: 13px;
  }
  .resource-filter .filter-tab ul li {
    margin-right: 35px;
  }
  .resource-filter .gray h6 {
    font-size:9px;
    padding-left:2px;
  }
}

@media(max-width:767px){
  .resource-filter .filter-search{
    margin-top:20px;
  }
  .resource-filter .filter-tab ul li {
    display: block;
    text-align: center;
  }
  .resource-filter .three-col-adjust{
    padding-top: 20px;
  }
  .resource-filter h6 { 
    font-size: 14px;
  }
}

/******************************************************** Rich Text ********************************************************/

.rich-text-section .contact-conta ul{
  margin:0;
  padding:0;
}
.rich-text-section {
  position: relative;
  z-index: 999;
}
.rich-text-section .cta-container{
  padding-top:25px;
}
.rich-text-section .single-content .contact-conta li.contact{
  list-style-type:none;
  padding:0;
  margin:0;
}
.rich-text-section .single-content .contact-conta li.contact h4{
  font-size:16px;
  line-height:1.56;
  font-weight:500;
  display:inline-block;
  padding-right:12px;
}
.rich-text-section .single-content .contact-conta li.contact a{
  font-size:16px;
  line-height:1.56;
  font-weight:400; 
}
body #hs_cos_wrapper_dnd_area_-module-18 .rich-text-section.radius-section{
  margin-top: -245px;
}
@media(max-width:767px){
  .mobile-column-reverse {
    display:flex;
    flex-direction: column-reverse;
  }
}


/******************************************************** Share your Experience ********************************************************/


.customer_experience .top-heading h3 {
  font-size: 24px;
  font-style: normal;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0px;
  margin-bottom: 0px;
}
.customer_experience .emoji-section{
  padding-top: 32px;
}
.customer_experience ul {
  display: flex;
  justify-content: center;
  margin:0;
}
.customer_experience  ul li{
  list-style-type:none;
  cursor: pointer;
}
.customer_experience .emoji-section ul li{
  padding:0 12px;
  margin-left:0;
  filter:grayscale(1);
  background:transparent !important;
}
.customer_experience .emoji-section ul li.current{
  filter: grayscale(0);
  transform: scale(1.5);
  margin: 0 15px;
}
.customer_experience .reaction-section ul li.reaction{
  padding:13px 20px;
  margin: 0 15px;
  border-radius:4px;
}
.customer_experience .reaction-section{
  padding-top:50px;
  margin-bottom:10px;
}
.customer_experience .reaction-section ul li.reaction.current{
  position:relative;
}
.customer_experience .reaction-section ul li.reaction.current:before {
  position:absolute;
  content:'';
  background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Blue_arrow.png) no-repeat;
  background-size:contain;
  top:3px;
  right:4px;
  width:10px;
  height: 10px;
}
.customer_experience .form-section form{
  padding: 20px 20px 0 20px;
  max-width:100%;
}
.customer_experience .form-section h3.hs_cos_wrapper {
  display: none;
}
.customer_experience .form-section .row-fluid .hs-input{
  padding:20px;
}
.customer_experience .form-section .row-fluid .hs-button {
  width:auto;
  display:inline-block;
  margin: 18px auto;
  padding: 13px 34px 16px 34px;
}

@media(min-width:768px) and (max-width:1024px){
  .customer_experience .reaction-section ul li.reaction{
    padding:13px 10px;
    margin: 0 8px;
  }
  .customer_experience .form-section form {
    padding: 20px 10px;
  }
}
@media(max-width:767px){
  .customer_experience .reaction-section ul.react {
    display:block;
  }
  .customer_experience .reaction-section ul li.reaction{
    margin: 10px 0;
  }
  .customer_experience .form-section form {
    padding: 0px;
  }
}

/******************************************************** Social Share ********************************************************/

.social-share .header-social-logo ul {
  padding: 0;
  margin-top: 0;
}
@media(min-width:768px) and (max-width:1024px){
  .social-share .header-social-logo ul li img{
    width:100%;
  }
}


/******************************************************** Sticky Sidebar ********************************************************/


body .row-fluid .sticky-sidebar .two-col-adjust span>.hs_cos_wrapper{
  display:block;
}
.sticky-sidebar .left_side_cont .head-conta h3,
.sticky-sidebar .left_side_cont .content-title h4 a{
  color:#fff;
}
body .sticky-sidebar .left_side_cont .content-title h4{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.56;
  letter-spacing: normal;
}
body .sticky-sidebar .left_side_cont .content-title h4.active{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.sticky-sidebar .row-fluid.row-reverse .left_side_cont .content-title h4.active{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.56;
  letter-spacing: normal;
}
body .sticky-sidebar .left_side_cont .content-title h4 a{
  font-weight:normal;
}
body .sticky-sidebar .left_side_cont .content-title h4.active a{
  color:#2cd8b1;
  font-weight:bold !important;
}
body .sticky-sidebar .row-fluid.row-reverse .left_side_cont .content-title h4.active a{
  font-weight:500;
}
.sticky-sidebar .left_side_cont .content-title h4.active{
  padding-right:5px;
}
body .sticky-sidebar .hs_error_rollup{
  display:none;
}
.sticky-sidebar .row-fluid.row-reverse .left_side_cont .content-title h4:last-child{
  border-bottom:none;
}
.sticky-sidebar .row-fluid.row-reverse .left_side_cont .content-title h4.active{
  border-right:none;
  padding-right:0;
}

.sticky-sidebar .left_side_cont .sidebar-conta,
.sticky-sidebar .left_side_cont .simple-card,
.sticky-sidebar .left_side_cont.span3{
  width:100%;
  max-width:328px;
}
.sticky-sidebar .row-fluid.row-reverse .left_side_cont .sidebar-conta,
.sticky-sidebar .row-fluid.row-reverse .left_side_cont .simple-card,
.sticky-sidebar .row-fluid.row-reverse .left_side_cont.span3{
  width:100%;
  max-width:352px;
}
.sticky-sidebar .sidebar-conta .simple-card .cta-container{
  margin-top:20px;
}
.sticky-sidebar .content-container.span9{
  max-width:720px;
  width: 100%;
  margin-left: 80px;
}
.sticky-sidebar .row-fluid.row-reverse .content-container.span9{
  margin-left:0;
  margin-right:90px;
}
.sticky-sidebar .content-container .content.active#content-1{
  padding-top:82px;
}
.sticky-sidebar .one-single-card{
  border-radius: 10px;
  padding: 38px 62px 48px 50px;
  margin:60px 0;
}
.sticky-sidebar .one-single-card .author-data .author-avatar img{
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.sticky-sidebar .one-single-card .author-data,
.sticky-sidebar .one-single-card .image-conta {
  align-items: center;
  justify-content: flex-start;
}
.sticky-sidebar .one-single-card .star-conta {
  align-items: center;
  justify-content: center;
  padding-left:30px;
}
.sticky-sidebar .one-single-card .star-conta .star{
  margin-right: 6px;
}
.sticky-sidebar .one-single-card .star-conta .star img{
  width:20px;
  height:20px;
}
.sticky-sidebar .one-single-card .description-conta p{
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.4px;
  font-size:20px;
}
.sticky-sidebar .one-single-card .author-data .author-info h6{
  font-size:18px;
  font-weight:bold;
  line-height:1.4;
  color:#fff;
  margin:0;
}
.sticky-sidebar .one-single-card .image-conta .logo-conta img{
  width:115px;
  height:auto;
}
.sticky-sidebar .one-single-card .author-data .author-info p{
  color:#fff;
  line-height:1.56;
}
.sticky-sidebar .one-single-card .author-data .author-info {
  padding-left: 18px;
}
.sticky-sidebar .one-single-card .description-conta {
  padding-top: 32px;
  padding-bottom: 38px;
}
body .sticky-sidebar .left_side_cont .sidebar-conta .head-conta {
  padding-bottom: 12px;
}
body .sticky-sidebar .content-container .cta-container.spacing{
  margin-left:88px;
}
body .sticky-sidebar .content-container .cta-container .cards{
  margin-top:12px;
}
body .sticky-sidebar .content-container .card-container .cards .logo-conta{
  margin-bottom:26px;
}
body .sticky-sidebar .content-container .card-container .cards .logo-conta img{
  width:44px;
}
body .sticky-sidebar .content-container .card-container .cards .cta-container.secondary-cta{
  margin-top:10px;
}
body .sticky-sidebar ul{
  margin-top: 35px;
  margin-bottom: 30px;
}
body .sticky-sidebar ol{
  max-width:686px;
}
.sticky-sidebar ol li,
.sticky-sidebar ul li{
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.56;
  letter-spacing: normal;
  text-align: left;
  margin:0;
  padding-left:34px;
  margin:8px 0;
}
.sticky-sidebar ol li:first-child{
  padding-left:12px;
  margin-left:19px;
}
.sticky-sidebar ol li{
  padding-left: 10px;
  margin-left: 22px;
}
.sticky-sidebar ol li::marker{
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: center;
}
ul.tick li::marker{
  font-size:0;
}
ul.tick li:before{
  position: absolute;
  left: 0;
  top: 3px;
  background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Free%20Pack/Check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  width: 18px;
  height: 25px;
}
.sticky-sidebar .row-fluid.row-reverse ul.tick li:before{
  position: absolute;
  left: 0;
  top: 3px;
  background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Growthkit%20Premium%20Free%20Pack/Check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  width: 14px;
  height: 14px;
}
.sticky-sidebar .row-fluid.row-reverse ol li::marker{
  font-size:16px;
}
.sticky-sidebar .row-fluid.row-reverse ol li:first-child{
  padding-left:10px;
}
.sticky-sidebar .row-fluid.row-reverse ol li{
  margin-left:18px;
}
.sticky-sidebar .row-reverse.row-reverse ul li{
  padding-left:28px;
}
.sticky-sidebar .content-container .content .image-container{
  margin:60px 0;
}
.sticky-sidebar .content-container .content .image-container img{
  border-radius:8px;
}
.sticky-sidebar .content-container .content .card-container.style {
  margin-top: 100px;
  padding-top: 54px;
  padding-left: 60px;
  padding-bottom: 55px;
  border-radius: 8px;
  padding-right: 58px;
  width: 720px;
}
.sticky-sidebar .content-container .content .card-container .cards .card:first-child {
  padding-right: 16px;
  padding-left: 0;
}
.sticky-sidebar .content-container .content .card-container .cards .card {
  padding-left: 15px;
  padding-right: 0;
}
.sticky-sidebar .content-container .content .card-container.style .cards .card:first-child{
  padding-right:38px;
  padding-left:0;
}
.sticky-sidebar .content-container .content .card-container.style .cards .card{
  padding-left:35px;
  padding-right:0;
}
.sticky-sidebar .content-container .content .video-container{
  margin-top:60px;
  margin-bottom:20px;
}
.sticky-sidebar .content-container .content .video-container .video-section{
  min-height: 413px;
  max-width: 720px;
  width: 100%;
  position:relative;
  z-index:2;
  border-radius:8px;
}
.sticky-sidebar .content-container .content .video-container .video-section .play-button{
  max-width:71px;
  transition:all .2s linear;
}
.sticky-sidebar .content-container .content .video-container .video-section .play-button:hover{
  transform:scale(1.1);
}
.sticky-sidebar .content-container .content .video-container .video{
  position:relative;
}
.sticky-sidebar .content-container .content .video-container .video:before{
  background: url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Green_Dots.svg);
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  z-index: 0;
  width: 95px;
  height: 95px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
h2.h2-24{
  font-size:24px;
  line-height:1.42;
  font-weight:500;
}
body .sticky-sidebar .counter-section .two-col-adjust span > .column.hs_cos_wrapper {
  margin-top: 72px;
}
.sticky-sidebar .form-container form{
  padding:0;
  background:none;
}
.sticky-sidebar .listed-items .text-cont:last-child::before,
.sticky-sidebar .form-container .form-title,
.sticky-sidebar .form-container span.hs-form-required{
  display:none;
}
.sticky-sidebar .form-container .hs-form label{
  font-weight:normal;
}
body .sticky-sidebar .form-container .hs-input:focus,
.sticky-sidebar .form-container .hs-input.invalid.error{
  border:none;
}
body .sticky-sidebar .submitted-message{
  text-align: left;
  color: #2cd8b1;
  font-weight: bold;
}
.sticky-sidebar .counter-section h2.counter{
  font-size: 70px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: normal;
}
.sticky-sidebar .counter-section h5.counter{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: normal;
}
.sticky-sidebar .flex{
  display:flex;
  align-items:center;
  justify-content:center;
}
.sticky-sidebar .listed-items{
  margin-top:60px;
}
.sticky-sidebar .listed-items .text-cont{
  padding-bottom:50px;
}
.sticky-sidebar .listed-items .text-cont:last-child{
  padding-bottom:0;
}
.sticky-sidebar .listed-items .text-cont,
.sticky-sidebar .listed-items h4{
  position:relative;
}
.sticky-sidebar .row-fluid.row-reverse{
  flex-direction: row-reverse;
}
.sticky-sidebar .listed-items .text-cont::before{
  content: '';
  position: absolute;
  left: 15px;
  top: 1px;
  width: 3px;
  bottom: 0;
  height: 100%;
}
.sticky-sidebar .listed-items h4,
.sticky-sidebar .listed-items p{
  padding-left:88px;
}
.sticky-sidebar .listed-items h4::after {
  width: 32px;
  height: 32px;
  z-index: 3;
  border: 3px solid #246bfd;
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  border-radius: 100%;
}
.sticky-sidebar .listed-items .tab-1 h4:before{
  left:3px;
}
.sticky-sidebar .listed-items h4::before{
  background: unset;
  width: 14px;
  height: 14px;
  z-index: 5;
  margin: 9px;
  position: absolute;
  left: 1px;
  top: -5.5px;
  border-radius: 100%;
  font-size: 20px;
  line-height: 1.4;
  color:#ffffff;
}
body .row-fluid .sticky-sidebar .input .hs-input {
  margin-bottom: 26px;
}
body .sticky-sidebar ul.no-list.hs-error-msgs.inputs-list li {
  padding: 0;
  margin-top:0px;
}
body .sticky-sidebar ul.no-list.hs-error-msgs.inputs-list li label{
  font-size:11px;
  font-weight:bold;
  bottom: 3px;
}
body .sticky-sidebar .row-fluid.row-reverse ol{
  margin-top:20px;
}
body .sticky-sidebar .row-fluid.row-reverse ul{
  margin-top:0px;
}
.sticky-sidebar .content-container .content .recent-blogs{
  margin-top:58px;
}
.sticky-sidebar .content-container .content .recent-blogs .blog-conta{
  padding:20px;
  border-radius:4px;
  margin-top:42px;
}
.sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards{
  display:flex;
  align-items:center;
  margin-top:22px;
  margin-right:26px;
}
.sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards:nth-child(1),
.sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards:nth-child(2){
  margin-top:0;
}
.sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards .featured-image-conta{
  max-width:108px;
  margin-right:15px;
}
.sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards .featured-image-conta .featured-image img{
  border-radius:4px;
  min-height:76px;
}

@media(min-width:1025px) and (max-width:1190px){
  .sticky-sidebar .left_side_cont .simple-card,
  .sticky-sidebar .left_side_cont .sidebar-conta,
  .sticky-sidebar .left_side_cont.span3{
    width: 100%;
    max-width: 288px;
  }
  .sticky-sidebar .content-container.span9 {
    width: 61.358974%;
    margin-left: 60px;
  }
  .sticky-sidebar .row-fluid.row-reverse .content-container.span9{
    margin-left:0;
    margin-right:60px;
  }
}

@media(min-width:768px) and (max-width:1024px){
  .sticky-sidebar .left_side_cont .sidebar-conta,
  .sticky-sidebar .left_side_cont .simple-card,
  .sticky-sidebar .left_side_cont.span3{
    width: 100%;
    max-width: 260px;
  }
  .sticky-sidebar .content-container.span9 {
    width: 64.358974%;
    margin-left: 55px;
  }
  .sticky-sidebar .content-container .content .card-container.style{
    padding: 30px;
    width: 100%;
    margin-top: 50px;
  }
  .sticky-sidebar .listed-items h4,
  .sticky-sidebar .listed-items p{
    padding-left:65px;
  }
  .sticky-sidebar .content-container .content .image-container,
  .sticky-sidebar .one-single-card{
    margin:30px 0;
  }
  .sticky-sidebar .content-container .content .video-container {
    margin-top: 40px;
    margin-bottom: 10px;
  }
  body .sticky-sidebar .counter-section .two-col-adjust span > .column.hs_cos_wrapper{
    margin-top:40px;
  }
  .sticky-sidebar .content-container .content .card-container.style .cards .card:first-child{
    padding-right:10px;
  }
  .sticky-sidebar .content-container .content .card-container.style .cards .card{
    padding-left:15px;
  }
  .sticky-sidebar .one-single-card .description-conta p{
    font-size:18px;
    line-height:normal;
  }
  body .sticky-sidebar .content-container .cta-container.spacing{
    margin-left:65px;
  }
  .sticky-sidebar .content-container .content .video-container .video-section{
    min-height:280px;
    height:auto;
  }
  .sticky-sidebar .row-fluid.row-reverse .content-container.span9{
    margin-right:50px;
  }
  .sticky-sidebar .row-fluid.row-reverse .left_side_cont .sidebar-conta,
  .sticky-sidebar .row-fluid.row-reverse .left_side_cont .simple-card, 
  .sticky-sidebar .row-fluid.row-reverse .left_side_cont.span3{
    max-width:260px;
  }
  body .row-fluid .sticky-sidebar .input .hs-input::placeholder {
    font-size: 14px;
  }
  .sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards{
    display:block;
  }
  .sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards:nth-child(2){
    margin-top:22px;
  }
}

@media(max-width:767px){
  body .sticky-sidebar > .equal-height-container > .row-fluid-wrapper > .row-fluid {
    display: block;
  }
  .sticky-sidebar .one-single-card{
    padding:20px;
  }
  .sticky-sidebar .row-fluid.row-reverse .content-container.span9{
    margin-top:40px;
  }
  .sticky-sidebar .row-fluid.row-reverse .left_side_cont .simple-card,
  .sticky-sidebar .row-fluid.row-reverse .left_side_cont.span3,
  .sticky-sidebar .row-fluid.row-reverse .left_side_cont .sidebar-conta,
  .sticky-sidebar .left_side_cont .sidebar-conta{
    max-width:none;
  }
  .sticky-sidebar .content-container.span9{
    width:100%;
    margin:0;
  }
  .sticky-sidebar .left_side_cont .simple-card,
  .sticky-sidebar .left_side_cont.span3{
    max-width:100%;
  }
  .sticky-sidebar .content-container .content .image-container{
    margin:20px 0;
  }
  .sticky-sidebar .content-container .content .card-container .cards .card,
  .sticky-sidebar .content-container .content .card-container.style .cards .card{
    padding-left:0;
  }
  body .sticky-sidebar .counter-section .two-col-adjust span > .column.hs_cos_wrapper{
    margin-top:25px;
  }
  .sticky-sidebar .content-container .content .video-container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .sticky-sidebar .one-single-card{
    margin:25px 0;
  }
  .sticky-sidebar .listed-items h4,
  .sticky-sidebar .listed-items p{
    padding-left:60px;
  }
  .sticky-sidebar .content-container .content .card-container.style{
    width:100%;
    padding:30px;
    margin-top:30px;
  }
  .sticky-sidebar .counter-section h2.counter{
    font-size:50px;
    line-height:normal;
  }
  .sticky-sidebar .one-single-card .description-conta p{
    font-size:16px;
    line-height:normal;
  }
  .sticky-sidebar .content-container .content .recent-blogs .blog-conta .recent-blog-cards:nth-child(2),
  body .sticky-sidebar .content-container .cta-container{
    margin-top:20px;
  }
  body .sticky-sidebar .content-container .cta-container.spacing{
    margin-left:60px;
  }
  body .sticky-sidebar .content-container p{
    margin-bottom:15px;
  }
  .sticky-sidebar .one-single-card .description-conta {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .sticky-sidebar .content-container .content .recent-blogs{
    margin-top:30px;
  }
}

.sticky-sidebar.piller-container .wistia_click_to_play {
  width: 100% !important;
}

/******************************************************** Tabber ********************************************************/

body .row-fluid .tabber-04 .right-cta .video_cta a.cta_button{
  padding-left:45px;
}

body .row-fluid .tabber-04 .right-cta .video_cta a.cta_button .hover-play-icon{
  display:none;
}

body .row-fluid .tabber-04 .right-cta .video_cta a.cta_button:hover .hover-play-icon{
  display:block;
}

.right-cta .video_cta a.cta_button::hover a.cta_button.popup{
  text-decoration: underline;
  color:#000;
}

.tabber-04 .content-box04 {
  display: none;
  transition: all ease-in-out .2s;
}

.tabber-04 .content-box04.current{
  display: block;
  transition: all ease-in-out .2s;
}

.tabber-04 .tab-link {
  padding: 25px 32px 10px;
  margin-bottom: 30px;
  background: #ffffff;
  transition: all ease-in-out .2s;
  cursor:pointer;
}

.tabber-04 .tab-link:last-child {
  margin-bottom: 0px;
}

.tabber-04 .tab-link.current h4 {
  position: relative;
  z-index: 1;
  display:inline-block;
}

h2.h2-24{
  font-size:24px;
  line-height:1.42;
  font-weight:500;
}
@media (min-width: 1024px){
  .tabber-04 .tab-container04 {
    max-width: 506px;
  }
}

@media (max-width: 767px){
  body .tabber-04 .tab-link.current h4:before {
    top: 3px;
    right: -25px;
    height: 13px;
    width: 15px;
  }
  .tabber-04 .right-col {
    margin-top: 30px;
  }
}

/******************************************************** Testimonial Slider ********************************************************/

.hero-slider-2 .content-conta button.slick-prev.slick-arrow {
  background: none;
  border: none;
  font-size: 0;
  position: absolute;
  left: -10px;
  top: 40%;
  padding: 0;
}
.hero-slider-2 .content-conta button.slick-next.slick-arrow {
  background: none;
  border: none;
  font-size: 0;
  position: absolute;
  right: -10px;
  top: 40%;
  padding: 0;
}
.hero-slider-2 .brand-logo-container button.slick-prev.slick-arrow,
.hero-slider-2 .brand-logo-container button.slick-next.slick-arrow {
  background: none;
  border: none;
  font-size: 0;
  padding: 0;
}
.hero-slider-2 .content-conta {
  padding: 0 20px;
}
.hero-slider-2 .content-conta .slick-track {
  min-height: 428px;
}
.hero-slider-2 button.slick-prev.slick-arrow:hover,
.hero-slider-2 button.slick-next.slick-arrow:hover {
  background: none !important;
}
.hero-slider-2 .main-logo-conta.slick-slide:nth-child(2n) ,
.hero-slider-2 .brand-logo-container .slick-slide:nth-child(2n).slick-current.slick-active {
  transform: translateY(80px);
}
.hero-slider-2 .brand-logo-container .slick-track {
  padding-top: 20px;
  padding-bottom: 80px;
}
.hero-slider-2 .description blockquote,
.hero-slider-2 .description p {
  margin-top: 18px;
  margin-bottom: 30px;
  padding-left: 0;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.27px;
  font-style: normal;
  min-height:161px;
}
.hero-slider-2 .heading-container.slick-slide.slick-current.slick-center blockquote {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.32px;
}
.hero-slider-2 .name-container h4 {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 0px;
}
.hero-slider-2 .name-container p {
  line-height: 1.56;
  font-size:14px;
  margin-bottom: 0px;
}
.hero-slider-2 .content-conta .slick-list {
  padding: 0px 0 10px;
}
.hero-slider-2 .hero-overlay-2 li button{
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
  width: 14px;
  height: 14px;
  border-radius: 100%;
}
.hero-slider-2.dots_type_1 .hero-overlay-2 li.slick-active button{
  width: 16px;
  height: 16px;
  border-radius: 100%;
}
.hero-slider-2.dots_type_2 .hero-overlay-2 li.slick-active button{
  width: 40px;
  height: 16px;
  border-radius: 20px;
}
.hero-slider-2 .hero-overlay-2 li {
  list-style-type:none;
  margin:0 4px;
  display:inline-block;
}
.hero-slider-2 .hero-overlay-2 ul.slick-dots {
  text-align:center;
}
.hero-slider-2 .heading-container.slick-slide.slick-current.slick-center{
  transform: scale(1.18);
  opacity:1;
  position:relative;
  z-index:20;
  border-radius: 4px;
  padding: 26px 44px 30px;
}
.hero-slider-2 .heading-container.slick-slide.slick-current.slick-center{
  transition: all 0.3s ease-in-out;
}
.hero-slider-2  .image {
  max-width: 80px;
  margin: 0 auto;
  margin-bottom:20px;
}
.hero-slider-2 .heading-container {
  max-width:550px;
  padding: 26px 44px 30px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  opacity: 0.6;
  border-radius: 3.4px;
  background-color: #fff;
  cursor:pointer;
}
.hero-slider-2 .description {
  max-width: 423px;
  margin: 0 auto;
}
.hero-slider-2 .description h4{
  font-size:16px;
  min-height:67px;
  line-height:24px;
}
.hero-slider-2 .simple-slider .profile-pic ,
.hero-slider-2 .simple-slider .name-container{
  display:inline-block;
} 
.hero-slider-2 .simple-slider .profile-conta{
  display: flex;
  justify-content: center;
  align-items: center;
} 
.hero-slider-2 .slick-track {
  display: flex;
}
@media(max-width:767px){
  .hero-slider-2 .heading-container.slick-slide.slick-current.slick-center{
    transform: scale(1);
  }
  .hero-overlay-2 .brand-logo-container .main-logo-conta.slick-slide{
    text-align:center;
    margin: 40px 20px 40px 20px;
  }
}

@media(min-width: 601px) and (max-width: 767px){
  .hero-slider-2 .heading-container {
    width:100%;
    max-width:512px;
    margin: 0 auto;
  }
}
@media(max-width:600px){
  body .hero-slider-2 .heading-container{
    max-width:290px;
    width:100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media(max-width:440px){
  .hero-slider-2 .heading-container.slick-slide.slick-current.slick-center{
    transform: scale(0.8);
  }
  /* 	.hero-slider-2 .heading-container{
  max-width:350px;
} */
  .hero-slider-2 .content-conta .slick-list {
    padding: 0;
  }
  .slick-initialized .slick-slide {
    margin: 0 40px;
  }
  .hero-slider-2 .content-conta ul.slick-dots{
    margin:0;
  }
}

/******************************************************** Testimonial Slider 2 ********************************************************/

.slider-module .slides .testmonials-conta.align-left{
  margin-left:0;
  margin-right:auto;
  float:left;
  text-align:left;
}
/* 	Slider functionaily styling  */
body .slider-module ul.slick-dots{
  display:flex;
  align-items:center;
  justify-content:center;
}
body .slider-module ul.slick-dots li{
  cursor:pointer;
}
body .slider-module ul.slick-dots button{
  display:none;
}
body .slider-module .slick-initialized .slick-slide{
  margin:0;
}
/******************************************************** Updated Top Bar ********************************************************/

body .row-fluid .nav .button-dropdown li a {
  color: #000;
  display: inline-block;
  font-weight: 600;
  margin: 8px;
}
body .nav a.dropdown-toggle{
  font-size: 14px;
  color: #000;
  line-height: normal;
  background:transparent;
  font-weight:600;
}
body .nav a.dropdown-toggle.active {
  opacity: 1;
  transform: scale(.5);
  transition: 3s all-ease-out;
  transition: 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
body .nav a.dropdown-toggle{
  transition: 3s all-ease-out;
  transition: 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.nav li {
  display: inline-block;
  list-style: none;
  background: transparent;
}
.nav .button-dropdown {
  position: relative;
  background: transparent;
}
.nav li a span {
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  color: #999;
}
.nav li a:hover span, .nav li a.dropdown-toggle.active span {
  color: #fff;
}
.nav li .dropdown-menu {
  display: none;
  position: absolute;
  right: 0px;
  padding: 0;
  margin: 0;
  margin-top: 0px;
  text-align: left;
}
.nav li .dropdown-menu.active {
  display: block;
}
.nav li .dropdown-menu li{
  min-width:60px;
  display:block;
  padding:10px 16px;
}
@media(max-width:568px){
  .dropdown-menu{
    min-width:100px;
  }
}
.nav li .dropdown-menu {
  display: none;
  position: absolute;
  right: 0px;
  top:45px;
  padding: 0;
  margin: 0;
  opacity: 0;
  margin-top: 0px;
  text-align: left;
  transition: all 0.5s ease-in-out;
  justify-content:end;
  min-width:12rem;
}
ul.dropdown-menu.dropdown_active {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transform: translateY(0px);
  box-shadow: 0 3px 36px rgb(0 0 0 / 12%);
  padding:10px 0;
  border-radius:10px;
}

/******************************************************** Vertical Separator ********************************************************/

@media(max-width:767px){
  .vector-section .main-cont .text-cont{
    max-width:100% !important;
  }
}

/******************************************************** Vertical Tabber ********************************************************/

.vertical-tabber-section .current.tabcontent{
  display:block;
}
.vertical-tabber-section .tabcontent{
  display:none;
}
.vertical-tabber-section .tab-row.tab-links {
  width: 100%;
  max-width:72px;
  height: 99px;
}
.vertical-tabber-section .tab-row.tab-links.current{
  position: relative;
}
.vertical-tabber-section .tab-row.tab-links.current:before {
  position: absolute;
  content: '';
  background: rgba( 0, 0, 0, 0.4 );
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.vertical-tabber-section .tabcontent.current {
  position: relative;
  z-index: 20;
  max-width: 449px;
  margin: 0 auto;
}

@media(max-width: 767px){
  .vertical-tabber-section .tabber-column {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 30px;
  }
}

.vertical-tabber-section .tabcontent {
  display: none;
}

.vertical-tabber-section .tabcontent.current {
  display: block;
}


/******************************************************** Pricing table Module ********************************************************/

.table_cm th{
  background-color:transparent;
  border:none;
}
.table_cm td{
  border:none;
}
.table_cm tr{
  border-bottom: 1px solid #e6e6e6;
}
.table_cm tr:last-child{
  border-bottom:none;
}

.table_cm .table-row .active{
  background-color:#222222;
}
.table_cm .pricing h3{
  display:inline-block;
  color:#115e67;
}
.table_cm .pricing p{
  display:inline-block;
}
.table_cm .empty {
  background-color: ;
  width: 20px;
  height: 4px;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}
.table_cm a.transparent-cta{
  font-size:16px;
  font-weight:bold;
  line-height:normal;
  color: #425b76;
  padding: 13px 34px;
  border: 1px solid #425b76;
  border-radius:4px;
}
.table_cm a.solid-cta{
  font-size:16px;
  font-weight:bold;
  line-height:normal;
  color:#101820;
  padding: 13px 34px;
  border: 1px solid #ffc72c;
  border-radius:4px;
  background-color:#ffc72c;
}


/******************************************************** All Pop-up Module ********************************************************/

.popup-container form{
  padding:0;
  background-color: transparent;
}
.popup-container h3.form-title{
  display:none;
}
.popup-container form .hs-button{
  margin-top:10px;
}


/******************************************************** Ebook Popup Styling ********************************************************/

.popup-container .ebook-popup .top-conta{
  margin-bottom:50px;
}
.popup-container .ebook-popup .left-col form{
  padding-bottom:20px;
}
.popup-container .ebook-popup .right-col{
  padding-left:40px;
}

.ebook-popup-form,
.main-btn-circle{
  position: relative;
  cursor: pointer;
  z-index: 2;
}
.ebook-popup-form {
  padding: 10px 80px;
  line-height: 30px;
}
.ebook-popup-form:before, 
.ebook-popup-form:after{
  position: absolute;
  content: '';
  top:0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.ebook-popup-form:before {
  left: 0;
}
.ebook-popup-form:after {
  right: 0;
}
.ebook-popup-form:hover:before, 
.ebook-popup-form:hover:after{
  width: 50%;
}
.main-btn-circle{
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.popup{
  position: fixed;
  top: 100%;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  z-index: 99999;
}
.popup.active{
  top:0px;
  left:0;
  right:0;
}

.popup .popup-content{
  position: relative;
  top: 0;
  right:0;
  left: 0;
  width:100%;
  min-height: 100vh;
  height: auto;
  /* 	min-width: 320px; */
  margin-top: 0px;
  z-index: 2;
  padding: 15px;
  color: #070000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content h6{
  display: table;
  font-size: 16px;
  text-align: center;
  margin: 10px auto;
  font-family:'DM Sans', sans-serif;
  text-transform: uppercase;
  font-weight: 100;  
}
.form-group{
  position: relative;
  width: 90%;
  margin: 0px auto;
}
.popup .fade-out{
  position: absolute;
  top: 20px;
  right: 31px;
  text-align: center;
  width:32px;
  height:35px;
}
.fade-out.main-btn-circle img{
  width:100%;
  max-width:32px;
  height:50px;
}
.popup .popup-content .vector-image,
.popup-content .form-conta {
  width: 100%;
  max-width: 616px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  position:relative;
  z-index: 1002;
  box-shadow: 0px 4px 70px 0px rgba(0, 0, 0, 0.1);
}
.popup-content .form-conta form {
  padding: 45px 60px 60px 60px;
  border-radius: 20px;
}
.popup-content .ebook-popup.span12 {
  width: 100%;
  /* 	max-width: 884px; */
  margin: 0 auto;
  left: auto;
  right: auto;
  float: none;
  position: relative;
  z-index:4;
}
.close-btn {
  position: absolute;
  z-index: 24;
  top: 3px;
  right: 18px;
  cursor: pointer;
  line-height: normal;
  color: #ffc72c;
  font-size: 50px;
}
body .row-fluid .popup-container .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.popup.modal-popup-container.active .row-fluid.container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-content .cookie-popup {
  position: absolute;
  /* 	top: 13%; */
  /* 	bottom: 57px; */
  left: 15px;
  right: 15px;
}

@media(max-width:767px){
  .popup-container .ebook-popup .top-conta{
    margin-bottom:20px;
  }
  .popup-container .ebook-popup .right-col{
    padding-left:0px;
  }
  .popup-content .ebook-popup.span12 {
    margin-top:90px;
  }
  .popup-container .close-btn {
    font-size: 28px;
  }
}


/******************************************************** Gallery Popup Module ********************************************************/

.gallery-popup.row-fluid .gallery>span{
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  margin-right: -3.2%;
}
body .row-fluid .gallery span>.hs_cos_wrapper {
  flex-basis: 29.96%;
  float: left;
  margin-right: 1.3%;
  margin-top: 2.5%;
  margin-left: 1.3%;
  box-sizing: border-box;
  position:relative;
  flex-direction: column;
}

.gallery-popup .galery-desc {
  width: 100%;
  max-width: 60%;
}
a{
  outline: 0 !important;
}
.gallery-popup .magnific-img img {
  width: 100%;
  height: auto;
}
.gallery-popup .magnific-img {
  display: inline-block;
  width: 32.3%;
}
.gallery-popup .mfp-with-zoom.mfp-removing .mfp-container, .gallery-popup.mfp-with-zoom.mfp-removing.mfp-bg,
.mfp-with-zoom .mfp-container, .mfp-with-zoom.mfp-bg {
  opacity: 0;
}
.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.98;
}
.mfp-arrow-left:before {
  border-right: none !important;
}
.mfp-arrow-right:before {
  border-left: none !important;
}
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #fff;
  opacity: 0.96;
  min-height: 100%;
  height: max-content;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: fixed;
  width: 100%;
  height: auto;
  left: 0;
  top: 17%;
  padding: 0 8px 80px 8px;
  box-sizing: border-box;
  overflow:auto;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: top;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; 
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close,
.mfp-auto-cursor .mfp-content,
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content{
  cursor:auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-close{
  font-size:0px !important;
}
.mfp-s-ready .mfp-preloader,
.mfp-loading.mfp-figure,
.mfp-hide,
.mfp-counter,
.mfp-s-error .mfp-content{
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC; 
}
.mfp-preloader a:hover {
  color: #FFF; 
}
button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0; 
}
.mfp-close {
  width: 30px;
  height: 30px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  right: 0;
  text-align: right;
  padding-right: 6px;
  color:transparent;
  display: inline-block;
  position: absolute;
  z-index: 1;
}
.mfp-image-holder .mfp-close:before{
  right:20px !important;
}
.mfp-image-holder .mfp-close:before, .mfp-iframe-holder .mfp-close:before {
  left: auto;
  top: 5px;
  right: -57px;
  content: '\f00d';
  font-family: 'fontawesome' , 'sans-serif';
  color: #0cefbc;
  opacity: 1;
  position: absolute;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 400;
  line-height: 20px;
  font-size: 35px;
  z-index: 2;
}
.mfp-arrow {
  position: absolute;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  opacity:1;
  height: 42px;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  border:none;
  top: 0;
  background:url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/left-arrow.png');
  margin-top: 0;
  margin-left: 0;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; 
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  background-repeat: no-repeat;
  width: 40px;
  height: 26px;
  left: 45px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: none; 
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  background-repeat: no-repeat;
  width: 40px;
  height: 26px;
  left: 0;
  transform: rotate(180deg);;
}
.mfp-arrow-right:before {
  border-left: none
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; 
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px; 
  font-size:0px;
  line-height:0px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; 
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow:0px 4px 70px 0px rgba(0, 0, 0, 0.1);
  background: #000; 
}
img.mfp-img {
  width: 100%;
  max-width: 100%;
  height: 65vw;
  max-height:500px !important;
  display: block;
  line-height: 0;
  border-radius:6px;
  box-sizing: border-box;
  padding: 0;
  margin: -3px auto; 
  object-fit: cover;
}

.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: none;
  background: transparent; 
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px; 
}
.mfp-figure figure {
  margin: 0 auto;
  background: #fff;
  box-shadow:0px 4px 70px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width:100%;
  max-width:687px;
  border-radius: 20px;
}
.mfp-bottom-bar {
  margin-top: 20px;
  position: relative;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  display: flex;
  vertical-align: middle;
  align-items: center;
  justify-content: space-between;
  padding-right: 0;
}
.mfp-title p{
  margin-bottom: 15px;	
}

.mfp-image-holder .mfp-content {
  width:100%;
  max-width: 100%;
  margin-top:37px;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: auto; 
}
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc p,
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc h1,
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc h2,
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc h3,
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc h4,
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc h5,
body.dark_theme .mfp-wrap.mfp-gallery.mfp-close-btn-in.mfp-auto-cursor.mfp-ready .galery-desc h6{
  color:#101A29 ;
}
@media(min-width:768px) and (max-width:1024px){
  .mfp-image-holder .mfp-content {
    width: 100%;
    max-width: 620px;
  }
  .mfp-image-holder .mfp-close:before, .mfp-iframe-holder .mfp-close:before{
    right:0;
  }
}

@media (max-width:767px){
  .row-fluid .gallery>span{
    display: block;
    margin-right: 0;
  }
  body .row-fluid .gallery span>.hs_cos_wrapper  {
    display: block;
    width: 100%;
    margin: 0;
    margin-top: 20px;
    max-width: 379px;
    width: 100%;
    margin: 30px auto 0;
    float: none;
  }
  .mfp-arrow{
    top:100%;
    bottom:0;
  }
  .mfp-image-holder .mfp-close:before, .mfp-iframe-holder .mfp-close:before{
    right:6px;
    font-size:30px;
  }
  .mfp-image-holder .mfp-content{
    margin-top:30px;
  }
  .mfp-title {
    text-align: left;
    line-height: 18px;
    /*     color: #F3F3F3; */
    display: block;
    vertical-align: middle;
    align-items: center;
    justify-content: space-between;
  }
  .galery-desc {
    width: 100%;
    max-width: 100%;
  }
  /* 	img.mfp-img {
  height:auto; 
} */
}

@media (max-height:620px){
  .mfp-container {
    text-align: center;
    position: Fixed;
    width: 100%;
    height: auto;
    left: 0;
    top: 2%;
    padding: 0 8px 80px 8px;
    box-sizing: border-box;
    overflow:auto;
  }
}
body.wistia_popover_mode {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  position: fixed;
}
body.video_play {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}


/******************************************************** System and blog post CSS ********************************************************/


.hs-search-results div#pagination-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.dark_theme .row-fluid .search-result-page .hs-search-results ul#hsresults.hs-search-results__listing li a{
  color:#fff;
}

.comment-form-section .section.post-footer button.comment-reply-to{
  padding: 0;
  width: auto;
  background: transparent !important;
  color: #246bfd;
  box-shadow: none;
  font-style:normal;
  text-shadow:none;
}
.comment-form-section .section.post-footer button.comment-reply-to em{
  font-style:normal;
  text-shadow:none;
}
.comment-form-section .section.post-footer .comment-date{
  float:right;
  font-size: 14px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  color:#101a29;
  text-transform: uppercase;
}
.comment-form-section .section.post-footer .new-comments{
  padding: 40px;
  border-radius: 6px;
  background-color: #fafafa;
}
.comment-form-section .section.post-footer .comment.depth-0{
  border:none;
}
.comment-form-section .section.post-footer .comment-from h4{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color:#101a29;
  text-transform: capitalize;
}
.comment-form-section form{
  padding: 37px 40px 40px;
  border-radius: 6px;
  margin-top: 50px;
  background-color: #fafafa;
}
body .row-fluid .comment-form-section .comment.depth-1{
  padding-left:50px;
  margin-top:50px;
  position:relative;
}
.comment-form-section .comment.depth-1::before {
  width: 28px;
  height: 123px;
  border-left: 1px solid #737588;
  border-bottom: 1px solid #737588;
  position: absolute;
  left: 10px;
  top: -40px;
  content: '';
}
.comment-form-section{
  margin-top:70px;
}
.comment-form-section .hs_submit{
  margin-top:30px;
}

@media(min-width:768px) and (max-width:1024px){
  .comment-form-section form,
  .comment-form-section .section.post-footer .new-comments{
    padding:30px;
  }
}

@media(max-width:767px){
  .comment-form-section form,
  .comment-form-section .section.post-footer .new-comments{
    padding:20px;
  }
}

/******************************************************** Predefined Classes ********************************************************/

.flex_me{
  display:flex;
}
.h1_86{
  font-size: 86px;
  line-height: 94px;
}
@media(max-width:767px){
  .h1_86{
    font-size: 60px;
    line-height: 70px;
  }
}





/* card 3d hover effect */

@keyframes move {
  0% {
    transform: perspective(1000px) scale(1.05) rotateX(var(--main-angle))
      rotateY(calc(var(--main-angle) * -1));
  }

  12.5% {
    transform: perspective(1000px) scale(1.05) rotateX(var(--secondary-angle))
      rotateY(0);
  }

  25% {
    transform: perspective(1000px) scale(1.05) rotateX(var(--main-angle))
      rotateY(var(--main-angle));
  }

  37.5% {
    transform: perspective(1000px) scale(1.05) rotateX(0)
      rotateY(var(--secondary-angle));
  }

  50% {
    transform: perspective(1000px) scale(1.05)
      rotateX(calc(var(--main-angle) * -1)) rotateY(var(--main-angle));
  }

  62.5% {
    transform: perspective(1000px) scale(1.05)
      rotateX(calc(var(--secondary-angle) * -1)) rotateY(0);
  }

  75% {
    transform: perspective(1000px) scale(1.05)
      rotateX(calc(var(--main-angle) * -1))
      rotateY(calc(var(--main-angle) * -1));
  }

  87.5% {
    transform: perspective(1000px) scale(1.05) rotateX(0)
      rotateY(calc(var(--secondary-angle) * -1));
  }

  100% {
    transform: perspective(1000px) scale(1.05) rotateX(var(--main-angle))
      rotateY(calc(var(--main-angle) * -1));
  }
}

@keyframes spin {
  0% {
    transform: perspective(1000px) scale(1.05) rotateY(0deg);
  }
  100% {
    transform: perspective(1000px) scale(1.05) rotateY(360deg);
  }
}

/******************************************************** Card Module ********************************************************/

/* .card-container .card .icon-conta{
min-height:50px;
}
.card-container .card .icon-conta img{
width: auto; 
max-height: 50px;
} */

/******************************************************** Job Detail Card Module ********************************************************/

.card-1 .row-fluid-wrapper > .row-fluid{
  justify-content:space-between;
  align-items:center;
}
.team-card-section .company-logo{
  width:30%;
}
@media(max-width:767px){
  .card-1 .row-fluid-wrapper>.row-fluid{
    display:flex;
  }
  .team-card-section .card-1 .company-logo{
    text-align:right;
  }
}
@media(max-width:480px){
  .card-1 .row-fluid-wrapper>.row-fluid{
    flex-direction:column-reverse;
    row-gap:10px;
    align-items:flex-start;
  }
  .team-card-section .card-1 .company-logo{
    text-align:left;
  }
}

/******************************************************** popup Module ********************************************************/

@media(min-width:550px){
  .popup-section .main-pop-up .single-column {
    max-height: 65vh;
    overflow-y: auto;
    padding-right: 10px;
  }
}

.popup-section .main-pop-up .single-column::-webkit-scrollbar {
  transition: transform .2s ease-out;
  width: 5px;
  background: #e2e2e2;
}
.popup-section .main-pop-up .single-column::-webkit-scrollbar-thumb {
  background-color: #246bfd;
}
.popup-container .popup.active .overlay::before {
  top:0;
  left:0;
  right:0;
  position:absolute;
  z-index:1;
  content:'';
  bottom:0;
  background: #fff !important;
  opacity: .96;
}
.popup-container .main-btn-rect,
.popup-container .main-btn-circle{
  position: relative;
  margin: 0;
  color: #000;
  background-color: transparent;
  cursor: pointer;
  z-index: 1;
}
.popup-container .main-btn-rect {
  padding: 10px 80px;
  line-height: 30px;
}
.popup-container .main-btn-rect:before, 
.popup-container .main-btn-rect:after{
  position: absolute;
  content: '';
  top:0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 240, 0.2);
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.popup-container .main-btn-rect:before {
  left: 0;
}
.popup-container .main-btn-rect:after {
  right: 0;
}
.popup-container .main-btn-rect:hover:before, 
.popup-container .main-btn-rect:hover:after{
  width: 50%;
}
.popup-container .main-btn-circle{
  height: 40px;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 100%;
  line-height: 40px;
  -webkit-transition: box-shadow 0.3s;
  -o-transition: box-shadow 0.3s;
  transition: box-shadow 0.3s;
}
.popup-container .popup{
  position: fixed;
  top: 100%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  z-index: 99999;
}
.popup-container .popup.active{
  top:0px;
  left:0;
  right:0;
}
.popup-container .popup .main-btn-rect{
  padding: 10px 100px;
}
.popup-container .popup .popup-content{
  position: relative;
  top: 0;
  right:0;
  left: 0;
  width:100%;
  min-height: 100vh;
  height: auto;
  /* 	min-width: 320px; */
  margin-top: 150px;
  z-index: 2;
  padding: 15px;
  color: #070000;
}
.popup-container .popup.active .popup-content{
  margin-top: 0px;
  padding-top:0;
  display: flex;
  align-items: center;
}
.popup-container .popup-content h6{
  font-family: DM Sans;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-transform: none;
  margin: 0;
}
.popup-container .popup-content a{
  text-decoration:none;
}
.popup-container .form-group{
  position: relative;
  width: 90%;
  margin: 0px auto;
}
.popup-container .popup .fade-out{
  position: absolute;
  top: 20px;
  right: 31px;
  text-align: center;
  width:32px;
  height:35px;
}
.popup-container .fade-out.main-btn-circle img{
  width:100%;
  max-width:32px;
  height:50px;
}
.popup-container .popup .popup-content .vector-image,
.popup-container .popup-content .form-conta {
  width: 100%;
  max-width: 616px;
  margin: 0 auto;
  border-radius: 20px;
  background: #fff;
  position:relative;
  z-index: 1002;
  box-shadow: 0 4px 70px 0 rgb(0 0 0 / 10%);
}
.popup-container .popup-content .form-conta form {
  padding: 45px 60px 60px 60px;
  border-radius: 20px;
}

@media(max-width:767px){
  .popup-container .popup-content .form-conta form .hs-richtext h3 {
    font-size: 20px !important;
    line-height: normal;
  }
  .popup-container .popup-content .form-conta form{
    padding:20px;
  }
  .popup-section .main-pop-up .single-column {
    max-height: 68vh;
    padding-right:10px;
    overflow-y:auto;
  }
  .popup-section .popup-container .cookie-popup {
    padding: 40px 25px 40px 25px;
  }

}
body.active {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.dnd-section.popup{
  position:relative!important;
  z-index:10!important;
}

.dnd-row.row-fluid-wrapper.row-depth-1.negzIndex{
  position:relative;
  z-index:-1;

}


/* .popup .popup-content .cookie-popup{
-webkit-transform: translate(0,-25%);
-ms-transform: translate(0,-25%);
transform: translate(0,-25%);
transition: transform .3s ease-out,-webkit-transform .3s ease-out;
}

.popup.active .popup-content .cookie-popup{
-webkit-transform: translate(0,0);
-ms-transform: translate(0,0);
transform: translate(0,0);
} */


.popup .close-btn{
  display: none;
}
.popup.active .close-btn{
  display: block !important;
}


.recent-post-section > .row-fluid-wrapper > .row-fluid{
  display:flex;
  flex-wrap:wrap;
}
.popup-container .subscribe-popup .recent-post-section .hs_cos_wrapper.box-style{
  flex-basis:50%;
}
.popup-container .subscribe-popup .recent-post-section .hs_cos_wrapper.box-style > .row-fluid{
  display:flex;
  align-items:center;
}
.popup-container .popup-content .description-div{
  max-width:190px;
}
.card-bottom.span7{
  padding-right:10px;
}
.card-img.span5 a.featured-image{
  min-height:120px;
  border-radius:6px;
  max-width:100%;
}
@media(min-width:768px) and (max-width:1024px){
  .card-img.span5 a.featured-image{
    min-height:90px;
  }
}

@media(max-width:767px){
  .recent-post-section>.row-fluid-wrapper>.row-fluid{
    display:block;
  }
  .popup-container .popup-content .description-div{
    max-width:none;
  }
  body .popup-container .subscribe-popup{
    margin-top:80px;
  }
}


@media(max-width:480px){
  .popup-container .subscribe-popup .recent-post-section .hs_cos_wrapper.box-style>.row-fluid{
    flex-direction:column;
    row-gap:5px;
  }
  body .popup-container .subscribe-popup .card-img.span5{
    width:100%;
    margin-right:0px;
  }
  body .popup-container .subscribe-popup .card-bottom.span7{
    width:100%;
    padding-right:0px;
  }
  .card-img.span5 a{
    max-width:none;
  }
}
.popup-content .ebook-popup.span12 > .equal-height-container > .row-fluid-wrapper > .row-fluid{
  justify-content:center;
}

.popup-container .popup::-webkit-scrollbar,
.popup-section .main-pop-up .single-column::-webkit-scrollbar {
  background: #fff;
  transition: transform .2s ease-in-out;
  width: 5px;
}
.popup-container .popup::-webkit-scrollbar-thumb,
.popup-section .main-pop-up .single-column::-webkit-scrollbar-thumb {
  background-color:#e2e2e2;
}



/************** MAP CSS *************/

.hs-responsive-embed-wrapper.hs-responsive-embed{
  max-width: 100% !important;
}