/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

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

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

body {
  line-height: 1.37;
  overflow-wrap: break-word;
}

html{
    scroll-behavior: smooth;
}

html,body{
overflow-x:hidden;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.4px;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
    letter-spacing:0.4px;
}

/* Lists */

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

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

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

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


img {
    height: auto;
    max-width: 100%;
}







/* Labels */

form label {
  display: block;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

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

/* Help text */

form legend {
  font-size: 14px;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

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

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

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

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}




form .input {
  margin: 0!important;
}
fieldset.form-columns-2 .field:first-child {
  padding-right: 8px;
}
fieldset.form-columns-2 .field:last-child {
  padding-left: 8px;
}
fieldset.form-columns-2 .field {
  width: 50%!important;
}
form fieldset {
  max-width: 100%!important;
}
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;
  padding: 5px 24px;
  font-size: 14px;
  height: 44px;
  line-height: 1.188;
  outline: none;
  width: 100%!important;
  letter-spacing: 0.33px;
}

fieldset.form-columns-3 .field {
  width: Calc(33.333333333% - 10.666667px) !important;
  margin-right: 16px;
}
fieldset.form-columns-3 .field:last-child {
  margin-right: 0 !important;
}

form textarea {
  height: 146px;
  padding: 12px 12px;
}
form textarea {
  resize: vertical;
}
form div.hs-form-field .input>ul>li>label {
  align-items: center;
  cursor: pointer;
  display: flex;
}
form div.hs-form-field .input>ul>li.hs-form-booleancheckbox span {
  width: calc(100% - 20px);
  margin-left: 4px !important;
  font-size:13px;
}

.hs-fieldtype-textarea.field.hs-form-field {
  margin-bottom: 34px;
}
/* Inputs - checkbox/radio */

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

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='9.336' height='5.964' viewBox='0 0 9.336 5.964'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_11923' data-name='Rectangle 11923' width='5.964' height='9.336' fill='none' stroke='#CDD6DD' stroke-width='2'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_28510' data-name='Group 28510' transform='translate(9.336) rotate(90)'%3E%3Cg id='Group_28241' data-name='Group 28241' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_5330' data-name='Path 5330' d='M0,0,4.02,4.02,0,8.04' transform='translate(0.648 0.648)' fill='none' stroke='#CDD6DD' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center right 13px;
}
form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
  font-weight: 400;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
  height:auto;
}
form label{
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 500; 
}

