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

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*, *: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 {
    padding: 0;
  }
}

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* 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;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* 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: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

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

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family:"Roboto", sans-serif!important;
  line-height: 1.4;
  word-break: break-word;
}
a, a:focus, a:hover {
  
font-family:"Roboto", sans-serif!important;
}
.header .dnd-section {
  padding: 0;
}
p {
  font-family:"Roboto", sans-serif!important;
}

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

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
  .header__row-2 {
     justify-content: space-between !important;
  }
}

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

/* 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 {
  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, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.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: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.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 0.3s;
}

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

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

/* Navigation */

#nav-toggle {
  display: none;
}

/* 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;
   
    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;
  }
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

@media (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%;
}

body {
  font-family:"Roboto", sans-serif!important;
  line-height: 1.4;
  word-break: break-word;
}
a, a:focus, a:hover {
  
font-family:"Roboto", sans-serif!important;
}
p {
  font-family:"Roboto", sans-serif!important;
}

.hs-content-id-123207624246 .sectionTitle h2 {
   font-weight:600!important;
}
.navigation-primary ul.level-1>li:first-child a {
    color: #374151 !important;
    display: block !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    height: unset !important;
    line-height: 22px !important;
    padding: 10px 5px !important;
    position: unset !important;
    transition: all .4s ease-in-out !important;
    width: unset !important;
}
.navigation-primary ul.level-1>li:first-child:before{
   display:none;
}
.header__search--toggle {
   display:none;
}
.submenu.level-2 .menu-item .menu-link {
    background-color: #fff;
    color: #2d3137 !important;
    display: block;
    font-size: 14px !important;
    line-height: 18px !important;
    padding: 12px 20px !important;
    transition: background-color .3s;
}



*, 
:after, 
:before {
  box-sizing: border-box;
}

/* normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

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

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

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

a {
  background-color: transparent;
}

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

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

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

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden],
template {
  display: none;
}

.row-fluid {
  width: 100%;
  *zoom: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-fluid {
  *zoom: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .row-fluid .span12 {
    width: 100%;
    *width: 99.94680851063829%;
  }

  .row-fluid .span11 {
    width: 91.45299145300001%;
    *width: 91.3997999636383%;
  }

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

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

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

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

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

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

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

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

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

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

.clearfix {
  *zoom: 1;
}

.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.hidden,
.invisible {
  visibility: hidden;
}

.hidden {
  display: none;
}

.hidden-desktop,
.visible-phone,
.visible-tablet {
  display: none!important;
}

@media (max-width: 767px) {
  .visible-phone {
    display: inherit!important;
  }

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

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

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

@media (min-width: 768px) and (max-width: 1139px) {
  .visible-tablet {
    display: inherit!important;
  }

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

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

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

.content-wrapper {
  margin: 0 auto;
  padding: 0 20px;
}

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

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

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

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



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




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


.header.sticky {
  background-color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
}

#toTop {
  align-items: center;
  bottom: 14px !important;
  color: #fff;
  cursor: pointer;
  display: none;
  flex-direction: column;
  font-size: 20px;
  height: 45px;
  line-height: 32px;
  position: fixed;
  right: 18px;
  text-align: center;
  width: 45px;
  z-index: 9;
 
}

@media(max-width: 992px) {
  #toTop {
    right: 12px!important;
    bottom: 15px!important;

  }
}

/* #toTop img {
  height: 18px;
} */

.headerTop {
  background: #f6f6f6;
  padding: 8px 0;
}

.headerTop .submenu.level-1 {
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.headerTop .submenu.level-1 li {
  margin-left: 25px;
}

.headerTop .submenu.level-1 li a {
  color: #0d1d32;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  margin: 0;
}

.headerTop .content-wrapper {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.header .social-links {
  margin-left: 30px;
}

.header .social-links__link {
  display: flex;
}

.header .social-links__icon {
  background-color: transparent;
  border: 1px solid #0d1d32;
  border-radius: 0;
  border-radius: 50%;
  display: inline-flex;
  height: 25px;
  margin: 0 5px;
  position: relative;
  width: 25px;
}

.header .social-links__icon svg {
  height: 12px;
  fill: #0d1d32;
}

.header .social-links__icon:hover,
.headerTop .social-links__icon:focus {
  background-color: transparent;
  border-color: #ec8f32;
}

.header .social-links__icon:hover svg,
.headerTop .social-links__icon:focus svg {
  fill: #ec8f32;
}

.socialSectionMobile {
  display: none;
}

.header {
  background: #fff!important;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  position: relative;
}

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

.header__container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 15px 2px!important;
}

@media(max-width: 991.92px) {
  .header__container {
    padding: 15px!important;
  }
}

.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header__column {
  position: relative;
}

.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;
  overflow: hidden;
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

#nav-toggle {
  display: none;
}

.header__search {
  display: none;
  width: 100%;
}

.header__search.open {
  display: block;
  position: absolute;
  right: 40px;
  top: 0;
  z-index: 2;
}

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

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

.header__search--toggle.hide {
  display: none;
}

.header__search--toggle:after {
  display: none;
  font-size: 26px;
  font-weight: 600;
  left: 40px;
  position: absolute;
  text-transform: uppercase;
  top: -10px;
}

.header__search--toggle.open:after {
  display: block;
  word-break: normal;
}

.header__search--toggle {
  background-image: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/search.svg);
  cursor: pointer;
}

.header__close--toggle,
.header__search--toggle {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 13px;
  border: 1px solid #0d1d32;
  border-radius: 50%;
  height: 25px;
  margin-left: 30px;
  width: 25px;
}

.header__close--toggle {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIxOSIgdmlld0JveD0iMCAwIDI0IDE5Ij48dGl0bGU+Y2xvc2U8L3RpdGxlPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgLTEpIj48cmVjdCB3aWR0aD0iMjEiIGhlaWdodD0iMSIgeD0iLS41IiB5PSIxMC41IiByeD0iLjUiIHRyYW5zZm9ybT0icm90YXRlKC00NSAxMCAxMC41KSIvPjxyZWN0IHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiB4PSItLjUiIHk9IjEwLjUiIHJ4PSIuNSIgdHJhbnNmb3JtPSJyb3RhdGUoNDUgMTAgMTAuNSkiLz48L2c+PC9zdmc+);
  display: none;
  z-index: 2;
}

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

@media (max-width: 992px) {
  .sectionPadding {
    padding: 60px 20px!important;
  }

  .header__close--toggle.show {
    position: fixed;
    right: 20px;
    top: 25px!important;
  }

  .header__search.open {
    right: 55px;
    top: 48px;
  }

  .header__search {
    width: auto;
  }

  .headerTop .socialSection {
    display: none;
  }

  .socialSectionMobile {
    display: block;
    margin: 70px 0!important;
  }

  .header__row-2 {
    flex-direction: row-reverse;
  }

  .header__logo {
    max-width: 200px;
  }

  .header__search--toggle {
    margin: 0 15px 0 0;
  }

  .header__close--toggle {
    background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/close.svg) #ec8f32;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 14px;
  }

  .header__navigation {
    background-color: rgba(0,0,0,.9)!important;
    display: flex;
    flex-direction: column;
    height: 85vh;
    justify-content: space-between;
    left: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: .3s;
    width: 100%;
    z-index: 2;
  }

  .header__navigation.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .header__column {
    position: inherit;
  }

  .header__close--toggle,
  .header__navigation--toggle {
    cursor: pointer;
    position: relative;
  }

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

  .header__navigation--toggle.hide {
    display: none;
  }

  .header__navigation--toggle:after {
    display: none;
    font-size: 26px;
    font-weight: 600;
    left: 40px;
    position: absolute;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/menu_bars.svg) #ec8f32;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 14px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
  }

  .header__close--toggle {
    height: 30px;
    width: 30px;
  }

  .header__language-switcher--toggle {
    background-image: url(https://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 .social-links {
    margin: 0;
  }

  .header .social-links__icon {
    background: #000;
    border: 1px solid #fff;
    height: 45px;
    margin: 0 10px;
    width: 45px;
  }

  .header .social-links__icon svg {
    height: 18px;
    fill: #fff;
  }
}

.header__search .hs-search-field__input {
  background-color: #fff;
  background-image: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/search.svg);
  background-position: bottom 13px right 15px;
  background-repeat: no-repeat;
  border: 0!important;
  border-radius: 0;
  border-radius: 10px;
  box-shadow: 0 3px 25px rgba(0,0,0,.1);
  color: #747474;
  font-size: 16px;
  font-weight: 300;
  height: 40px;
  outline: 0!important;
  padding: 0 15px;
}

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

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

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #fff;
  border: 0;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 10px rgba(0,0,0,.06);
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #e9e9e9;
}

.header__search .hs-search-field__suggestions li a {
  background-color: #fff;
  color: #2d3137!important;
  display: block;
  font-size: 14px;
  line-height: 18px;
  padding: 12px 15px;
  text-decoration: none;
  transition: background-color .3s;
}

.header__search .hs-search-field__suggestions li:hover a {
  background-color: #f6f6f6!important;
  color: #d68730!important;
  cursor: pointer;
  transition: background-color .3s;
}

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

@media screen and (max-width: 568px) {
  .header__search {
    width: 80%;
  }

  .header__search.open {
    left: 15px;
  }
}

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

.footTop {
  background: #ec8f32;
  padding: 25px 0;
}

.footTop a.social-links__link {
  align-items: center;
  display: flex;
}

.footTop .social-links__icon {
  background-color: transparent;
  border: 1px solid #fff;
  transition: all .3s ease-in-out;
}

.footTop .social-links__icon:hover {
  background: #fff;
}

.footTop .social-links__icon:hover svg {
  fill: #ec8f32;
}

.footTop ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footTop .whiteBtn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  padding: 13px 45px;
  text-align: center;
  transition: all .3s ease-in-out;
}

.footTop .whiteBtn:hover {
  background: #fff;
  color: #ec8f32;
}

.footTop .center {
  justify-content: center!important;
}

.footer {
  background: #000!important;
}

.footerTop {
  padding: 50px 30px;
}

.footerMenu .submenu.level-1 {
  column-count: 3;
  display: block;
  margin: 0;
  padding: 0;
  white-space: normal;
}

.footerMenu .submenu.level-1>li {
  display: block;
  margin: 0 0 12px;
}

