/* 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));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

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

@media(max-width:767px){
  .dnd-section .dnd-column,
  .content-wrapper {
    padding-left:20px;
    padding-right:20px;
  }
}

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

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

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
  transition:all ease 0.3s;
  text-decoration:none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin:0 0 10px;
}
h2{
  line-height: normal;
}
h3{
}

h6 {
  margin: 0;
  line-height: 1;
}

/* 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{
  max-width:100%;
  height:auto;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all ease 0.3s;
  white-space: normal;
  margin-top:15px;  
}

button:disabled,
.button:disabled,
.hs-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;
}
.button.btn-primary,
.hs-button.btn-primary {
  background-color:#F2F5F7;
  color:#131C26;
}

.button-item.purple a,
.button.purple,
.button-group.purple a{
  background:#7669d6;
  border:#7669d6;
  color: #e3dffe; 
}
.button.black,
.button-group.black a{
  background:#000;
  color:#fff;
}
.button.black,
.button-group.black a{
  background:#000;
  color:#fff;
}
a.button.Gray:hover, 
a.button.Gray {
  background: #F2F5F7;
  color: #131C26;
  border-color: #F2F5F7;
}
.button-group.gray a, .button.gray {
  background: #f2f5f7;
  color: #000;
  border-color: #f2f5f7;
}
a.button.gray:before {
  display: none;
}
.button.white,
.button-group.white a{
  background:transparent;
  border-color:#fff;
  color:#fff;
}
a.button.purple_border {
  background: transparent;
  color: #7669d6;
  border-color: #7669d6;
}
a.button.black_border {
  background: transparent;
  color: #000;
  border-color: #000;
}
a.button.link {
  background: transparent;
  color: #000;
  padding: 0;
  border: 0;
}
.button.black svg,
.button-group.black a svg,
.button.purple svg,
.button-group.purple a svg,
a.button.black_border svg,
a.button.purple_border svg{
  stroke:#fff;
}
.button-group svg {
  margin-left: 8px;
}
body .button-group.link a:hover svg,
body .button-group a.link:hover svg{
  stroke:#000;
}
.button-group a.default svg * {
  stroke: #fff !important;
}
.button-group .link-white {
  padding: 0;
}
a.button.link-white,
a.button.link_white {
  background: transparent;
  color: #fff;
  border-color: transparent;
}
a.button.link-white:hover svg *,
a.button.link_white:hover svg * {
  stroke: red;
}
.read-more-link i {
  font-size: 14px;
}
.button i {
  font-family: fontawesome;
  margin-left: 5px;
}
.read-more-link {
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-family: Helvetica,sans-serif;
}
.read-more-link i{
  margin-left:5px;
}
.button-item.small a{
  font-family: Inter,sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
}
.button-item.normal a {
  font-family: Helvetica;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px;
  letter-spacing: 0.34px;
}
.button-item.normal a svg {
  height: 14px;
  position: relative;
  top: -2px;
  vertical-align: middle;
  width: 12px;
}
.button-item.normal a i {
  font-size: 0.89rem;
  margin-left: 10px;
  margin-right: -5px;
}
.button-group a.large, 
.button-item.large a{
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.36px;
}
.button-item.navy_blue a {
  background: #3532DD;
  color: #fff;
  border-color: #3532DD;
}
.button-item.gray a {
  color: #131C26;
  background: #F2F5F7;
  border-color: #F2F5F7;
}
.button-item.large a {
  padding: 14px 32px;
}
.cm-talk-to-us-wrap .button-group a,
.button{
  position:relative;
  overflow:hidden;
}
.cm-talk-to-us-wrap .button-group a:hover,
.button:hover{  
  color: #BED0FF;
}
.button span {
  position: relative;
}
a.black:before,
a.purple:before,
a.Gray:before {
  display: none;
}
.button-item.normal a:hover svg , .cm-two-col-conntent .button-wrap a.button svg:hover {
  color: #bed0ff;
  fill: #bed0ff;
}
/* .cm-talk-to-us-wrap .button-group a:before,
.button:before {
background: linear-gradient(106deg, rgba(190, 208, 255, 0.60) 0%, rgba(190, 208, 255, 0.00) 100%), #02081E;  
position:absolute;
top:0;
left:0;
right:0;
width:100%;
height:100%;
transition:all ease 0.3s;
opacity:0;
content:"";
}
.cm-talk-to-us-wrap .button-group a:focus:before,
.cm-talk-to-us-wrap .button-group a:hover:before,
.button:hover:before,
.button:focus:before{
opacity: 1;
} */
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

input.hs-button.primary.large {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  padding: 12px 32px;
}

html[lang="ar"] .hs-form-field > label {
  padding-right: 9px;
}
html[lang="ar"] .hs-form-checkbox input {
  margin-left: 10px;
  margin-right: 4px;
}
html[lang="ar"] ul.no-list.hs-error-msgs.inputs-list {
  padding-right: 8px;
}

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

/* Help text */

form legend {
  font-size: 0.875rem;
}
.form-title:empty{
  display:none;
}

/* 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;
  font-size:16px;
  padding: 11px 16px;
  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;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
.hs-input.invalid.error {
  border-color: #D12F2F;
  outline: 1px solid #D12F2F;
}

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


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

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

.header .dnd-section {
  padding: 0
}

.header__container {
  display: flex;
  justify-content: space-between
}

.header__row-1 {
  padding-top: 1rem
}

.header__row-1,.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%
}

header.header {
  background: transparent;
  left: 0;
  margin: 0 auto;
  padding: 15px 0;
  position: absolute;
  right: 0;
  z-index: 999
}

header.header:before {
  background: linear-gradient(180.32deg,rgba(0,0,0,.525) 16.73%,transparent 77.49%);
  content: "";
  height: 176px;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1
}

header.header .content-wrapper {
  display: flex;
  /*   max-width: 100%; */
  padding-left: 20px;
  padding-right: 20px;
}
body .header-right-links ul li a svg * {
  transition: all .3s ease;
}
body .header-right-links ul li a:hover svg * {
  stroke: #36a5fb !important;
  fill: #36a5fb !important;
}
body header.header .header-right-links ul li:first-child a:focus,
body header.header .header-right-links ul li:first-child a:hover{
  background: transparent!important;
  color: #36a5fb !important;
}
body header.header .header-right-links ul li:last-child a:focus *,
body header.header .header-right-links ul li:last-child a:hover *{
  color: #fff !important;
}
.custom-logo img {
  min-width: 120px!important;
  width: 100%!important
}

.custom-menu-primary a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle
}

.custom-menu-primary .hs-menu-wrapper>ul>li {
  padding: 0 14px
}
header.header .header-left-side {
  width: 100%;
  align-items: center;
  display: flex
}
.header-right-links ul {
  display: flex;
  align-items: center;
}
.header-right-links ul li a{
  white-space:nowrap;
}
.header-right-links ul li:last-child a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px;
  background: #4e2d7f;
  border-color: #4e2d7f;
  min-width: 150px;
  text-align: center;
}
.header-right-links ul li:last-child a:hover {
  background: transparent;
  color: #fff !important;
  border: 1px solid #fff;
}
.custom-menu-primary {
  padding-left: 30px
}
.header-right-links ul li:last-child a:hover * {
  fill: #fff !important;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.active-branch>a:after,.custom-menu-primary .hs-menu-wrapper>ul>li.active>a:after {
  background: #fff;
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 21px
}

.custom-menu-primary .hs-menu-wrapper>ul>li.active-branch>a,.custom-menu-primary .hs-menu-wrapper>ul>li.active>a {
  position: relative
}

@media (max-width: 1150px) and (min-width:767px) {
  .header__column {
    width:100%
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction:column;
    padding: 1rem 0 0
  }

  .header__column {
    position: relative
  }

  .header__row-1 {
    padding-top: 0
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem
  }
}

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px
}

.header__skip:active,.header__skip:focus,.header__skip:hover {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto
}

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden
}

@media (max-width: 767px) {
  .header__logo {
    margin:0 auto;
    width: 100%
  }
}

.header__logo img {
  max-width: 100%
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: .7rem
}

.header__logo--main {
  padding-top: 1rem
}

.header__search {
  padding: 0 1rem;
  width: auto
}

.hs-search-field__form {
  position: relative
}

.header__search .hs-search-field__label {
  flex-basis: auto
}

.header__search .hs-search-field__input {
  height: 45px;
  padding: 0 .7rem
}

.header__search .hs-search-field__button {
  fill: #000;
  background-color: transparent;
  border: none;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0
}
.header-right-side {
  display: none !important;
}
.header__search .hs-search-field__button svg {
  height: 25px
}

.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%
}

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

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #d1d6dc;
  font-size: .875rem
}

.header__search .hs-search-field__suggestions li a {
  color: #494a52;
  padding: .35rem .7rem;
  text-decoration: none;
  transition: background-color .3s
}

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

@media (min-width: 767px) {
  .header__search form {
    align-items:center;
    display: flex;
    flex-direction: row
  }

  .header__search label {
    margin: 0 1rem 0 0
  }

  .header__search .hs-search-field__input {
    width: auto
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top:2px solid #ced4db;
    order: 1;
    padding: 1.05rem
  }
}

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem
}

.header__language-switcher .lang_switcher_class {
  position: static
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,.2);
  display: block;
  left: calc(100% - 24px);
  min-width: 100px;
  opacity: 0;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity .3s;
  visibility: hidden
}

.header__language-switcher:focus .lang_list_class,.header__language-switcher:hover .lang_list_class {
  opacity: 1;
  transition: opacity .3s;
  visibility: visible
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px
}

.header__language-switcher .lang_list_class.first-active:after {
  top: -22px;
  transition: .3s
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: .35rem .7rem
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color .3s
}