.row-fluid .hs-form .field .input input[type=checkbox], .row-fluid .hs-form .field .input input[type=radio] {
  background: #ffffff;
  border: 1px solid #CDD6DD;
  -webkit-appearance: none;
  border-radius: 4px;
  color: inherit;
  cursor: pointer;
  height: 19px;
  margin: 0 8px 0 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  top: 0;
  width: auto;
  width: 19px;
}
.row-fluid .hs-form .field .input input[type=radio]:checked:after {
  background: #3B3B5C;
  border-radius: 50%;
  border-right: 0;
  border-top: 0;
  content: "";
  height: 7px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 7px;
}
.row-fluid .hs-form .field .input input[type=checkbox]:checked, .row-fluid .hs-form .field .input input[type=radio]:checked {
  background:#ffffff;
}
.row-fluid .hs-form .field .input input[type=radio] {
  border-radius: 50%;
}
.field .input input[type=checkbox]:checked:after {
  border: 3px solid #3B3B5C;
  border-right: 0;
  border-top: 0;
  content: "";
  height: 8px;
  left: 1px;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  width: 15px;
}
@media(max-width:767px){
  fieldset.form-columns-2 .field {
    padding: 0!important;
    width: 100%!important;
  } 
  .hs-form-field {
    margin-bottom: 20px;
  }
  fieldset.form-columns-3 .field {
    width: 100% !important;
    margin-right: 0;
  }
  .hs-fieldtype-textarea.field.hs-form-field {
    margin-bottom: 20px;
  }
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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








/* MEGA MENU */
header .menu-and-btn{
  visibility: visible !important;
}

header.sticky .header--switchfly, .no-banner header.sticky .header--switchfly{
  background-color: rgba(23, 23, 26, 1.0);
  box-shadow: 0 -6px 10px 5px #000;
}
/* .dnd-section,.content-wrapper--vertical-spacing{padding: 0 !important;} */
body.show-mnav { overflow:hidden; }
.header--switchfly .content-wrapper {
  max-width: 1128px;
}
.header--switchfly  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a{
  white-space:normal; 
}

.header--switchfly {
  position: fixed;
  z-index: 3;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.3s ease height;
}
.header--switchfly .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header--switchfly .hs-menu-wrapper>ul>li>a {
  color: #fff;
  position:relative;
}
.header--switchfly .hs-menu-wrapper>ul>li {
  padding: 40px 15px 20.3px;
}
.header--switchfly .hs-menu-wrapper>ul>li>a {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;
  line-height:1.14;
  text-decoration: none;
}

.header--switchfly .hs-item-has-children>a{position:relative;}

.header--switchfly .custom-dropdown-group .main-heading h3{
  font-size:14px;
  color:#8FA7FF;
  line-height:1.14;
  letter-spacing: 0.35px;
  padding-bottom:9.3px;
  width:100%;
  font-weight:500;
  border-bottom:1px solid #8FA7FF;
  text-transform:uppercase;
  margin-bottom:7px;
}
.header--switchfly .custom-dropdown-group .text-group h5{
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.35px;
  line-height:1.14;
  margin: 6px 0 10px;
  color:#111114;
}
.header--switchfly .custom-dropdown-group .text-group h5 a{
  color: #111114;
}

.header--switchfly .custom-dropdown-group .text-group h5 a:hover{
  color: #3060F9;
}
.header--switchfly .custom-dropdown-group .column-grp .text-group h5 a{
  text-decoration:none; 
}
.header--switchfly .custom-dropdown-group .text-group p {
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: 0.35px;
  color: #3B3B5C;
  font-weight: 400;
}
.header--switchfly .custom-dropdown-group p:last-child{
  margin-bottom:0; 
}
.header--switchfly .custom-dropdown-group .cards-li .column-grp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header--switchfly .custom-dropdown-group .cards-li .column-container {
  display: -webkit-flex; /* Safari */
  display: flex;
  width:47%;
  margin: 20.5px 0px;
}
.header--switchfly .custom-dropdown-group .cards-li .column-container .icon {
  max-width: 30px;
}
.header--switchfly .custom-dropdown-group .cards-li .column-container .text-group {
  width: calc(100% - 30px);
  padding-left: 14.45px;
}

.header--switchfly .custom-dropdown-group .titlemenu-group-container {
  margin-bottom: 30px;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group h6.resource-title {
  color: #111114;
  letter-spacing: 0.35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.28;
  margin: 22px 0 25px;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group .image-wrapper,
.header--switchfly .custom-dropdown-group .cards-li .blog-group .video-wrapper{
  margin-top: 34px;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group .video-wrapper .card-video{
  max-width:323px;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group .video-wrapper .card-video video{
  width:100%;
  height:auto;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group h4 a:hover, .header--switchfly .custom-dropdown-group .cards-li .blog-group h4 a:focus {
  color: rgba(195, 125, 239, 1.0);
}

.header--switchfly .custom-dropdown-group .cards-li .blog-group a.resource-button{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;
  line-height: 1.28;
  text-decoration:none;
  display: inline-flex;
  transition: all .3s ease-in-out;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group a.resource-button:hover,
.header--switchfly .custom-dropdown-group .cards-li .blog-group a.resource-button:hover {
  color: #3060f9 !important;
  transition: all .3s ease-in-out;
  text-decoration:underline;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group a.resource-button:hover span.arrow-img {
  margin-left: 15px;
  transition: all .3s ease-in;
}
.header--switchfly .custom-dropdown-group .cards-li .blog-group span.arrow-img {
  margin-left: 10px;
  transition: all .3s ease-out;
}

.header--switchfly .mobtrigger {
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  width: 35px;
  height: 35px;
}
.header--switchfly .child-trigger {
  display:none;
  cursor: pointer;
  position: absolute;
  bottom: auto;
  left: auto;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 58px;
  text-align:right;
  top: 0px;
}
.header--switchfly .child-trigger:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  right: 33.6px;
  width: 7px;
  height: 7px;
  border-left: 2px solid #8FA7FF;
  border-bottom: 2px solid #8FA7FF;
  transform: translateY(-50%) rotate(-45deg);
}
.header--switchfly .show-dd.child-trigger:after {
  transform: translateY(-50%) rotate(135deg);
}

.header--switchfly .mobtrgr-searchicon-group {
  display: none;
}

.header--switchfly .mobtrigger {
  cursor: pointer;
  display: block;
  position: relative;
  overflow: hidden;
  width: 21px;
  height: 21px;
  margin-right:8px;
}
.header--switchfly .mobtrigger i,
.header--switchfly .mobtrigger:before,
.header--switchfly .mobtrigger:after {
  display: block;
  width: 21px;
  height: 2px;
  background: #ffffff;
  margin: auto;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
.header--switchfly .mobtrigger:before,
.header--switchfly .mobtrigger:after { content:""; }
.header--switchfly .mobtrigger i { margin-top:0px; }
.header--switchfly .mobtrigger:before { margin-top:-7px; }
.header--switchfly .mobtrigger:after { margin-top:7px; }
.header--switchfly .mobtrigger:hover i,
.header--switchfly .mobtrigger.active i,
.header--switchfly .mobtrigger:hover:before,
.header--switchfly .mobtrigger.active:before,
.header--switchfly .mobtrigger:hover:after,
.header--switchfly .mobtrigger.active:after {
  background: #ffffff;
}
.header--switchfly .mobtrigger.active i { opacity:0; }
.header--switchfly .mobtrigger.active:before,.header--switchfly .mobtrigger.active:after { margin-top:0;margin-bottom:0; }
.header--switchfly .mobtrigger.active:before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.header--switchfly .mobtrigger.active:after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.header--switchfly .custom-dropdown-group .text-group p.sub-text {
  max-width: 242px;
}
@media(min-width:992px){

  .header--switchfly .menu-and-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .header--switchfly .header-col.menu-col{
    display:block !important; 
  }

  .header--switchfly .header-menu-group>ul>li.hs-item-has-children:hover>ul.hs-menu-children-wrapper {
    display: block !important;
  }
  .header--switchfly .header-menu-group>ul>li.hs-menu-depth-1.hs-item-has-children:hover {

  }
  .header--switchfly .header-menu-group>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper {
    background-color: #fff;
    bottom: auto!important;
    box-shadow: 0px 10px 8px #00000040;
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 2;
    max-height: 90vh;
    overflow: auto;
  } 
  .header--switchfly .header-menu-group>ul>li.hs-item-has-children {
    position: static !important;
  }
  .header--switchfly .custom-dropdown-group {
    display: block;
  }
  .header--switchfly .hs-item-has-children>a:after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    border-left: 1px solid #8fa7ff;
    border-top: 1px solid #8fa7ff;
    right: 1px;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    transition: all .25s ease-in-out;
  }
  .header--switchfly .header-menu-group>ul>li.hs-item-has-children:hover>a:after {
    transform: rotate(44deg);
    transition: all .25s ease-in-out;
  }
  /*   .header--switchfly .hs-menu-wrapper>ul>li:last-child {
  padding-right: 0;
} */
  .header--switchfly .header-menu-group>ul>li.hs-item-has-children:hover>a:before,
  .header--switchfly .header-menu-group>ul>li:hover>a:before,
  .header--switchfly .header-menu-group>ul>li.active-li-items>a:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #C37DEF;
    bottom: -8px;
    left: 0;
    right: 0;
  }

  .header--switchfly .hs-menu-wrapper>ul>li.hs-item-has-children>a {
    padding-right: 12px;
  }
  .header--switchfly .custom-dropdown-group .cards-li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header--switchfly .custom-dropdown-group .cards-li .title-menu-group {
    width:64.65%;
    padding: 65.7px 63px 67.9px 115px;
  }
  .header--switchfly .custom-dropdown-group .cards-li .blog-group {
    width:35.35%;
    background:#f4f6ff;
    padding: 65.7px 115px 47px 45px;
  }

}

@media(min-width:1367px){
  .header--switchfly .custom-dropdown-group .cards-ul{
    position:relative; 
  }
  .header--switchfly .custom-dropdown-group .cards-li {
    max-width: 1366px;
    margin: 0 auto; 
  }
  .header--switchfly .custom-dropdown-group .cards-li .blog-group:after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    bottom: 0;
    background: #f4f6ff;
    width: 35.35%;
    height: 100%;
    z-index: -1;
  }
}

@media(max-width:1200px){
  .header--switchfly .custom-dropdown-group .cards-li .title-menu-group,
  .header--switchfly .custom-dropdown-group .cards-li .blog-group {
    padding: 60px;
  }
}

@media(max-width:991px){
  body.show-mnav .header--switchfly {
    background-color: #17171A;
  }
  .header--switchfly{
    padding:20.5px 0 17px; 
  }
  .header--switchfly .hs-menu-wrapper>ul>li {
    padding:0; 
  }
  .header--switchfly .mobtrgr-searchicon-group {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
  }
  .header--switchfly .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
  .header--switchfly .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .header--switchfly .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .header--switchfly .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;
  }
  .header--switchfly .logo-grp,
  .header--switchfly .header-col.menu-col {
    width: 100%;
    max-width: 100%;
  }
  .header--switchfly .logo-grp {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header--switchfly .header-col.logo-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .header--switchfly .header-logo {
    width: 200px;
  }
  .header--switchfly .header-menu-wrap {
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-x: hidden!important;
    overflow-y: auto!important;
  }

  .header--switchfly .header-col.menu-col {
    display: none;
    position: absolute;
    top: 100%;
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 0px 0 20px;
    margin: 0;
    background: #17171A;
    box-shadow: 0px 8px 8px rgba(0,0,0,0.1);
    background-color: #17171a;
    height: 100vh;
    overflow-y: auto;
    text-align: left;
  }
  .header--switchfly .header-menu-wrap {
    scrollbar-color: #f4f6ff #75787b;
    scrollbar-width: thin;
  }


  .header--switchfly .header-menu-group > ul > li {
    width: 100% !important;
  }

  .header--switchfly .header-menu-group > ul > li.hs-menulink-item.hs-item-has-children { position:relative; }

  .header--switchfly .header-menu-group > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    display:none;
  }
  .header--switchfly .hs-menu-wrapper>ul>li>a {padding:18.5px 16px;}
  .header--switchfly .hs-menu-wrapper>ul>li {
    border-bottom: 1px solid #50507B;
    line-height: 1.13;
  }
  .header--switchfly .hs-menu-wrapper>ul>li:first-child {
    border-top: 1px solid #50507B;
  }
  .header--switchfly .child-trigger { display:block !important; }
  .header--switchfly .header-search-wrapper { top:100%; }
  .header--switchfly .custom-dropdown-group {
    padding: 36px 16px 53px;
    background:#fff;
  }
  .header--switchfly .custom-dropdown-group .cards-li .title-menu-group, .header--switchfly .custom-dropdown-group .cards-li .blog-group{
    padding:0; 
  }
  .header--switchfly .custom-dropdown-group .cards-li .blog-group, 
  .header--switchfly .custom-dropdown-group .cards-li .sub-text{
    display:none; 
  }
  /*   .header--switchfly .custom-dropdown-group .cards-li .column-container .text-group {
  padding-left: 0;
  width: 100%;
  margin-top: 8.2px;
} */

  .header--switchfly .custom-dropdown-group .cards-li .column-container {
    margin: 18px 0px;
    align-items: center;
  }
  .header--switchfly .custom-dropdown-group .titlemenu-group-container {
    margin-bottom: 45px;
  }
  .header--switchfly .custom-dropdown-group .titlemenu-group-container:last-child{
    margin-bottom:0
  }
  .header--switchfly .custom-dropdown-group .text-group h5 {
    margin:0; 
  }

}

@media(max-width:580px){
  .header--switchfly .custom-dropdown-group .cards-li .column-container .icon {
    max-width: 20px;
    min-height:22px;
  } 
  .header--switchfly .custom-dropdown-group .cards-li .column-container .icon img {
    vertical-align: bottom;
  }
  .header--switchfly .custom-dropdown-group .cards-li .column-container .text-group {
    padding-left: 0;
    width: 100%;
    margin-top: 8.2px;
  }
  .header--switchfly .custom-dropdown-group .cards-li .column-container {
    margin: 18px 0px;
    display:block;
  }
}




.fly-head {width:100%;position:relative;}
.fly-head .head-in{display:flex;flex-wrap:wrap;align-items:center;justify-content: space-between;}
.fly-head .head-in  .menu .hs-menu-wrapper ul li a{ text-decoration:none; color:#fff}
.fly-head .mobile-trigger { display:none}
.fly-head .child-trigger{display:none}
.header-wrapper {position: fixed;width:100%;top: 0;z-index: 9;}
.fly-head .head-in .logo img {vertical-align: middle;}
.header-bg.sticky{
  box-shadow: 0 -6px 10px 5px #000;
}

@media (min-width:768px){
  .fly-head .head-in .menu .hs-menu-wrapper ul ul {
    visibility: hidden;
    opacity: 0;
    position:absolute;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li:hover>.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
  }
  /*   .fly-head .head-in .menu .hs-menu-wrapper>ul{font-size:0;} */
  .fly-head .head-in  .menu{text-align:right;}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li a{
    font-size:14px;
    line-height:16px;
    font-weight:500;
    text-decoration:none;
    letter-spacing: 0.35px;
    transition: all .15s linear;
    position:relative;
    text-wrap:nowrap;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul {background-color: #fff; padding:12px 0;box-shadow: 0 5px 10px 0px rgb(0 0 0 / 16%);}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li.hs-menu-depth-1{padding:42px 20px;display:inline-block;    cursor: pointer;}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li.hs-menu-depth-1.hs-item-has-children{padding-right:30px}
  .fly-head .hs-menu-depth-1:last-child{padding-right:0 !important}
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li.active-branch>a,
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li.active>a{
    border-bottom: 1px solid #C37DEF;
  }
  .fly-head .hs-item-has-children>a:after {
    background: transparent;
    border-left: 1px solid #8FA7FF;
    border-top: 1px solid #8FA7FF;
    color: transparent;
    content: "";
    display: block;
    height: 5px;
    margin-left: 3px;
    position: absolute;
    right: -15px;
    text-decoration: none;
    text-indent: -9999px;
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
    transition: all .25s ease-in-out;
    width: 5px;
  }
  .fly-head .hs-menu-wrapper .hs-menu-children-wrapper{
    border:none;
    text-align: left;
    text-transform: none;
    top: 100%;
    left:0;
    max-width: auto;
    z-index: 99;
    padding: 8px 0 12px;
  }
  /*   .fly-head .hs-menu-wrapper>ul>li:nth-last-child(2) .hs-menu-children-wrapper {
  left: -27px;
} */
  /*   .fly-head .hs-menu-wrapper ul ul li.hs-menu-item{
  max-width:230px; 
} */
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-1,
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-2{
    position:relative; 
  }
  .fly-head .hs-item-has-children.hs-menu-depth-2>li {
    float: left
  }
  .fly-head .hs-item-has-children.hs-menu-depth-2>a:after {top:50%;right:12px}
  .fly-head .hs-menu-wrapper .hs-menu-children-wrapper li a{
    padding:12px 30px;
  }
  .fly-head .head-in .menu .hs-menu-wrapper ul ul li a {
    color: #111114;
    display:block;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul li:hover>a:after {
    transform: rotate(44deg);
    top: 50%;

  }
  .fly-head .head-in .menu .hs-menu-wrapper {
    display: block!important;
    overflow: visible !important;
    opacity: 1 !important;
  }
  .fly-head .menu .hs-menu-depth-1:hover>.hs-menu-children-wrapper, .fly-head .menu .hs-menu-depth-2:hover>.hs-menu-children-wrapper{
    overflow: visible !important;
    opacity: 1 !important;
  }
}
@media (min-width: 768px) and (max-width: 1150px){
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-1{padding: 35px 8px;}
  .fly-head .head-in  .menu .hs-menu-wrapper ul li.hs-menu-depth-1.hs-item-has-children{padding-right:26px}
  .fly-head .head-in .menu .hs-menu-wrapper ul li a{font-size:12px}
  .fly-head .hs-item-has-children>a:after {    top: 6px;}
}

@media (max-width:767.9px){
  .fly-head .hs-menu-wrapper.hs-menu-flow-horizontal>ul { overflow-y: auto; height: 100vh;padding:0 20px;background-color: #17171A;text-align:left;}
  .fly-head{padding:25px 0}
  .fly-head .head-in .logo{width:200px;}
  .fly-head .head-in  .menu{width:calc(100% - 200px);text-align:right}
  .fly-head .head-in .menu .hs-menu-wrapper ul li{display:block}
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-2 a{font-size:12px;display:inline-block}
  .fly-head  .hs-menu-wrapper ul{display:block}

  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .35px;
    line-height: 16px;
    position: relative;
    text-decoration: none;
    transition: all .15s linear;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li{
    border-bottom:1px solid #3060F9;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li{
    padding: 18px 0 19px;
    line-height: 1.13;
  }

  .fly-head .hs-menu-wrapper{
    position: absolute;
    top: 98%;
    left: 0;
    display: none;
    width: 100%;
    z-index:100;
  }
  .fly-head .hs-menu-wrapper ul li{text-align:left;position:relative;}
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul>li{
    /*     padding:0 0 26px !important; */
    display:block;
  }
  /*   .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul>li:first-child{padding-top:26px !important;}
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul>li:last-child {
  padding-bottom: 22px !important;
} */
  .fly-head .head-in .menu .hs-menu-wrapper ul li.hs-menu-depth-3 a{
    text-indent:30px;
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li.active>a:after,
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul>li.active>a:after{
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(195, 125, 239, 1.0);
    display: block;
    bottom: -6px;
    position: absolute;
  }
  .fly-head .head-in .menu .hs-menu-wrapper ul ul{
    display:none; 
  }
  .fly-head .head-in .menu .hs-menu-wrapper>ul>li>ul>li>a {
    /*     padding: 0; */
    display: block;
    max-width: 100%;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.25px;
    transition: all .15s linear;
    position: relative;
    padding-top: 18px;
  }

  .fly-head .hs-menu-wrapper>ul>li:last-child {
    border-bottom: 0!important;
  }
  .fly-head .hs-menu-wrapper>ul>li:last-child>a {
    display:inline-block!important;
    margin-top: 40px;
  }
  .fly-head .head-in .menu .hs-menu-wrapper ul li,
  .fly-head .hs-menu-wrapper ul li .child-trigger{
    cursor:pointer;
  }
  .fly-head .hs-menu-wrapper>ul>li.active>a,
  .fly-head .hs-menu-wrapper>ul>li>ul>li.active>a{
    border-bottom: 0;
  }
  .fly-head .hs-menu-wrapper>ul>li:first-child {
    border-top: 1px solid #3060F9;
  }
  .fly-head .mobile-trigger {
    width: 35px;
    padding: 5px 5px;
    cursor: pointer;
    float: right;
    margin-top: 0;
    display:block;
    z-index:1;
  }
  .fly-head  .mobile-trigger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0px
  }
  .mobile-open .fly-head .mobile-trigger .line-1 {
    top: 12%;
    transform: translateY(5px) translateX(0) rotate(45deg);
    -webkit-transform: translateY(5px) translateX(0) rotate(45deg);
    -moz-transform: translateY(5px) translateX(0) rotate(45deg)
  }
  .mobile-open .fly-head .mobile-trigger{position:relative;top:5px}
  .mobile-open .fly-head .mobile-trigger .line-2 {
    opacity: 0
  }

  .mobile-open .fly-head  .mobile-trigger  .line.line-3 {
    top: 80%
  }

  .mobile-open  .fly-head .mobile-trigger .line-3 {
    transform: translateY(-11px) translateX(0) rotate(-45deg);
    -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
    -moz-transform: translateY(-11px) translateX(0) rotate(-45deg)
  }
  .fly-head .hs-menu-wrapper ul li .child-trigger {
    display: block;
    position: absolute;
    right: 4px;
    text-align:right;
    top:50%;
    transform: translateY(-50%);
    transition: all .25s ease-in-out;
    width: 100%;
    z-index: 2;
    cursor: pointer;
  }
  .fly-head .hs-menu-wrapper ul li .child-trigger.child-open {
    top: 18px !important;
    transform: none !important;
  }
  .fly-head .hs-menu-wrapper ul li .child-trigger img {
    vertical-align:middle;
  }

  .fly-head .hs-menu-wrapper ul li .child-trigger.child-open img {
    transform: rotate(180deg);
  }
  .fly-head .head-in {
    padding: 0;
  }
}

/***** updated header ********/

@media(min-width:768px) and (max-width:1440px){.fly-head .hs-menu-wrapper .hs-menu-children-wrapper li a{padding:12px 25px;}
.fly-head .head-in .menu .hs-menu-wrapper ul li a{text-wrap:wrap;}
.fly-head .hs-menu-wrapper .hs-menu-children-wrapper{max-width:230px;min-width:200px;}
}
@media(min-width:768px) and (max-width:1280px){
 .fly-head .menu .hs-menu-wrapper>ul>li:nth-last-child(2) .hs-menu-depth-2 ul,.fly-head .menu .hs-menu-wrapper>ul>li:nth-last-child(2) .hs-menu-depth-3 ul{right:0 !important;left:-124% !important;} 
}
@media(min-width:768px) and (max-width:1200px){.fly-head .menu .hs-menu-wrapper>ul>li:nth-last-child(2) .hs-menu-depth-2 ul,.fly-head .menu .hs-menu-wrapper>ul>li:nth-last-child(2) .hs-menu-depth-3 ul{right:0 !important;left:-124% !important;}
.fly-head .menu .hs-menu-wrapper>ul>li:last-child .hs-menu-depth-2>ul{left:-124%!important;}
.fly-head .menu .hs-menu-wrapper>ul>li:last-child>.hs-menu-children-wrapper{right:0;left:auto;}
.fly-head .menu .hs-menu-wrapper>ul>li:nth-last-child(3):has(> ul > li > ul)>ul,.fly-head .menu .hs-menu-wrapper>ul>li:nth-last-child(3) .hs-menu-depth-3>ul.hs-menu-children-wrapper{left:auto;right:0;}
.fly-head .head-in .menu .hs-menu-wrapper ul li a{font-size:11px;}
.fly-head .hs-menu-wrapper .hs-menu-children-wrapper{min-width:186px;}
.fly-head .hs-item-has-children.hs-menu-depth-2>a:after{right:15px;}
.fly-head .hs-menu-wrapper .hs-menu-children-wrapper li a{padding:8px 25px;}
}
@media(min-width:768px){
  .fly-head .menu .hs-menu-depth-1>a,.fly-head .menu .hs-menu-depth-2>a{position:relative;}
  .fly-head .menu .hs-menu-depth-2,.fly-head .menu .hs-menu-depth-3{margin-bottom:0;}
  .fly-head .menu .hs-menu-depth-1 ul.hs-menu-children-wrapper{background:#fff;box-shadow:0 5px 10px 0 rgba(0,0,0,.16);display:block!important;padding:12px 0px;}
  .fly-head .menu .hs-menu-depth-2>a, .fly-head .menu .hs-menu-depth-3>a{display:block;margin-bottom:0;padding:10px 20px;}
  .fly-head .menu .hs-menu-depth-1>.hs-menu-children-wrapper,.fly-head .menu .hs-menu-depth-2>.hs-menu-children-wrapper{opacity:0;position:absolute;visibility:hidden;}
  .fly-head .menu .hs-menu-depth-1:hover>.hs-menu-children-wrapper,.fly-head .menu .hs-menu-depth-2:hover>.hs-menu-children-wrapper{opacity:1;visibility:visible;}
  .fly-head .menu li.hs-item-has-children{position:relative;z-index:1;}
  .fly-head .menu .hs-menu-depth-1,.fly-head .menu .hs-menu-depth-2{position:relative;}
  .fly-head .menu .hs-menu-depth-2 ul, .fly-head .menu .hs-menu-depth-3 ul {top: -12px;left: 101% !important;} 
  .fly-head .menu .hs-menu-depth-1>.hs-menu-children-wrapper, .fly-head .menu .hs-menu-depth-2>.hs-menu-children-wrapper {background-color: #fff;box-shadow: 0 5px 10px 0 rgba(0,0,0,.16);display: block!important;}
}
@media(max-width:900px){
  .fly-head .hs-menu-wrapper .hs-menu-children-wrapper li a{padding:12px 30px 12px 20px;}
}






/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (min-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    left: -9999px;
    opacity: 0;
    position: absolute;
  }
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

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

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}



.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

/* @media (max-width: 767.9px) {
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
left: 0;
opacity: 1;
position: relative;
top: auto;
}
} */

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}


/* Default style css */
.vmiddle {align-items: center;}
.dis-flex {display: flex;flex-wrap: wrap;}
.vbottom{align-items:flex-end;}
.hcenter{justify-content:center;}
.hright{justify-content:right;}
.tc{text-align:center;}
.tr{text-align:right;}
.tl{text-align:left;}
.text-white,.text-white h1,.text-white h2,.text-white h3,.text-white h4,.text-white h5,.text-white h6,.text-white a:not(.cta_button),.text-white ol li,.text-white li,.text-white p,.text-white ul li,.text-white span{color:#fff !important;}
.text-white blockquote{border-left-color:#fff;color:#fff}


/* customer loyalty page override styles  */


.content-with-videov2 .number:last-child{
  color: #3060F9;
}
.content-with-videov2 .bottom-info .bottom-title{
  color: #111114;
}
.travel-opt-video-card  .bottom-btns .bottom-add-btn,
.video-explore-card .bottom-btn .card-btn,
.employee-video-card-v2 .bottom-btn .card-btn{
  background-color: #3060F9;
  color: #ffffff;
}

.travel-opt-video-card .bottom-btns .bottom-exp-btn{
  color: #3060F9;
}

.employee-video-content .tag-title{
  color: #3B3B5C;
}

.video-card-banner .video-card-travel-details-item{
  color: #ffffff;
  opacity:.65;
}

.video-card-banner .video-card-travel-details-item p{
  color: #ffffff;
}



/* customer experience page override styles  */

@media(min-width:768px){
  .body-container--customer-experience .counter-cm .counter-sec {
    margin: 8px auto;
  } 
}

@media(min-width:1440px){
  .body-container--customer-experience .content-img-wrap-module .bottom-row {
    margin-top: 68px;
  }
  .body-container--customer-experience .content-img-wrap-module .top-content {
    margin-bottom: 56px;
  } 
  .body-container--employee-experience .three-col-module .heading-content{margin: 0 auto 64px;}
}

.body-container--customer-experience .counter-cm .c-cm p {text-transform:inherit;}




/* company page override styles  */

.body-container--company .content-img-wrap-module  .image-timeline{
  margin-top:97px; 
}

.body-container--company .content-img-wrap-module .top-content{
  margin-bottom:0;
}
.body-container--company .content-img-wrap-module .heading h4 {font-weight:400;}

.team .name,.team .designation{
  color:#111114;
} 

@media(min-width:1440px){
  .body-container--company .counter-cm .heading-content {
    margin: 0 auto 57px;
    max-width: 649px;
  }

  .body-container--company  .logo-slider .logo-slider-top {margin-bottom: 36px;} 
}

@media(min-width:768px) and (max-width:1024px){
  .body-container--company .content-img-wrap-module  .image-timeline{
    margin-top:35px; 
  } 
}

@media(max-width:767px){
  .body-container--company .content-img-wrap-module  .image-timeline{
    margin-top:25px; 
  } 
}

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


/* Slick*/


/* Slider */
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent;}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0;}
.slick-list:focus{outline:none;}
.slick-list.dragging{cursor:pointer;cursor:hand;}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}
.slick-track{position:relative;top:0;left:0;display:block;}
.slick-track:before,.slick-track:after{display:table;content:'';}
.slick-track:after{clear:both;}
.slick-loading .slick-track{visibility:hidden;}
.slick-slide{display:none;float:left;height:100%;min-height:1px;}
[dir='rtl'] .slick-slide{float:right;}
.slick-slide img{display:block;}
.slick-slide.slick-loading img{display:none;}
.slick-slide.dragging img{pointer-events:none;}
.slick-initialized .slick-slide{display:block;}
.slick-loading .slick-slide{visibility:hidden;}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent;}
.slick-arrow.slick-hidden{display:none;}