.footerMenu .submenu.level-1>li a {
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.footerMenu .submenu.level-1>li a.active-item {
  color: #d68730!important;
}

.footerBottom {
  padding: 15px;
}

.footerBottom p {
  text-align: center;
}

.footerBottom a,
.footerBottom p {
  color: #fff!important;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

@media screen and (max-width: 568px) {
  .footerBottom a {
    display: block;
  }

  .footTop ul {
    flex-direction: column;
  }

  .footTop .whiteBtn {
    margin-bottom: 20px;
  }

  .footerMenu .submenu.level-1 {
    column-count: 1;
    text-align: center;
  }

  .footerBottom {
    text-align: center;
  }
}

.v_footer_new .footerMenu .submenu.level-1>li.has-submenu .submenu.level-2 {
  left: 100%;
  margin-left: 68px;
  opacity: 1!important;
}

@media (max-width: 1367px) {
  .v_footer_new .footerMenu .submenu.level-1>li.has-submenu .submenu.level-2 {
    margin-left: 70px;
  }
}

@media (max-width: 1024px) {
  .v_footer_new .footerMenu .submenu.level-1>li.has-submenu .submenu.level-2 {
    margin-left: 70px;
  }
}

@media (max-width: 991.98px) {
  .v_footer_new .footerMenu .submenu.level-1>li.has-submenu .submenu.level-2 {
    margin-left: unset;
  }
}

@media (max-width: 767px) {
  .v_footer_new .footerMenu .submenu.level-1>li.has-submenu .submenu.level-2 {
    margin-left: unset;
  }
}

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

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

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

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

/* body {
  font-family: DM Sans, sans-serif!important;
} */

a {
  color: #318eca;
  text-decoration: none!important;
}

p {
  color: #2d3137;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  color: #2d3137;
  font-size: 16px;
  line-height: 24px;
  list-style: none;
}

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

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

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

.sectionPadding {
  padding: 40px 0;
}

.sectionPaddingTop0 {
  padding-top: 0!important;
}

.sectionPadding.sectionPaddingBtm0 {
  padding-bottom: 0!important;
}

.orangeLink {
  color: #ec8f32;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition: all .3s ease-in-out;
}

.jobDetail ul {
  padding-left: 20px;
}

.lightGrayBg {
  background: #f7f7f7;
}

.homePage .sectionTitle {
  max-width: 500px;
}

.sectionTitle {
  margin: 0 auto 40px;
  text-align: center;
}

.sectionTitle span {
  color: #308dca;
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 20px;
  padding-bottom: 8px !important;
  position: relative;
  text-transform: uppercase;
}

.sectionTitle span:after {
  background: #ec8f32;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 1px;
  width: 52px;
}

.sectionTitle h1,
.sectionTitle h2 {
  color: #374151!important;
}

.sectionTitle h1,
.sectionTitle h2,
.sectionTitle p {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
  padding-top: 10px;
}
.sectionTitle h2 {
   padding-top: 0px !important;
}
.sectionTitle h1 {
   padding-top: 0px !important;
}
.sectionTitle p {
  color: #0d1d32;
}

.dispFlex {
  position: relative;
}

.socialwallIcon {
  box-shadow: inherit!important;
  position: absolute!important;
  right: 0;
  top: 0;
}

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

.titleSec {
  color: #374151!important;
  font-size: 30px;
  font-weight: 800;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 20px;
  text-align: center;
}

.titleSec span {
  font-size: 18px;
  line-height: 22px;
}

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

.sectionTitle.left span:after {
  margin-left: 0;
}

.applyNow {
  font-weight: 400;
  margin: 0;
  padding-left: 30px;
}

.desktopBtn {
  display: inline-block;
}

.mobBtn {
  display: none;
}

.desktopView {
  display: block;
}

.mobileView {
  display: none;
}

.homebanner {
  background: #ec8f32;
  margin-bottom: 60px;
}

.homebanner .content-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.homebanner .bannerImage {
  flex: 0 0 390px;
  margin-bottom: -50px;
  max-width: 100%;
}

.homebanner .bannerImage img {
  border-bottom-left-radius: 50px;
  box-shadow: 10px 15px 20px rgba(0,0,0,.28);
  max-width: 100%;
  width: 100%;
}

.homebanner .bannerContent {
  max-width: 53%;
  position: relative;
}

.homebanner .bannerContent .testimonialContent {
  position: relative;
}

.homebanner .bannerContent .testimonialContent:before {
  left: 0;
  top: -50px;
}

.homebanner .bannerContent .testimonialContent:after,
.homebanner .bannerContent .testimonialContent:before {
  background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/quote.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 36px;
  position: absolute;
  width: 43px;
}

.homebanner .bannerContent .testimonialContent:after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.homebanner .bannerContent .testimonialContent {
  color: #fff!important;
  font-size: 32px !important;
  font-weight: 400!important;
  line-height: 36px;
}

.homebanner .bannerContent .authorName {
  color: #fff!important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.35px;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
}

.homebanner .bannerContent .authorName span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
}

.innerbanner {
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
  padding: 30px 0;
}

.innerbanner .content-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.innerbanner .innerbannerText {
  max-width: 70%;
  position: relative;
  text-align: center;
}

.innerbanner .innerbannerText .testimonialContent {
  color: #fff!important;
  font-size: 32px!important;
  line-height: 40px;
  margin-bottom: 30px;
  padding: 0 50px;
  position: relative;
}

.innerbanner .innerbannerText .authorName {
  color: #fff!important;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.35px;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
}

.innerbanner .innerbannerText .authorName span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin-top: 5px;
  text-transform: uppercase;
}

.innerbanner .innerbannerText .testimonialContent:before {
  left: 0;
  top: -25px;
}

.innerbanner .innerbannerText .testimonialContent:after,
.innerbanner .innerbannerText .testimonialContent:before {
  background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/innerbanner_quote.svg) no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 36px;
  position: absolute;
  width: 43px;
}

.innerbanner .innerbannerText .testimonialContent:after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.tagLine p {
  font-weight: 800;
}

.tagLine h1,
.tagLine p {
  font-size: 36px;
  line-height: 45px;
  margin: 0;
  max-width: 890px;
}

.tagLine h1 {
  color: #0d1d32;
  font-weight: 700;
}

.homePage .aboutSection {
  margin-bottom: 0!important;
}

.servicesBox {
  background: #fff;
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  display: block;
  margin-top: 35px;
  padding: 60px 30px 30px;
  position: relative;
  width: 100%;
}

.servicesBox .icon {
  align-items: center;
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
  border-radius: 20px;
  display: flex;
  padding: 15px;
  position: absolute;
  top: -35px;
}

.servicesBox .icon img {
  align-items: center;
  display: flex;
  height: 50px;
  object-fit: contain;
  object-position: center;
  width: 50px;
}

.servicesBox .serviceTitle {
  color: #374151;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 10px;
}

.servicesBox a {
  color: #ec8f32;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition: all .3s ease-in-out;
}

.servicesBox a:hover {
  color: #000;
}

.servicesBox .link {
  color: #ec8f32;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  transition: all .3s ease-in-out;
}

.servicesBox:hover .link {
  color: #2d3137!important;
}

.awardsListing {
  display: flex;
  flex-wrap: wrap;
}

.awardsListing li {
  display: flex;
  flex: 0 0 25%;
  margin-bottom: 30px;
  max-width: 25%;
}

.awardsListing li .awardBox {
  background: #fff;
  border-radius: 30px;
  box-shadow: 20px 15px 20px #ececec;
  margin: 0 15px;
  overflow: hidden;
  width: 100%;
}

.awardsListing li .awardBox img {
  align-items: center;
  background: #f7f7f7;
  display: flex;
  height: 170px;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.awardsListing li .awardBox .awardDesc {
  padding: 20px;
}

.awardsListing li .awardBox p {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}

.awardsListing li .awardBox p.awardTitle {
  font-weight: 700;
  margin-bottom: 5px;
}

.aboutSection {
  align-items: center;
  display: flex;
  margin-bottom: 80px;
  min-height: 335px;
}

.aboutSection .title {
  color: #308dca;
  display: block;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 20px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  position: relative;
  text-transform: uppercase;
}

.aboutSection .title:after {
  background: #ec8f32;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  width: 52px;
  z-index: 1;
}

.aboutSection .tagLine {
  color: #374151!important;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 15px;
  padding-right: 45px;
}

.aboutSection .row-fluid {
  align-items: center;
  display: flex;
}

.overviewSection {
  background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/images/aboutus.jpg) no-repeat;
  background-size: cover;
  border-bottom-left-radius: 50px;
  box-shadow: 0 20px 25px rgba(0,0,0,.16);
  padding: 60px 30px;
}

.overviewSection p {
  font-size: 16px;
  line-height: 24px;
}

.overviewSection p:last-child {
  margin-bottom: 0;
}

.aboutDesc {
  margin-bottom: 80px;
}

.aboutLogo {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
}

.blueBox {
  background: #318eca;
  border-bottom-left-radius: 20px;
  padding: 40px 30px;
}

.blueBox p {
  color: #fff!important;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  max-width: 100%;
}

.blueBox a,
.blueBox a:hover {
  color: #fff;
}

.blueBox h4 {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}

.aboutPage .blueBox p {
  max-width: 85%;
}

.logoBox {
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.16);
  display: flex;
  flex: 0 0 205px;
  max-width: 100%;
  padding: 0;
}

.logoBox,
.logoBox img {
  border-bottom-left-radius: 20px;
}

.absPosition {
  position: absolute;
  right: 0;
}

.latestBlogListing {
  display: flex;
  flex-wrap: wrap;
}

.latestBlogListing li {
  flex: 0 0 50%;
  margin-bottom: 20px;
  max-width: 50%;
}

.latestBlogListing .blogBox {
  background: #fff;
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  height: 100%;
  padding: 30px;
}

.latestBlogListing .blogBox .blogName {
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 15px;
}

.latestBlogListing .blogBox .date {
  color: #979ca4;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 10px;
}

.latestBlogListing .blogBox .blogShortDesc {
  min-height: 65px;
}

.latestBlogListing .blogBox .blogShortDesc strong {
  font-weight: 400!important;
}

@media (max-width: 1024.99px) {
  .latestBlogListing .blogBox .blogShortDesc p {
    line-height: 1.5;
  }
}

.latestNewsListing {
  display: flex;
  flex-wrap: wrap;
}

.latestNewsListing li {
  flex: 0 0 33.3%;
  margin-bottom: 20px;
  max-width: 33.3%;
}

.latestNewsListing .newsBox {
  background: #fff;
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #ececec;
  height: 100%;
  margin-bottom: 25px;
  padding: 20px;
}

.latestNewsListing .newsBox .newsName {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 15px;
  min-height: 72px;
}

.latestNewsListing .newsBox .date {
  color: #979ca4;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 10px;
}

