/* 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;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

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:1.1132;
}
h6 {
  letter-spacing: 3.2px;
  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; 
  font-weight: 700;
  letter-spacing: 2.025px;
  text-transform: uppercase;
}

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;
  text-transform:uppercase;
  transition: none;
}
.button.btn-primary,
.hs-button.btn-primary {
  font-weight: 700;
  letter-spacing: 2.025px;
}

.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;
}
.button i {
  font-family: fontawesome;
  margin-left: 5px;
}

.read-more-link{
  font-family: Inter,sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.32px;
  display:inline-block;
}
.read-more-link i{
  margin-left:5px;
}
.cm-two-col-conntent a.button.default:hover,
.cm-two-col-conntent a.button.default:focus {
  background: #3850a3;
  color: #fff;
}
.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 {
}
.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;
}
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;
}
/* Fields */

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

/* Labels */

form label {
  display: block;
  font-size:16px;
  color: #000;
  text-transform: capitalize;
  margin-bottom: 0.35rem;
}

input.hs-button.primary.large {
  font-size: 14px;
}

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: 12px 15px;
  width: 100%;
}
textarea {
  min-height: 110px;
}
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-family: Inter;
  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 sections */

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

/* Header container */

.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: 11px 0 3px;
  position: absolute;
  right: 0;
  z-index: 999;
  transition: all ease 0.3s;
}
header.header .content-wrapper {
  display: flex;
}
.custom-logo img {
  max-width: 100%!important;
  width: 152px!important;
}
.custom-menu-primary a {
  text-decoration:none;
  vertical-align:middle;
}
.custom-menu-primary .hs-menu-wrapper > ul> li {
  padding: 0 12px;
}
header.header .header-left-side {
  display: flex;
  align-items: center;
  width: calc(100% - 210px);
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children > a {
  padding-right: 30px;
}
.custom-menu-primary {
  margin-left: auto;
  margin-right: 70px;
  padding-bottom: 14px;
  padding-left: 0;
}
.has-banner header.header.scroll .custom-menu-primary .hs-menu-wrapper > ul > li.active-branch > a,
.custom-menu-primary .hs-menu-wrapper>ul>li.active-branch > a,
.custom-menu-primary .hs-menu-wrapper>ul>li.active > a{
  color:#6C94CD !important;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.active> a {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children> a > svg {
  margin-left: 6px;
}
.has-banner .custom-menu-primary a {
  color:#CDCFD1;
}
.has-banner .custom-menu-primary a svg path {
  fill: #CDCFD1;
}
.has-banner header.header.scroll .custom-menu-primary a{
  color:#000;
}
.has-banner header.header.scroll .custom-menu-primary a svg path{
  stroke: #000;
  fill: transparent;
}
.custom-menu-primary a {
  text-decoration: none;
  vertical-align: middle;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1.89px;
  text-transform: uppercase;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a>svg {
  position: absolute;
  right: 2px;
  top: 0px;
}
body.no-banner .header-right-links li:first-child a.button {
  background: #fff;
}

html[lang="ar"] .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>a>svg {
  margin-right: 6px;
  margin-left: 0;
}
html[lang=ar] .header-right-side {
  margin-left: 0;
  margin-right: auto;
  padding-right: 0;
  padding-left: 86px;
}
.header__language-switcher {
  top: 19px;
  position: absolute;
  padding: 0;
  right: 0;
}
.header__language-switcher .globe_class {
  background: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0;
}
.header__language-switcher .lang_list_class:before, 
.header__language-switcher .lang_list_class:after {
  display: none;
}
.header__language-switcher .lang_list_class {
  display: block !important;
  border: 0;
  box-shadow: none;
  visibility: visible;
  opacity: 1;
  background: transparent !important;
  position: static;
  min-width: auto;
  transform: none;
}
.header__language-switcher .lang_list_class li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.header__language-switcher .lang_list_class a {
  color: #fff !important;
}
.header__language-switcher .lang_list_class li:first-child {
  display: none;
}
html[lang=ar] .header-right-side .header__language-switcher {
  left: 12px;
  right: auto;
}
header-right-side .globe_class {
  width: 200px;
}
.header-right-side .globe_class {
  background: transparent;
  width: auto;
  height: auto;
  position: absolute;
  right: -59px;
  border-radius: 0;
  top: -14px;
}
.header-right-side .globe_class ul.lang_list_class {
  position: static;
  opacity: 1;
  visibility: visible;
  display: block;
  background: transparent;
  padding: 0;
  width: auto;
  transform: none;
  top: auto;
  bottom: auto;
  left: 0;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.header-right-side .globe_class ul.lang_list_class:before {
  display: none;
}
.header-right-side .globe_class ul.lang_list_class li:first-child {
  display: none;
}
.header-right-side .globe_class ul.lang_list_class li {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0; 
}
.header-right-side .globe_class ul.lang_list_class:after {
  display: none;
}
.header-right-side .globe_class ul.lang_list_class li a {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.2px;
}
html[lang="ar"] .header-right-side .globe_class {
  left: 0;
  right: 0;
  white-space: nowrap;
}


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

/* Navigation skipper */

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

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

/* Logo */

.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: 0.7rem;
}

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

/* Search bar */

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



.header__search .hs-search-field__button {
  padding: 0;
  fill: #000;
  background-color: transparent;
  border: none;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
}

.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-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

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

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.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;
  }
}