.header__language-switcher--label {
  display: flex;
  position: relative
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: .75rem;
  margin-bottom: .175rem;
  margin-left: .7rem
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494a52;
  content: "";
  display: block;
  height: 0;
  margin-left: .7rem;
  margin-top: .175rem;
  width: 0
}

.custom-logo .dark-logo {
  display: none
}

.body-wrapper {
  overflow: hidden
}

.header-nav__trigger {
  display: none;
  height: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 30px;
  z-index: 12
}

.header-nav__trigger:focus {
  outline: none
}

.header-nav__trigger span {
  margin-left: 2px;
  margin-top: 12px;
  position: relative
}

.header-nav__trigger span,.header-nav__trigger span:after,.header-nav__trigger span:before {
  background-color: #fff;
  display: block;
  height: 2px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  width: 26px
}

.header-nav__trigger span:after,.header-nav__trigger span:before {
  content: "";
  left: 0;
  position: absolute
}

.header-nav__trigger span:before {
  top: -8px
}

.header-nav__trigger span:after {
  top: 8px
}

.header-nav__trigger.is-open span {
  background-color: transparent
}

.header-nav__trigger.is-open span:after,.header-nav__trigger.is-open span:before {
  background-color: #000;
  height: 2px;
  top: 0;
  width: 26px
}

.header-nav__trigger.is-open span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.header-nav__trigger.is-open span:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

header.header.scroll {
  background: #fff;
  position: fixed
}

header.header.scroll .custom-menu-primary a,header.header.scroll .header-right-links ul li a {
  color: #000
}


header.header.scroll:before {
  display: none
}

header.scroll .custom-logo .dark-logo {
  display: block
}

header.scroll .custom-logo .white-logo {
  display: none
}

header.header.scroll {
  transform: translateY(-100%)
}

header.header.scroll.default {
  box-shadow: 1px -1px 2px #000;
  transform: translateY(0);
  transition: transform .3s ease
}

header.header.scroll.default .header-nav__trigger span,header.header.scroll.default .header-nav__trigger span:after,header.header.scroll.default .header-nav__trigger span:before {
  background: #000
}

header.header.scroll.default .header-nav__trigger.is-open span {
  background: transparent
}

body.no-banner header.header:before {
  display: none
}

body.no-banner header.header .custom-logo .dark-logo {
  display: block
}

body.no-banner header.header .custom-logo .white-logo {
  display: none
}

body.no-banner header.header .custom-menu-primary a,body.no-banner header.header .header-right-links ul li a {
  color: #000
}

body.no-banner header.header .header-right-links ul li a svg,body.no-banner header.header .header-right-links ul li a svg * {
  fill: #000;
  transition: transform .3s ease
}

body.no-banner header.header .header-right-links ul li a:hover {
  color: #36a5fb
}

body.no-banner header.header .header-right-links ul li a:hover svg,body.no-banner header.header .header-right-links ul li a:hover svg * {
  fill: #36a5fb
}

body.no-banner header.header .header-nav__trigger span,body.no-banner header.header .header-nav__trigger span:after,body.no-banner header.header .header-nav__trigger span:before {
  background: #000
}

body.no-banner .header-nav__trigger.is-open span {
  background-color: transparent!important
}

.cm-breadcrumb-group.sticky {
  bottom: auto;
  box-shadow: 1px -1px 2px #000;
  left: 0;
  position: fixed;
  right: 0;
  top: 71px;
  z-index: 99
}
.custom-menu-primary .hs-menu-wrapper>ul>li > ul {
  background: #fff;
  min-width: 245px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li > ul > li {
  width: 100%;
}
header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li a {
  display:block;
  color: #000 !important;
  padding: 10px 25px 10px 15px;
  border-bottom: 1px solid #ccc;
  white-space:normal;
  position:relative;
}
body .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul {
  right: auto;
  left: 100%;
}
header.header .custom-menu-primary .hs-menu-wrapper>ul > li > ul ul li a:hover,
header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul li:hover > a {
  background: #eee;
}
body .header.header .custom-menu-primary li:hover > a {
  opacity: 0.7;
}

.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul {
  position: absolute;
  background: #fff;
  top:0;
  left: 100%;
  right: auto;
  min-width: 200px;
  display:none;
}
.custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:hover>ul {
  display:block;
}
header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a:not(:only-child):after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 6px;
  font-size: 17px;
}

@media (min-width: 992px) {
  header.header.active-menu {
    background:#fff
  }

  body header.header.active-menu .header-right-links ul li a,header.header.active-menu .custom-menu-primary a {
    color: #000
  }

  body header.header.active-menu .header-right-links ul li a svg {
    fill: #000
  }

}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top:2px solid #ced4db;
    padding-left: 1.05rem;
    padding-right: 0
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: .917rem
  }

  .header__language-switcher--label-current {
    display: none
  }

  .header__language-switcher .globe_class {
    background-image: none
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit
  }

  .header__language-switcher .lang_list_class:after,.header__language-switcher .lang_list_class:before {
    content: none
  }
}

#nav-toggle {
  display: none
}

@media (max-width: 767px) {
  .header__language-switcher,.header__navigation,.header__search {
    display:none;
    width: 100%
  }

  .header__language-switcher.open,.header__navigation.open,.header__search.open {
    background-color: #f8fafc;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2
  }

  .header__close--toggle,.header__language-switcher--toggle,.header__navigation--toggle,.header__search--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative
  }

  .header__language-switcher--toggle.hide,.header__navigation--toggle.hide,.header__search--toggle.hide {
    display: none
  }

  .header__language-switcher--toggle.open,.header__navigation--toggle.open,.header__search--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto
  }

  .header__language-switcher--toggle:after,.header__navigation--toggle:after,.header__search--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    left: 40px;
    position: absolute;
    text-transform: uppercase;
    top: -10px
  }

  .header__language-switcher--toggle.open:after,.header__navigation--toggle.open:after,.header__search--toggle.open:after {
    display: block;
    word-break: normal
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDE5Ij48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj48cmVjdCB3aWR0aD0iMjEiIGhlaWdodD0iMSIgeD0iMS41IiB5PSIxLjUiIHJ4PSIuNSIvPjxyZWN0IHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiB4PSIxLjUiIHk9IjkuNSIgcng9Ii41Ii8+PHJlY3Qgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHg9IjEuNSIgeT0iMTcuNSIgcng9Ii41Ii8+PC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px
  }

  .header__navigation--toggle:after {
    content: "Menu"
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px
  }

  .header__language-switcher--toggle:after {
    content: "Language"
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiPjxkZWZzPjxwYXRoIGlkPSJhIiBkPSJNOS4xMzkgMTUuODkzYTYuNzYxIDYuNzYxIDAgMCAxLTYuNzU1LTYuNzU0IDYuNzYzIDYuNzYzIDAgMCAxIDYuNzU1LTYuNzU1IDYuNzYyIDYuNzYyIDAgMCAxIDYuNzU0IDYuNzU1IDYuNzYgNi43NiAwIDAgMS02Ljc1NCA2Ljc1NE05LjEzOSAwYzUuMDM5IDAgOS4xMzcgNC4xIDkuMTM3IDkuMTQgMCAyLjA5LS43MDUgNC4wMTgtMS44OSA1LjU2bDcuMjY1IDcuMjY1YTEuMTkyIDEuMTkyIDAgMCAxLTEuNjg2IDEuNjg2TDE0LjcgMTYuMzg1YTkuMDkzIDkuMDkzIDAgMCAxLTUuNTYxIDEuODkxQzQuMDk5IDE4LjI3NiAwIDE0LjE3OCAwIDkuMTQgMCA0LjEgNC4xIDAgOS4xMzkgMFoiLz48L2RlZnM+PHVzZSB4bGluazpocmVmPSIjYSIgZmlsbD0iIzQ5NEE1MiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px
  }

  .header__search--toggle:after {
    content: "Search"
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxOSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2U9IiM0OTRBNTIiIHN0cm9rZS13aWR0aD0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMiAtMSkiPjxyZWN0IHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiB4PSItLjUiIHk9IjEwLjUiIHJ4PSIuNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTQ1IDEwIDEwLjUpIi8+PHJlY3Qgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHg9Ii0uNSIgeT0iMTAuNSIgcng9Ii41IiB0cmFuc2Zvcm09InJvdGF0ZSg0NSAxMCAxMC41KSIvPjwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px
  }

  .header__close--toggle.show {
    display: block
  }

  header.header .content-wrapper {
    flex-direction: column;
    padding: 0
  }

  .header-right-side,header.header .header-left-side {
    flex-direction: column
  }

  .custom-logo {
    padding: 0 15px;
    width: 100%
  }

  .custom-menu-primary {
    display: none;
    padding: 0;
    width: 100%
  }

  .header-right-side {
    display: none;
    margin-left: 0;
    width: 100%
  }

  .header-right-side>div {
    padding: 0;
    width: 100%
  }
}

.landing-page-header {
  background: #000;
  padding: 24px 0
}

.lp-header-flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}

.landing-page-header .content-wrapper {
  padding: 0 20px
}

.lp-header-logo {
  width: 198px
}

.lp-header-logo * {
  display: inline-block;
  width: 100%
}

.lp-header-logo img.hs-image-widget {
  width: 100%!important
}

.landing-page-navigation {
  background: #000;
  height: 100vh;
  left: -30vw;
  min-width: 350px;
  opacity: 0;
  padding: 40px 100px;
  position: fixed;
  top: 0;
  transition: all .5s ease;
  visibility: hidden;
  width: 30vw;
  z-index: 2
}

a.lp-close {
  display: inline-block;
  margin-bottom: 50px;
  width: 20px
}