.topBar {
  background: transparent radial-gradient(closest-side at 14% 57%,#f9c921 0,#f8a518 200%) 0 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
}

.topBar ul {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.topBar ul li {
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  margin: 0 10px;
  padding: 10px;
  white-space: nowrap;
}

.topBar::-webkit-scrollbar {
  -webkit-appearance: none;
}

.topBar::-webkit-scrollbar:horizontal {
  height: 5px;
}

.topBar::-webkit-scrollbar-thumb {
  background-color: #ec8f32!important;
  border-radius: 100px;
}

.topBar::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 100px;
}

.servicesSec {
  padding-bottom: 40px;
}

.serviceList {
  display: flex;
  flex-wrap: wrap;
}

.serviceList li {
  display: flex;
  flex: 0 0 33.3%;
  margin-bottom: 40px;
  max-width: 33.3%;
  padding-top: 35px;
}

.serviceList li .serviceBox {
  background: #fff;
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  margin: 0 15px;
  padding: 70px 30px 30px;
  position: relative;
  width: 100%;
}

.serviceList li .serviceBox .icon {
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
  border-radius: 20px;
  display: flex;
  padding: 10px;
  position: absolute;
  top: -35px;
}

.serviceList li .serviceBox .icon img {
  height: 60px;
  object-fit: contain;
  object-position: center;
  width: 60px;
}

.serviceList li .serviceBox .serviceTitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.teamList li {
  margin-bottom: 40px;
}

.teamList li:last-child {
  margin: 0;
}

.teamList li .teamName {
  color: #0d1d32;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.teamList li .teamName span {
  color: #318eca;
  display: block;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
}

.teamList li .teamBox {
  box-shadow: 0 15px 20px #ececec;
  min-height: 260px;
  padding: 40px 0 40px 30px;
}

.teamList li .teamBox .teamPhoto {
  align-items: center;
  border-bottom-left-radius: 20px;
  box-shadow: 0 15px 20px #ececec;
  display: block;
  display: flex;
  float: right;
  margin-bottom: 30px;
  margin-left: 40px;
  margin-top: -112px;
  padding: 0;
}

.teamList li .teamBox .teamPhoto img {
  border-bottom-left-radius: 20px;
}

.teamList li .teamBox .description {
  padding-right: 30px;
}

.teamList li .teamBox .description p:last-child {
  margin: 0;
}

.contactSec {
  padding-top: 0!important;
  text-align: center;
}

.contactUs .compName {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}

.contactUs p {
  color: #8a8a8a;
  margin: 0 auto;
  max-width: 480px;
}

.contactUs .contactInfo {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
  max-width: 750px;
}

.contactUs .contactInfo li a {
  color: #318eca;
  font-weight: 600;
}

.contactUs .contactInfo li a:hover {
  color: #ec8f32;
}

.contactUs .contactInfo li span i {
  margin-right: 12px;
}

.locationList {
  display: flex;
  flex-wrap: wrap;
}

.locationList>li {
  flex: 0 0 33.3%;
  margin-bottom: 50px;
  max-width: 33.3%;
  padding: 0 15px;
}

.locationList>li .locBox .address {
  color: #8a8a8a;
  min-height: 120px;
}

.locationList>li .locBox .h2 {
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 20px;
}

.locationList>li .locBox h2 {
  color: #8a8a8a;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
}

.locationList>li .locBox p {
  color: #8a8a8a;
}

.locationList li ul li a {
  color: #318eca;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 5px;
}

.locationList li ul li a:hover {
  color: #ec8f32;
}

.locationList li ul li a i {
  color: #318eca;
  margin-right: 10px;
}

.whatwedoListing {
  display: flex;
  flex-wrap: wrap;
}

.whatwedoListing li {
  display: flex;
  flex: 0 0 33.3%;
  margin-bottom: 40px;
  max-width: 33.3%;
  padding-top: 35px;
}

.whatwedoListing li .servicesBox {
  background: #fff;
  border-radius: 20px;
  margin: 0 15px;
  padding: 70px 30px 30px;
  position: relative;
  width: 100%;
}

.whatwedoListing li .servicesBox .serviceTitle {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

.whatwedoListing li .servicesBox .serviceDesc {
  min-height: 120px;
}

.keyservices {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-left: 0!important;
}

.keyservices li {
  flex: 0 0 20%;
  list-style: none!important;
  max-width: 20%;
  padding: 0 25px;
  text-align: center;
}

.keyservices li img {
  height: 100px;
  width: 100%;
}

.keyservices li a {
  color: #2d3137;
  cursor: inherit;
  font-weight: 700;
  margin: 0;
}

.keyservices li a.link {
  cursor: pointer;
}

.leadershipSection {
  margin-bottom: 80px;
  margin-top: 50px;
}

.leadershipSection .leaderName {
  color: #0d1d32;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}

.leadershipSection .leaderName span {
  color: #318eca;
  display: block;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
}

.leaderBox {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
}

.leaderBox .fullWidth {
  width: 100%;
}

.leaderBox .blueBox {
  background: #318eca;
  border-bottom-left-radius: 20px;
  box-shadow: 0 5px 20px rgba(49,142,202,.38);
  padding: 40px 45px 40px 30px;
}

.leaderBox .blueBox.whiteBox {
  background: #fff;
  box-shadow: 0 5px 20px #ececec;
}

.leaderBox .blueBox.whiteBox p {
  color: #000;
}

.leaderBox .blueBox p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.leaderBox .blueBox a,
.leaderBox .blueBox a:hover {
  color: #fff;
}

.leaderBox .blueBox h4 {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
}

.leaderBox .blueBox p {
  max-width: 100%;
}

.leaderBox .logoBox {
  align-items: center;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.16);
  display: flex;
  flex: 0 0 225px;
  margin-left: -15px;
  max-width: 100%;
  padding: 0;
}

.leaderBox .logoBox,
.leaderBox .logoBox img {
  border-bottom-left-radius: 20px;
}

.serviceDetail ol,
.serviceDetail ul {
  padding-left: unset!important;
}

.serviceDetail ol li,
.serviceDetail ul li {
  color: #2d3137;
  font-size: 16px;
  line-height: 24px;
  list-style: initial;
  margin-bottom: 10px;
  margin-left: 20px;
}

.relatedExpertise ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: unset!important;
}

.relatedExpertise ul li {
  flex: 0 0 33.3%;
  max-width: 33.3%;
  padding-top: 35px;
}

.relatedExpertise ul li .servicesBox {
  background: #fff;
  height: 309.6px;
  padding: 70px 30px 30px;
  position: relative;
  width: auto;
}

.relatedExpertise ul li .servicesBox .serviceTitle {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
}

.relatedExpertise ul li .servicesBox .serviceDesc {
  min-height: 120px;
}

.videoBox .hs-embed-wrapper {
  margin: unset!important;
  max-height: 326px;
  max-width: 582px!important;
}

.leadershipListing {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}

.leadershipListing li {
  flex: 0 0 25%;
  margin-bottom: 60px;
  max-width: 25%;
}

.leadershipListing li .leadershipBox {
  background: #fff;
  margin: 0 30px;
  position: relative;
}

.leadershipListing li .leadershipBox .leaderImage {
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.16);
  display: flex;
}

.leadershipListing li .leadershipBox .leaderImage img {
  width: 100%;
}

.leadershipListing li .leadershipBox .leaderLink {
  align-items: center;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 0 #f78b1e!important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: -45px auto 0;
  max-width: 80%;
  min-height: 80px;
  padding: 10px;
  position: relative;
  text-align: center;
  transition: all .3s ease-in-out;
}

.leadershipListing li .leadershipBox .leaderLink:hover {
  background: #fff;
  box-shadow: 0 0 32px rgba(0,0,0,.14)!important;
  transition: all .6s;
}

.leadershipListing li .leadershipBox .leaderLink:hover .designation,
.leadershipListing li .leadershipBox .leaderLink:hover .leaderName {
  color: #374151!important;
}

.leadershipListing li .leadershipBox .leaderLink .leaderName {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  transition: all .4s ease-in-out;
}

.leadershipListing li .leadershipBox .leaderLink .designation {
  color: #308dca;
  display: block;
  font-size: 14px;
  font-style: italic;
  line-height: 16px;
  transition: all .4s ease-in-out;
}

.leaderInfo .teamName {
  color: #0d1d32;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 20px;
}

.leaderInfo .teamName span {
  color: #318eca;
  display: block;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 22px;
}

.leaderInfo .teamBox {
  box-shadow: 20px 15px 20px #ececec;
  min-height: 260px;
  padding: 40px 68px;
}

.leaderInfo .teamBox .teamPhoto {
  align-items: center;
  background: #318eca;
  border-bottom-right-radius: 20px;
  display: block;
  display: flex;
  float: left;
  margin-bottom: 30px;
  margin-right: 40px;
  margin-top: -40px;
  padding: 0;
}

.leaderInfo .teamBox .teamPhoto img {
  border-bottom-right-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,.16);
}

.leaderInfo .teamBox .description {
  padding-right: 30px;
}

.leaderInfo .teamBox .description p:last-child {
  margin: 0;
}

.relatedLeaders .leadershipListing li {
  margin-bottom: 0;
}

.subtitle {
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}

.awardsList li,
.subtitle {
  margin-bottom: 30px;
}

.awardsList li .awardBox {
  align-items: flex-start;
  background: #f7f7f7;
  border-radius: 20px;
  box-shadow: 20px 15px 20px #ececec;
  display: flex;
  padding: 20px;
}

.awardsList li .awardBox img {
  flex: 0 0 150px;
  margin-right: 20px;
  max-width: 150px;
}

.awardsList li .awardBox .awardDetail {
  padding-left: 0;
}

.awardsList li .awardBox .awardDetail p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.awardsList li .awardBox .awardDetail .awardTitle {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 10px;
}

.awardsList li .awardBox .awardDetail .awardTitle a {
  color: #494a52;
}

.awardsList li .awardBox .awardDetail .awardTitle a:hover {
  color: #308dca;
}

.awardsList li .awardBox .awardDetail .desc ul {
  margin: 0;
}

.awardsList li .awardBox .awardDetail .desc li {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding-left: 22px;
  position: relative;
}

.awardsList li .awardBox .awardDetail .desc li:before {
  background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/icons/orange_arrow.svg) no-repeat;
  content: "";
  display: inline-block;
  height: 12px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 15px;
}

.hs-tabs__item {
  display: none;
}

.hs-tabs__item--active {
  display: block;
}

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

.hs-tabs__nav {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  text-align: center;
}

.hs-tabs__nav li {
  display: inline-block;
}

.hs-tabs__navitem {
  border-bottom: none;
  border-radius: 50px;
  color: #0d1d32;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  padding: 10px 35px;
  text-decoration: none;
  transition: all .2s ease-in-out;
}

.hs-tabs__navitem:focus,
.hs-tabs__navitem:hover {
  background: #ec8f32;
  box-shadow: 10px 10px 15px rgba(236,143,50,.28);
  color: #fff!important;
}