/* Language switcher */

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

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.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: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}
.custom-logo .dark-logo{
  display:none;
}

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

.header-nav__trigger span {
  background-color: #000;
  display: block;
  height: 2px;
  margin-left: 2px;
  margin-top: 12px;
  position: relative;
  width: 26px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
}

.header-nav__trigger span:before, 
.header-nav__trigger span:after {
  background-color: #000;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 26px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; 
}
.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:before, 
.header-nav__trigger.is-open span:after {
  background-color: #000;
  height: 2px;
  width: 26px;
  top: 0; 
}
.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); 
}
.custom-menu-primary .mobile-menu{
  display:none;
}
.header-right-side {
  align-items: center;
  display: flex;
  margin-left: auto;
  padding-right: 0;
  position: relative;
}
header.header.scroll {
  position: fixed;
  background: #fff;
}
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 {
  transform: translateY(0);
  transition: transform .3s ease;
  box-shadow: 1px -1px 2px #000;
}
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 .logo-white {
  display: none;
}
.custom-logo .dark-logo{
  display:none;
}
header.header.active-menu .dark-logo {
  display: none;
}
.no-banner .custom-logo .dark-logo {
  display: block;
}
.no-banner .custom-logo .white-logo {
  display: none;
}
.no-banner .header-right-links ul li:first-child a:hover,
.no-banner .header-right-links ul li:first-child a:focus,
.no-banner .header-right-links ul li:first-child a {
  color: #000;
}
header.header.active-menu .custom-logo .dark-logo {
  display: block;
}
header.header.active-menu .custom-logo .white-logo {
  display: none;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>ul>li>a svg {
  position: absolute;
  left: 0px;
  fill: #02081E;
  top: 0;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>ul>li>a svg *{
  fill: #02081E;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li:nth-child(2) a {
  position: relative;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>ul a svg {
  fill: #02081e;
  left: -6px;
  position: absolute;
  top: -3px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>ul a svg *{
  fill: #02081e;
}
header.header .content-wrapper {
  max-width: 1270px;
}

@media (min-width: 992px) {
  .header-right-side.mobile-show ,
  .custom-menu-primary .header-right-links{
    display:none;
  }  
  header.header.active-menu {
    background: #fff;
  }
  .active-menu .header-right-side .globe_class ul.lang_list_class li a {
    color: #000;
  }
  header.header.scroll.default .header-right-links ul li:first-child a {
    color: #000;
  }
  body.has-banner header.header.scroll.default .header-right-links ul li:first-child a {
    background: transparent;
  }
  header.header.active-menu .custom-menu-primary a {
    color: #000;
  }
  .active-menu .header-right-links ul li:first-child a {
    color: #000;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li:hover > a,
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > a{
    color: #9395D3;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > a *{
    transition:all ease 0.3s;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover > a svg *{
    fill: #9395D3;
  }
  body.has-banner .header-right-links ul li:first-child a:hover{
    color:#000;
  }

  .header-right-links ul li:first-child a:hover {
    background: #fff !important;
  }
  .header-right-links ul li:first-child a:focus:before,
  .header-right-links ul li:first-child a:hover:before{
    display:none;
  }
  header.header.active-menu::before {
    display: none;
  }
  .active-menu .custom-logo .dark-logo{
    display:block;
  }
  .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);
    border-top: none;
    padding:0 43px 0;
    top: 60px!important;
    transition: opacity .3s ease;
    width: 100%;
    display: flex !important;
    flex-direction: row;
    margin-top:15px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:after {
    content: "";
    height: 40px;
    position: absolute;
    width: 147px;
    display: block;   
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children.AboutUs:after {
    width: 125px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:hover:after {
    border-color:#000;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper a {
    color: #000;    
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-transform:none;
    line-height: 51px;
    display:inline-block;
    padding-right: 33px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>ul>li>a{
    color: #000;
    margin: 0 0 6px;
    padding-left: 31px;
    white-space: normal;
    font-size:16px;
    font-weight:normal;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children > ul.hs-menu-children-wrapper > li > ul > li > a:hover{
    color: #9395D3;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li > ul > li > ul > li a:hover {
    color: #9395D3;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li > ul > li > ul {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li:first-child > ul > li > a {
    padding-left: 0;
  }
  body header.header.active-menu .header-right-links ul li a svg * {
    stroke: #000;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children {
    position: static;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > ul {
    position: absolute;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > ul {
    left: 0;
    opacity: 0;
    padding-left: 0;
    position: absolute;
    top: 74px;
    visibility: hidden;
    width: 100%;
    background: #fff;
    display: flex !important;
    justify-content: center;
    padding: 14px;
    border-top:1px solid rgba(182,183,207,.4);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li {
    padding-right: 0;
    position: static;
    width: 25%!important;
    padding: 19px 0;
    text-align:center;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li {
    margin-bottom: 0;
    text-align: center;
    width: 33.3333%;
    border-right: 1px solid rgba(182,183,207,.4);
    padding: 6px 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > ul > li > a {
    color: #000;
    font-family: Montserrat,sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 36.5px;
    letter-spacing: 0.6px;
    text-transform: capitalize;
    white-space: normal !important;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li:hover>a {
    color: #4263AE;
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a {
    letter-spacing: 0;
    position: relative;
    padding-left: 36px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>a > svg {
    position: absolute;
    left: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>a:after {
    background: #4263AE;
    content: "";
    width: 4px;
    position: absolute;
    left: 0px;
    height: 20px;
    top: 14px;
    opacity: 0;
    transition: all ease 0.3s;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li.hs-item-has-children>a:before {
    border-bottom: 6px solid transparent;
    border-left: 11px solid #4263ae;
    border-top: 6px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: 0;
    top: 18px;
    width: 0;
    transform: rotate(207deg);
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li:hover>a:after {
    opacity:1;
    left: -10px;
  }

}


@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: 0.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:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
  body.has-banner.menu-open .dark-logo {
    display: block;
  }
  body.has-banner.menu-open .white-logo {
    display: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}
html[lang="ar"] .header-nav__trigger {
  left: 20px;
  right: auto;
}
html[lang="ar"] .child-trigger {
  left: 0;
  right: auto;
}

html[lang="ar"] .child-trigger svg {
  transform: rotate(180deg);
}

/* Mobile toggles */

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

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

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

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

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

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

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

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    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,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+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,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    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.header .header-left-side {
    flex-direction: column;
  }
  .header-right-side {
    flex-direction: column;
  }
  .custom-logo {
    width: 100%;
    padding: 0px 15px;
  }
  .custom-menu-primary {
    padding: 0;
    width: 100%;
    display:none;
  }
  .header-right-side {
    margin-left: 0;
    width: 100%;
    display:none;
  }
  .header-right-side > div {
    width: 100%;
    padding:0;
  }
}


/* Landing Page Header */

.landing-page-header {
  background: #000;
  padding: 24px 0;
}
.lp-header-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.landing-page-header .content-wrapper {
  padding: 0 20px;
}
.lp-header-logo {
  width: 198px;
}
.lp-header-logo * {
  width: 100%;
  display: inline-block;
}
.lp-header-logo img.hs-image-widget {
  width: 100% !important;
}
.landing-page-navigation {
  position: fixed;
  width: 30vw;
  height: 100vh;
  background: #000;
  z-index: 2;
  top: 0;
  padding: 40px 100px;
  left:-30vw;
  opacity:0;
  transition:0.5s ease all;
  visibility:hidden;
  min-width:350px;
}
a.lp-close {
  width: 20px;
  display: inline-block;
  margin-bottom: 50px;
}
a.lp-close img {
  width: 100%;
}
.lp-navigation-wrapper ul {
  display: inline-block !important;
}
.lp-navigation-wrapper ul li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 15px 0;
  display: inline-block;
}

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

.landing-page-navigation.active {
  left: 0;
  opacity: 1;
  visibility:visible;
}
.lp-header-call a:hover {
  opacity: 0.65;
}
.custom-menu-primary  .mobile-menu{
  display:none;
}

.child-trigger{
  display:none;
}
html[lang="ar"] .custom-menu-primary {
  padding-left: 0;
}
/* li.hs-menu-item.hs-menu-depth-4.hs-item-has-children ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-5 a {
cursor: context-menu;
} 
li.hs-menu-item.hs-menu-depth-4.hs-item-has-children.active-branch ul.hs-menu-children-wrapper.active-branch li a {
cursor: pointer;
}
li.hs-menu-item.hs-menu-depth-4.hs-item-has-children ul.hs-menu-children-wrapper li.hs-menu-item.hs-menu-depth-5 a:hover {
color:#000;
}
*/


.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li svg {
  height: 25px;
  width: 25px;
  float: left;
  margin-right: 11px;
  margin-top: 12px;
}
.custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper svg * {
  fill: transparent;
}

@media(max-width:1500px){
  .custom-menu-primary .hs-menu-wrapper>ul>li.Howwe.hs-item-has-children>ul.hs-menu-children-wrapper {
    min-width: 805px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.Howwe.hs-item-has-children>ul.hs-menu-children-wrapper>li.hs-item-has-children>a:before {
    right: 5px;
  }
  .custom-menu-primary{
    padding-bottom:2px;
  }
}

@media(max-width:1200px){
  .custom-menu-primary {
    margin-right: auto;
    margin-left: auto;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding: 0 6px;
  }
}

@media (min-width: 992px) and (max-width: 1350px) {
  body .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > a {
    font-size: 14px;
    white-space: normal;
    line-height: normal;
  }
  body .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>a svg {
    height: 21px;
    top: 0px;
    width: 21px;
    margin: 0;
  }
  body .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li.hs-item-has-children>a:before {
    top: 2px;
  }
}

@media (min-width: 992px) and (max-width: 1080px) {
  header.header .header-left-side {
    width: calc(100% - 170px);
  }
  body .header-right-links ul li a {
    padding-left: 17px !important;
    padding-right: 17px !important;
    font-size: 12px;
  }
  .custom-menu-primary a {
    font-size: 12px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper a {
    white-space: normal;
    position: relative;
    font-size: 12px;
    padding-left: 28px;
    line-height: normal;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper a svg {
    left: 0;
    margin: 0;
    position: absolute;
    top: 2px;
    width: 18px;
    height: 18px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li.hs-item-has-children>a:before {
    top: 3px;
    right: 8px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li:hover>a:after{
    left: -10px;
    top: 1px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>a:after {
    top: 1px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul {
    top: 66px;
    padding-top: 17px;
    padding-bottom: 20px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > ul > li > a {
    padding-left: 10px;
    line-height: normal;
    padding-right: 10px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li>ul>li>a{
    font-size:12px;
  }
  body .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper > li > a {
    font-size: 13px;
    white-space: normal;
    line-height: normal;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children:after {
    width: 137px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children.AboutUs:after {
    width: 115px;
  }
}



@media (max-width: 991px) {
  body.menu-open .custom-logo .dark-logo {
    display: block;
  }
  body.menu-open .custom-logo .white-logo {
    display: none;
  }
  .custom-logo {
    position: relative;
    z-index: 8;
  }
  .has-banner .header-nav__trigger span, .has-banner .header-nav__trigger span:after, .has-banner .header-nav__trigger span:before {
    background: #fff;
  }  
  .has-banner .header-nav__trigger.is-open span:after,
  .has-banner .header-nav__trigger.is-open span:before{
    background: #000;
  }
  .custom-menu-primary .hs-menu-wrapper a:hover {
    color: #9395d3;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
    position: static;
    opacity: 1;
    visibility: visible;
    display:none;
  }
  .menu-open .custom-menu-primary .hs-menu-wrapper>ul:before {    
    background-repeat: repeat-x;
    background-size: cover;
    content: "";
    height: 112px;
    left: 0;
    position: fixed;
    right: 0;
    top: -30px;
    background: #fff;
    width: 100%;
    z-index: 1;
    border-bottom: 1px solid #F2F5F7;
  }
  .custom-menu-primary .hs-menu-wrapper>ul {
    position: relative;
    overflow: hidden;
    padding-top: 98px;  
  }
  .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: 90px;
    z-index: 9;
    left: auto;
    right: 0;
  }
  .child-trigger svg {
    height: 10px;
    transition: all .3s ease;
    width: 10px;
    position: absolute;
    right: 23px;
    top: 13px;
  }
  .child-trigger.is-open svg {
    transform: rotate(90deg);
    fill: #9395D3;
  }
  .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 > li {
    margin: 10px 0;
    padding-left: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul >li > ul > li {
    margin: 16px 0;
    padding: 18px 16px 4px;
    border-top: 1px solid rgba(182,183,207,.4);
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper {
    display:none;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper .hs-menu-children-wrapper li a {
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper > ul >li > ul > li li {
    padding: 7px 16px;
    margin:0 !important;
  }
  .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;
  }
  body .header-right-side,
  .custom-menu-primary {
    display: none;
  }
  .header-nav__trigger{
    display:block;
    cursor:pointer;
    top:20px;
  }
  .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: 0.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:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
  .custom-menu-primary {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    padding-left:0;
    padding-right:0;
    overflow-y: auto !important;
    max-height: 100vh;
  }
  .mobile-logo img {
    width: 150px !important;
    margin: 0px auto;
    display: block;
  }
  .mobile-logo {
    padding: 20px 0px;
  }
  .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 .hs-menu-wrapper > ul > li > a {
    font-size: 15px;
    display:block;
    text-transform: uppercase;
    padding: 15px;
  }
  .custom-menu-primary .hs-menu-wrapper > ul > li {
    padding:0;
  }
  .custom-menu-primary .mobile-menu .header-right-side ul a svg,
  .custom-menu-primary .mobile-menu .header-right-side ul a svg path {
    width: 17px;
    height: 20px;
    fill: #000;
  }
  .custom-menu-primary .mobile-menu .header-right-side {
    display: block;    
    border-bottom: 1px solid rgba(182,183,207,.4);
  }
  .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 {
    padding: 19px 13px 15px;
    width: 50%;
    border-right: 1px solid rgba(182,183,207,.4);
    text-align: center;
  }
  .custom-menu-primary .mobile-menu .header-right-side .header-right-links ul li svg {
    width: 20px;
    height: 18px;
  }
  .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;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li {
    border:0;
    margin: 0;
    padding: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>a > svg {
    display: none;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a,
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li>a {
    color: #02081E;
    border-radius: 8px;
    padding: 17px 14px !important;
    display: block !important;
    font-size: 16px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li {
    padding: 0 15px 0 !important;
  }
  .custom-menu-primary .header-right-links ul {
    list-style: none;
    margin: 0;
    padding: 0 10px;
  }
  .custom-menu-primary .header-right-side {
    display: block;
    width: 100%;
    justify-content: center;
    border-top: 1px solid #F2F5F7;
    padding: 16px 0px;
  }
  .custom-menu-primary .header-right-side li {
    width: 100%;
    margin: 0;
  }
  .custom-menu-primary .header-right-side li a {
    width: 100%;
    display: block;
    margin: 0;
  }
  .has-banner header.header.scroll .custom-menu-primary .header-right-side a,
  .custom-menu-primary .header-right-side li a:hover {
    color: #000;
  }
  .header-right-side.mobile-show {
    display: block;
    position: absolute;
    right: 36px;
    top: 36px;
    left: auto;
    width: auto;
  }
  body.menu-open .header-right-side.mobile-show {
    z-index: 99;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li svg{
    left: 13px;
    margin: 0;
    position: absolute;
    top: 13px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.Howwe.hs-item-has-children>ul.hs-menu-children-wrapper{
    min-width:auto;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper > li > a {
    padding-left: 30px !important;
    position: relative;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li .child-trigger svg {
    position: absolute;
    right: 0;
    left: auto;
    fill: #000;
    z-index: 9;
    height: 10px;
    position: absolute;
    right: 23px;
    top: 13px;
    transition: all .3s ease;
    width: 10px;
  }
  .custom-menu-primary .hs-menu-wrapper>ul>li.hs-item-has-children ul .child-trigger svg * {
    fill: #000;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper ul {
    padding-left: 22px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper ul li > a:before {
    content: "-";
    margin-right: 11px;
  }
  .custom-menu-primary .hs-menu-wrapper.flyouts .hs-menu-children-wrapper>li>ul>li>a, 
  .custom-menu-primary .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .header-right-side>div {
    padding-top: 0;
    margin-top: 0;
  }
  .custom-menu-primary .hs-menu-wrapper>ul {
    padding-top: 100px;  
  }
}
/* Menu and simple menu */

.container-fluid.banner-area .dnd-section {
  padding: 0 !important;
}
.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%;
}

/* 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;
}
.body-wrapper {
  position: relative;
  overflow-x: hidden;
}
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
  z-index:99;
}

.cursor-dot {  
  width: 8px;
  height: 8px;
  background-color: #3850A3 ;
}

.cursor-dot-outline {
  width: 20px;
  height:20px;
  background-color: rgba(0, 161, 218,0.3);
}
.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;
}
/* .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: 80px 0 20px;
}
footer.footer .footer-logo {
  width: 30%;
  padding-right:20px;
}
footer.footer .footer-right {
  width: 70%;
}
footer.footer .content-wrapper {
  display: flex;
  max-width: 1100px;
}
.footer-logo img {
  max-width: 268px;
  margin-top: 0;
}
footer.footer .hs-menu-wrapper>ul>li>a {
  color: #fff;
  display: block;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 23px;
  text-decoration: none;
  display: inline-block;
  pointer-events: none;
}
footer.footer .hs-menu-wrapper > ul >li {
  width: 33.3333%;
  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>a {
  color: hsla(0,0%,100%,.7);
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 150%;
  margin-bottom: 12px;
  display: inline-block;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li>a:hover{
  color:#fff;
}
footer.footer .hs-menu-wrapper>ul>li>ul>li> ul {
  margin-bottom: 24px;
}
footer.footer .footer-right .hs-menu-wrapper {
  max-width: 673px;
  margin-left: auto;
}
footer.footer .footer-right .hs-menu-wrapper > ul {
  margin: 0 -50px 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 {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.70);
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0;
}
footer.footer .footer-logo p {
  margin: 0 0 9px;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left {
  margin-top: 0;
  max-width: 280px;
  padding: 10px 0;
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left p {
  color: rgba(255, 255, 255, 0.70);
}
footer.footer .footer-logo #hs_cos_wrapper_footer_left img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 14px;
}


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


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"] footer.footer .footer-right .hs-menu-wrapper>ul {
  padding-right: 0;
  margin: 0 0 0 -63px;
}
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 {
  border-top: 0;
  margin-top: 0;
  padding: 0;
}
footer.footer .copyrights .content-wrapper {
  border-top: 1px solid rgba(108,148,205,.2);
  color: #9fa3a6;
  display: flex;
  margin-top: 65px;
  max-width: 1100px;
  padding: 34px 20px 9px;
  text-align: center;
  justify-content: space-between;
}
footer.footer .copyrights p {
  margin: 0;
  color: rgba(255, 255, 255, 0.60);
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: left;
}
footer.footer .copyrights .content-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer.footer .copyrights .content-wrapper ul li {
  display: inline-block;
  margin-left: 17px;
  position: relative;
}

footer.footer .copyrights .content-wrapper ul li a {
  font-family: Lato,sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: hsla(0,0%,100%,.7);
}

footer.footer .copyrights .content-wrapper ul li a:hover {
  color: #fff;
}
footer.footer .copyrights .content-wrapper ul li:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 1px;
  height: 14px;
  left: -10px;
  top: 7px;
  opacity: 0.7;
}
footer.footer .copyrights .content-wrapper ul li:first-child:before {
  display: none;
}
footer.footer .hs-menu-wrapper>ul>li:nth-child(2) {
  padding-left: 49px;
}
footer.footer .hs-menu-wrapper>ul>li:nth-child(3) {
  padding-left: 61px;
}


@media(max-width:900px){
  footer.footer .content-wrapper {
    flex-wrap: wrap;
  }
  footer.footer .footer-right .hs-menu-wrapper>ul {
    margin: 0;
  }
  footer.footer .footer-logo,
  footer.footer .footer-right {
    width: 100%;
    padding-right:0;
  }
  footer.footer .footer-logo {
    margin-bottom: 40px;
  }
  footer.footer .footer-right .hs-menu-wrapper {
    max-width: 100%;
  }
  footer.footer .footer-logo #hs_cos_wrapper_footer_left {
    margin: 0px;
  }
  .footer-logo.mobile {
    display: block !important;
  }
  footer.footer .footer-logo.mobile {
    margin: 0;    
  }
}


/* @media(min-width:768px){
.cm-usecase-layout .products-section-three .cards-group .card-box.has-bg.col2 {
min-height: auto;
max-width: 415px;
margin-left: 20px;
margin-right: 20px;
}
} */

@media(max-width:767px){
  .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;
  }
  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:nth-child(3) {
    padding-left: 0;
  }
  footer.footer .copyrights .content-wrapper {
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer.footer .copyrights p{
    text-align:center;
  }
  footer.footer .hs-menu-wrapper>ul>li{
    margin-bottom:40px;
  }
}