a.lp-close img {
  width: 100%
}

.lp-navigation-wrapper ul {
  display: inline-block!important
}

.lp-navigation-wrapper ul li a {
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 15px 0;
  text-transform: uppercase
}

.lp-header-call {
  position: relative;
  z-index: 3
}

.landing-page-navigation.active {
  left: 0;
  opacity: 1;
  visibility: visible
}

.lp-header-call a:hover {
  opacity: .65
}

.child-trigger,.custom-menu-primary .mobile-menu {
  display: none
}

.cm-breadcrumb-group .hs-breadcrumb-menu-item.last-crumb .hs-breadcrumb-label:before,.cm-breadcrumb-group a.hs-breadcrumb-label:before {
  background: url(//5318398.fs1.hubspotusercontent-na1.net/hubfs/5318398/Hackstones_2023/Images/arrows.png);
  background-repeat: no-repeat;
  background-size: 7px;
  color: #7b7979;
  content: "";
  font-size: 15px;
  height: 10px;
  line-height: 1;
  padding-left: 10px;
  position: absolute;
  right: 0;
  top: 2px;
  vertical-align: middle;
  width: 10px
}

.cm-breadcrumb-group .first-crumb+.hs-breadcrumb-menu-item+.hs-breadcrumb-menu-item.last-crumb span:before {
  display: none
}

.cm-breadcrumb-group .hs-breadcrumb-menu-item {
  float: left;
  padding: 7px 0 4px 10px
}

body .cm-breadcrumb-group .first-crumb+.hs-breadcrumb-menu-item.last-crumb .hs-breadcrumb-label {
  color: #000
}

.cm-breadcrumb-group .first-crumb+.hs-breadcrumb-menu-item.last-crumb .hs-breadcrumb-label:before,.cm-breadcrumb-group .hs-breadcrumb-menu-item:not(.first-crumb)+.last-crumb>span:before {
  display: none
}

.cm-breadcrumb-group .first-crumb+.hs-breadcrumb-menu-item.last-crumb .hs-breadcrumb-label {
  color: #7b7979
}

.cm-breadcrumb-group a.hs-breadcrumb-label,.cm-breadcrumb-group span.hs-breadcrumb-label {
  padding-right: 18px;
  position: relative
}
.custom-menu-primary a svg {
  margin-left: 6px;
}
.cm-breadcrumb-group span.hs-breadcrumb-menu-divider {
  display: none
}

body.lp-wrapper .pop-btn {
  bottom: 10px;
  position: fixed;
  right: 10px;
  z-index: 9999
}

body.lp-wrapper .pop-btn img.image-19 {
  width: 150px
}
.custom-logo > * {
  display: flex;
  align-items: center;
}

span.lg-txt {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  max-width: 116px;
  margin-left: 12px;
  line-height: 1.4;
}

header.scroll .custom-logo .dark-logo {
  display: flex;
}
.header-top-banner {
  display: block;
  background: #4e2d7f;
  margin-top: -10px;
  margin-bottom: 10px;
}

header.header .content-wrapper {
  width: 100%;
}

.header-top-banner .content-wrapper > * {
  width: 100%;
}

.top-header-section .header-links a {
  color: #fff;
  font-size:12px;
}

.top-header-section .header-links a i {
  margin-right: 11px;
}

header.header.scroll.default {
  background: #fff !important;
  padding-bottom: 0;
}

body.has-banner header.header.scroll .custom-menu-primary a {
  color: #3D1F52 !important;
}

body.has-banner header.header.scroll .custom-menu-primary a svg path {
  fill: #3D1F52;
}
.top-header-holder {
  position: relative;
}

.header-top-banner {
  background: transparent;
  position: absolute;
  right: 9px;
  z-index: 3;
  margin: 0;
  top: -7px;
}

.top-header-holder > .content-wrapper {
  position: relative;
}

.top-header-section .left {
  margin-right: 11px;
}

.scroll .top-header-section .header-links a {
  color: #3d1f52!important;
}

.scroll .top-header-section ul svg {
  fill: #3d1f52!important;
}

.scroll .top-header-holder {
  display: none;
}
@media(max-width: 1024px) {
  .landing-page-navigation {
    padding:30px 50px
  }
}

@media (max-width: 1200px) {

  .header-right-links ul li a svg {
    margin-right: 2px;
    width: 12px
  }
}

@media (min-width: 992px) and (max-width:1200px) {
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    padding:0 4px
  }

  .custom-menu-primary {
    padding-left: 10px
  }
}
@media(min-width:991px){
  .custom-menu-primary .hs-menu-wrapper>ul>li {
    position: static !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li >ul {
    left: auto !important;
    right: 0 !important;
    opacity: 1 !important;
    flex-direction: row !important;
    transform: scale(1, 0) !important;
    transition: all .3s ease !important;
    display: flex !important;
    transform-origin: top !important;
    flex-wrap: unset !important;
    width: auto !important;
    padding: 24px 0px !important;
    opacity: 0 !important;
    box-shadow: 3px 5px 7px rgb(0 0 0 / 8%);
  }

  .custom-menu-primary {
    position: relative !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:hover >ul {
    transform: scale(1, 1) !important;
    opacity: 1 !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li {
    width: auto !important;
    padding: 0 15px !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li:last-child{
    display:none !important;
  }
  .custom-menu-primary {
    width: calc(100% - 150px) !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li>ul {
    display: block !important;
    position: static !important;
    min-width: 0 !important;
    margin: 18px 0 0 !important;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li > a {
    padding: 0 0 3px !important;
    border: 0 !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    background: transparent !important;
    border-bottom: 1px solid #ccc !important;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li > a:after {
    display: none !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li>ul a {
    border: 0 !important;
    padding: 5px 0 !important;
    padding: 0 0 0 0 !important;
    text-transform: unset !important;
    background: transparent !important;
    letter-spacing: 0 !important;
    font-size: 14px !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li>ul > li {
    margin: 0 0 10px !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li:last-child {
    margin: 0 !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li >ul>li>ul a:hover {
    opacity: 0.6 !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:hover>a {
    opacity: 1 !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a:hover {
    opacity: 0.6 !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:not(.Services)>ul {
    flex-direction: column !important;
    left: 0 !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:not(.Services) {
    position: relative !important;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li:not(.Services)>ul>li>a {
    background: transparent !important;
    border: 0 !important;
    font-size: 14px !important;
    letter-spacing: 0 !important;
    padding: 0 !important;
    text-transform: unset !important;
    font-weight: normal !important;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li:not(.Services)>ul>li {
    margin: 0 0 10px !important;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li:not(.Services)>ul>li:last-child {
    margin: 0 !important;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li:not(.Services)>ul>li:last-child {
    display: block !important;
  }
}
@media (max-width: 991px) {
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li {
    border:0;
    width: 100%
  }

  .custom-menu-primary .hs-menu-wrapper a:hover {
    color: #36a5fb
  }

  .custom-logo img {
    max-width: 144px!important
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    display: none;
    opacity: 1;
    position: static;
    visibility: visible
  }

  .custom-menu-primary .hs-menu-wrapper>ul:before {
    background: url(//5318398.fs1.hubspotusercontent-na1.net/hubfs/5318398/Hackstones_2023/Images/mobile-texture.png);
    background-repeat: repeat-x;
    background-size: cover;
    content: "";
    height: 112px;
    left: 0;
    position: absolute;
    right: 0;
    top: -30px
  }

  .custom-menu-primary .hs-menu-wrapper>ul {
    overflow: hidden;
    padding-top: 78px;
    position: relative
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger {
    top: 0
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger svg {
    position: relative;
    top: -7px
  }

  .child-trigger {
    cursor: pointer;
    display: block;
    height: 30px;
    padding: 3px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 11px;
    width: 40px;
    z-index: 9
  }

  .child-trigger svg {
    height: 10px;
    transition: all .3s ease;
    width: 10px
  }

  .child-trigger.is-open svg {
    fill: #36a5fb;
    transform: rotate(90deg)
  }

  .child-trigger.is-open svg * {
    fill: #36a5fb
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children {
    position: relative
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
    font-size: 14px;
    white-space: normal
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li {
    margin: 10px 0;
    padding-left: 0
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li {
    border-top: 1px solid rgba(182,183,207,.4);
    margin: 16px 0;
    padding: 18px 16px 4px
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper {
    display: block;
    visibility: visible!important
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper li a {
    font-size: 11px!important;
    padding: 0
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li li {
    margin: 0!important;
    padding: 7px 16px
  }

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

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li:last-child {
    margin-bottom: 0
  }

  .custom-menu-primary .desktop-menu {
    display: none
  }

  .custom-menu-primary .mobile-menu {
    display: block
  }

  .custom-menu-primary,body .header-right-side {
    display: none
  }

  .header-nav__trigger {
    cursor: pointer;
    display: block
  }

  .header__language-switcher {
    border-top: 2px solid #ced4db;
    padding-left: 1.05rem;
    padding-right: 0
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: .917rem
  }

  .header__language-switcher--label-current {
    display: none
  }

  .header__language-switcher .globe_class {
    background-image: none
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit
  }

  .header__language-switcher .lang_list_class:after,.header__language-switcher .lang_list_class:before {
    content: none
  }

  .custom-menu-primary {
    background: #fff;
    left: 0;
    max-height: 100vh;
    overflow-y: auto!important;
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%
  }

  .mobile-logo img {
    display: block;
    margin: 0 auto;
    width: 150px!important
  }

  .mobile-logo {
    padding: 20px 0
  }

  .custom-menu-primary .hs-menu-wrapper>ul {
    flex-direction: column
  }

  .custom-menu-primary .hs-menu-wrapper a {
    color: #000;
    padding: 0 15px
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li {
    border: 0!important
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    font-size: 15px;
    text-transform: uppercase
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li {
    border-bottom: 1px solid rgba(182,183,207,.4);
    padding: 14px 0
  }

  .custom-menu-primary .mobile-menu .header-right-side ul a svg,.custom-menu-primary .mobile-menu .header-right-side ul a svg path {
    fill: #000;
    height: 20px;
    width: 17px
  }

  .custom-menu-primary .mobile-menu .header-right-side {
    border-bottom: 1px solid rgba(182,183,207,.4);
    display: block
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul {
    display: flex;
    justify-content: center
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul a {
    color: #000;
    font-size: 13px
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li {
    border-right: 1px solid rgba(182,183,207,.4);
    padding: 19px 13px 15px;
    text-align: center;
    width: 50%
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li svg {
    height: 18px;
    width: 20px
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child {
    border: 0;
    left: 7px;
    position: absolute;
    top: 2px;
    width: auto
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child svg {
    height: 23px;
    width: 25px
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child svg * {
    stroke: #000
  }

  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li:first-child a {
    font-size: 0
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li {
    padding-left: 15px
  }
  .header-top-banner {
    top: 30px;
    right: 50px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li {
    margin: 0 !important;
    padding: 0;
    border: 0;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li a {
    border: 0;
    padding: 10px 34px;
    border-bottom: 1px solid rgba(182, 183, 207, .4);
    font-size: 15px !important;
    line-height: 1.5;
    display: block;
  }

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

  .custom-menu-primary .hs-menu-wrapper>ul>li>a {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(182,183,207,.4);
    padding: 16px 20px;
  }


  .child-trigger.is-open svg * {
    fill: currentColor;
  }

  span#hs_cos_wrapper_mobile-primary {
    padding: 0 20px;
    display: block;
  }

  .child-trigger {
    height: 55px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 999;
    cursor: pointer;
    width: 100%;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li a:hover {
    background: transparent;
    padding: 10px 40px;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li ul li {
    padding: 0 !important;
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper li a {
    border: 0;
    padding: 10px 62px !important;
    border-bottom: 1px solid rgba(182, 183, 207, .4);
    font-size: 13px !important;
    line-height: 1.5;
    display: block;
    padding-right: 10px !important;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:hover a {
    background: transparent !important;
  }

  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper {
    display: none;
  }

  body .custom-menu-primary {
    max-height: calc(100vh - 100px);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger {
    height: 43px;
    line-height: 0;
  }

  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger svg {
    top: 0 !important;
  }
  .child-trigger {
    right: 0;
    width: 50px;
  }
}
@media (max-width:767px){
  .header-top-banner {
    display:none;
  }
}
@media (max-width: 600px) {
  .header-right-side>div {
    margin-top:0;
    padding-top: 0
  }

  .custom-menu-primary .hs-menu-wrapper>ul {
    padding-top: 60px
  }
}
span.lg-txt {
  color: #ffffff;
  margin-left: -6px;
}
/* Menu and simple menu */

.dnd-section,
.dnd-section[class*=force-full-width-section] {
  padding-left: 0;
  padding-right: 0;
}
.dnd-section[class*=force-full-width-section] {
  padding-left: 0!important;
  padding-right: 0!important
}
.dnd-section[class*=force-full-width-section]>.row-fluid>.span12 {
  padding-left: 0;
  padding-right: 0
}


.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 (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 {
  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: 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: 767px) {
  .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%;
}
iframe{
  max-width:100%
}
.hs-fieldtype-textarea.hs-input {
  width: 100% !important;
}

/* 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;
  }
}
html {
  scroll-behavior: smooth;
}
.hs_cos_gallery .slick-dots li button {
  padding: 10px;
}
.hs_cos_gallery .slick-dots li button:before {
  font-size: 20px;
  width: 10px;
  height: 10px;
}
.hs_cos_gallery .slick-dots li button {
  display: none;
}
.hs_cos_gallery .slick-dots li {
  background: #000;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  opacity: 0.2;
  margin: 0 11px;
}
.hs_cos_gallery .slick-dots li.slick-active {
  opacity: 1;
}
.hs_cos_gallery ul.slick-dots {
  bottom: -40px;
}
.slick-list *{
  outline:none;
}
.cm-form-group .inputs-list .hs-input {
  margin-right: 0;
  margin-left: 6px;
}
.card-content h6 {
  line-height: 1.5;
}

/* .home-section-two .dnd-section {
background: linear-gradient(182deg, rgba(171, 94, 249, 0.04) 0%, rgba(255, 255, 255, 0.00) 100%);
}
.home-section-three .dnd-section {
background: linear-gradient(180deg, rgba(242, 245, 247, 0.00) 0%, #F2F5F7 48.44%, rgba(242, 245, 247, 0.00) 100%);
}
.home-section-six .dnd-section {
background: linear-gradient(358deg, rgba(139, 255, 212, 0.10) 0%, rgba(255, 255, 255, 0.00) 100%), #FFF;
} 
.products-section-two .dnd-section {
background: linear-gradient(178deg, rgba(255, 255, 255, 0.00) 0%, rgba(190, 208, 255, 0.20) 100%, rgba(190, 208, 255, 0.13) 100%), #FFF;
}
*/
.products-section-two .cards-group h4 {
  font-weight: 600;
  margin-bottom: 0;
}
.cm-usecase-layout .products-section-one h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.24px;
}
.cm-usecase-layout .products-section-one p + h4{
  margin-top: 36px;
}
.hs_cos_wrapper_type_rich_text h5 {
  margin: 0 0 6px;
}
.cm-careers-two .cards-group .card-box .content {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #3B3F4E;
}
.cm-careers-two .cards-group .card-box {
  padding-top: 23px;
  padding-bottom: 23px;
}
.cm-careers-two .cards-group.Left .card-box .card-img {
  margin-bottom: 18px;
}
.cm-careers-two .section-title-text {
  margin-bottom: 46px;
}
.cm-careers-layout .cm-hero-banner-wrap .button-group {
  margin-top: 0;
}
.cm-careers-layout .cm-hero-banner-wrap .button-group .button-item {
  margin-top: 0;
}

footer.footer {
  padding: 95px 0 20px;
}
footer.footer .footer-logo {
  width: 30%;
  padding-right:10px;
}
footer.footer .footer-right {
  padding-left: 25px;
  padding-right: 39px;
}
footer.footer .content-wrapper {
  display: flex;
}
.footer-logo img {
  max-width: 158px;
}
body .footer-form h3,
footer.footer .hs-menu-wrapper > ul > li > a {
  display: block;
  text-decoration: none;
  color: #36A5FB;
  font-family: Helvetica,sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom:30px;
}
footer.footer .hs-menu-wrapper > ul >li {
  width: 50%;
  padding-right: 10px;
}
footer.footer .hs-menu-wrapper > ul > li > ul, 
footer.footer .hs-menu-wrapper > ul > li > ul > li > ul {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
}
footer.footer .hs-menu-wrapper > ul > li > ul > li > ul a,
footer.footer .hs-menu-wrapper > ul > li > ul > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  color: #E1E4E7;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li>ul>li,
footer.footer .hs-menu-wrapper>ul>li>ul>li {
  margin-bottom: 22px;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li>a {
  color: #FFF;
  font-family:;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li> ul {
  margin-bottom: 24px;
}
footer.footer .footer-right .hs-menu-wrapper {
  max-width: 660px;
  margin-left: auto;
}
footer.footer .footer-right .hs-menu-wrapper > ul {
  margin: 0 -63px 0 0;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li>ul a:hover,
footer.footer .hs-menu-wrapper>ul>li>ul>li>ul a:focus {
  color: #9395d3;
}
footer.footer .footer-logo {
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 8.5px;
  display: flex;
  flex-direction: column;
  color: #9FA3A6;
  padding-top:9px;
}
footer.footer .footer-logo p {
  margin: 0 0 9px;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left {
  margin-top: 0;
  color: #9FA3A6;
  max-width: 390px;
  padding: 15px 0px;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left p {
  color: #CECFCF;
  font-family:;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 14px;
}
footer.footer .footer-logo, 
footer.footer .footer-right, 
footer.footer .footer-form {
  width: 33.3333%;
}
footer.footer .footer-form {
  padding-left: 35px;
}
footer.footer .footer-form .hs-input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 13px 0 13px;
  font-size: 14px;
  border-radius: 0;
  color:#fff;
}
footer.footer .footer-form .hs-input:focus{
  outline:0;
}
footer.footer .social-links .social-links__icon {
  background: transparent !important;
  padding: 0;
  border-radius: 0;
}
footer.footer .social-links .social-links__icon svg {
  height: 18px;
  width: 18px;
}
footer.footer .social-links {
  justify-content: space-between;
  max-width: 280px;
  position: relative;
  left: -10px;
}
body .footer-form h3 {
  margin-bottom:0;
  padding-bottom: 10px;
}
footer.footer input.hs-button.primary.large {
  margin-top: 25px;
  padding: 19px 10px 18px;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.14px;
  font-family: Helvetica ,sans-serif;
}
footer.footer input.hs-button.primary.large:hover,
footer.footer input.hs-button.primary.large:focus{
  background: #fff;
  border-color: #fff;
  color: #284668;
}
.popup-form .form-inner-wrap {
  max-width: 630px;
  margin: 30px auto;
  padding: 50px 36px;
  background: #fff;
  left: 0;
  right: 0;
  position: relative
}
.popup-form {
  position: fixed;
  background: rgba(0,0,0,.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -99;
  transition: all ease .4s;
  height: 100vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden
}
.popup-form h3.form-title {
  text-align: center;
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  background:transparent;
  margin-bottom: 17px;
  text-transform: capitalize
}
.popup-form h3.form-title:empty {
  display:none;
}
.popup-form.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999
}
html[lang="ar"] .button-group .button-item {
  margin-left: 20px;
  margin-right: 0;
}
.popup-form .form-inner-wrap .close-icon {
  float: right;
  font-size: 28px;
  position: absolute;
  right: 15px;
  top: 9px;
  cursor: pointer
}

.cm-careers-layout .cards-group h4 {
  font-size: 16px;
  letter-spacing: -0.32px;
  font-family: Inter ,sa;
  font-weight: bold;
}
.cm-careers-layout .hs_cos_wrapper_type_rich_text > ul {
  padding: 8px 0 0px 24px;
}
.cm-careers-layout .hs_cos_wrapper_type_rich_text h5 {
  margin: 0 0 14px;
  letter-spacing: -0.24px;
}
.footer-logo.mobile {
  display: none !important;
}

/*  ----------------------------- Classes --------------------------- */

.radius-sm{  
  border-radius:4px !important;
}
.radius-md{
  border-radius:8px !important;
}
.radius-lg{
  border-radius:16px !important;
}
.radius-xl{
  border-radius:24px !important;
}
.width-sm{
  border-width:0 !important;
}
.width-md{
  border-width:1px !important;
}
.width-lg{
  border-width:2px !important;
}
.width-xl{
  border-width:3px !important;
}
.shadow-main{
  box-shadow: 0px 8px 16px 0px rgba(125, 139, 153, 0.16) !important; 
}
.shadow-close{
  box-shadow: 0px 2px 16px 0px rgba(125, 139, 153, 0.16) !important;
}
.shadow-top{
  box-shadow: 0px -8px 16px 0px rgba(125, 139, 153, 0.16) !important;
}




html[lang="ar"] .cm-banner-group .button-group a svg {
  transform: rotate(180deg);
}
html[lang="ar"] .button-group svg {
  margin-right: 8px;
  margin-left: 0;
}
html[lang="ar"] .read-more-link i {
  margin-right: 5px;
  margin-left: 0;
  transform: rotate(180deg);
}
html[lang="ar"] .button i {
  margin-right: 5px;
  margin-left: 0;
  transform: rotate(180deg);
}
html[lang="ar"] .cm-talk-to-us-wrap .button-group .button-item {
  margin-right: 0;
  margin-left: 20px;
}
html[lang="ar"] footer.footer .footer-right .hs-menu-wrapper {
  margin-right: auto;
  margin-left: 0;
}
html[lang="ar"] footer.footer .hs-menu-wrapper>ul>li>ul, 
html[lang="ar"] footer.footer .hs-menu-wrapper>ul>li>ul>li>ul {
  padding-right: 0;
}
html[lang="ar"] .cm-form-group {
  text-align: right;
}
.body-wrapper{
  position:relative;
}
.contact-layout .actions {
  text-align: center;
}
.contact-layout .cm-form-group .legal-consent-container {
  color: #9fa3a6;
  font-family: Test Founders Grotesk;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  bottom: 0;
}
.contact-layout .hs-form-field {
  margin-bottom: 10px;
}
.contact-layout .cm-form-group form {
  position: relative;
  padding-bottom: 70px;
}
.contact-layout .cm-form-group .legal-consent-container a {
  color: #9FA3A6;
  text-decoration: underline;
}
.contact-layout .cm-form-group textarea.hs-input {
  min-height: 129px;
}
.contact-layout .hs-form-field > label {
  display: inline-block;
  font-size: 16px;
}
footer.footer .copyrights p .swift {
  color: #F5F5F5;
  font-family:;
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
}
footer.footer .copyrights {
  border-top: 1px solid #4774a6;
  color: #5a87c1;
  font-family:;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .14px;
  line-height: normal;
  margin-top: 80px;
  padding: 26px 0 18px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
footer.footer .copyrights p {
  color: #5A87C1;
  margin:0;
}
footer.footer .copyrights .content-wrapper {
  justify-content: space-between;
}
footer.footer .copyrights ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
}
footer.footer .copyrights ul li {
  display: inline-block;
  padding-left: 40px;
}
footer.footer .copyrights ul li a {
  color: #5A87C1;
  text-align: right;
  font-family:;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 13.8px;
}

body footer.footer .content-wrapper .footer-even .span3 p
{
 text-align: left;
}


@media(min-width:768px) and (max-width:900px){
  footer.footer .copyrights ul li {
    display: inline-block;
    padding-left: 20px;
  }
  footer.footer .footer-right {
    padding-left: 15px;
    padding-right: 0;
  }

  body .footer-form h3, footer.footer .hs-menu-wrapper>ul>li>a {
    font-size: 15px;
  }

  footer.footer .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 12px;
    white-space: normal !important;
  }

  footer.footer .footer-logo #hs_cos_wrapper_footer_left p {
    font-size: 13px;
  }
  footer.footer .copyrights ul li a {
    font-size: 13px;
  }

  footer.footer .copyrights {
    font-size: 13px;
  }
}

@media(max-width:767px){
  footer.footer .footer-logo {
    padding-top: 0;
    padding-bottom: 30px;
  }
  footer.footer .content-wrapper {
    flex-direction: column;
  }
  .contact-layout .cm-form-group form{
    padding-bottom: 110px;
    position: relative;
  }
  footer.footer .footer-right .hs-menu-wrapper>ul {
    flex-wrap: wrap;
    flex-direction: row;
    margin:0;
  }
  footer.footer .hs-menu-wrapper>ul>li {
    width: 50%;
  }
  footer.footer {
    padding: 40px 0px 0;
  }
  .popup-form .form-inner-wrap {
    max-width: calc(100% - 20px) !important;
  }
  footer.footer .hs-menu-wrapper>ul>li {
    width: 100%;
    padding: 0 0 20px;
  }
  footer.footer .footer-form, 
  footer.footer .footer-logo,
  footer.footer .footer-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  footer.footer .social-links {
    justify-content: space-between;
    left: -10px;
    max-width: 280px;
    position: relative;
    margin-top: 20px;
  }
  footer.footer .copyrights p {
    padding-top: 7px;
  }
  footer.footer .copyrights .content-wrapper {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
  }
  footer.footer .copyrights ul li {
    padding: 0 15px 7px;
  }
}
body .header.header{
  padding-top:10px;
  background: transparent !important;
}
header.header.scroll.default{
  background: rgba(78, 45, 127, 0.8)!important;
}
body .custom-logo img {
  width: 130px!important;
}
body .our-services-inner-slider {
  display: flex;
  padding: 0 0 30px;
}
body .our-services-inner-slider .our-services-tabs {
  width: 283px;
}
body .our-services-tabs ul {
  flex-wrap: wrap;
  align-items: center;
}
body .our-services-tabs ul li {
  padding:25px 26px;
}
body .our-services-tab-group {
  padding: 60px 0 12px;
}
.cm-two-col-content .left {
  font-size: 0 !important;
}
.our-services-slider .content-wrapper > .our-services-inner-slider {
  padding: 0;
}
body .cm-connect-us-group input.hs-button.primary.large:hover,
body .cm-connect-us-group input.hs-button.primary.large:focus {
  border: 1px solid #fff;
}
body .cm-two-col-content.fifty-per .right {
  max-width: 650px;
  padding-left: 40px;
  padding-right: 40px;
}
body .our-services-slider ul.slick-dots {
  bottom: 0px;
  width: 100%;
  left: 60px;
  right: 0;
  margin: 0;
  max-width: 920px;
}
body .our-service-slider.has-content {
  color: #000;
  padding-left: 30px;
  padding-right: 30px;
  width: 350px;
}
body .cm-about-section {
  border-radius: 0 !important;
  box-shadow: none;
  padding: 0 !important;
}
body .cm-about-section .content-wrapper {
  max-width: 100% !important;
}
body .cm-two-col-content.fifty-per .left {
  font-size: 0;
  padding-right:0;
  padding-left:0;
}
body .cm-connect-us-group {
  padding: 0;
}
body .cm-connect-us-group .content-wrapper {
  padding-left:0;
  padding-right:0;
  max-width: 100% !important;
  margin: 0px auto;
  left: 0;
  right: 0;
  justify-content: center;
}
body .cm-connect-us-group .cm-connect-us-left,
body .cm-connect-us-group .cm-connect-us-right {
  width: 50%;
  padding: 0;
}
body footer.footer .footer-logo .cont-phone a {
  margin-left: 8px;
}

body footer.footer .footer-logo h3 {
  font-size: 20px;
  letter-spacing: 0px;
  color: #132D47;
  margin-bottom: 3px;
  margin-top: 0;
}
body footer.footer .content-wrapper{
  align-items: flex-start!important;
}
body footer.footer .footer-logo {
  padding:0;
  font-size: 16px;
  line-height: normal;
  width: 25%;
}
body footer.footer .footer-right {
  padding-right: 0;
  width: calc(75% - 190px);
  overflow: hidden;
  margin-right: 90px;
}
body  footer.footer .content-wrapper{
  align-items:center;
}
body footer.footer {
  background: #fff;
  border-top: 1px solid #132D47;
  padding-top: 60px;
  padding-bottom:0;
}
footer.footer .footer-right .hs-menu-wrapper {
  margin-left: 0;
  max-width: 100%;
}
body .our-service-slider.has-content h3 {
  font-size: 30px;
  color:#000;
}
body footer.footer .hs-menu-wrapper>ul>li {
  width: 100%;
  position:relative;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left{
  padding-top:0;
}
body footer.footer .hs-menu-wrapper>ul>li>ul {
  display: flex !important;
  flex-direction: row !important;
}
body footer.footer .hs-menu-wrapper>ul>li>ul > li {
  width: 50%;
}
body footer.footer .footer-logo #hs_cos_wrapper_footer_left p {
  color: #000;
}
body footer.footer .copyrights {
  background: #000000;
  margin-top: 30px;
  color: #fff;
  max-width:100%;
  padding:20px 0px;
}
footer.footer .copyrights .content-wrapper {
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  align-items:center !important;
}
body .footer span {
  color: #000;
}
footer.footer .copyrights p, footer.footer .copyrights ul li a {
  color: #fff;
}
body footer.footer .hs-menu-wrapper>ul>li>ul>li>a {
  color: #000;
}
body footer.footer .copyrights p .swift{
  color:#000;
}
body footer.footer .footer-form .hs-input {
  background: #4e2d7f;
  padding: 17px 14px;
  color: #fff;
  border-radius: 8px;
}
body footer.footer .footer-form .hs-input::placeholder{
  color:#fff;
}
body footer.footer input.hs-button.primary.large {
  margin: 0;
}
body footer.footer .copyrights ul li a:hover {
  opacity: 0.8;
}
body footer.footer .copyrights ul li {
  position: relative;
  padding-left: 18px;
}
footer.footer .copyrights ul li:before {
  content: "";
  height: 15px;
  position: absolute;
  background: #fff;
  width: 1px;
  top: 2px;
  left: 7px;
  opacity: 0.6;
}
footer.footer .copyrights ul li:first-child:before {
  display: none;
}
.header.header {
  padding-top: 10px;
  background: rgba(255,255,255,0.9) !important;
}


body .hs-button,
body .cm-connect-us-group input.hs-button.primary.large,
body footer.footer input.hs-button.primary.large,
body .header-right-links ul li a.button{
  background: #4e2d7f !important;
  border:1px solid #4e2d7f !important;
  border-radius: 15px !important;
  color: #fff !important;
  font-size: 18px;
  letter-spacing: 0;
  font-family: Helvetica;
  padding: 12px 26px;
  text-transform: none;
}
.cm-banner-group .button-group .hs-button {
  border: 1px solid #fff !important;
}
body a.button,
body .cm-two-col-content .button-wrap a.button, 
body .cm-two-col-content .button-wrap a.button,
body .cm-two-col-content .button-wrap a.button:focus, 
body .cm-two-col-content .button-wrap a.button:hover{
  background: #4e2d7f;
  border:1px solid #4e2d7f ;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0;
  padding: 12px 26px;
  text-transform: none;
  font-family: Helvetica;
}
body a.button:hover,
body a.button:focus,
body .cm-banner-group .button-group .hs-button:hover,
body .cm-banner-group .button-group .hs-button:hover,
body .cm-connect-us-group input.hs-button.primary.large:hover,
body .cm-connect-us-group input.hs-button.primary.large:focus,
body footer.footer input.hs-button.primary.large:hover,
body footer.footer input.hs-button.primary.large:focus,
body .button:hover,
body .hs-button:focus,
body .hs-button:hover,
body .hs-button:focus,
body .header-right-links ul li a.button:hover, 
body .header-right-links ul li a.button:focus {
  opacity:0.7;
}
.button-item.normal a {
  font-size: 18px;
}
body .cm-connect-us-group .cm-connect-us-right {
  max-width: 100%;
  padding: 60px;
  background:#132D47!important;
}

body.has-banner header.header.scroll .custom-menu-primary a,
body .header.header .custom-menu-primary a {
  color: #fff;
}
body.has-banner header.header.scroll .custom-menu-primary a svg path,
body .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a>svg * {
  fill: #fff;
}
body.has-banner header.header.scroll.default .header-right-links ul li:first-child a,
body.has-banner .header-right-links ul li a:not(.button), 
body .header-right-links ul li a:not(.button), 
body .header-right-links ul li a:not(.button) svg ,
body .header-right-links ul li a:not(.button) svg * {
  color: #fff;
  fill: #fff;
}
body .header-right-links ul li:first-child a:hover {
  background: transparent !important;
  color: #fff !important;
}
body .header-right-links ul li a.button {
  background: transparent;
  border: 1px solid #fff;
  margin-left: 23px;
  min-width: 140px;
  padding: 9px 32px;
  font-size: 13px;
}
body .custom-menu-primary {
  margin-right: 0;
  margin-left: auto;
}
body .cm-connect-us-group input.hs-button.primary.large {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

body .our-services-inner-slider {
  background: #fff;
}
body .our-services-tabs ul li{
  padding: 25px 26px;
  border-bottom: 1px solid #fff;
  margin: 0;
  color:#fff;
  background:#29486b;
}
body .our-services-tabs ul li:last-child{
  border:0;
}
body .our-services-tabs ul li:hover,
body .our-services-tabs ul li.active {
  background: #909398;
}
body .our-services-cont {
  color: #fff;
  background: #132D47;
}
body .cm-about-section .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}
body footer.footer .footer-social .social-links {
  flex-direction: column;
  justify-content: center;
}
body footer.footer .footer-social .social-links a svg {
  fill: #000;
  text-align: center;
}
body footer.footer .footer-social .social-links a {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}
body footer.footer .footer-social .social-links a:hover{
  opacity:0.6;
}
body footer.footer .footer-social {
  padding-left: 30px;
  padding-top: 43px;
}
body footer.footer .footer-form form {
  display: flex;
  align-items: center;
}
body footer.footer .footer-form form > div {
  width: 100%;
  margin:0;
}
body footer.footer .footer-form form .field > label {
  margin: 0;
}
body footer.footer .footer-form {
  margin: 0 auto 70px;
  padding: 0 20px;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form {
  display: flex;
  align-items: center;
}
body footer.footer .footer-form input.hs-button.primary.large {
  margin-bottom: 0;
  background: transparent;
  color: #4e2d7f;
  border-color: #4e2d7f;
  padding-bottom: 17px;
  padding-top: 15px;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form h3.form-title {
  margin: 0;
  padding: 0 20px 0  0;
  white-space: nowrap;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form form {
  display: flex;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form #hs_form_target_stay_up_form {
  width: 100%;
}
body footer.footer .footer-form form .hs_submit.hs-submit {
  width: 300px;
  padding-left: 20px;
  margin: 0;
}
body footer.footer .footer-form form .hs-input {
  height: 50px;
}
body footer.footer .footer-logo ul li, body footer.footer .footer-logo ul a {
  color: #000;
}
body footer.footer .footer-logo ul li, body footer.footer .footer-logo ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body footer.footer .hs-menu-wrapper>ul>li>ul>li, 
body footer.footer .hs-menu-wrapper>ul>li>ul>li>ul>li {
  margin-bottom: 10px;
}
body footer.footer .footer-logo ul li {
  margin-bottom: 8px;
  padding-left: 29px;
  position: relative;
  margin-bottom: 10px;
}
body footer.footer .footer-logo ul li i {
  position: absolute;
  left: 0;
  top: 5px;
}
body footer.footer .footer-logo h6 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #132d47;
}
body .footer-form h3, footer.footer .hs-menu-wrapper>ul>li>a {
  display: block;
  font-family: Helvetica,sans-serif;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  color: #132d47;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  position:relative;
  pointer-events:none;
}
footer.footer .hs-menu-wrapper>ul>li>a:after {
  background: #000;
  content: "";
  height: 1px;
  margin-left: 17px;
  position: absolute;
  top: 8px;
  width: 100%;
  opacity: 0.1;
}
footer.footer .social-links__icon:active {
  height: auto;
  font-size: inherit;
}
.footer-subs-inner {
  max-width: 1070px;
  margin: 0px auto;
  padding-right: 100px;
}
footer.footer ul.no-list.hs-error-msgs.inputs-list {
  display: none;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li>a:hover {
  opacity: 0.6;
}
body footer.footer .footer-form input.hs-button.primary.large:hover {
  background-color: #4e2d7f;
  border: 1px solid #4e2d7f;
  color: #fff;
}
.our-services-tabs ul li.aos-animate {
  transition: all ease 0.3s !important;
}

.footer-images ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-images ul img {
  width: 140px;
}
.footer-images ul li {
  padding: 20px 20px 0;
}
body footer.footer .content-wrapper.footer-img-cont {
  justify-content: center;
}
body .logo-slider>h6{
  color: #4e2d7f;
  font-weight:bold;
  font-size:35px;
}


@media(min-width:991px){
  header.header.header-ver2 .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper {
    background: #fff;
    border-bottom: 1px solid rgba(182,183,207,.4);
    display: block!important;
    min-height: 275px;
    padding: 90px 0 30px;
    width: 100%;
    margin-top:0;
  }
  header.header.header-ver2 .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul {
    display: flex;
    flex-direction: revert;
    margin: 0 auto;
    max-width: 1130px;
    opacity: 1;
    position: static;
    visibility: visible;
  }
  header.header.header-ver2 .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li {
    float: left;
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 10px;
    position: relative;
    width: 33.333%;
  }
}

@media(max-width:1260px){
  body .cm-two-col-content .right h2 {
    font-size: 33px;
  }
  body .cm-two-col-content.fifty-per .left img {
    height: 520px !important;
    width: 100%  !important;
    object-fit: cover;
  }
}

body footer.footer .footer-logo .cont-phone a {
  margin-left: 8px;
}
body footer.footer .content-wrapper{
  display:flex;
  align-items:flex-start !important;
}
body footer.footer {
  background: #4e2d7f !important;
}
body footer.footer .footer-logo {
  padding:0;
  font-size: 16px;
  line-height: normal;
  width: 25%;
}
body footer.footer .footer-right {
  padding-right: 0;
  width:50%;
  overflow: hidden;
  margin-right: 0;
}
body  footer.footer .content-wrapper{
  align-items:center;
}
body footer.footer {
  background: #fff;
  border-top: 1px solid #132D47;
  padding-top: 60px;
  padding-bottom:0;
}
footer.footer .footer-right .hs-menu-wrapper {
  margin-left: 0;
  max-width: 100%;
}
body .our-service-slider.has-content h3 {
  font-size: 30px;
  color:#000;
}
.footer .hs-menu-wrapper ul ul a {
  padding-left: 20px;
  line-height: 38px;
  display: block;
  font-size: 16px !important;
  position:relative;
}
.footer .hs-menu-wrapper ul ul a:before {
  content: "\f101";
  font-size: 11px;
  color: #6C6D83;
  font-family: fontawesome;
  position: absolute;
  left: 0;
}
.footer a {
  color: #b5b7d2 !important;
}
.flat-information li {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #b5b7d2 !important;
  line-height: 30px;
  font-size: 14px;
  padding-left: 2px;
}

.flat-information li i {
  margin-right: 10px;
}
body footer.footer .hs-menu-wrapper>ul>li {
  width: 100%;
  position:relative;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left{
  padding-top:0;
}
body footer.footer .hs-menu-wrapper>ul>li>ul {
  display: flex !important;
  flex-direction: row !important;
}
body footer.footer .hs-menu-wrapper>ul>li>ul > li {
  width: 50%;
}
body footer.footer .footer-logo #hs_cos_wrapper_footer_left p {
  color: #000;
}
body footer.footer .copyrights {
  background: #000000;
  margin-top: 30px;
  color: #fff;
  max-width:100%;
  padding:20px 0px;
}
footer.footer .copyrights .content-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}
body .footer span {
  color: #000;
}
footer.footer .copyrights p, footer.footer .copyrights ul li a {
  color: #fff;
}
body footer.footer .hs-menu-wrapper>ul>li>ul>li>a {
  color: #000;
}
body footer.footer .copyrights p .swift{
  color:#000;
}
body footer.footer .footer-form .hs-input {
  background: #4e2d7f;
  padding: 17px 14px;
  color: #fff;
  border-radius: 8px;
}
body footer.footer .footer-form .hs-input::placeholder{
  color:#fff;
}
body footer.footer input.hs-button.primary.large {
  margin: 0;
}
body footer.footer .copyrights ul li a:hover {
  opacity: 0.8;
}
body footer.footer .copyrights ul li {
  position: relative;
  padding-left: 18px;
}
#back-to-top:hover{
  background:#38B4FA;
}
#back-to-top:hover svg *,
#back-to-top:hover svg{
  fill:#fff;
}
#back-to-top svg {
  height: 25px;
  width: 25px;
  fill: #fff;
  position: relative;
  top: 7px;
}
#back-to-top svg * {
  fill: #fff;
}
footer.footer .copyrights ul li:before {
  background: #fff;
  content: "";
  height: 12px;
  left: 7px;
  opacity: .6;
  position: absolute;
  top: 6px;
  width: 1px;
}
body footer.footer .copyrights ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body footer.footer .copyrights ul li {
  display: inline-block;
  font-size: 13px;
}
body footer.footer .copyrights p {
  margin: 0;
  font-size: 13px;
}
.header.header {
  padding-top: 10px;
  background: rgba(255,255,255,0.9) !important;
}
body .button::before,
body .hs-button::before,
body .cm-connect-us-group input.hs-button.primary.large::before,
body footer.footer input.hs-button.primary.large::before {
  content:"";
  top: 50%;
  right: 102%;
  z-index: -1;
  margin: -20px 0 0 1px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #4e2d7f;
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: scale3d(1,2,1);
  transform: scale3d(1,2,1);
  -webkit-transition: -webkit-transform .3s,opacity .3s;
  transition: transform .3s,opacity .3s;
  -webkit-transition-timing-function: cubic-bezier(.7,0,.9,1);
  transition-timing-function: cubic-bezier(.7,0,.9,1);
  position: absolute;
  display:none;
}
body .button:hover::before,
body .hs-button:hover::before,
body .cm-connect-us-group input.hs-button.primary.large:hover::before,
body footer.footer input.hs-button.primary.large:hover::before{
  -webkit-transform: scale3d(-9,9,1);
  transform: scale3d(-9,9,1);
  display:none;
}

body .cm-connect-us-group .cm-connect-us-right {
  max-width: 100%;
  padding: 60px;
  background:#132D47!important;
}
body .cm-connect-us-group input.hs-button.primary.large {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

body .our-services-inner-slider {
  background: #fff;
}
body .our-services-tabs ul li{
  padding: 25px 26px;
  border-bottom: 1px solid #fff;
  margin: 0;
  color:#fff;
  background:#29486b;
}
body .our-services-tabs ul li:last-child{
  border:0;
}
body .our-services-tabs ul li:hover,
body .our-services-tabs ul li.active {
  background: #909398;
}
body .our-services-cont {
  color: #fff;
  background: #132D47;
}
body .cm-about-section .content-wrapper {
  padding-left: 0;
  padding-right: 0;
}
body footer.footer .footer-social .social-links a svg {
  fill: #fff;
  text-align: center;
}
body footer.footer .footer-social .social-links a {
  display: block;
  text-align: center;
}
body footer.footer .footer-social .social-links a:hover{
  opacity:0.6;
}
body footer.footer .footer-social {
  padding-left: 0;
  padding-top: 0;
  margin-left: auto;
}
body footer.footer .footer-form form {
  display: flex;
  align-items: center;
}
body footer.footer .footer-form form > div {
  width: 100%;
  margin:0;
}
body footer.footer .footer-form form .field > label {
  margin: 0;
}
body footer.footer .footer-form {
  margin: 0 auto 70px;
  padding: 0 20px;
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form {
  display: flex;
  align-items: center;
}
body footer.footer .footer-form input.hs-button.primary.large {
  margin-bottom: 0;
  background: transparent;
  color: #4e2d7f;
  border-color: #4e2d7f;
  padding-bottom: 17px;
  padding-top: 15px;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form h3.form-title {
  margin: 0;
  padding: 0 20px 0  0;
  white-space: nowrap;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form form {
  display: flex;
}
body footer.footer .footer-form .hs_cos_wrapper_type_form #hs_form_target_stay_up_form {
  width: 100%;
}
body footer.footer .footer-form form .hs_submit.hs-submit {
  width: 300px;
  padding-left: 20px;
  margin: 0;
}
body footer.footer .footer-form form .hs-input {
  height: 50px;
}
body footer.footer .footer-logo ul li, body footer.footer .footer-logo ul a {
  color: #000;
}
body footer.footer .footer-logo ul li, body footer.footer .footer-logo ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body footer.footer .footer-logo ul li {
  margin-bottom: 8px;
  padding-left: 29px;
  line-height:normal;
  position: relative;
  margin-bottom: 10px;
}
body footer.footer .footer-logo ul li i {
  position: absolute;
  left: 0;
  top: 5px;
}
body footer.footer .footer-logo h6 {
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #132d47;
}
body.search-active .search-box {
  z-index: 9;
  display: flex;
  visibility: visible;
  opacity: 1;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
body footer.footer .footer-logo ul.flat-information li:first-child {
  padding-left: 0;
}
.footer-links ul p {
  margin: 0 0 10px;
}
body footer.footer h3, footer.footer .hs-menu-wrapper>ul>li>a {
  display: block;
  font-family: Helvetica,sans-serif;
  font-style: normal;
  line-height: normal;
  text-decoration: none;
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position:relative;
  pointer-events:none;
  margin-top: 15px;
}
footer.footer .hs-menu-wrapper>ul>li>a:after {
  background: #000;
  content: "";
  height: 1px;
  margin-left: 17px;
  position: absolute;
  top: 8px;
  width: 100%;
  opacity: 0.1;
}
footer.footer .social-links__icon:active {
  height: auto;
  font-size: inherit;
}
.footer-subs-inner {
  max-width: 1070px;
  margin: 0px auto;
  padding-right: 100px;
}
footer.footer ul.no-list.hs-error-msgs.inputs-list {
  display: none;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li>a:hover {
  opacity: 0.6;
}
body footer.footer .footer-form input.hs-button.primary.large:hover {
  background-color: #4e2d7f;
  border: 1px solid #4e2d7f;
  color: #fff;
}
.our-services-tabs ul li.aos-animate {
  transition: all ease 0.3s !important;
}
.custom-logo {
  display: flex;
  align-items: center;
}

span.lg-txt {
  display: block;
  padding-left: 12px;
  max-width: 125px;
  font-size: 12px;
  line-height: 1.4;
}
body .cm-connect-us-group input.hs-button.primary.large {
  max-width: unset !important;
  width: auto !important;
}

.cm-connect-us-group .cm-connect-us-right .field {
  width: 33.33% !important;
}

.cm-connect-us-group.form-banner form {
  justify-content: center;
}

body footer.footer .footer-logo {
  width: 30% !important;
  padding-left: 15px;
}

body footer.footer .footer-right {
  width: 25% !important;
  padding: 0 15px;
}

.footer-links {
  width: 45% !important;
}

body footer.footer .hs-menu-wrapper>ul>li>ul>li {
  width: 100% !important;
}

.footer .hs-menu-wrapper ul ul a:before {
  top: 7px;
}

.footer-links {
  padding: 0 15px;
}

.footer-links iframe {
  max-width: 100%;
  max-height: 100%;
  height: 401px;
}

footer.footer .footer-right .hs-menu-wrapper>ul {
  margin: 0 !important;
}

body footer.footer .footer-social .social-links {
  flex-direction: row;
}

body footer.footer .footer-social .social-links a {
  margin: 0;
}
/**********New updates**********/
.footer-links {
  display: none;
}
ul.flat-information {
  width: 33%;
  float: left;
  list-style: none;
}
body footer.footer .footer-logo, body footer.footer .footer-right {   
  width: 20%!important;
}
.footer-even {
  width: 71%;
}
footer.footer .hs-menu-wrapper>ul>li>a:after {
  display: none;
}

body footer.footer .footer-logo ul.flat-information li:first-of-type {
  line-height: 0;
  margin: 1px;
}

body footer.footer .footer-logo, body footer.footer .footer-right {
  width: 29% !important;
}

ul.flat-information {
  width: 33%;
}
@media (max-width:991px){

  header.header .content-wrapper {
    position: relative;
  }

  .header-nav__trigger {
    top: 32px;
  }

  .custom-menu-primary a svg {
    display: none;
  }

  header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a:not(:only-child):after {
    display: none;
  }

  .custom-menu-primary .hs-menu-wrapper>ul:before {
    display: none;
  }

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

  .mobile-logo {
    display: none;
  }

  body .custom-menu-primary {
    top: 100%;
  }
  .menu-open header.header {
    background: #fff !important;
  }

  .menu-open header.header:before {
    opacity: 0;
  }

  .menu-open .custom-logo .dark-logo {
    display: block;
  }

  .menu-open .custom-logo .white-logo {
    display: none;
  }

  body .header.header .custom-menu-primary a, body.has-banner header.header.scroll .custom-menu-primary a {
    color: #3d1f52 !important;
  }
}
@media (max-width:767px){
  .cm-connect-us-group .cm-connect-us-right .field {
    width: 100% !important;
  }
  body footer.footer .content-wrapper > * {
    width: 100% !important;
  }

  body footer.footer .footer-social .social-links {
    max-width: 100%;
    margin: 0 0 10px;
  }
  ul.flat-information {
    width: 100%;
    float: none;
  }
  body footer.footer .footer-logo, body footer.footer .footer-right {   
    width: 100%!important;
  }
  .footer-even {
    width: 100%;
  }

  body .cm-two-col-content.fifty-per .right {
    padding: 0 20px !important;
  }
  ul.flat-information {
    padding: 0;
  }
}
@media(min-width:991px){
  header.header.header-ver2 .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper {
    background: #fff;
    border-bottom: 1px solid rgba(182,183,207,.4);
    display: block!important;
    min-height: 275px;
    padding: 90px 0 30px;
    width: 100%;
    margin-top:0;
  }
  header.header.header-ver2 .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul {
    display: flex;
    flex-direction: revert;
    margin: 0 auto;
    max-width: 1130px;
    opacity: 1;
    position: static;
    visibility: visible;
  }
  header.header.header-ver2 .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li {
    float: left;
    margin-bottom: 40px;
    padding-left: 30px;
    padding-right: 10px;
    position: relative;
    width: 33.333%;
  }
}

@media(max-width:1260px){
  body .cm-two-col-content .right h2 {
    font-size: 33px;
  }
  body .cm-two-col-content.fifty-per .left img {
    height: 520px !important;
    width: 100%  !important;
    object-fit: cover;
  }
}
header.header.scroll.default {
  background: #fff !important;
  padding-bottom: 0;
}

body.has-banner header.header.scroll .custom-menu-primary a {
  color: #3D1F52 !important;
}

body.has-banner header.header.scroll .custom-menu-primary a svg path {
  fill: #3D1F52;
}
.our-services-group .feature .icon {
  background: #4e2d7f !important;
  border-color: #4e2d7f !important;
}

.our-services-group .feature:hover .icon {
  background: rgba(37, 156, 175, 1) !important;
  border-color: rgba(37, 156, 175, 1) !important;
}
.footer-logo.desktop ul {
  width: 100%;
}

body footer.footer .footer-logo ul.flat-information li:first-of-type {
  padding-left: 0 !important;
}

ul.flat-information:first-of-type {
  padding-left: 0;
}
.dnd-section:first-child .banner-slides-inner {
  background-image: linear-gradient(to bottom right, rgba(78, 45, 127, 1), rgba(78, 45, 127, 1)) !important;
}
.footer-even {
  padding: 0 15px;
}
.banner-sl-outer .tw-col-holder {
  min-height: 135px !important;
}

a#back-to-top {
  position: fixed;
  right: 40px;
  z-index: 20;
  bottom: 7px;
  background: #259caf;
  padding: 10px;
  border-radius: 100%;
  line-height: 0;
}

#back-to-top svg {
  position: static;
}


.form-col .hs-form-field {
  margin: 0 0 10px;
}

.form-col .hs-form-field .hs-input[type="file"] {
  height: 42px;
}

.form-col .hs-form-field .hs-input[type="file"]::-webkit-file-upload-button {
  height: 100%;
}
.form-col .hs-form-field.hs_recaptcha {
  display: inline-block;
  margin: 20px 0 0;
  vertical-align: middle;
}

.form-col .hs_submit {
  display: inline-block;
  vertical-align: middle;
  margin: 20px 0 0;
}

.form-col .hs_submit input {
  margin: 0;
  min-height: 60px;
  margin-left: 20px;
}
.hero-twocol-wrapper .right,
.dnd-section .left {
  line-height: 0;
  position: relative;
  padding: 0 !important;
}
.hero-twocol-wrapper .right:after,
.dnd-section .left:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.blog-main .banner-content {
  padding-right: 20px;
}
.blog-main .blog-index + div,
.blog-main .blog-index {
  padding: 0 20px;
}
.cm-two-col-conntent.fifty-per .left {    
  padding: 0 !important;
}
.event-resources-inner-group .event-resources-top:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.form-col form {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.form-col form > * {
  width: 100%;
}

.form-col .hs-form-field.hs_recaptcha, .form-col .hs_submit {
  width: auto;
  margin-right: 8px;
}

.form-col .hs_submit {
  margin-left: auto;
  margin-right: 8px;
}
.hs-input.hs-fieldtype-intl-phone {
  background: transparent !important;
  border: 0 !important;
}

.form-col .hs-form-field > .input > .hs-input {
  width: 100%;
}
select.hs-input {
  width: 100% !important;
}
.hs-form-field:Last-child .input {
  margin: 0 !important;
}
@media (max-width:767px){

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

  .hs-form-field .input {
    margin: 0 !important;
  }

  header.header.scroll {
    position: relative !important;
  }

  header.header {
    position: absolute;
  }
  .hs_recaptcha.hs-recaptcha.field.hs-form-field {
    width: auto !important;
  }
}
@media (max-width:479px){
  .hs-form-field .input > * {
    width: 100% !important;
  }

  .top-header-section {
    padding: 0 20px;
    flex-direction: column;
    text-align: center;
  }
  .banner-sl-outer .tw-col-holder {
    align-items: center;
    justify-content: center;
  }

  .banner-sl-outer .tw-col-holder .col.content-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-images ul li {
    padding: 20px 10px 0;
  }
}

body .button:hover, body .cm-connect-us-group input.hs-button.primary.large:focus, body .cm-connect-us-group input.hs-button.primary.large:hover, body .header-right-links ul li a.button:focus, body .header-right-links ul li a.button:hover, body .hs-button:focus, body .hs-button:hover, body footer.footer input.hs-button.primary.large:focus, body footer.footer input.hs-button.primary.large:hover {
  background: #4e2d7f !important;
  color: #fff !important;
  opacity:0.7 !important;
}

.logo-slider>h6 {
  text-transform: unset !important;
  line-height: inherit !important;
}
body footer.footer a:hover {
  opacity: 0.6;
}
.footer .hs-button {
  border-color: #b5b7d2 !important;
}
.top-header-section .header-links a:hover {
  opacity: .7;
}

.top-header-section ul li a:hover {
  opacity: .7;
}
.hs-whatsapp-button-wrapper {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 53px;
}
.flat-information li {
  line-height: normal;
  margin-bottom: 10px;
}
.add-content-wrapper .submitted-message {
  text-align: center;
  color: #fff;
}
.nx-module.banner-sl-container.global-style-holder {
  background: transparent !important;
}
.cm-banner-wrap ul.slick-dots li:first-child:last-child {
  display: none !important;
}
img{
border-radius: 12px !important;
}

/* .card-content p, .card-content div div div {
    text-align: justify !important;
} */

.footer .span3 a i {
    opacity: 0.7;
    font-size: 14px;
}
 .cm-two-col-conntent.fifty-per .right p {
    text-align: left !important;
}
@media (max-width:991px){
  .nx-module.banner-sl-container.global-style-holder {
    background: transparent !important;
  }

  .banner-sl-outer .tw-col-holder h1 {
    font-size: 36px;
  }

  .banner-brd {
    display: none;
  }
}

@media(min-width:992px){

    body .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul > li > ul {
      opacity: 1 !important;
      visibility: visible !important;
      display: block !important;
      position: static !important;
    }
    body .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul > li > ul > li > a {
      white-space: normal !important;
    }
    body .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul > li > ul > li {
      padding: 5px;
      position: relative;
      margin-bottom: 5px;
    }

    

    header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li > ul > li > a {
      font-weight: 600;
      font-size: 14px !important;
      margin-bottom: 6px;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:last-child>ul>li:last-child {
      min-height: auto;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li {
      min-height: auto;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:last-child>ul>li > a {
      font-weight: 400 !important;
      margin-bottom: 0;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>ul>li {
      margin-bottom:8px !important;
      min-height: 95px;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:last-child > ul > li{
      padding-left: 0px;
      position: relative;
      margin-bottom: 5px;
    }
   
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:last-child {
      display: block !important;
    }
    .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li:last-child > ul > li {
      min-height: auto;
      margin-bottom: 0 !important;
    }
    header.header .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li > ul > li > a[href="javascript:;"] {
      pointer-events:none;   
    }
  }