.hs-tabs__navitem--active {
  background: #ec8f32;
  box-shadow: 10px 10px 15px rgba(236,143,50,.28);
  color: #fff;
}

.hs-tabs__navitem * {
  pointer-events: none;
}

.radioBtnHide {
  display: none;
}

.filterList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0;
}

.filterList li {
  display: inline-block;
  list-style: none;
  margin: 0 2px 8px;
}

.filterList li label {
  border-bottom: none;
  border-radius: 50px;
  color: #0d1d32;
  cursor: pointer;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  padding: 10px 20px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.filterList li.active label,
.filterList li:hover label {
  background: #ec8f32;
  box-shadow: 10px 10px 15px rgba(236,143,50,.28);
  color: #fff;
}

.newsListing {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  padding-left: 0;
}

.newsListing>li {
  display: flex;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}

.newsListing li .newsBox {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  margin: 0 15px 30px;
  overflow: hidden;
}

.newsListing li .newsBox .newsImage {
  width: 100%;
}

.newsListing li .newsBox>a {
  align-items: center;
  display: flex;
}

.newsListing li .newsBox .newsContent {
  padding: unset !important;
}

.newsListing li .newsBox .newsContent .newsDesc {
  min-height: 115px;
}

.newsListing li .newsBox .newsContent .newsDesc p {
  text-align: left!important;
}

.newsListing li .newsBox .newsContent .newsDesc p strong {
  font-weight: 400;
}

.newsListing li .newsBox .newsContent .newsName {
  color: #0d1d32;
  display: inline-block;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
  min-height: 90px;
  text-align: left;
}

.newsListing li .newsBox .newsContent h2 {
  margin: 0;
}

.newsDate {
  color: #447695;
  font-size: 14px;
  font-weight: 800;
  line-height: 16px;
  margin-bottom: 10px;
  text-align: left;
}

.newsListingPage .newsListing>li {
  display: flex;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}

.newsListingPage .newsListing li .newsBox .newsContent .newsName {
  min-height: 90px;
}

.circleArrows .slick-next:before {
  content: "\f105";
}

.circleArrows .slick-next:before,
.circleArrows .slick-prev:before {
  align-items: center;
  color: #000;
  display: flex;
  font-family: FontAwesome;
  font-size: 25px;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
}

.circleArrows .slick-prev:before {
  content: "\f104";
}

.circleArrows .slick-prev {
  left: -15px;
}

.circleArrows .slick-next {
  right: -15px;
}

.circleArrows .slick-next,
.circleArrows .slick-prev {
  background: hsla(0,0%,100%,.8)!important;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  height: 40px;
  margin: 0;
  width: 40px;
  z-index: 1;
}

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

.writToUsForm {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  padding: 30px;
}

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

.formBox form input[type=email],
.formBox form input[type=tel],
.formBox form input[type=text],
.formBox form textarea,
.formBox input[type=file],
.formBox input[type=number],
.formBox input[type=password],
.formBox select {
  background: #f7f7f7;
  border-radius: 20px;
  width: 100%!important;
}

.formBox .hs_recaptcha {
  margin-top: 15px;
}

.contactDetail h2 {
  color: #0d1d32;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.contactBox {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  margin-bottom: 40px;
  padding: 37px 30px;
}

.contactBox a {
  align-items: center;
  color: #0d1d32;
  display: flex;
  font-size: 18px;
  line-height: 30px;
}

.contactBox a span {
  align-items: center;
  background: #318eca;
  border-radius: 10px;
  display: flex;
  height: 30px;
  justify-content: center;
  margin-right: 10px;
  padding: 5px;
  width: 30px;
}

.contactBox.mgm0 {
  margin-bottom: 0!important;
}

.aluminiPage .row-number-3.dnd-row .dnd-module {
  align-items: flex-start!important;
}

.aluminiQuote {
  background: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/images/alumini_bg.jpg);
  background-size: cover;
  padding: 120px 0;
}

.quoteBox {
  margin: 0 auto;
  max-width: 80%;
  text-align: center;
}

.quoteBox p {
  color: #fff;
  color: #f2f4f8;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
  text-align: center;
}

.quoteBox .title {
  color: #ec8f32!important;
  font-size: 25px!important;
  font-weight: 500;
  line-height: 35px!important;
  margin-bottom: 40px!important;
}

.quoteBox .title,
.quoteSlider .slick-slide {
  text-align: center;
}

.quoteSlider .slick-next:before,
.quoteSlider .slick-prev:before {
  align-items: center;
  color: #0d1d32;
  display: flex;
  font-family: FontAwesome;
  font-size: 25px;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
}

.quoteSlider .slick-prev:before {
  content: "\f104";
}

.quoteSlider .slick-prev {
  left: -15px;
}

.quoteSlider .slick-next {
  right: -15px;
}

.quoteSlider .slick-next,
.quoteSlider .slick-prev {
  background: hsla(0,0%,100%,.5)!important;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  height: 40px;
  margin: 0;
  width: 40px;
  z-index: 1;
}

.faqList li {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 30px;
}

.faqList li:last-child {
  margin: 0;
}

.faqList li p.que {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
}

.faqList li p:last-child {
  margin: 0;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.blog-pagination__link {
  border: 1px solid #f5f5f5;
  color: #979ca4!important;
  display: flex;
  line-height: 1;
  margin: 0 .1rem;
  padding: .25rem .4rem;
  text-decoration: none;
  align=items: center;
  font-size: 18px;
  line-height: 20px;
}

.blog-pagination__link:hover {
  color: #ec8f32;
}

.blog-pagination__link--active {
  background: #ec8f32;
  color: #fff!important;
}

.blog-pagination__link:focus,
.blog-pagination__link:hover {
  text-decoration: none;
}

.blog-pagination__prev-link {
  margin-right: .25rem;
}

.blog-pagination__prev-link:hover svg {
  fill: #ec8f32!important;
}

.blog-pagination__next-link {
  margin-left: .25rem;
}

.blog-pagination__link.blog-pagination__next-link--disabled,
.blog-pagination__link.blog-pagination__prev-link--disabled {
  color: rgba(73,74,82,.5);
  cursor: default;
  display: none;
  pointer-events: none;
}

.blog-pagination__next-link svg,
.blog-pagination__prev-link svg {
  fill: #979ca4;
  margin: 0 10px!important;
  width: 10px!important;
}

.blog-pagination__next-link--disabled svg,
.blog-pagination__prev-link--disabled svg {
  fill: rgba(73,74,82,.5);
}

.blog-pagination__number-link:focus,
.blog-pagination__number-link:hover {
  color: #ec8f32;
}

.blog-pagination.center {
  justify-content: center;
}

.locationTab {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.locationTab li {
  flex: 0 0 25%;
  max-width: 100%;
  text-align: center;
}

.locationTab a {
  border-bottom: 4px solid #f6f6f6;
  color: #000;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  padding: 20px;
}

.locationTab a.active {
  border-color: #ec8f32;
}

.careerTeam {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0!important;
}

.careerTeam li {
  align-items: center;
  display: flex;
  flex: 0 0 12.5%;
  max-width: 100%;
  padding: 5px;
  text-align: center;
}

.careerTeam li img {
  width: 100%;
}

.careerTagline {
  color: #ec8f32;
  font-size: 30px;
  line-height: 34px;
  text-align: center;
}

.paddbtm30 {
  padding-bottom: 30px!important;
}

.jobListing {
  display: flex;
  flex-wrap: wrap;
  padding:unset;
}

.jobListing li {
  flex: 0 0 33.3%;
  margin-bottom: 30px;
  max-width: 100%;
  padding-right: 0;
}

.jobListing li p {
  color: #0d1d32;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  text-align: left;
}

.jobListing li p span {
  font-weight: 700;
}

.jobListing li .hs-button {
  margin-top: 5px;
  padding: 8px 20px;
}

.jobpage .hs-button {
  margin-top: 5px;
  padding: 15px 20px;
}

.jobBox {
  align-items: flex-start;
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin: unset !important;
  overflow: hidden;
  padding: 30px 20px;
}
.jobBox:last-child {
   margin-left: 0px;
}
.subscriptionPreferences {
  text-align: center;
}

.subscriptionPreferences img {
  margin-bottom: 40px;
  max-width: 100%;
  width: 300px;
}

.subscriptionPreferences h1 {
  color: #0d1d32;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
}

.subscriptionPreferences h2 {
  color: #2d3137;
  font-size: 18px;
  font-weight: 400;
  line-height: 12px;
  margin: 0;
}

.subscriptionPreferences .page-header {
  color: #2d3137;
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 20px;
}

.subscriptionPreferences .header {
  box-shadow: none;
  color: #2d3137;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 18px;
}

.subscriptionPreferences .item {
  background: #f6f6f6;
  margin-bottom: 15px;
  padding: 20px 15px;
  text-align: left;
}

.subscriptionPreferences .checkbox-row {
  color: #404040;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.subscriptionPreferences .checkbox-row input {
  margin-right: 10px;
}

.subscriptionPreferences .item p {
  color: #404040;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
  padding-left: 27px;
}

.subscriptionPreferences form label {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 20px;
  justify-content: center;
  line-height: 34px;
  margin-bottom: 30px;
  text-align: center;
}

.subscriptionPreferences form label input {
  margin-right: 10px;
}

.subscriptionPreferences .copyright {
  color: #a7a7a7;
  display: inline-block;
  font-size: 16px;
  line-height: 25px;
  margin-top: 40px;
}

.subscriptionPreferences form input[type=submit] {
  margin: 0 auto!important;
  text-transform: capitalize;
}

.emailSubscribeRow {
  align-items: center;
  display: flex;
}

.emailSubscribeRow h1 {
  color: #0d1d32;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 10px;
}

.emailSubscribeRow h2 {
  margin-bottom: 0;
}

.emailSubscribeRow h2,
.emailSubscribeRow h3 {
  color: #0d1d32;
  font-size: 20px;
  line-height: 34px;
}

.emailSubscribeRow h3 {
  margin-bottom: 10px;
}

.emailSubscribeRow .span8 {
  border-left: 1px solid #707070;
  margin: 0;
  padding: 40px 0 40px 4%;
}

.emailSubscribeRow .page-header {
  color: #0d1d32;
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 40px;
}

.emailSubscribeRow .copyright {
  color: #0d1d32;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.emailSubscribeRow .backup-unsubscribe input[type=email] {
  background: #f7f7f7;
  border-radius: 20px;
  font-size: 16px!important;
  margin-bottom: 15px;
  padding: 12px 20px!important;
}

.casestudies {
  margin-top: 80px;
}

.casestudyListing {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.casestudyListing li {
  display: flex;
  flex: 0 0 33.3%;
  max-width: 33.3%;
}

.casestudyListing li .casestudyBox {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  display: block;
  margin: 0 15px 30px;
  overflow: hidden;
}

.casestudyListing li .casestudyBox img {
  align-items: center;
  display: flex;
  max-height: 180px;
  min-height: 180px;
  object-fit: cover;
  object-position: center;
  width: 400px;
}

.casestudyListing li .casestudyBox p {
  color: #2d3137;
  color: #0d1d32;
  display: -webkit-box;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 15px;
  text-align: left;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.casestudyListing li .casestudyBox .link {
  color: #ec8f32;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 15px 15px;
  transition: all .3s ease-in-out;
}

.casestudyListing li .casestudyBox:hover .link {
  color: #318eca;
}

.relatedBlogs {
  margin-top: 80px;
}

.relatedBlogsListing {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.relatedBlogsListing li {
  display: flex;
  flex: 0 0 25%;
  max-width: 25%;
}

.relatedBlogsListing li .relatedBlogsBox {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  display: block;
  margin: 0 15px 30px;
  overflow: hidden;
}

.relatedBlogsListing li .relatedBlogsBox img {
  align-items: center;
  display: flex;
  min-height: 150px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.relatedBlogsListing li .relatedBlogsBox p {
  color: #2d3137;
  color: #0d1d32;
  display: -webkit-box;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  margin: 15px;
  text-align: left;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.relatedBlogsListing li .relatedBlogsBox .link {
  color: #ec8f32;
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0 15px 15px;
  transition: all .3s ease-in-out;
}

.relatedBlogsListing li .relatedBlogsBox:hover .link {
  color: #318eca;
}

.casestudyFormBox {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  padding: 30px;
}

.casestudyFormBox p {
  color: #0d1d32;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.casestudyFormBox form .hs-form-field {
  margin-bottom: 25px!important;
}

.casestudyFormBox .submitted-message,
.casestudyFormBox .submitted-message p {
  color: #2d3137;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}

.casestudyBody h2 {
  font-size: 20px;
  line-height: 30px;
}

.casestudyBody h2,
.casestudyBody h3 {
  color: #0d1d32!important;
  font-weight: 600;
  margin-bottom: 17px;
  text-align: left;
}

.casestudyBody h3 {
  font-size: 18px;
  line-height: 22px;
}

.casestudyBody h4 {
  color: #0d1d32!important;
  font-size: 17px;
  font-weight: 600;
  line-height: 21px;
  margin-bottom: 17px;
  text-align: left;
}

.casestudyBody h5 {
  font-size: 15px;
}

.casestudyBody h5,
.casestudyBody h6 {
  color: #0d1d32!important;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 17px;
  text-align: left;
}

.casestudyBody h6 {
  font-size: 14px;
}

.casestudyBody p {
  font-size: 16px;
  line-height: 25px;
}

.casestudyBody .highlight1 {
  background: #f7f7f7;
  padding: 3px 12px;
}

.casestudyBody .highlight2 {
  background: #f7f7f7;
  padding: 16px 18px;
}

.casestudyBody blockquote {
  border: 0;
  color: #318eca;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 20px;
  padding: 10px 20px;
  position: relative;
  text-align: left;
  text-align: center;
}

.casestudyBody blockquote:before {
  content: "\f10d";
  left: 0;
  top: 0;
}

.casestudyBody blockquote:after,
.casestudyBody blockquote:before {
  color: #318eca;
  font-family: FontAwesome;
  font-size: 50px;
  opacity: .1;
  position: absolute;
}

.casestudyBody blockquote:after {
  bottom: 0;
  content: "\f10e";
  right: 0;
}

.casestudyBody ol li,
.casestudyBody ul li {
  color: #2d3137;
  font-size: 18px;
  line-height: 27px;
  list-style: inherit;
  margin-bottom: 10px;
  margin-left: 20px;
}

.casestudyBody ol {
  margin: 0;
  padding: 0;
}

.mobImage {
  display: none;
}

@media screen and (min-width: 1400px) {
  .overviewSection {
    max-width: 600px;
  }
}

@media screen and (max-width: 1024px) {
  .contactBox {
    padding: 30px;
  }

  .homebanner .bannerImage {
    flex: 0 0 300px;
  }

  .homebanner .bannerImage img {
    max-width: 300px;
  }

  .homebanner .bannerContent {
    max-width: 65%;
  }

  .homebanner .bannerContent .testimonialContent {
    font-size: 30px;
    line-height: 36px;
  }

  .aboutSection {
    align-items: flex-start;
    min-height: 380px;
  }

  .aboutSection .tagLine {
    font-size: 30px;
    line-height: 38px;
  }

  .aboutLeft {
    padding: 42px 0;
  }

  .aboutSection .row-fluid {
    display: block;
  }

  .leadershipListing li .leadershipBox .leaderLink .leaderName {
    font-size: 17px;
    line-height: 28px;
  }

  .leadershipListing li .leadershipBox .leaderLink {
    max-width: 90%;
  }
}

@media screen and (max-width: 992px) {
  .desktopView {
    display: none;
  }

  .mobileView {
    display: block;
  }

  .socialwallIcon {
    margin-bottom: 40px;
    position: relative!important;
  }

  .header.socialwallIcon .social-links__icon {
    background: #fff;
    border: 1px solid #000;
    height: 25px;
    margin: 0 10px;
    width: 25px;
  }

  .header.socialwallIcon .social-links__icon svg {
    height: 12px;
    fill: #0d1d32;
  }

  .relatedBlogsListing li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .casestudyListing li .casestudyBox img {
    max-height: 150px;
    min-height: 150px;
  }

  .sectionPadding {
    padding: 60px 20px;
  }

  .dnd-section {
    padding: 60px 20px!important;
  }

  .sectionTitle span {
    letter-spacing: 1px;
  }

  .sectionTitle span:after {
    right: 1px;
  }

  .sectionTitle h1,
  .sectionTitle h2,
  .sectionTitle p {
    font-size: 25px;
    line-height: 30px;
  }

  .titleSec {
    margin-bottom: 30px;
  }

  .tagLine h1,
  .tagLine p {
    font-size: 32px;
    line-height: 40px;
  }

  .applyNow {
    margin-top: 12px;
  }

  .innerbanner {
    padding: 30px 0;
  }

  .innerbanner .innerbannerImage {
    max-width: 180px;
  }

  .innerbanner .innerbannerText .testimonialContent {
    font-size: 25px;
    line-height: 30px;
  }

  .innerbanner .innerbannerText .testimonialContent:after,
  .innerbanner .innerbannerText .testimonialContent:before {
    height: 30px;
    width: 35px;
  }

  .homebanner .bannerImage {
    flex: 0 0 260px;
  }

  .homebanner .bannerImage img {
    max-width: 260px;
  }

  .homebanner .bannerContent {
    max-width: 60%;
    padding: 50px 0;
  }

  .homebanner .bannerContent .testimonialContent {
    font-size: 25px;
    line-height: 28px;
    position: relative;
 
  }

  .homebanner .bannerContent .testimonialContent:before {
    height: 30px;
    top: -35px;
    width: 35px;
  }

  .homebanner .bannerContent .testimonialContent:after {
    bottom: -10px;
    height: 30px;
    width: 35px;
  }

  .homebanner .content-wrapper {
    align-items: flex-start;
  }

  .awardsListing li {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .aboutPage .blueBox p {
    max-width: 100%;
  }

  .awardsList li .awardBox img {
    flex: 0 0 100px;
    max-width: 100px;
  }

  .awardsListing li .awardBox {
    width: auto;
  }

  .awardsListing li .awardBox p {
    min-height: auto;
  }

  .hs-tabs__navitem {
    padding: 10px 25px;
  }

  .aboutSection {
    min-height: 450px;
  }

  .blueBox p {
    max-width: 100%;
  }

  .aboutDesc {
    margin-bottom: 60px;
  }

  .whatwedoListing li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .relatedExpertise ul {
    display: block;
    margin: 0 -15px;
  }

  .relatedExpertise ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .slick-track {
    margin-left: 0!important;
  }

  .keyservices {
    justify-content: center;
  }

  .keyservices li {
    flex: 0 0 33.3%;
    margin-bottom: 30px;
    max-width: 33.3%;
  }

  .keyservices li img {
    height: 80px;
  }

  .leadershipSection {
    margin-bottom: 60px;
  }

  .leaderBox .blueBox {
    padding: 30px 20px;
  }

  .leaderBox .blueBox p {
    max-width: 95%;
  }

  .leaderBox .logoBox {
    flex: 0 0 180px;
  }

  .leaderBox .logoBox img {
    max-width: 180px;
  }

  .leadershipListing li .leadershipBox {
    margin: 0 25px;
  }

  .leadershipListing li {
    flex: 0 0 33.3%;
    margin-bottom: 50px;
    max-width: 33.3%;
  }

  .leadershipListing li .leadershipBox .leaderLink .leaderName {
    font-size: 15px!important;
    line-height: 20px!important;
    margin-bottom: 2px;
  }

  .leaderInfo .teamBox {
    padding: 30px;
  }

  .leaderInfo .teamBox .teamPhoto {
    margin-bottom: 25px;
    margin-right: 25px;
    margin-top: -30px;
    max-width: 250px;
  }

  .relatedLeaders .leadershipListing li {
    flex: 0 0 100%!important;
    max-width: 100%;
  }

  .relatedLeaders .leadershipListing li .leadershipBox {
    margin: 20px auto!important;
  }

  .serviceList li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .serviceList li .serviceBox {
    padding: 50px 20px 20px;
  }

  .serviceList li .serviceBox .icon img {
    height: 45px;
    width: 45px;
  }

  .serviceList li .serviceBox .serviceTitle {
    font-size: 26px;
    line-height: 30px;
  }

  .teamList li .teamBox .teamPhoto {
    margin-bottom: 15px;
    margin-left: 20px;
  }

  .teamList li .teamBox .teamPhoto img {
    display: flex;
    max-width: 160px;
  }

  .filterList li label {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 15px;
  }

  .locationList>li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .locationList>li .locBox .address {
    min-height: auto;
  }

  .newsListing>li,
  .newsListingPage .newsListing>li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .contactDetail .span5,
  .contactDetail .span7 {
    margin: 0;
    width: 100%;
  }

  .contactBox {
    flex: 0 0 47%;
    margin: 0 10px;
    margin-top: 30px!important;
    max-width: 50%;
    padding: 20px;
  }

  .contactBox,
  .contactBox.mgm0 {
    margin-bottom: 0!important;
  }

  .contactDetail .contactRow {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px!important;
  }

  .contactDetail h2 {
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .writToUsForm {
    padding: 20px;
  }

  .quoteBox .title {
    margin-bottom: 20px!important;
  }

  .relatedExpertise ul li .servicesBox {
    padding: 70px 20px 30px;
  }

  .careerTeam li {
    display: block!important;
    flex: 0 0 25%;
    max-width: 100%;
  }

  .jobListing li {
    flex: 0 0 50%;
    max-width: 100%;
  }

  .emailSubscribeRow {
    flex-direction: column;
    text-align: center;
  }

  .emailSubscribeRow .span4 {
    margin-bottom: 30px;
  }

  .emailSubscribeRow .span8 {
    border: 0;
    padding: 0;
    width: 100%;
  }

  .emailSubscribeRow form input[type=submit] {
    margin: 0 auto!important;
  }

  .emailSubscribeRow h1 {
    font-size: 25px;
    line-height: 30px;
  }

  .emailSubscribeRow .page-header {
    margin-bottom: 20px;
  }

  .emailSubscribeRow .backup-unsubscribe input[type=email] {
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%!important;
  }

  .casestudyListing li {
    flex: 0 0 33.3%;
    max-width: 33.3%;
  }

  .caseStudydetailpage .row-fluid .span4,
  .caseStudydetailpage .row-fluid .span8 {
    margin: 0;
    width: 100%;
  }

  .casestudyListing {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .mgmtop30mob {
    margin-top: 30px;
  }

  .casestudyListing li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .titleSec {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 25px;
  }

  .tagLine h1,
  .tagLine p {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
  }

  .topBar ul li {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin: 0 10px;
    padding: 5px;
  }

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

  .desktopBtn {
    display: none;
  }

  .mobBtn {
    display: block;
  }

  .aboutSection {
    align-items: center;
    flex-direction: column;
  }

  .innerbanner .innerbannerImage {
    display: none;
  }

  .innerbanner .innerbannerText {
    margin: 0 auto;
    max-width: 85%;
    padding: 0;
    width: 100%;
  }

  .innerbanner .innerbannerText .testimonialContent {
    font-size: 20px !important;
    font-weight: 600;
    line-height: 28px!important;
    margin-bottom: 22px;
    padding: 20px 30px;
    position: relative;
  }

  .innerbanner .innerbannerText .authorName {
    font-size: 16px;
    line-height: 16px;
  }

  .innerbanner .innerbannerText .testimonialContent:before {
    height: 25px;
    top: 0;
    width: 30px;
  }

  .innerbanner .innerbannerText .testimonialContent:after {
    bottom: 0;
    height: 25px;
    width: 30px;
  }

  .serviceRow .span6:first-child .servicesBox {
    margin-bottom: 50px;
  }

  .homePage .aboutLeft {
    margin-top: 0;
    text-align: center;
  }

  .aboutLeft {
    padding-bottom: 20px;
    padding-top: 0;
  }

  .overviewSection {
    padding: 50px 30px;
    text-align: center;
  }

  .homebanner {
    margin: 0;
  }

  .homebanner .bannerImage {
    flex: 0 0 220px;
  }

  .homebanner .bannerImage img {
    max-width: 220px;
  }

  .homebanner .bannerContent .testimonialContent {
    font-size: 20px !important;
    line-height: 30px!important;
  }

  .homebanner .bannerContent .authorName {
    font-size: 16px;
    line-height: 26px;
  }

  .homebanner .bannerContent .authorName span {
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
  }

  .servicesBox {
    text-align: center;
  }

  .servicesBox .icon {
    left: 0;
    margin: auto;
    max-width: 80px;
    padding: 15px!important;
    right: 0;
  }

  .servicesBox .serviceTitle {
    font-size: 22px;
    line-height: 32px;
  }

  .hs-tabs__navitem {
    padding: 8px 15px;
  }

  .block2 {
    margin-top: 60px;
  }

  .awardsList li .awardBox img {
    flex: 0 0 150px;
    max-width: 150px;
  }

  .latestBlogListing ul {
    display: block;
  }

  .latestBlogListing li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .latestBlogListing .blogBox .blogName {
    font-size: 22px;
    line-height: 28px;
  }

  .latestBlogListing .blogBox {
    box-shadow: 15px 10px 15px #ececec;
    margin-bottom: 0;
  }

  .latestNewsListing ul {
    display: block;
  }

  .latestNewsListing li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .latestNewsListing .newsBox {
    box-shadow: 15px 10px 15px #ececec;
    margin-bottom: 0;
  }

  .latestNewsListing .newsBox .newsName {
    min-height: 72px;
  }

  .whatwedoListing li .servicesBox {
    padding: 60px 20px 20px;
  }

  .relatedExpertise ul li .servicesBox {
    padding: 60px 10px 20px;
  }

  .relatedExpertise ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .leaderBox .blueBox {
    padding: 20px;
  }

  .leadershipSection {
    margin: 40px 0;
  }

  .leadershipListing li {
    flex: 0 0 50%!important;
    max-width: 50%;
  }

  .leaderInfo .teamBox .teamPhoto {
    margin: 0 0 15px;
    max-width: 200px;
    padding: 0;
  }

  .relatedLeaders .leadershipListing li {
    flex: 0 0 100%;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .aboutSection {
    min-height: auto;
  }

  .aboutSection .title {
    margin-bottom: 20px;
  }

  .aboutSection .title:after {
    background: #d68730;
    content: "";
    display: block;
    height: 3px;
    left: inherit;
    margin-top: 6px;
    position: relative;
    right: inherit;
    width: 100px;
  }

  .aboutSection .title {
    display: block;
    padding: 0;
    text-align: center;
  }

  .aboutSection .tagLine {
    font-size: 25px;
    line-height: 30px;
    padding: 0;
    text-align: center;
  }

  .overviewSection p:first-child:before {
    display: none;
  }

  .absPosition {
    margin: 0!important;
    position: relative;
  }

  .aboutSection {
    margin-bottom: 60px;
  }

  .serviceList li .serviceBox .icon {
    left: 0;
    margin: 0 auto;
    max-width: 65px;
    right: 0;
  }

  .serviceList li .serviceBox {
    text-align: center;
  }

  .serviceList li .serviceBox .serviceTitle {
    font-size: 22px;
    line-height: 28px;
  }

  .contactUs .compName {
    font-size: 20px;
    line-height: 26px;
  }

  .locationTab a {
    font-size: 18px;
    line-height: 22px;
  }

  .locationList>li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .locationList>li .locBox .h2 {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
  }

  .newsListing {
    margin: 0;
  }

  .newsListing>li {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .newsListing li .newsBox {
    margin: 0 0 30px;
  }

  .newsListing li .newsBox .newsContent .newsDesc {
    margin-bottom: 10px;
    min-height: auto;
    text-align: left!important;
  }

  .newsListing li .newsBox .newsContent .newsName {
    font-size: 22px;
    line-height: 28px;
    min-height: auto;
  }

  .newsListingPage .newsListing>li {
    display: block;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contactDetail .span5 {
    display: block;
  }

  .contactBox {
    flex: 0 0 100%;
    margin: 0 0 30px;
    max-width: 100%;
  }

  .quoteBox p {
    font-size: 16px;
    line-height: 24px;
  }

  .quoteBox .title {
    font-size: 20px!important;
    line-height: 30px!important;
    margin-bottom: 20px!important;
  }

  .careerTeam li {
    flex: 0 0 25%;
    max-width: 100%;
  }

  .jobpage .hs-button {
    margin-bottom: 50px;
    padding: 10px 16px;
  }

  .jobListing li p {
    font-size: 16px;
    line-height: 22px;
  }

  .jobListing li .jobInfo {
    min-height: auto;
  }

  .subscriptionPreferences h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .subscriptionPreferences h2 {
    font-size: 16px;
  }

  .subscriptionPreferences .header,
  .subscriptionPreferences .page-header,
  .subscriptionPreferences form label {
    font-size: 16px;
    line-height: 24px;
  }

  .subscriptionPreferences .item p {
    padding-left: 0;
  }

  .emailSubscribeRow .page-header,
  .emailSubscribeRow h2,
  .emailSubscribeRow h3 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .emailSubscribeRow h1 {
    font-size: 25px;
    line-height: 35px;
  }

  .casestudyListing li .casestudyBox p {
    text-align: center;
  }
}

@media screen and (max-width: 568px) {
  .sectionPadding.tabPadbtm0 {
    padding-bottom: 40px;
  }

  .titleSec {
    font-size: 25px;
    line-height: 30px;
  }

  .titleSec.left {
    text-align: center!important;
  }

  .homePage .serviceBox .serviceTitle {
    font-size: 20px;
    line-height: 32px;
  }

  .serviceRow .servicesBox .serviceDesc {
    min-height: 96px;
  }

  .homebanner .content-wrapper {
    flex-direction: column-reverse;
  }

  .homebanner .bannerImage {
    margin-bottom: 20px;
  }

  .homebanner .bannerContent {
    max-width: 100%;
    padding: 0 0 30px;
  }

  .homebanner .bannerContent .testimonialContent {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }

  .homebanner .bannerContent .authorName {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    text-transform: inherit;
  }

  .homebanner .bannerContent .authorName span {
    font-size: 14px;
    font-style: italic;
    line-height: 20px;
    text-transform: inherit;
  }

  .homebanner .content-wrapper {
    align-items: center;
  }

  .innerbanner .innerbannerText .testimonialContent {
    font-size: 18px;
    line-height: 24px;
  }

  .innerbanner .innerbannerText {
    max-width: 100%;
  }

  .awardsListing li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .awardsList li .awardBox img {
    flex: 0 0 100px;
    max-width: 100px;
  }

  .overviewSection {
    padding: 30px 20px;
  }

  .aboutLogo {
    align-items: center;
    background: #318eca;
    flex-direction: column-reverse;
    padding: 40px 30px;
    text-align: center;
  }

  .blueBox,
  .logoBox {
    padding: 0;
  }

  .logoBox {
    background: #fff;
    margin-bottom: 20px;
  }

  .whatwedoListing li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .whatwedoListing li .servicesBox .serviceDesc {
    min-height: auto;
  }

  .relatedExpertise ul li {
    flex: 0 0 100%;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .leaderBox {
    align-items: center;
    background: #fff;
    box-shadow: 0 5px 20px #ececec;
    flex-direction: column-reverse;
    padding: 20px;
  }

  .leaderBox .blueBox p {
    color: #fff;
  }

  .leadershipSection .leaderName {
    color: #000;
    text-align: center;
  }

  .leadershipSection .leaderName span {
    color: #000;
  }

  .leaderBox .blueBox.whiteBox {
    box-shadow: none;
  }

  .keyservices li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .leaderBox .logoBox {
    padding: 0;
  }

  .leaderBox .blueBox {
    padding: 0;
    text-align: center;
  }

  .leaderInfo .teamBox {
    box-shadow: 0 8px 20px #ececec;
  }

  .leadershipListing li {
    flex: 0 0 50%;
    margin-bottom: 40px;
    max-width: 100%;
  }

  .leadershipListing li .leadershipBox {
    margin: 0 10px!important;
    max-width: 270px;
  }

  .leadershipListing li .leadershipBox .leaderLink {
    min-height: auto;
  }

  .leaderInfo .teamBox .teamPhoto {
    float: inherit;
    margin: 15px auto!important;
    padding: 0;
  }

  .leaderInfo .teamBox {
    padding: 15px 30px;
  }

  .serviceList li {
    flex: 0 0 100%;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .serviceList li .serviceBox .icon img {
    height: 40px;
    width: 40px;
  }

  .serviceList li .serviceBox {
    padding: 45px 20px 20px;
  }

  .serviceList li .serviceBox .serviceTitle {
    font-size: 20px;
    line-height: 24px;
  }

  .teamList li {
    box-shadow: 0 15px 20px #ececec;
    padding: 30px 20px;
  }

  .teamList li .teamBox {
    box-shadow: none;
    padding: 0;
  }

  .teamList li .teamName {
    margin-bottom: 10px;
  }

  .teamList li .teamBox .description {
    padding-right: 0;
  }

  .teamList li .teamBox .teamPhoto {
    background: #fff;
    display: inline-block;
    float: inherit;
    margin: 20px auto!important;
    padding: 0;
  }

  .contactUs .contactInfo {
    display: block;
    padding-left: 0;
    text-align: left;
  }

  .contactUs .contactInfo li a {
    display: inline-block;
    padding: 3px 0;
  }

  .filterList li label {
    font-size: 14px;
    line-height: 18px;
    padding: 6px 10px;
  }

  .locationList>li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .careerTagline {
    font-size: 24px;
    line-height: 30px;
  }

  .jobListing li {
    margin-left: 0!important;
    margin-right: 0!important;
    padding: 0;
  }

  .casestudyListing li,
  .jobListing li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .deskImage {
    display: none;
  }

  .mobImage {
    display: block;
  }

  .relatedBlogsListing li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .leadershipListing li .leadershipBox .leaderLink .designation {
    min-height: 48px;
  }

  .leadershipListing li .leadershipBox .leaderLink .leaderName {
    min-height: 38px;
  }

  .leaderInfo .teamBox .teamPhoto {
    margin-bottom: 30px!important;
  }
}

.kservicesListing .hs-accordion__item-content:after {
  opacity: .4;
  top: 0;
}

.kservicesListing {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.kservicesListing .hs-accordion__item {
  flex: 0 0 32%;
  max-width: 33.3%;
}

.hs-accordion__item {
  border-radius: 20px;
  margin: 0 7px 14px;
  overflow: hidden;
}

.hs-accordion__item button {
  -webkit-appearance: none;
  background: #f7f7f7;
  background-color: transparent;
  border: 1px solid hsla(0,0%,44%,.2)!important;
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  box-shadow: none!important;
  color: #000;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 18px;
  margin-top: 0;
  padding: 12px 30px 12px 20px;
  position: relative;
  text-align: left;
  width: 100%;
}

.hs-accordion__item main {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 0 0 20px 20px;
}

.hs-accordion__item button * {
  pointer-events: none;
}

.hs-accordion__item button:focus {
  outline: none;
}

.hs-accordion__item button:hover {
  background: #308dca;
  color: #fff;
}

.hs-accordion__item[aria-expanded=true] button {
  background: #308dca;
  border-radius: 20px 20px 0 0;
  color: #fff;
}

.hs-accordion__item-icon {
  border: 1px solid #fff;
  border-radius: 50%;
  height: 1.25em;
  pointer-events: none;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  transition: all .2s ease-in;
  width: 1.25em;
}

.hs-accordion__item-icon:before {
  height: 1px;
  width: .75em;
}

.hs-accordion__item-icon:after,
.hs-accordion__item-icon:before {
  background-color: #a5a5a5;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%)
}

.hs-accordion__item-icon:after {
  height: .75em;
  width: 1px;
}

.hs-accordion__item button:hover .hs-accordion__item-icon {
  border-color: #fff;
}

.hs-accordion__item button:hover .hs-accordion__item-icon:after,
.hs-accordion__item button:hover .hs-accordion__item-icon:before {
  background-color: #fff;
}

.hs-accordion__item[aria-expanded=true] .hs-accordion__item-icon {
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.hs-accordion__item[aria-expanded=true] .hs-accordion__item-icon:after,
.hs-accordion__item[aria-expanded=true] .hs-accordion__item-icon:before,
.hs-accordion__item[aria-expanded=true] button:hover .hs-accordion__item-icon:after,
.hs-accordion__item[aria-expanded=true] button:hover .hs-accordion__item-icon:before {
  background-color: #fff;
}

.hs-accordion__item main {
  display: block;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity .3s ease-out .2s,max-height .3s ease-out;
  -o-transition: opacity .3s ease-out .2s,max-height .3s ease-out;
  transition: opacity .3s ease-out .2s,max-height .3s ease-out;
}

.hs-accordion__item[aria-expanded=true] main {
  max-height: 100%;
  opacity: 1;
  -webkit-transition: opacity .3s ease-in,max-height .3s ease-in;
  -o-transition: opacity .3s ease-in,max-height .3s ease-in;
  transition: opacity .3s ease-in,max-height .3s ease-in;
}

.hs-accordion__item-content {
  padding: 18px;
  position: relative;
}

.hs-accordion__item-content p {
  color: #2d3137;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 5px;
  margin-top: 0;
  text-align: left;
}

.hs-accordion__item-content .link {
  color: #d68730;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
}

@media screen and (max-width: 992px) {
  .kservicesListing .hs-accordion__item {
    flex: 0 0 45%;
    max-width: 45%;
  }

  .hs-accordion__item button {
    font-size: 16px;
  }
}

@media screen and (max-width: 568px) {
  .kservicesListing .hs-accordion__item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.hs-content-id-96874122299 .content-wrapper h1 {
  color: #0d1d32;
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  margin: 0;
  padding-top: 10px;
}

.hs-content-id-96886441553 .expertiseService {
  position: relative;
}

.hs-content-id-96886441553 .expertiseService .serviceLink {
  bottom: 40px;
  left: 45px;
  position: absolute;
}

.hs-content-id-96886441553 .expertiseService .serviceLink:hover {
  color: #ec8f32;
}

.hs-content-id-96886441553 .sectionTitle {
  margin: 40px;
}

.hs-content-id-96886441553 .relatedExpertise ul li {
  margin-bottom: 30px;
}

.hs-content-id-96886441553 .relatedExpertise ul li a:hover {
  box-shadow: 0 0 32px rgba(0,0,0,.25);
  transition: all .6s;
}

.hs-content-id-96874122299 .titleSec {
  text-align: left!important;
}

.casestudynew .casestudyBox {
  border: 1px solid hsla(0,0%,44%,.15);
  border-radius: 20px;
  box-shadow: 20px 15px 20px #f5f5f5;
  display: block;
  overflow: hidden;
}

.casestudynew .casestudyBox p {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #2d3137;
  color: #0d1d32;
  display: -webkit-box;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 15px;
  min-height: 50px;
  overflow: hidden;
  text-align: left;
}

.casestudynew .casestudyBox img {
  width: 100%;
}

.casestudynew .casestudieslist {
  margin-right: 20px;
}

.navigation-primary ul.level-1>li:first-child:before {
  display: none;
}

#myHeader #hs_cos_wrapper_module_16742227991225 .hs-button {
  margin-left: 20px;
  margin-top: unset!important;
}

#hs_cos_wrapper_module_167282988333579 .casestudies {
  margin-left: -12px!important;
}

#hs_cos_wrapper_module_161579276355956 .latestNewsListing .newsBox {
  margin: unset!important;
}

@media (max-width: 1200px) {
  #hs_cos_wrapper_module_161579276355956 .latestNewsListing .newsBox {
    margin: 0 15px!important;
  }
}

@media (max-width: 1024px) {
  #hs_cos_wrapper_module_161579276355956 .latestNewsListing .newsBox {
    margin: 0 15px!important;
  }
}

@media (max-width: 991.98px) {
  #hs_cos_wrapper_module_161579276355956 .latestNewsListing .newsBox {
    margin: 0 15px!important;
  }
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_161579276355956 .latestNewsListing .newsBox {
    margin: 0 15px!important;
  }
}

#hs_cos_wrapper_module_16727477318969 .relatedExpertise ul {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_16727477318969 .relatedExpertise ul {
    margin: 0 15px!important;
  }
}

#hs_cos_wrapper_module_16755097734156 .relatedExpertise ul {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_16755097734156 .relatedExpertise ul {
    margin: 0 15px!important;
  }
}

@media (max-width: 992px) {
  #hs_cos_wrapper_module_16755097734156 .relatedExpertise ul li {
    margin-bottom: 20px;
  }
}

#hs_cos_wrapper_module_167550653944916 .relatedExpertise ul {
  margin: 0 -15px;
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_167550653944916 .relatedExpertise ul {
    margin: 0 15px!important;
  }
}

#hs_cos_wrapper_module_16727477318969 .relatedExpertise ul li {
  margin-bottom: 30px;
}

#hs_cos_wrapper_module_161579297644561 .awardsListing {
  margin: 0 -15px;
  padding:0;
}

@media (max-width: 1200px) {
  #hs_cos_wrapper_module_161579297644561 .awardsListing {
    margin: 0;
  }
}

@media (max-width: 1024px) {
  #hs_cos_wrapper_module_161579297644561 .awardsListing {
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  #hs_cos_wrapper_module_161579297644561 .awardsListing {
    margin: 0 15px!important;
  }
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_161579297644561 .awardsListing {
    display: block!important;
    margin: 0 15px!important;
  }
}

#hs_cos_wrapper_module_161579279119858 .latestBlogListing .blogBox {
  margin: unset!important;
}

@media (max-width: 1200px) {
  #hs_cos_wrapper_module_161579279119858 .latestBlogListing .blogBox {
    margin: 0 15px!important;
  }
}

@media (max-width: 1024px) {
  #hs_cos_wrapper_module_161579279119858 .latestBlogListing .blogBox {
    margin: 0 15px!important;
  }
}

@media (max-width: 991.98px) {
  #hs_cos_wrapper_module_161579279119858 .latestBlogListing .blogBox {
    margin: 0 15px!important;
  }
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_161579279119858 .latestBlogListing .blogBox {
    margin: 0 15px!important;
  }
}

#hs_cos_wrapper_module_167282988333579 .kservicesListing {
  justify-content: center!important;
  margin: 0 -14px 0 2px;
}

#hs_cos_wrapper_module_167298864218567 .titleSec {
  margin-top: 50px;
  text-align: initial;
}

#hs_cos_wrapper_module_16727477318969 .relatedExpertise {
  padding: 50px 0 10px;
}

#hs_cos_wrapper_module_16727477318969 .relatedExpertise1 {
  padding-top: 60px;
}

/* #toTop img {
  vertical-align: initial;
} */

#hs_cos_wrapper_module_167508721108247 .relatedExpertise ul,
.hs-content-id-96886441553 .relatedExpertise ul {
  margin: 0 -15px;
}

.relatedExpertise ul {
  margin-bottom: 0;
}

.howcanweHelp a {
  color: #318eca;
}

#hs_cos_wrapper_module_167508454398412 ul {
  margin: 0 -15px;
}

@media (max-width: 1024px) {
  .relatedExpertise ul li .servicesBox {
    min-height: 358px;
  }
}

.content-wrapper--vertical-spacing,
.hs-content-id-43014327367 .dnd-section {
  padding: 40px 20px!important;
}

#hs_cos_wrapper_module_16467328788751 {
  padding-top: 40px;
}

#hs_cos_wrapper_module_16180341539514 br {
  display: block!important;
}

#hs_cos_wrapper_module_161578891204822 .servicesBox:hover a,
#hs_cos_wrapper_module_161579276355956 .newsBox:hover a,
#hs_cos_wrapper_module_161579279119858 .blogBox:hover a {
  color: #2d3137;
}

@media (max-width: 991.98px) {
  .hs-content-id-42565051311 .sectionPadding {
    padding: 60px 20px!important;
  }
}

@media(max-width: 1024.99px) {
  .latestBlogListing .blogBox .blogNameÂ {
    min-height: 90px;
  }
}

@media(max-width: 991.98px) {
  .latestBlogListing .blogBox .blogNameÂ {
    min-height: 126px;
  }
}

/* #hs_cos_wrapper_module_161578891204822 .servicesBox .serviceDesc {
  min-height: 120px;
} */

@media(max-width: 767px) {
  .awardsListing li {
    flex: 0 0 25%!important;
  }
}

@media(max-width: 991.98px) {
  .submenu.level-2 {
    min-width: unset!important;
  }
}

@media(max-width: 1200px) {
  #hs_cos_wrapper_module_161578891204822 {
    margin: 0 15px;
  }
}

@media(max-width: 1024px) {
  #hs_cos_wrapper_module_161578891204822 {
    margin: 0 15px;
  }
}

@media(max-width: 991.98px) {
  #hs_cos_wrapper_module_161578891204822 {
    margin: 0 25px;
  }
}

.serviceList,.teamList {
  padding-left: 0;
}

.serviceList li .serviceBox:hover,
.servicesBox:hover {
  box-shadow: 0 0 32px rgba(0,0,0,.14)!important;
  transition: all .6s;
}

#hs_cos_wrapper_widget_1678881641207 ul li {
  list-style: disc!important;
}

#hs_cos_wrapper_widget_1678881641207 p br {
  display: block;
}

#hs_cos_wrapper_widget_1678881641207 #hs_cos_wrapper_widget_1678881641207_ ul {
  padding: revert;
}

#hs_cos_wrapper_widget_1678881641207 #hs_cos_wrapper_widget_1678881641207_ ul li {
  margin-bottom: 10px;
}

#hs_cos_wrapper_widget_1678881641207 p {
  line-height: 25px;
}

.bottompadding .dnd-section {
  padding-bottom: 40px!important;
}

.lightorangebg {
  background: #fef2eb;
}

#hs_cos_wrapper_module_16883708211251 .awards-desc {
  color: #6b7280;
  font-size: 28px;
  line-height: 36px;
}

@media (max-width: 767px) {
  #hs_cos_wrapper_module_16883708211251 .awards-desc {
    font-size: 24px;
    line-height: 36px;
    text-align: initial;
  }
  #hs_cos_wrapper_module_161578891204822 {
    margin:unset !important;
  }
}

.b-color,
.servicesboxnew .servicesBox .icon {
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
}

.servicesboxnew .servicesBox .icon {
  box-shadow: unset!important;
  padding: 15px!important;
}

.sectionTitle span {
  color: #f78b1e!important;
}

.sectionTitle span:after {
  background: unset!important;
}

.navigation-primary ul.level-1>li:last-child a {
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
  box-shadow: unset!important;
}

.navigation-primary ul.level-1>li:last-child a:hover {
  box-shadow: -1px 7px 5px 0 #f6c08a!important;
}

.hs-button,form .hs-button, form input[type=submit] {
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
  box-shadow: unset!important;
  margin-top: 40px!important;
    border-radius: 50px!important;
      font-size: 16px !important;
  font-weight: 700 !important;
}

.hs-button:hover,.hs-button:focus,form .hs-button:hover, form input[type=submit]:focus{
  box-shadow: -1px 7px 5px 0 #f6c08a !important;
  color: #fff !important;
      border: unset !important;
      border-radius: 50px!important;
      font-weight: 700;
}

#hs_cos_wrapper_module_16157927635595 .latestNewsListing li:nth-child(3) .newsBox {
  margin: 0 2px!important;
}

a:focus,
a:hover,
p {
  color: #374151!important;
}

.servicesBox,
.servicesboxnew .awardBox,
.servicesboxnew .blogBox,
.servicesboxnew .newsBox {
  box-shadow: 0 4px 0 #f78b1e!important;
}

.servicesBox:hover a {
  color: #374151!important;
}

.hs-content-id-106579720035 .footer,
.hs-content-id-43014327367 .footer,
.hs-content-id-44280259973 .footer,
.hs-content-id-46281214498 .footer,
.hs-content-id-85132541516 .footer {
  background: #111827!important;
}

.hs-content-id-43014327367 .submenu.level-2,
.hs-content-id-44280259973 .submenu.level-2,
.submenu.level-3 {
  box-shadow: unset!important;
}

.hs-content-id-106579720035 .footerBottom,
.hs-content-id-43014327367 .footerBottom,
.hs-content-id-44315330899 .footerBottom,
.hs-content-id-46281214498 .footerBottom,
.hs-content-id-85132541516 .footerBottom {
  background: linear-gradient(165deg,#faa930,#e85d01 100.18%)!important;
}

.awardsListing li .awardBox .awardDesc,
.latestNewsListing .newsBox,
.servicesBox {
  padding: 60px 30px 30px!important;
}

.overviewSection p {
  color: #fff!important;
}

#hs_cos_wrapper_module_16316911687084 .leaderBox .blueBox.whiteBox p {
  color: #374151!important;
}

#hs_cos_wrapper_module_161736258440560 .quoteBox p {
  color: #fff!important;
}

#hs_cos_wrapper_module_139818698383 br {
  display: block!important;
}

@media(max-width: 1024px) {
  #hs_cos_wrapper_module_139818698383 br {
    display: none!important;
  }
}

@media(max-width: 767px) {
  #toTop {
    bottom: 15px;
    right: 12px !important;
  }
}

@media(max-width: 1367px) {
  .servicesBox {
    box-shadow: 0 4px 0 -1px #f78b1e!important;
  }
}

@media(max-width: 1024px) {
  .servicesBox {
    box-shadow: 0 4px 0 -1px #f78b1e!important;
  }
}

.detail-img {
  height: 460px!important;
}

.share span {
  margin-left: 20px!important;
}

.resource-detail-banner {
  margin-top: 70px;
}

.search-input {
  display: none;
}

@media(max-width: 1024px) {
  .other-pages-blogs {
    padding: 0 30px;
  }
}

.navigation-primary ul.level-1>li:first-child a {
  color: #374151!important;
  display: block!important;
  font-size: 16px!important;
  font-weight: 400!important;
  height: unset!important;
  line-height: 22px!important;
  padding: 10px 5px!important;
  position: unset!important;
  transition: all .4s ease-in-out!important;
  width: unset!important;
}

@media(max-width: 991.92px) {
  .navigation-primary ul.level-1>li:first-child a {
    color: #fff!important;
    font-size: 18px!important;
    padding: 10px 0!important;
  }

  .navigation-primary ul.level-1>li:first-child {
    display: block!important;
    padding: 0!important;
  }
}

.submenu.level-2 .menu-item .menu-link {
  background-color: #fff;
  color: #2d3137!important;
  display: block;
  font-size: 14px!important;
  line-height: 18px!important;
  padding: 12px 20px!important;
  transition: background-color .3s;
}

@media(max-width: 767px) {
  .footerMenu .submenu.level-2 .menu-item .menu-link {
    padding: 12px 0!important;
  }
}

.locationList,
.locationList ul {
  padding-left: unset!important;
}

@media(max-width: 767px) {
  .hs-content-id-123207624246 .tagLine {
    margin-top: 50px;
  }
  ul {
    padding-left:0 !important;
  }
  .relatedLeaderSlider {
    height: 340px;
  }

  .relatedLeaderSlider .leadershipListing li .leadershipBox .leaderLink .designation {
    min-height: unset;
  }

  .innerbanner {
    padding: 30px 20px!important;
  }
}

.common-policy ul li {
  list-style: auto;
}

.common-policy .disc-list li {
  list-style: disc;
}

#hs_cos_wrapper_widget_1616148434959 ul li {
  list-style: auto;
}

@media(max-width: 1024px) {
  .common-policy .sectionPadding {
    padding: 40px 20px;
  }
}
.casestudy-detail-image .form-title {
  display:none;
}
.casestudy-detail-image form {
  background:unset;
}
.grecaptcha-badge {
  margin: unset;
}
.form-title, .submitted-message, form {
   background:unset !important;
}
.cookie-reset-container{
  display:none;
}
.writToUsForm .form-title {
  display:none !important;
}
.final-footer {    
    background-image: url(https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/Footer%20redesign.svg) !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.final-footer {
  padding:40px 0px;
}
@media(max-width:991.92px) {
  .final-footer {
    background-image: url("https://5842389.fs1.hubspotusercontent-na1.net/hubfs/5842389/Footer%20redesign%20%283%29.png") !important;
  }
}
@media(max-width:1192px) {
  .final-footer {
    padding:30px 20px;
  }
}
@media(max-width:991.92px) {
.hs-content-id-188945899539 .row-fluid [class*="span"] {
  width:99.99999998999999% !important;
}
}
.new-layout-career {
  padding:0 0 50px 0px !important;
}
.environment-expert .new-layout-career {
  padding:0 0 0px 0px !important;
}

.new-layout-career .sectionTitle {
  text-align:left;
  margin-bottom:20px;
}

.card-job {
  margin-right:20px !important;
}
.jobListing li:nth-child(3n) .card-job {
    margin-right: unset !important;
}
.right-side-image {
    height: auto;
    width: 80% !important;
}