/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
  color:#2E2E2E;
}

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

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}
.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 0rem;
}

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

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

body {
  line-height: 1.4;
  overflow-wrap: break-word;
  font-family: Poppins;
  color: #555555;
}

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;
}
h2 {
    color: #000000;
    font-size: 34px;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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

.hs-form-field {
  margin-bottom: 1.4rem;
}
.hs_error_rollup ul.no-list.hs-error-msgs.inputs-list li {
  display: none!important;
}

/* Labels */

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form 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: #f4b400;
}

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

.hs-error-msg {
  color: #f4b400;
  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;
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

/* Header DND sections */

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

/* Header container */

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

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

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

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

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

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

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

/* Navigation skipper */

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

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

/* Logo */

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

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

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

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

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

/* Search bar */

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

.header__search .hs-search-field__input {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-position: center right 15px;
  background-repeat: no-repeat;
  height: 45px;
  padding: 0 0.7rem;
}

.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;
    margin: 0 5vw;
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

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

header.header {
  background: transparent;
}
.header-top-wrapper {
  background-color: #e9f1f8;
  padding: 10px 20px;
}
.header-contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; 
}
.header-email a {
  color: #555555 !important;
  font-size: 14px;
  line-height: 21px;
  font-weight: 500;
}
.header-top-menu ul li a {
  color: #555555;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  line-height: 21px;
}
.header-top-menu ul li {
  margin-right: 15px;
  line-height: 21px;
  position: relative;
  font-size: 14px;
}
.header-top-menu ul li:last-child {
  margin: 0px;
}
.header-top-menu ul li a:after {
  content: '';
  width: 2px;
  height: 86%;
  position: absolute;
  background: #555555;
  top: 2px;
  left: -8px;
}
.header-top-menu ul li:nth-child(1) a:after {
  content: none;
}
.header-email {
  font-size: 14px;
  line-height: 21px;
}
.header-bottom-wrapper {
  padding: 0px 20px;
/*   box-shadow: 5px 6px 20px 2px rgb(0 0 0 / 10%); */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 11px -30px;
  background-color: #ffffff;
  position: relative;
  z-index: 999;
}
.header-logo-img img {
  width: 275px;
  /*   width:228px; */
  transition: all .5s;
  padding-top:5px;
}
.header-sticky-logo {
  display: none;
}
.header-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-menu-outer>ul {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 100% !important;
  align-items: center;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.mega-wrapper {
  width: 100% !important;
  left: 0;
  right: 0;
  background: #fff;
  display: none;
  position: absolute;
  top: 75px;
  z-index: 888 !important;
  -webkit-box-shadow: 0 10px 10px -8px #999;
  -moz-box-shadow: 0 10px 10px -8px #999;
  box-shadow: 0 10px 10px -8px #999;
  border: 1px solid #cbd6e2;
}
.header-menu-outer>ul>li span>.header-menu-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #000000 !important;
  line-height: 100%;
  padding: 28px 12px !important;
  letter-spacing: 1px;
  opacity: 1 !important;
  display: inline-block;
  border-bottom: 5px solid transparent;
  transition: all .5s;
}
.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link {
  border-radius: 5px;
  padding: 13px 12px 13px 12px!important;
  background-color: #2ECC71;
  text-transform: uppercase;
  font-size: 13px !important;
  color: #ffffff !important;
  border-bottom: none;
}
.header-menu-outer>ul>li:last-child span>.header-menu-link {
  border-bottom: 0px;
}
.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:after,
.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:before {
  bottom: auto;
  content: unset;
  display: block;
  left: auto;
  position: absolute;
  right: 20px;
  top: 48%;
  transition: all .3s ease-in-out;
}
.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:after {
  background-color: #fff;
  height: 2px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  width: 10px;
}

.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:before {
  background-color: transparent;
  box-shadow: inset -2px 2px 0 0;
  color: #fff;
  height: 8px;
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  width: 8px;
}
.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:hover:before {
  -webkit-transform: translate(4px,-4px) rotate(45deg);
  transform: translate(4px,-4px) rotate(45deg);
}
.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:hover:after {
  background-color: #fff;
  height: 2px;
  -webkit-transform: translate(4px,-1px);
  transform: translate(4px,-1px);
}

.header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:hover {
  background-color: #0052CC;
}
@media(min-width:1050px){

  .header-menu-outer>ul > li:hover .mega-wrapper {
    display: block;
  }
}
.mega-wrapper ul {
  display: flex;
  padding: 10px 0px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0px; 
  width: 100%;
}

.mega-wrapper ul li {
  flex: 0 33%;
  padding: 20px 1%;
  text-align: center;
  font-size: 16px;
}
.mega-wrapper ul li a {
  margin: 0px 10px 10px;
  font-weight: 600;
  font-size: 14px;
  color: #555555 !important;
}
.mega-wrapper ul li a span.mega-wrapper-right span {
  margin: 0px;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  display: block;
  margin-top: 10px;
}
.mega-wrapper ul li a {
  display: flex;
  text-align: left;
}

.mega-wrapper ul li a span.mega-wrapper-left {
  width: 72px;
  margin-right: 15px;
}
.mega-wrapper ul li:nth-child(-n+3) {
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
li.inb-menu-list:nth-child(3) .mega-wrapper ul li:nth-child(-n+6) {
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.header-top-wrapper{
  position:relative; 
}
.header-wrapper {
  position: relative;
}
/* .header-top-wrapper.StickyHeader {
position: fixed;
top: 0;
transition: all .2s;
width: 100%;
z-index: 999;
transform: translateY(0);
} */

.header-wrapper.StickyHeader
{
  position: fixed;
  width: 100%;
  top: 0px;
  background-color: #ffffff;
  z-index: 999;
  box-shadow: 0 1px 20px 10px rgba(0,0,0,.2);
  /*     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  transition: all .2s;
  transform: translateY(0);
}

.header-bottom-wrapper.StickyHeader .header-menu-outer>ul>li span>.header-menu-link {
  padding: 18px 12px!important;
  transition: all .5s;
}

.header-bottom-wrapper.StickyHeader .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link {
  padding: 13px 12px 13px 12px!important;
}

.header-bottom-wrapper.StickyHeader .header-logo-img img {
  width:240px;
  transition: all .5s;
}
.header-bottom-wrapper.StickyHeader .mega-wrapper {
  top: 50px;
}
.header-menu-outer>ul>li:nth-child(-n+4)>span>.header-menu-link{
  cursor: default;
  pointer-events: none;
}
.header-menu-outer>ul>li>span>.header-menu-link
li.inb-menu-list.child-open .child-trigger i:after {
  transform: rotate(0deg);
}
.mega-wrapper ul li:hover a {
  color: #1E76BA !important;
}

/* li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child,  */
li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child {
  flex: 0 100%;
}
li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child,
li.inb-menu-list:nth-child(3) .mega-wrapper ul li:nth-last-child(2){
  flex: 0 50%;
}
li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child a, li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child .mega-wrapper ul li a {
  justify-content: center;
}

/* li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child span.mega-wrapper-left, */
li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child span.mega-wrapper-left {
  width: 30px;
}
/* 
li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child span.mega-wrapper-left img, li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child span.mega-wrapper-left img {
width: 30px;
} */


li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child a, li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child a {
  justify-content: left;
}

li.inb-menu-list:nth-child(4) .mega-wrapper ul li:nth-child(2), li.inb-menu-list:nth-child(4) .mega-wrapper ul li:nth-child(3) {
  border: none;
}
.footer-bottom-wrap {
  background-color: #0B1216;
  color: #fff;
  padding: 15px;
}
.footer-bottom-content p {
  margin: 0;
  color: #878787 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}
.footer-top-wrap {
  background-repeat: no-repeat;
  padding: 50px 20px 150px;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-col-one{
  flex: 0 23%;
}
.footer-col-two {
  flex: 0 49%;
  margin: 0 2%;
}
.footer-col-three {
  flex: 0 21%;
}
.footer-heading h5 {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
  text-transform: capitalize;
}
.address-heading p {
  color: #bbbdbe !important;
  font-size: 14px;
  line-height: 30px;
  margin: 0 0 5px!important;
}
.footer-heading.address-content h5 {
  color: #f69220;
}
.footer-col a {
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
}
.footer-menu ul {
  padding: 0px;
  margin: 0px;
  display: inline-block !important;
}
.footer-menu a {
  display: flex;
}
.footer-menu-outer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-menu {
  flex: 0 48%;
}
.address-content {
  padding-bottom: 20px;
}
.footer-logo {
  padding-bottom: 20px;
}
.footer-button a {
  background-color: #F4B400;
  border-radius: 5px;
  color: #2E2E2E !important;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 15px 10px!important;
  text-align: center;
  text-shadow: none;
  text-transform: uppercase;
  transition: all .5s;
  width: 100%;
  line-height: 20px;
}
.footer-term-menu ul {
  display: inline-block !important;
}
.footer-social-share ul li a svg {
  fill: #333333;
  font-size: 14px;
  line-height: 30px;
  padding: 8px 11px;
  height: 31px;
  display: block;
}
.footer-social-share ul {
  list-style: none;
  display: flex;
  padding: 0px;
  margin: 0px;
}
.footer-certified-logo li:last-child {
  width: 110px;
}
/*
.footer-social-share ul li:nth-child(1) a {
background-color: #3b5998;
}
.footer-social-share ul li:nth-child(2) a {
background-color: #1da1f2;
}
.footer-social-share ul li:nth-child(3) a {
background-color: #e1306c;
}
.footer-social-share ul li:nth-child(4) a {
background-color: #0077b5;
}
.footer-social-share ul li:nth-child(5) a {
background-color: #dd4b39;
}
*/
.footer-social-share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  margin-right: 5px;
  background-color: #fafafa;
  border-radius: 5px;
}
.footer-term-menu {
  margin: 10px 0px;
}
.footer-term-menu ul {
  display: inline-block !important;
}
.footer-heading.social-heading {
  margin-bottom: 10px;
}
.footer-col ul li a:before {
  content: "\f105";
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  padding-right: 10px!important;
}
.footer-social-share ul li a::before {
  content: none;
}
.footer-heading a i {
  color: #ffffff;
  font-size: 16px;
  line-height: 35px;
  padding-right: 10px;
  text-decoration: none;
}
.footer-button a:hover,
.footer-button a:focus {
  font-weight: 600;
  color: #fff !important;
  transform: translateY(-5px);
}
.footer-social-share ul li a {
  transition: all .5s;
}
.footer-social-share ul li a:hover {
  transform: translateY(-5px);
}
.footer-col a:hover, .footer-col a:focus {
  color: #2E2E2E;
}
.address-contnet p {
  color: #ffffff !important;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 5px !important;
}
.footer-certified-logo ul {
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.footer-certified-logo ul li {
  padding: 30px 10px 0px 0px;
}

.footer-certified-logo ul li a {
}

.footer-certified-logo ul li a:before {
  content: none;
}

.footer-menu:nth-child(1) {
  margin-bottom: 15px;
}
.footer-heading.address-contnet:last-child {
  margin-top: 20px;
}

.footer-contact-wrap {
  margin-top: 20px;
}
@media(max-width: 1150px){
  .header-logo-img img {
    width: 170px;
    vertical-align: middle;
  }
  .header-menu-outer>ul>li span>.header-menu-link {
    font-size: 13px;
    padding: 28px 10px!important;
  }
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link {
    font-size: 12px!important;
  }
}
@media(min-width:1050px){
  .header-menu-outer>ul>li:nth-last-child(3){
    display:none;
  }
  .header-menu-outer>ul>li:last-child{
    display:none;
  }
}
@media (max-width: 1070px) {
  .header-logo-img img {
    width: 223px;
  }
}
@media(max-width:1050px){
  .header-menu-outer {
    display: none;
  }
  .header-logo-img img {
    padding-top:0px;
    width: 250px;
  }
  .header-bottom-wrapper.StickyHeader .header-logo-img img {
    width:250px;
  }
  .header-menu-outer > ul > li:last-child span > .header-menu-link {
    border-bottom: none !important;
  }
  /*   .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link {
  font-size: 12px!important;
  border-radius: 0px;
} */
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link {
    background-color: #f4B400 !important;
    border-bottom: 1px solid #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px !important;
    padding:10px!important;
    color:#2E2E2E !important;
    border-radius: unset !important;
  }
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:after, 
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:before {
    bottom: auto;
    content: "";
    display: block;
    left: auto;
    position: absolute;
    right: 20px;
    top: 48%;
    transition: all .3s ease-in-out;
  }
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:before {
    background-color: transparent;
    box-shadow: inset -2px 2px 0 0;
    color: #fff;
    height: 8px;
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    width: 8px;
  }
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:after {
    background-color: #fff;
    height: 2px;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    width: 10px;
  }
  .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link:hover {
    background-color: #0052CC;
  }
  .mobile-trigger {
    display: inline-block !important;
    cursor: pointer;
    position: absolute;
    width: auto;
    height: auto;
    padding: 4px 10px 5px 10px;
    background: #ffffff;
    border: 1px solid #000000;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #000000;
    right: 20px;
    top: 18px;
    border-color: #0052CC !important;
    color: #0052CC !important;
  }

  .header-outer {
    position: relative;
    padding: 15px 0px;
  }
  .header-logo-img a {
    vertical-align: middle;
    display: inline-block;
  }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after {
    width: 22px;
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background-color: #000000;
    display: inline-block;
  }

  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after {
    background-color: #0052CC !important;
  }
  .mobile-open .mobile-trigger i{
    background-color:transparent !important;
  } 

  .menu-wrap .mobile-trigger i, .menu-wrap .mobile-trigger i:after, .menu-wrap .mobile-trigger i:before {
    background-color: #fff !important;
  }

  .mobile-trigger i {
    position: relative;
    top: -4px;
  }

  .menu-wrap .mobile-trigger i, .menu-wrap .mobile-trigger i:after, .menu-wrap .mobile-trigger i:before {
    background-color: #fff !important;
  }

  .mobile-trigger i:before, .mobile-trigger i:after {
    position: absolute;
    content: '';
  }

  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after {
    background-color: #0052CC !important;
  }

  .mobile-trigger i:before {
    top: -6px;
  }

  .mobile-trigger i:after {
    top: 6px;
  }
  .mobile-open .mobile-trigger i:before {
    transform: rotate(-45deg) translate(-4px, 4px);
  }
  .mobile-open .mobile-trigger i:after {
    transform: rotate(45deg) translate(-5px, -5px);
  }


  .header-menu-outer {
    width: 100%;
    left: 0;
    padding: 0;
    position: absolute;
    top: 65px;
    background-color: transparent;
    z-index: 999;
    height: calc(100vh - 55px);
    overflow-y: scroll;
  }

  .child-trigger {
    display: block !important;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important;
    min-width: 55px !important;
    height: 45px !important;
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }

  .child-trigger i {
    position: relative;
    top: 50%;
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  .child-trigger i, .child-trigger i:after {
    width: 10px;
    height: 1px;
    background-color:  #2E2E2E;
    display: block;
  }

  .child-trigger i:after {
    position: absolute;
    content: '';
  }

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

  .header-menu-outer>ul li {
    position: relative;
  }

  .header-menu-outer>ul >li span>.header-menu-link, 
  .header-bottom-wrapper.StickyHeader .header-menu-outer>ul>li span>.header-menu-link {
    font-size: 14px !important;
    color: #fff !important;
    padding: 10px !important;
    line-height: 30px !important;
    z-index: 99999;
    display: block;
    float: none;
    position: static;
    border-bottom: 1px solid #fff;
  }
  .header-menu-outer>ul>li span>.header-menu-link {
    font-size: 14px !important;
    color: #fff !important;
    padding: 10px !important;
    line-height: 30px !important;
    z-index: 99999;
    display: block;
    float: none;
    position: static;
    border-bottom: 1px solid #fff;
  }

  .header-bottom-wrapper.StickyHeader .header-outer {
    padding: 0px;
  }

  .header-bottom-wrapper.StickyHeader {
    height: 55px;
    padding: 10px 0px 10px;
  }

  .header-bottom-wrapper.StickyHeader .mobile-trigger {
    top: -4px;
    right: 20px;
  }
  .header-logo-img {
    padding-left: 20px;
  }
  .header-bottom-wrapper.StickyHeader .header-menu-outer>ul {
    top: 45px;
  }
  .header-menu-outer>ul {
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: #f4B400;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1;
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
    color: #ffffff;
  }
  .child-trigger {
    display: block !important;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 55px !important;
    min-width: 55px !important;
    height: 52px !important;
    padding: 0 !important;
    border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  .child-trigger i {
    position: relative;
    top: 50%;
    margin: 0 auto !important;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .child-trigger i, .child-trigger i:after {
    width: 10px;
    height: 1px;
    background-color: #ffffff;
    display: block;
  }
  .child-trigger i:after {
    position: absolute;
    content: '';
  }
  .child-trigger i:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .header-menu-outer>ul li {
    position: relative;
  }
  .header-menu-outer>ul>li span>.header-menu-link, .header-bottom-wrapper.StickyHeader .header-menu-outer>ul>li span>.header-menu-link {
    font-size: 14px !important;
    color: #2E2E2E!important;
    padding: 10px !important;
    line-height: 30px !important;
    z-index: 99999;
    border-bottom: 1px solid #fff;
    text-transform: uppercase;
    display: block;
    float: none;
    position: static;
  }
  .header-bottom-wrapper.StickyHeader {
    height: 55px;
    padding: 10px 0px 10px;
  }
  .header-bottom-wrapper.StickyHeader .header-menu-outer {
    top: 45px;
  }
  .header-bottom-wrapper.StickyHeader .mobile-trigger {
    top: 2px;
  }
  .header-bottom-wrapper.StickyHeader .header-menu-outer>ul {
    top: 40px;
  }
  .mega-wrapper ul {
    display: block;
    text-align: left;
    padding: 0px;
    background-color: #f5f5f5;
    z-index: 99;
  }
  .mega-wrapper ul li {
    text-align: left;
    padding: 10px;
    /*     padding-left: 25px; */
  }
  .mega-wrapper ul li a span.mega-wrapper-left, 
  li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child span.mega-wrapper-left, 
  li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child span.mega-wrapper-left{
    width: 35px;
    margin-right: 15px;
    display: block;
  }
  li.inb-menu-list:nth-child(3) .mega-wrapper ul li:last-child span.mega-wrapper-left img, li.inb-menu-list:nth-child(4) .mega-wrapper ul li:first-child span.mega-wrapper-left img {
    width: auto;
  }
  .mega-wrapper ul li a:before {
    border: none!important;
    /*     content: "\f105"; */
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    padding-right: 10px;
    position: relative;
    right: 0!important;
  }
  .mega-wrapper ul li a {
    font-size: 14px;
    line-height: 18px;
    margin: 0px;
  }
  /*   .mega-wrapper ul li a span {
  font-size: 12px;
  margin: 4px 0 0;
  padding-left: 25px
} */
  .mega-wrapper ul li a span.mega-wrapper-right span {
    font-size: 12px;
  }
  .mega-wrapper {
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    display: none;
  }
  .mega-wrapper ul li {
    border-bottom: 1px solid #ffffff !important;
  }
  .mega-wrapper {
    box-shadow: none;
    overflow-y: scroll;
  }
  .child-trigger.child-open i:after {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .header-bottom-wrapper.StickyHeader .header-menu-outer>ul>li:nth-last-child(-n+3) span>.header-menu-link {
    padding: 10px!important;
    font-size: 14px !important;
  }
  .header-bottom-wrapper {
    padding: 0px;
  }
  .header-wrapper {
    z-index: 9999;
    position: relative;
  }
  span.mega-wrapper-left img {
    width: 35px;
  }

  span.mega-wrapper-right {
    width: calc(100% - 35px);
  }
}
@media(max-width: 970px){
  .footer-col.footer-col-one {
    flex: 0 100%;
  }
  .footer-col.footer-col-two {
    flex: 0 68%;
    margin: 30px 2% 0px 0px;
  }
  .footer-col-three {
    flex: 0 27%;
    margin-top: 20px;
  }
  .footer-logo img {
    width: 250px;
  }
  .footer-menu:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer-menu {
    flex: 0 45%;
  }
}
@media(max-width:880px){
  .header-top-menu ul{
    justify-content: center;
  }

}
@media(max-width:767px){
  .header-contact-wrapper {
    display: block;
  }
  .header-top-menu {
    text-align: center;
  }
  .header-top-menu ul {
    flex-direction: row !important;
    justify-content: center;
  } 
  .header-email {
    text-align: center;
    margin-bottom: 10px;
  }
  .header-top-menu ul li a {
    font-size: 12px;
  }
  .footer-col.footer-col-two {
    flex: 0 100%;
  }
  .footer-col.footer-col-one, .footer-col.footer-col-one {
    flex: 0 100%;
  }
  .footer-col.footer-col-two {
    margin: 30px 0px 15px;
  }
  .footer-button a {
    min-width: 250px;
    width: auto;
  }
}
@media(max-width:479px){
  .footer-menu-outer {
    display: block;
  }
  .footer-menu:first-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 380px) {
  .header-logo-img img,
  .header-bottom-wrapper.StickyHeader .header-logo-img img,
  .footer-logo img {
    width: 200px;
  }
}
/* 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%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

.inb-sec-title-h4 h4 { font-size: 27px;margin: 0;color: #0052CC;line-height: 34px;}.hero-banner-outer, .hero-banner-wrapper {background-repeat: repeat-x;background-position: bottom;background-blend-mode: soft-light;}.hero-banner-outer{background-color: #0052CC;}.left-align-bg { margin-left: 25px;}.blog-button {color: #fff;font-size: 16px;font-weight: 600;letter-spacing: 1px;text-align: center; background-color: #f69220;padding: 12px 50px;display: inline-block;border-radius: 5px;text-transform: uppercase;border: none;margin-bottom: 20px;} .blog-button:hover{background-color: #0052CC !important;color: #fff; }html {scroll-padding-top: 100px;}.landingPageButton a:hover,.landingPageButton a:active,.landingPageButton a:focus {background-color: #0052CC !important;color: #fff;} .landingPageButton a{color: #fff;font-size: 16px;font-weight: 600;letter-spacing: 1px;text-align: center;background-color: #f69220;padding: 12px 50px;display: inline-block;border-radius: 5px;text-transform: uppercase;border: none;margin-top: 20px;}.left-border{position: relative;padding-left: 0px;}
h2.left-border {font-weight: 600;}h2.left-number {font-weight: 500;}.left-border:before{content: '';position: absolute;top: 0;left: -18px;width: 5px;height: 100%;background-color: #F69220;border-radius: 5px;}.inb-solid-button a{padding: 10px 30px 10px 30px!important;font-size: 14px;!important }.hero-banner-inner-wrap{flex: 0 100%}.hero-banner-wrapper{background-repeat:repeat-x;background-position:bottom;background-blend-mode:soft-light}.banner-wrapper,.hero-banner-outer,.hero-banner-wrapper{background-blend-mode:soft-light}.award-rec-content h2,h1,h2,h3,h4,h5,h6{font-family:Poppins,sans-serif}.page-center{max-width:1200px;margin:0 auto}p{font-size:16px;font-weight:400;line-height:28px;color:#2E2E2E;margin-bottom:1rem}.container-fluid{padding:0}.client-feed-wrapper{padding:50px 0}header.header.header--no-navigation{padding:20px 0}.feed-header-wrap{display:flex;align-items:center;justify-content:space-between;width:100%}.client-feed-text h1{margin:0!important;color:#0052CC;display:inline-block;font-size:24px;font-weight:600;line-height:32px;position:relative}.client-feed-heading,.inb-form span.hs-form-required,nav.hs-pagination a span.hs-pagination__link-icon{display:none}.client-feed-text{position:absolute;left:0;right:0;text-align:center}.hero-banner-wrapper{position:relative;height:calc(100vh - 117px);display:flex;align-items:center;background-size:50%;flex-wrap:wrap;text-align:center;background-color:#0052CC}.banner-heading h1{font-size:46px;line-height:70px;color:#fff;margin:0;font-weight:600}.banner-choice-tab{position:relative;border-radius:3px;background-color:#fff;padding:15px 10px 15px 20px;cursor:pointer;text-align:left}.btn-wrap-text a:hover i:after,.btn-wrap-text a:hover:after,.cta-button.inb-solid-button a:hover:after,.inb-solid-button a:hover,nav.hs-pagination a:hover{background-color:#0052CC}.align-center,.banner-wrapper,.carrer-form-text,.integ-title,.main-form-text,.team--btn,.vm-section-left{text-align:center}.vm-section-image-mobile-only{display: none;}.banner-choice-tab p{color:#2E2E2E;max-width:700px;font-size:18px;font-weight:500;position:relative;margin:0}.banner-choice-wrap{max-width:700px;margin:0 auto;padding-top:30px;position:relative;z-index:9}.banner-choice-tab span{background-color:#2ECC71;color:#fff;display:flex;height:100%;position:absolute;right:0;top:0;width:60px;align-items:center;justify-content:center;border-top-right-radius:3px;border-bottom-right-radius:3px}.banner-choice-tab span svg{height:13px;fill:#ffffff;display:inline-block;transition:.2s;transform:rotate(-180deg)}.banner-choice-content ul{list-style:none;margin:-2px 0 0;padding:0;background-color:#fff;box-shadow:0 3px 6px 3px rgb(0 0 0 / 10%);border-radius:0 0 3px 3px}.banner-choice-content ul li a{display:block;padding:10px 20px;text-align:left;text-decoration:none;color:#2E2E2E;border-bottom:1px solid rgba(167,167,167,.2);-webkit-transition:.5s;transition:.5s;font-weight:500;font-size:16px}.banner-choice-content{position:absolute;width:100%;height:0;z-index:0;opacity:0;transition:height .3s ease-in-out;visibility:hidden}.banner-choice-content.active{opacity:1;height:225px;overflow-y:scroll;visibility:visible;z-index:9}.banner-choice-tab.tab-active span svg{transform:rotate(0);transition:.2s}.banner-button,.contact-rows,.content-btn-tab{padding-top:30px}.banner-wrapper{display:flex;align-items:center;justify-content:center}.hero-banner-outer{position:relative;height:calc(100vh - 117px);display:flex;align-items:center;background-image:url(https://697361.fs1.hubspotusercontent-na1.net/hubfs/697361/Inboundsys_2023/Home/footer-art.png);background-size:45%;padding:0 20px}.award-section,.hero-banner-wrap,.split-colum-section,.two-colum-section,.vm-section-inner{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center}.hero-banner-right{flex:0 55%}.hero-banner-left{flex:0 40%}.hero-banner-heading h1{font-size:46px;line-height:60px;margin:0;color:#fff}.hero-banner-wrap .banner-choice-tab{box-shadow:0 0 20px 5px rgb(0 0 0 / 10%)}.inb-space{padding:70px 20px}.inb-content p{font-size:16px;margin:10px 0 0;color:#2E2E2E;font-weight:400;line-height:28px}.inb-sec-heading h2{font-size:33px;color:#0052CC;margin-bottom:20px;position:relative;display:inline-block}.inb-simple-button a,.inb-solid-button a,nav.hs-pagination a{font-size:16px;font-weight:500;position:relative;text-transform:uppercase}.inb-solid-button a,nav.hs-pagination a{background-color:#F4B400;border-radius:5px;color:#2E2E2E!important;font-weight: 600;display:inline-block;margin:0 auto;padding:15px 55px 15px 35px;text-align:center;text-decoration:none;transition:.6s}.inb-simple-button a{color:#f69220;padding-right:15px}.inb-simple-button a:after,.inb-solid-button a:after,nav.hs-pagination a:after{content:unset;display:block;position:absolute;transition:.3s ease-in-out;background-color:#fff;bottom:auto;height:2px;left:auto;right:40px;top:50%;-webkit-transform:translateY(-1px);transform:translateY(-1px);width:10px}.inb-simple-button a:before,.inb-solid-button a:before,nav.hs-pagination a:before{content:unset;display:block;position:absolute;transition:.3s ease-in-out;background-color:transparent;bottom:auto;box-shadow:inset -2px 2px 0 0;height:8px;left:auto;right:40px;top:50%;-webkit-transform:translateY(-4px) rotate(45deg);transform:translateY(-4px) rotate(45deg);-webkit-transform-origin:50% 50%;transform-origin:50% 50%;width:8px;color:#fff}.inb-simple-button a:hover:before,.inb-solid-button a:hover:before,nav.hs-pagination a:hover:before{-webkit-transform:translate(4px,-4px) rotate(45deg);transform:translate(4px,-4px) rotate(45deg)}.inb-simple-button a:hover:after,.inb-solid-button a:hover:after,nav.hs-pagination a:hover:after{background-color:#fff;height:2px;-webkit-transform:translate(4px,-1px);transform:translate(4px,-1px)}.inb-simple-button a:before{color:#f69220;right:0}.inb-simple-button a:after{background-color:#f69220;right:0}.inb-simple-button a:hover{color:#f69220;font-weight:500}.inb-simple-button a:hover:after,.ty-banner-btn.inb-solid-button a:hover{background-color:#f69220}.inb-solid-button a:hover{color:#fff!important;font-weight:600}.banner-sec-content p{color:#fff}nav.hs-pagination a span{color:#2E2E2E}nav.hs-pagination a:hover span{color:#fff!important}.align-left{text-align:left}.align-right{text-align:right}.career-form-inner{border-radius:5px;padding:20px;background-color:#fff;box-shadow:0 1px 16px 0 rgb(0 0 0 / 14%)}.inb-form .hs-input{border:1px solid #cacaca;background-color:#fff;height:46px;font-size:14px;letter-spacing:1px;line-height:25px;text-align:left;color:#2E2E2E;padding:10px}.inb-form .hs-input::placeholder{color:#aeaeae}.inb-form textarea{height:120px!important;padding:10px!important;line-height:100%!important}.inb-form .hs-input:focus{border-color:#dfdfdf!important;box-shadow:none;outline:0!important;background-color:#fff!important}.inb-form .hs-richtext p{color:#2E2E2E;font-size:12px;font-weight:500;line-height:19px;text-align:left;letter-spacing:1px;text-transform:none;padding-top:15px}.inb-form .hs-dependent-field,.inb-form .hs-dependent-field p{text-align:left;letter-spacing:1px;text-transform:initial;text-transform:none;color:#2E2E2E;font-size:12px;font-weight:500;padding:0!important;line-height:18px}.fullcontent-wrap ul,.inb-form .hs-dependent-field ul,.inb-form ul.hs-error-msgs{padding:0;margin:0;list-style:none}.inb-form input[type=checkbox]{height:auto!important}.inb-form label{display:block;margin-bottom:0;}.inb-form ul.hs-error-msgs label{font-weight:400;font-size:12px;color:red;text-transform:initial;text-transform:none;letter-spacing:0;text-align:left;padding: 5px 0px 5px 15px;}.inb-form .hs-form-field{min-height:65px;margin:0}.inb-form .hs-dependent-field .hs-form-field{min-height:100%}.inb-form .hs_file_upload .hs-input{height:auto;line-height:100%;padding:10px;width:100%}.inb-form input.hs-button.primary{color:#2E2E2E;font-size:16px;font-weight:600;letter-spacing:1px;text-align:center;background-color:#F4B400;padding:12px 50px;display:inline-block;border-radius:5px;text-transform:uppercase;border:none;margin-top:20px;}.inb-form .hs-form-field,.inb-form .hs-form-field .input{position:relative}.award-rec-content p,.awars-astn-right p,.banner-sec-heading h1,.contact-form-inner .form-title,.inb-form .hs-error-msg,.inb-form ul.hs-error-msgs li,.newsletter-text p,.ser-content_text p:last-child,.ser-form .form-title,.split-colum-heading h2,.steps-text.inb-content p,.vm-content p{margin:0}.inb-form select.hs-input{padding-left:10px;-webkit-appearance:none}.inb-form .hs-dependent-field ul li{margin:0;display:flex}.inb-form form .hs-richtext,.inb-form form .hs-richtext p,.ser-content-subheading{margin-bottom:10px}.inb-form .legal-consent-container .hs-form-booleancheckbox-display>span,.inb-form .legal-consent-container .hs-form-booleancheckbox-display>span p{margin-left:0!important;color:#2E2E2E;font-size:12px}.inb-form .hs-dependent-field ul li label{display:flex;align-items:center}.inb-form .is-placeholder{color:#aeaeae;-webkit-appearance:none}.btn-wrap-text a:hover{color:#2E2E2E;}.cta-button.inb-solid-button a:hover svg,.cta-button.inb-solid-button a:hover:before,.news-popup-close i{color:#0052CC}.blog-banner-wrapper{padding:50px 20px;text-align:center}.blog-banner-heading h1{color:#000;font-size:46px;margin:0}.blog-banner-content p{margin:0;font-weight:500;font-size:18px}.newsletter-wrapper{padding:0 20px 50px}.newsletter-outer{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;position:relative;max-width:780px;margin:0 auto;background:#fff;padding:32px 40px;font-size:18px;letter-spacing:.01em;box-shadow:0 1px 12px rgba(0,0,0,.04),0 4px 8px rgba(0,0,0,.08),0 3px 6px rgba(0,0,0,.1);border-radius:12px}.newsletter-text{flex:0 60%}.newsletter-button{flex:0 40%;text-align:right}.news-popup-wrapper{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%}.news-popup-form{position:relative;width:auto;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;max-width:650px;margin:1.75rem auto;min-height:calc(100% - 3.5rem);height:100%;overflow:hidden;outline:0;overflow-x:hidden;overflow-y:auto}.news-popup-form::-webkit-scrollbar{display:none}.news-popup-form form{background-color:#fff;padding:30px;border-radius:5px}.popup-overlay{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000;opacity:.4;display:none}
[data-simplebar]{position:relative;z-index:0;overflow:hidden!important;max-height:inherit;-webkit-overflow-scrolling:touch}[data-simplebar=init]{display:-webkit-box;display:-ms-flexbox;display:flex}.simplebar-scroll-content{overflow-x:hidden!important;overflow-y:scroll;min-width:100%!important;max-height:inherit!important;-webkit-box-sizing:content-box!important;box-sizing:content-box!important;padding-right:17px;margin-bottom:-34px}.simplebar-content{overflow-y:hidden!important;overflow-x:scroll;-webkit-box-sizing:border-box!important;box-sizing:border-box!important;min-height:100%!important}.marquee-wrapper,.slider-outer-wrapper .page-center,.swiper-container,.team-image,.team-image-sec,.team-main-image{overflow:hidden}.simplebar-track{z-index:1;position:absolute;right:0;bottom:0;width:11px}.simplebar-scrollbar{position:absolute;right:2px;width:7px;min-height:10px}.simplebar-scrollbar:before{position:absolute;content:"";background:#000;border-radius:7px;left:0;right:0;opacity:0;-webkit-transition:opacity .2s linear;transition:opacity .2s linear}.growth-service-section.growth-four .gs-cards:nth-last-child(-n+3):after,.growth-service-section.growth-seven .gs-cards:nth-last-child(-n+3):after,.gs-cards:after,.gs-cards:before{background-color:rgb(203 203 203 / 30%)}.simplebar-track .simplebar-scrollbar.visible:before,.simplebar-track:hover .simplebar-scrollbar:before{opacity:.5;-webkit-transition:opacity 0 linear;transition:opacity 0 linear}.simplebar-track.vertical{top:0}.simplebar-track.vertical .simplebar-scrollbar:before{top:2px;bottom:2px}.simplebar-track.horizontal{left:0;width:auto;height:11px}.simplebar-track.horizontal .simplebar-scrollbar:before{height:100%;left:2px;right:2px}.horizontal.simplebar-track .simplebar-scrollbar{right:auto;top:2px;height:7px;min-height:0;min-width:10px;width:auto}.news-popup{position:fixed;z-index:99;left:0;top:0;height:100%;width:100%;background-color:rgba(0,0,0,.6);display:block;opacity:0;visibility:hidden;transition:opacity .3s,visibility 0s .3s}.news-popup.is-visible{opacity:1;visibility:visible;transition:opacity .3s,visibility}.news-popup .simplebar-content{display:flex;align-items:center;justify-content:center;padding-bottom:17px;margin-right:-17px}.news-popup-container{position:relative;height:100%;background:rgba(0,0,0,.6);border-radius:.25em .25em .4em .4em;text-align:center;box-shadow:0 0 20px rgba(0,0,0,.2);-webkit-backface-visibility:hidden;-webkit-transition-property:-webkit-transform;transition-property:transform;transition-duration:.3s}.popupContainerWrap{position:relative;background:#fff;max-width:650px;padding:30px;border-radius:5px}.news-popup-container .news-popup-close{position:absolute;top:8px;right:8px;width:30px;height:30px;border-radius:100%}.vm-heading.inb-sec-title h2{color:#0052CC;margin-bottom:30px}.carrer-form,.contact-content,.contact-form,.faq-section,.steps-outer.col-two .steps-inner,.two-colum-content,.vm-section-left,.vm-section-right{flex:0 48%}.tech-platform-inner,
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
.mfp-bg,.mfp-container,.mfp-wrap{left:0;top:0;width:100%;height:100%}.mfp-container:before,.mfp-content{display:inline-block;vertical-align:middle}.mfp-bg{z-index:10000;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{z-index:10000;position:fixed;outline:0!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';height:100%}.mfp-align-top .mfp-container:before,.mfp-loading.mfp-figure,.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}.mfp-content{position:relative;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-gallery .mfp-image-holder .mfp-figure,.mfp-zoom{cursor:pointer}.mfp-zoom{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-close,.mfp-preloader a:hover{color:#fff}.mfp-preloader a{color:#ccc}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation;background-color: #f69220;}.mfp-close-btn-in .mfp-close:hover{background-color:#1d76bb}.mfp-figure:after,.mfp-iframe-scaler iframe{box-shadow:0 0 8px rgba(0,0,0,.6);position:absolute;left:0}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-arrow:focus,.mfp-arrow:hover,.mfp-close:focus,.mfp-close:hover{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#fff}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-figure,img.mfp-img{line-height:0}.mfp-arrow{position:absolute;opacity:.65;margin:-55px 0 0;top:50%;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:after,.mfp-arrow:before{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-image-holder .mfp-content,img.mfp-img{max-width:100%}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{display:block;top:0;width:100%;height:100%;background:#000}.mfp-figure:after,img.mfp-img{width:auto;height:auto;display:block}img.mfp-img{box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure:after{content:'';top:40px;bottom:40px;right:0;z-index:-1;background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile .mfp-bottom-bar:empty,.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}
.about-upwork-wrapper{padding:50px 20px;}.cta-button{flex:0 50%;text-align:right}.cta-text{flex:0 50%}.seo-form-wrap .inb-form input{background-color:#fff;border:1px solid #cacaca;color:#2E2E2E;font-size:14px;height:46px;letter-spacing:1px;line-height:25px;padding:10px;text-align:left;margin-bottom:25px}.seo-form-wrap .main-form-text{margin-bottom:20px}.seo-form-wrap .main-form-text p{margin:0}.seo-form-wrap .inb-form input::placeholder{color:#aeaeae}.seo-form-wrap .inb-form input[type=submit]{background-color:#f69220;border:none;border-radius:5px;color:#fff;display:inline-block;font-size:16px;font-weight:600;letter-spacing:1px;padding:12px 10px;text-align:center;text-transform:uppercase;}
.testimonial-inner .slick-slider,.vm-section-inner:first-child{padding-bottom:50px}.split-colum-image-mobile-only{display:none}.split-colum-image.image_right,.two-colum-image.image_right,.vm-section-inner:nth-child(2n) .vm-section-left{order:1}.two-colum-image-mobile-only{display:none}.award-image-mobile-only{display:none}.award-heading,.list-heading.inb-sec-title{margin-bottom:20px}.inb-text-wrap.align-center,.list-section,.logo-static-inner img{margin:0 auto}.list-section ul{padding:0;margin:0;list-style:none;columns:2;-webkit-columns:2;-moz-columns:2}.content-btn-txt.inb-content ul li,.list-section ul li{color:#2E2E2E;font-size:16px;line-height:28px;font-weight:400;display:flex;padding-bottom:10px;position: relative;padding: 5px 10px 5px 35px;}.content-btn-txt.inb-content ul li:before,.content-faq ul li:before,.inb-text ul li:before,.list-section ul li:before{content: '';background-image:url(https://697361.fs1.hubspotusercontent-na1.net/hubfs/697361/Website%20Images/green-tick-inboundsys.svg);background-repeat:no-repeat;position: absolute;top: 11px;width: 20px;height: 20px;left: 0px;}.two-column-service-module-v2,.image-logo-wrap,.aboutus-wrapper,.award-wrapper,.content-btn-wrapper,.fullcontent-form-wrapper,.growth-service-wrapper,.hub-service-wrapper,.social-wrapper,.statistics-wrapper,.testimonial-slider,.two-colum-wrapper{padding:60px 20px}.split-colum-image,.two-colum-image{flex:0 48%;text-align:center}.two-colum-heading h2{font-size:33px;line-height:51px;color:#2E2E2E;margin:0}.split-colum-text p,.two-colum-text p{font-size:16px;margin:10px 0 0;color:#2E2E2E;}.btn-wrap a{background-color:#f69220;border-radius:4px;color:#fff;font-size:16px;margin:0 auto;padding:10px 35px;text-align:center;text-decoration:none;transition:.6s;text-transform:uppercase;display:inline-block}.split-colum-more,.two-colum-more,.two-colum-more.btn-wrap{margin-top:30px}.tech-exp-content,.tech-platform-content{margin:0 auto;max-width:900px}.tech-exp-sec{display:block;margin-bottom:30px;float:left}.tech-exp-outer{background-color:#fff;border-radius:5px;width:23%;margin:1%;float:left;text-align:center;box-shadow:0 0 6px rgb(0 0 0 / 10%)}.tech-exp-inner{padding:30px;border-radius:3px}.exp-sec-heading.inb-sec-subheading h2{font-size:18px;font-weight:600;letter-spacing:1px;text-align:center;margin:10px 0}.tech-exp-logo img{height:100px!important}.growth-service-heading,.hub-service-heading,.steps-title.inb-sec-title{text-align:center;margin-bottom:30px}.growth-service-content{max-width:1000px;margin:0 auto 30px;text-align:center}.growth-service-heading h2{color:#2E2E2E;font-size:33px;margin:0}.client-logo-inner,.growth-service-section,.logo-static-outer,.steps-outer,.team-section{display:flex;justify-content:center;flex-wrap:wrap}.gs-cards{flex:0 33%;position:relative}.gs-cards-inner{padding:30px 20px 30px;display:flex;justify-content:space-between;align-items:flex-start}.gs-cards:after,.gs-cards:before{content:'';content:''}.gs-cards-image{width:70px;height:70px;text-align:center;border:1px solid #dcdcdc;border-radius:5px;display:flex;align-items:center;justify-content:center}.gs-cards-right{flex:0 calc(100% - 90px)}.gs-cards-heading h3,.hs-tabs-heading h3{color:#2E2E2E;font-size:18px;margin:0 0 10px}.award-text p,.gs-cards-text p,.statistics-text{color:#2E2E2E;font-size:16px}.btn-wrap-text a{color:#0052CC;font-size:14px;position:relative;padding-right:10px;font-weight:600}.btn-wrap-text span{transition:.2s}.btn-wrap-text a:hover span{padding-right:0;padding-left:5px;transition:.2s}.btn-wrap-text a i{font-size:10px;position:relative}.growth-service-section.growth-four .gs-cards:last-child:after,.growth-service-section.growth-seven .gs-cards:last-child:after,.growth-service-section.growth-seven .gs-cards:last-child:before{background:no-repeat}.gs-cards:before{height:100%;width:1px;position:absolute;right:-1px}.gs-cards:after{height:1px;width:100%;position:absolute;bottom:0}.growth-service-one .growth-service-section.growth-four .gs-cards:first-child:before,.gs-cards:nth-child(3n):before,.gs-cards:nth-last-child(-n+3):after{background:0 0}.first-column-full .gs-cards:nth-last-child(2):before {background-color: hsla(0,0%,80%,.3);}.gs-cards-more{position:absolute;bottom:30px}.growth-service-one .growth-service-section.growth-four .gs-cards:first-child,.growth-service-section.growth-seven .gs-cards:last-child{border:none;flex:0 100%}.growth-service-one .gs-cards:nth-child(2):after,.growth-service-one .gs-cards:nth-child(3):after,.growth-service-one .gs-cards:nth-child(4):before{background:0 0!important}.first-column-full .gs-cards:first-child:before {background: none;}.carrer-section,.contact-cards,.contact-section,.hub-service-section,.ser-content-outer,.team-outer{display:flex;justify-content:space-between;flex-wrap:wrap}.contact-details-outer{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}.contact-details-icon{background-color:#2478d8;width:50px;height:50px;display:flex;align-items:center;text-align:center;justify-content:center;border-radius:5px}.contact-details-icon svg{fill:#fff;height:20px}.contact-details-text{flex:0 calc(100% - 70px)}.contact-details-text p{margin:0;font-size:14px;color:#2E2E2E}.contact-details-text h5{font-weight:600;margin:0}.contact-details-text p a{color:#2E2E2E;font-size:14px;word-break:break-all}.contact-details-text p a:hover{text-decoration:underline}.carrer-form-inner,.contact-form-inner{border-radius:5px;padding:20px;background-color:#f9f9f9;border:1px solid #cacaca}.contact-inner{padding-bottom:30px}.contact-row-title h3{color:#2E2E2E;font-size:18px;font-weight:600;margin:0 0 10px}.contact-row-inner{display:flex;justify-content:flex-start;align-items:center;padding-bottom:5px}.con-row-icon svg{fill:#0052CC;height:17px}.con-row-text a{color:#2E2E2E;font-size:16px;word-break:break-all;line-height:100%}.con-row-text{line-height:100%;font-size:14px;padding-left:10px}.contact-cards-outer{flex:0 29%;border-radius:8px;background-color:#fafafa;border:1px solid #cacaca}.contact-card-wrapper{padding-top:50px}.contact-cards-inner{padding:30px}.contact-cards-title h3{color:#2E2E2E;font-size:18px;margin-bottom:15px}.contact-cards-text p{color:#2E2E2E;font-size:16px;line-height:28px}.contact-heading.inb-sec-title h2{font-size:33px}.logo-static-wrapper{background-color:#fafafa;padding:50px 20px}.content-faq,.set{background-color:#fff}.award-rec-heading,.awars-main-heading,.logo-static-heading,.media-heading{text-align:center;margin-bottom:50px}.logo-static-inner{text-align:center;flex:0 18%;box-shadow:0 0 20px 0 rgb(0 0 0 / 10%);box-shadow:2px 2px 20px 0 rgba(82,66,47,.12)!important;margin:0 2%;border-radius:2px;transition:.2s}.logo-static-inner:hover{transition:.2s;transform:translateY(-10px)}.accordion-container{position:relative;margin:10px 0}.accordion-container>h2{text-align:center;color:#fff;margin-bottom:20px;padding-bottom:15px;border-bottom:1px solid #ddd}.content-faq p,.content-faq ul li{color:#2E2E2E;font-size:16px;line-height:28px;font-weight:400}.set{position:relative;width:100%;height:auto;padding-bottom:10px}
.accordion-header{border-bottom:1px solid #f5f5f5;border-radius:0;color:#2E2E2E!important;display:block;font-size:16px;font-weight:500;padding:10px 0;text-decoration:none;-webkit-transition:.2s linear;-moz-transition:.2s linear;transition:.2s linear;cursor:pointer}.carrer-section .faq-section{height:100%;position:sticky;top:70px;border-radius:5px}.set>.accordion-header:after{content:"\f078";font-family:"Font Awesome 5 Free";font-size:1.2em;float:right;position:relative;top:-2px;transition:.3s;transform:rotate(0);color:#afafaf;font-weight:900}.set.active>.accordion-header:after{transform:rotate(-180deg);color:#0052CC}.set>.accordion-header i{float:right;font-size:16px;margin-top:2px;border:1px solid;border-radius:50%;width:20px;height:20px;display:flex;align-items:center;justify-content:center}.set>.accordion-header i.fa.fa-plus{-webkit-text-stroke:0px #f4a504;color:#f4a504}.set.active .accordion-header{color:#0052CC!important;border-color:#0052CC}.content-faq{display:none}.cta-wrapper,.team-image ul li,.team-quote p{background-color:#0052CC;}.content-faq p{margin:20px 0}.content-faq ul li{position:relative;display:flex}.cert-name p{font-size:16px;line-height:28px;font-weight:400;margin:10px 0}.set>.accordion-header i.fa.fa-minus{-webkit-text-stroke:0px #f69220;color:#f69220}.content-faq ul li i{padding-right:10px;color:#f29223}.content-faq ul{list-style:none;padding-left:0}.carrer-form-text h3,.ser-form-heading h3{color:#0052CC;font-size:18px;margin:0 0 10px;line-height:30px}.carrer-form-text p,.ser-form-heading p{font-size:16px;font-weight:500;letter-spacing:1px;text-align:center;margin:0}.cta-wrapper{padding:50px 20px}.cta-text h2{margin:0;color:#fff;font-size:33px}.cta-inner{margin:0 auto;display:flex;flex-wrap: wrap;justify-content:space-between;align-items:center}.cta-text p{color:#fff;margin:0}.cta-button.inb-solid-button a:hover{background-color:#fff!important;color:#0052CC!important}.award-left{flex:0 65%}.award-right,.hs-tabs-more{flex:0 30%;}.award-heading h3{font-size:34px;margin:0;color:#0052CC}.award-rec-inner{flex:0 30%;display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;margin-bottom:60px}.award-rec-inner:nth-child(3n-1){margin-left:5%;margin-right:5%}.award-rec-image img{border-radius:8px}.award-rec-content{flex:0 80%;margin-left:-5%;background-color:#fff;box-shadow:0 0 7px 2px rgb(0 0 0 / 10%);padding:20px 20px 20px 50px;border-radius:5px;height:150px;display:flex;align-items:center}.award-rec-content h2{color:#0052CC;font-size:27px;font-weight:600;margin:0}.award-rec-section{display:flex;flex-wrap:wrap;justify-content:center}.awars-astn-section{max-width:1100px;margin:0 auto}.client-feed-form,.client-feed-heading{max-width:800px;margin:0 auto}.awars-astn-inner{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;padding-bottom:30px;margin-bottom:30px;border-bottom:1px solid}.awars-astn-left{flex:0 20%}.awars-astn-right{flex:0 80%}.awars-astn-inner:last-child{padding-bottom:0;margin-bottom:0;border:none}.client-feed-form .hs-form__field__label,.client-feed-form form label{line-height:20px;margin-bottom:4px;font-size:13px;color:#5f646b;font-weight:500}.media-content-outer{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:20px 50px}.media-content{flex:0 30%;margin:0 2%}.media-button{text-align:center;margin-top:20px}.client-feed-heading h2{margin:0 0 20px;display:inline-block;position:relative;font-size:24px;font-weight:500;line-height:32px;color:#0052CC}.client-feed-form{background:#fff;box-shadow:0 4px 8px 0 rgb(53 105 128 / 30%),0 6px 20px 0 rgb(165 200 213 / 41%);padding:40px}.client-feed-form .hs-input{display:inline-block;width:100%;height:40px;padding:9px 10px;font-size:16px;font-weight:400;line-height:22px;color:#33475b;background-color:#f5f8fa;border:1px solid #cbd6e2;box-sizing:border-box;-webkit-border-radius:3px;-moz-border-radius:3px;-ms-border-radius:3px;border-radius:3px}.client-feed-form .hs-form-field>label{font-weight:600;font-size:14px}.client-feed-form form input[type=checkbox],.client-feed-form form input[type=radio]{cursor:pointer;width:auto;height:auto;padding:0;margin:3px 0;line-height:normal;border:none;vertical-align:middle}.client-feed-form form .hs-form-checkbox span,.client-feed-form form .hs-form-radio span{margin-left:5px;margin-right:5px}.client-feed-form legend.hs-field-desc{font-size:11px;color:red}.client-feed-form .hs-input::placeholder{font-size:14px;color:#aeaeae}.client-feed-form select.hs-input{font-size:14px}.client-feed-form .form-title{display:none}.client-feed-form .client-feed-wrapper{background:#f4f8fa;padding:50px 0}.client-feed-form form .inputs-list>li,.ser-content_text p{margin:10px 0}.client-feed-form input.hs-button.primary.large{border-radius:5px!important;padding:10px 30px!important;background-color:#f69220!important;text-transform:uppercase!important;font-size:14px!important;margin-bottom:0!important;border-bottom:0!important;border:none;font-family:Poppins,sans-serif!important;font-weight:500;letter-spacing:2px}.client-feed-form input.hs-button.primary.large:hover{background-color:#0078d7!important}.client-feed-form label.hs-error-msg{color:red}.inb-text-wrap.align-right{margin:0 0 0 auto}.inb-text-wrap.align-left{margin:0 auto 0 0}.inb-text ul li{list-style:none!important;padding:0 0 10px;margin:0;color:#2E2E2E;font-size:16px;display:flex}.fullcontent-form ul,.inb-text ul{list-style:none!important;padding:0;margin:0}.split-colum-content{max-width:500px;flex:0 48%}.main-form-inner{border-radius:5px;padding:20px;background-color:#fff;border:1px solid #cacaca;max-width:750px;margin:0 auto}.main-form-text h3{color:#2E2E2E;font-size:18px;margin-bottom:0}.main-form-text p{color:#2E2E2E;font-size:14px}.content-text h3{color:#0052CC;font-size:18px;margin:0 0 5px}.content-text p{margin-bottom:5px}.content-button,.ty-banner-btn{margin-top:20px}.hs-tabs{border-radius:5px;flex:0 33%;margin-bottom:.6%}.hs-tabs-inner{align-items:center;flex-wrap:wrap;padding:20px}.hs-tabs-left{flex:0 100%;margin-right:2%}.hs-tabs-text p{font-size:16px;margin:0; color:#2E2E2E;}.hs-tabs-more.btn-wrap a{padding:10px 0;width:100%}.hs-tabs-img svg{width:40px;height:auto}.hs-tabs-left{padding-left:0px;position:relative}.client-logos{flex:0 18%;text-align:center;margin:0 1% 40px}.client-logos img{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.client-logos img:hover{-webkit-filter:grayscale(0%);filter:grayscale(0%)}.integ-img-sec{display:flex;justify-content:space-between;flex-wrap:wrap;margin-bottom:30px}.marquee,.marquee a,.marquee-wrapper{display:inline-block;white-space:nowrap}.integ-img-outer{flex:0 23%;box-shadow:0 0 4px 2px rgb(0 0 0 / 10%);padding:20px;margin:1%;background-color:#fff}.marquee-wrapper{position:relative}.marquee{position:relative;transform:translate3d(0,0,0);animation-name:marquee;animation-timing-function:linear;animation-iteration-count:infinite}.marquee a{padding-right:4.4rem}.marquee-wrapper:hover .marquee{animation-play-state:paused!important}@keyframes marquee{0%{transform:translate3d(0,0,0)}100%{transform:translate3d(-100%,0,0)}}.ser-content-left{flex:0 63%}.ser-content-right{flex:0 35%;margin-right:0}img{max-width:100%;height:auto}.ser-content-heading h2{font-size:25px;color:#0052CC;margin-bottom:15px}.ser-content-heading h3{font-size:25px;color:#2E2E2E!important;margin-bottom:15px}.ser-content_text:nth-child(2) ul{padding-top:15px}.ser-content-text ul{list-style:none;padding:0;margin:0}.ser-content-text ul li{padding:0 0 10px;margin:0;color:#2E2E2E;font-size:16px;display:flex;line-height:28px}.ser-content-text ul li strong{display:contents}.fullcontent-wrap ul li:before,.ser-content-text ul li:before{color:#0052CC;content:"\f14a"!important;font-family:Font Awesome\ 5 Free;font-weight:400;padding-right:10px!important}.ser-content-subheading h3{margin-bottom:15px;font-size:18px}.ser-form.inb-form{border-radius:8px;padding:20px;background-color:#f9f9f9;border:1px solid #cacaca}.ser-form-heading,.statistics-heading{text-align:center;margin-bottom:20px}.statistics-left .statistics-heading {margin-bottom: 10px;text-align: left;}.inb-form .hs-dependent-field ul li.hs-form-booleancheckbox label{align-items:flex-start}.inb-form .hs-dependent-field ul li.hs-form-booleancheckbox label input{position:relative;top:4px}.ser-content_text td{border:1px solid #b7babd;vertical-align:middle;color:#2E2E2E;font-size:16px}.ser-content_text td:first-child{font-weight:600}.ser-content_text table{margin-top:30px;width:700px}ul.ser-content-image{margin:0;padding:0;list-style:none;display:flex;align-items:center;gap:30px}ul.ser-content-image li{flex-grow:1;text-align:left}.ser-content_text div{overflow-y:hidden;overflow-x:auto}.statistics-right svg{width:50px;height:55px;fill:#0052CC}.statistics-outer{display:flex;justify-content:center;flex-wrap:wrap;position:relative}.statistics-section{flex:0 33%;padding:0 1% 1px;margin:2% 0;display:flex;align-items:center;flex-wrap:wrap;position:relative}.statistics-section:nth-child(odd){justify-content:end}.fullcontent-form .hs_submit.hs-submit,.steps-heading h3,.team-details,.team-image ul li,.team-main-details,.team-main-image,.tech--button,.tech-top-sec,.testimonial-heading,.testimonial-text{text-align:center}.about-up-heading h2,.statistics-heading h3{color: #2E2E2E;font-size:18px;margin:0}.statistics-right{box-shadow:inset 0 0 15px #00000024;border:2px solid rgb(30 118 186 / 24%);border-radius:21px;width:100px;height:100px;display:flex;align-items:center;justify-content:center}.statistics-left{flex:0 100%}.statistics-section:nth-child(2n) .statistics-left{order:1;}.statistics-section:nth-child(odd) .statistics-left{margin-right:20px}.statistics-outer:before{height:1px;top:50%;width:85%;left:0;right:0;margin:0 auto}
.statistics-section:nth-last-child(-n+2):after{content:none!important}span.statistics-heading-extended {color:#2ECC71;font-size: 33px;padding-right:12px;vertical-align: middle}.steps-outer .steps-inner{box-shadow:0 0 20px 2px rgba(0,0,0,.1);padding:40px;text-align:center;margin:1%;background-color:#fff;border-radius:5px;}.steps-top.steps-icon svg{height:45px;fill:#f69220}.steps-heading h3{color:#2E2E2E;margin:0;font-size:22px;line-height:36px;padding-bottom:15px}.steps-top.steps-icon{padding-bottom:20px}.steps-outer.col-three .steps-inner{flex:0 32%}.team-quote{height:100%;flex:0 24%;position:sticky;top:54px}.team-quote p{padding:20px;color:#fff;border-radius:5px;box-shadow:0 0 16px 8px rgb(29 118 187 / 40%);width:100%}.team-wrapper{background-color:#f7f7f7;padding:70px 20px}.team-section-outer{flex:0 73%}.team-inner{flex:0 29%;margin:2%;position:relative}.team-details h5{font-size:14px;margin:0;color:#2E2E2E}.team-details{padding-top:10px}.team-details p{color:#2E2E2E;font-size:12px}.team-image{position:relative}.team-image img{display:block}.team-image ul{display:flex;justify-content:center;list-style:none;position:absolute;bottom:-36px;margin:0;padding:0;left:0;right:0;width:100%;background-color:rgb(0 0 0 / 20%);transition:1s}.team-image ul li{width:25px;height:25px;margin:5px;display:flex;justify-content:center;border-radius:50%}.team-image ul li a{font-size:19px}.team-image ul li a svg{height:14px;fill:#fff}.team-inner:hover .team-image ul{bottom:0;transition:1s}.team-main-section{display:flex;justify-content:space-between;flex-wrap:wrap}.team-main-left{flex:0 30%;max-width:30%;height:100%;position:-webkit-sticky;position:sticky;top:60px}.team-main-right{flex:0 68%;max-width:68%}.team-main-image img{width:100%;display:block;transition:1s}.team-main-details h5{color:#2E2E2E;font-size:18px;font-weight:500;letter-spacing:1px;line-height:25px;margin:0}.team-main-details p{font-size:14px;font-weight:500;line-height:20px;margin-bottom:5px}.team-main-details ul{display:flex;justify-content:center;list-style:none;margin:0;padding:10px 0 0}.team-main-details ul li{width:30px;height:30px;background-color:#f69220;margin:5px;border-radius:50%;display:flex;align-items:center;justify-content:center}.team-main-image{max-width:300px;margin:0 auto 20px;border-radius:8px}.team-main-details ul li a svg{height:15px;fill:#ffffff}.team-main-image:hover img{transform:scale(1.1);transition:1s}.team-image-sec{margin-top:50px;border-radius:8px}.team-image-sec img{filter:grayscale(1);transition:1s;border-radius:8px}.team-image-sec img:hover{filter:grayscale(0%);transition:1s;transform:scale(1.1)}.tech-platform-logo{display:flex;justify-content:left;flex-wrap:wrap}.tech-platform-img{flex:0 23%;margin:1%}.tech-platform-img img{transition:.5s;filter:grayscale(100%)}.tech-platform-img:hover img{transition:.5s;transform:scale(1.05);filter:grayscale(0%)}.tech--button {margin-top: 30px;}.testimonial-inner{padding:40px 64px}.quote-name h4{margin:0 0 20px;font-size:20px;color:#2E2E2E;}.testimonial-quote p{color:#2E2E2E;font-size:16px;font-weight:400;line-height:28px;margin:0 auto;padding-bottom:15px}.quote-wrapper{color:#7d7d7d}.testimonial-image{flex:0 15%}.author-details h5{color:#0052CC;font-size:18px;font-weight:500;margin:0}.author-details p{font-style:italic;font-size:12px!important;line-height:20px!important;color:#2E2E2E;margin:0}.testimonial-content button{background-repeat:no-repeat;border:none;cursor:pointer;font-size:7px;height:48px;outline:0!important;position:absolute;top:initial;bottom:-21px;width:48px;color:transparent;background-color:#F4B400 !important;z-index:99;padding:0}.testimonial-content button.slick-prev{left:calc(50% - 48px);border-top-left-radius:9999px;border-bottom-left-radius:9999px}.testimonial-content button.slick-next{left:calc(50% - 1px);border-top-right-radius:9999px;border-bottom-right-radius:9999px}.testimonial-content button:after{content:"\f060";color:#fff;font-family:Font Awesome\ 5 Free;font-weight:900;transform:translateY(-50%);width:36px;height:18px;display:block;font-size:16px;position:absolute;top:24px;left:5px}.testimonial-content button.slick-next::after{content:"\f061"}button.slick-disabled{opacity:.3;cursor:no-drop}[data-star]{text-align:left;font-style:normal;display:inline-block;position:relative;unicode-bidi:bidi-override}[data-star]::before{display:block;content:'★★★★★';color:#eee}[data-star]::after{white-space:nowrap;position:absolute;top:0;left:0;content:'★★★★★';width:0;color:#2ECC71;overflow:hidden;height:100%}[data-star^="0.1"]::after{width:2%}[data-star^="0.2"]::after{width:4%}[data-star^="0.3"]::after{width:6%}[data-star^="0.4"]::after{width:8%}[data-star^="0.5"]::after{width:10%}[data-star^="0.6"]::after{width:12%}[data-star^="0.7"]::after{width:14%}[data-star^="0.8"]::after{width:16%}[data-star^="0.9"]::after{width:18%}[data-star^="1"]::after{width:20%}[data-star^="1.1"]::after{width:22%}[data-star^="1.2"]::after{width:24%}[data-star^="1.3"]::after{width:26%}[data-star^="1.4"]::after{width:28%}[data-star^="1.5"]::after{width:30%}[data-star^="1.6"]::after{width:32%}[data-star^="1.7"]::after{width:34%}[data-star^="1.8"]::after{width:36%}[data-star^="1.9"]::after{width:38%}[data-star^="2"]::after{width:40%}[data-star^="2.1"]::after{width:42%}[data-star^="2.2"]::after{width:44%}[data-star^="2.3"]::after{width:46%}[data-star^="2.4"]::after{width:48%}[data-star^="2.5"]::after{width:50%}[data-star^="2.6"]::after{width:52%}[data-star^="2.7"]::after{width:54%}[data-star^="2.8"]::after{width:56%}[data-star^="2.9"]::after{width:58%}[data-star^="3"]::after{width:60%}[data-star^="3.1"]::after{width:62%}[data-star^="3.2"]::after{width:64%}[data-star^="3.3"]::after{width:66%}[data-star^="3.4"]::after{width:68%}[data-star^="3.5"]::after{width:70%}[data-star^="3.6"]::after{width:72%}[data-star^="3.7"]::after{width:74%}[data-star^="3.8"]::after{width:76%}[data-star^="3.9"]::after{width:78%}[data-star^="4"]::after{width:80%}[data-star^="4.1"]::after{width:82%}[data-star^="4.2"]::after{width:84%}[data-star^="4.3"]::after{width:86%}[data-star^="4.4"]::after{width:88%}[data-star^="4.5"]::after{width:90%}[data-star^="4.6"]::after{width:92%}[data-star^="4.7"]::after{width:94%}[data-star^="4.8"]::after{width:96%}[data-star^="4.9"]::after{width:98%}[data-star^="5"]::after{width:100%}.tech-platform_img{display:inline-block;background-color:#fafafa;padding:0 10px}.testi-slider-inner{padding:40px;position:relative;background-color:#fff}.testi-slider-top{display:flex;justify-content:space-between}.testimonial-details h4{color:#2E2E2E;font-weight:600;font-size:20px;margin-bottom:0}.testi-slider-bottom p,.testimonial-details p{color:#2E2E2E;font-size:14px;line-height:26px}.testimonial-details p{font-style:italic;font-weight:600}.testi-slider-right img{width:60px}.testimonial-button{position:absolute;bottom:60px;left:0;right:0;margin:0 auto}.testimonial-section{padding-bottom:90px;padding-top:40px}
.inb-divider:before{background-color:#f5f5f5;border-radius:50%;bottom:-10px;content:"";height:20px;left:0;margin:0 auto;position:absolute;right:0;width:20px}.inb-divider{position:relative;border-bottom:1px solid #f5f5f5;padding-bottom:0}.marquee img{height:100px!important;width:auto;filter:grayscale(1)}.marquee img:hover{filter:grayscale(0)}.inb-sec-title h2,.inb-sec-title h3{font-size:33px;margin:0;color:#0052CC;line-height:44px}.fullcontent-wrap p{font-size:16px;line-height:28px;color:#2E2E2E;}.fullcontent-wrap ul li{color:#2E2E2E;font-size:16px;list-style:none!important;margin:0;padding:0 0 10px}.fullcontent-form h2{font-size:33px;margin:0;color:#0052CC;line-height:44px}.fullcontent-form label{font-size:16px;font-weight:400;line-height:1.5}.fullcontent-form .hs-form-field{height:115px;margin:0}.fullcontent-form .hs-input,.fullcontent-form input{border-radius:3px!important;width:100%!important;border:1px solid #ccc;margin-bottom:0;box-shadow:none!important;margin-top:8px;font-size:16px;height:45px}.fullcontent-form .hs-form select{border-radius:3px!important;-webkit-appearance:none!important;-webkit-border-radius:3px!important;-moz-border-radius:3px!important;-ms-border-radius:3px!important}.fullcontent-form ul.hs-error-msgs li label{color:red;font-size:12px;margin:0!important}.fullcontent-form ul.hs-error-msgs{padding:0;margin:0;list-style:none;line-height:20px}.fullcontent-form .legal-consent-container .hs-richtext,.fullcontent-form .legal-consent-container .hs-richtext p{font-size:12px;line-height:20px}.fullcontent-form li{list-style:none!important;padding:0 0 10px;margin:0!important;color:#222;font-size:16px;display:inline-block!important}.fullcontent-form .hs_message.hs-form-field{height:100%!important}.fullcontent-form textarea{min-height:100px!important}.fullcontent-form select{display:block;padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;-webkit-transition:border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;-o-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.fullcontent-form input.hs-button.primary.large{color:#fff;font-size:16px;font-weight:600;letter-spacing:1px;text-align:center;background-color:#f69220;padding:12px 50px;display:inline-block;border-radius:5px!important;text-transform:uppercase;border:none;margin-top:30px}.fullcontent-form .actions{display:inline-block}.about-up-outer{display:flex;justify-content:center;flex-wrap:wrap;align-items:center;gap:5%}.about-up-img{flex:0 35%}.about-up-content{flex:0 60%;display:flex;flex-wrap:wrap;gap:40px}.aboutus-heading h2{font-size:32px;margin:0 0 20px;color:#0052CC;line-height:44px}.aboutus-image{display:flex;justify-content:center !important;align-items:center;gap:70px}.animation{will-change:transform}.crds-wrapper{padding:50px 20px 0;background-color:#fafafa}.crds-outer{display:flex;justify-content:space-between;flex-wrap:wrap;padding-top:50px}.crds-inner{flex:0 30%;margin-bottom:50px;padding-bottom:55px;position:relative}.crds-btn{position:absolute;bottom:0}.crds-txt.inb-content,.tech-top-sec{padding-bottom:30px}.inb-sec-name h3{font-size:20px;margin:0;color:#2E2E2E;line-height:30px}.content-btn-txt.inb-content ul{padding:20px 0 0;margin:0;list-style:none}.crds-top{display:flex;justify-content:flex-start;align-items:center}.crds-icon{width:50px;margin-right:10px}.breadcrumb-wrapper ul.hs-breadcrumb-menu{display:flex;flex-wrap:wrap}.breadcrumb-wrapper .hs-breadcrumb-menu-item{float:none;padding:0;font-size:14px;font-weight:500;color:#2E2E2E;}.breadcrumb-wrapper{padding:10px 20px}
.breadcrumb-wrapper .hs-breadcrumb-menu-item a{font-size:14px;color:#0052CC;font-weight:500}.breadcrumb-wrapper .hs-breadcrumb-menu-item span{padding-right:10px}.inb-title-wrap .inb-sec-title{padding-bottom:15px}.team-main-heading h2{color:#0052CC;font-size:33px}.ty-banner-wrapper{position:relative;height:calc(100vh - 117px);display:flex;align-items:center;background-image:url(https://697361.fs1.hubspotusercontent-na1.net/hubfs/697361/Inboundsys_2023/Home/footer-art.png);background-repeat:repeat-x;background-position:bottom;background-size:45%;background-color:#0052CC;background-blend-mode:soft-light;padding:0 20px;text-align:center}.ty-banner-heading h1{font-size:42px;color:#fff;margin:0 0 10px}.ty-banner-txt p{color:#fff;margin:0;font-size:18px}.social-heading.inb-sec-title{text-align:center;margin-bottom:25px}.social-icons ul{list-style:none;display:flex;padding:0;justify-content:center}.social-icons ul li a{display:flex;align-items:center;justify-content:center;width:54px;height:50px;margin-right:15px;background-color:#f69220;border-radius:5px;color:#fff;font-size:14px;line-height:30px}.social-icons ul li a svg{fill:#ffffff;font-size:14px;line-height:30px;padding:8px 11px;height:40px;display:block}.team-main-btn{text-align:center;margin-top:20px}.fade-up-desktop{opacity:0;transition:.8s ease-in-out;transform:translateY(50px)}.fade-up-desktop.animate{opacity:1;transform:translateY(0)}
.fade-in {
  opacity: 0;
  transform: translateY(20px); /* Default vertical offset */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}
.fade-in.animate {
  opacity: 1;
  transform: translateY(0); /* Reset offset */
}
.content-section ul{list-style:none;margin:0;padding:0}.content-section ul li{color:#2E2E2E;display:flex;font-size:16px;line-height:28px;margin:0;padding:0 0 10px}.content-section ul li:before{color:#0052CC;content:"\f14a"!important;font-family:Font Awesome\ 5 Free;font-weight:400;padding-right:10px!important}.hub-services-button-wrap{text-align: center;margin-top: 30px;}.growth-service-button-wrap {text-align: center;margin-top: 30px;}.footer-address-column-two-inner {display: flex;justify-content: center;}.footer-address-column-two-inner-one {max-width: 310px;}.footer-logo {max-width: 275px;}.footer-logo img {width: 275px;}.footer-address-column-two-inner-one {padding-right: 15px;}
.testimonial-v2-heading h2 {
  color: #0052CC;
  font-size: 33px;
  line-height: 44px;
  margin-bottom: 20px;
  max-width: 60%;
}
.gs-cards-text{
  padding-bottom: 10px;
}
.testimonial-v2-card-inner-wrap {
  padding: 30px;
}
.testimonial-v2-card-sub-wrap {
  padding: 30px;
  background-color: #fff;
  margin-right: 15px;
  border-radius: 19px;
}
.testimonial-v2-quote img {
  max-width: 40px !important;
  padding-bottom: 10px;
}
.testimonial-v2-outer-wrap .arrow-container svg {
  width: 16px;
  vertical-align: text-bottom;
  fill: #0052CC;
}
.testimonial-v2-outer-wrap a.prev.slick-arrow, a.next.slick-arrow  {
  background-color: transparent;
  border: 1px solid #0052CC;
  border-radius: 50%;
  height: 50px;
  text-align: center;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-v2-outer-wrap .arrow-container span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-v2-outer-wrap .testimonial-v2-inner-wrap {
  position: relative;
}
.testimonial-v2-outer-wrap .arrow-container {
  display: flex;
  gap: 10px;
  position: absolute;
  right: 50px;
  top: 0px;
}
.testimonial-v2-outer-wrap a.next.slick-arrow.slick-disabled, .testimonial-v2-outer-wrap a.prev.slick-arrow.slick-disabled {
  background-color: #0052CC;
}
.testimonial-v2-outer-wrap a.next.slick-arrow.slick-disabled svg, .testimonial-v2-outer-wrap a.prev.slick-arrow.slick-disabled svg {
  fill: #fff;
}
.testimonial-v2-author p {
  font-style: italic;
}
.testimonial-v2-card-outer-wrap {
  height: auto !important; 
  overflow: hidden; 
}
@media (max-width:767px){
  .testimonial-v2-outer-wrap .arrow-container {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0px;
    left: 0px;
    bottom: -30px;
    justify-content: center;
    top: unset;
  }
  .testimonial-v2-heading h2{
    max-width: 100%;
  }
  .testimonial-v2-card-inner-wrap{
    padding: 30px 0px;
  }
  .testimonial-v2-card-sub-wrap {
    margin-right: 0px;
    margin-bottom: 25px;
  }
  .testimonial-v2-outer-wrap .arrow-container{
    padding: 15px 0px;
  }
  .left-align-bg { margin-left: 0px;}
}

.contact-form-v2-sub {
  display: flex;
  flex-wrap: wrap;
}
.contact-form-v2-left {
  flex: 0 47%;
}
.contact-form-v2 {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  border: 2px solid #fff;
}
.contact-us-form-v2-left-icon svg {
  height: 20px;
  width: 20px;
  vertical-align: -webkit-baseline-middle;
  fill: #f69220;
}
.contact-us-form-v2-left-label p {
  margin: 0px;
  color: #fff;
}
.contact-us-form-v2-left-value a {
  font-size: 16px;
  margin: 0px;
  color: #fff;
}
.contact-form-v2-left-contact-us-main {
  display: flex;
  padding-bottom: 15px;
}
.contact-us-form-v2-left-value {
  line-height: 1;
}
.contact-us-form-v2-left-content-wrap {
  padding-left: 10px;
}
.contact-us-form-v2-left-icon {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
}
.contact-form-v2-right {
  padding-left: 50px;
  flex: 0 47%;
}
.contact-form-v2 input, .contact-form-v2 select {
  background-color: transparent !important;
  border: 1px solid transparent !important;
  border-bottom-color: #2E2E2E !important;
  color: #2E2E2E !important;
  font-size: 16px !important;
  padding: 16.8px 0 !important;
  border-radius: 0px !important;
}
.contact-form-v2-outer-wrap input.hs-button.primary.large {
  padding: 16.8px 50px !important;
  background-color: #f69220 !important;
  color: #fff !important;
  border: 2px solid #f69220 !important;
}
.contact-form-v2 input::placeholder, .contact-form-v2 select::placeholder{
  color: #2E2E2E;
  font-size: 16px;
}
.contact-form-v2 h3 {
  margin: 0px;
}
.contact-form-v2-heading h2 {
  color: #fff;
  font-size: 33px;
  line-height: 44px;
  margin-bottom: 20px;
}
.contact-form-v2-left-content p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}
.contact-form-v2-left-contact-us-heading h3 {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}
.contact-form-v2 label {
  font-size: 16px;
  line-height: 28px;
}
.contact-form-v2 option {
  color: #000;
}
.contact-form-v2 .hs-form-field {
  margin-bottom: 5px;
}
.contact-form-v2 label.hs-error-msg {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0px;
}
.contact-form-v2 .hs-error-msgs li{
  display: block;
  margin: .7rem 0 0;
}
.contact-form-v2 .hs_submit.hs-submit {
  padding-top: 30px;
}
.contact-form-v2 input:focus-visible {
  outline: medium;
}
@media(max-width: 767px){
  .contact-form-v2-sub{
    display: block;
  }
  .inb-sec-title-h4 h4 {
    font-size: 24px;
    line-height: 38px;
  }
  .contact-form-v2-right{
    padding-left: 0px;
  }
  .contact-form-v2-left-contact-us-main {
    text-align: left;
  }
  .contact-form-v2 label.hs-error-msg {
    text-align: left;
  }
  .contact-form-v2{
    margin: 20px 0px;
  }
  .blog-button {
    font-size: 12px;
    padding: 12px 30px;
  }
}
.cta-v2-inner {
  text-align: center;
}
.cta-v2-text h2 {
  color: #fff;
  font-size: 33px;
  line-height: 44px;
  margin-bottom: 20px;
}
.cta-v2-wrapper .inb-solid-button a:hover {
  color: #0052CC !important;
  font-weight: 500;
  background:;
}

@media(max-width: 767px){
  .cta-v2-button a::before, .cta-v2-button a::after{
    display: none;
  }
  .cta-v2-button a{
    padding: 10px 20px;
  }
}
.hubspot-meetings-heading h2 {
  color: #0052CC;
  font-size: 33px;
  line-height: 44px;
  margin-bottom: 20px;
}
.hubspot-meetings-sub-heading h3 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 40px;
}
.hubspot-meetings-inner-wrap{
  text-align: center;
}
.list-points-explaination-heading h2 {
  color: #0052CC;
  font-size: 33px;
  line-height: 44px;
  margin-bottom: 20px;
}
.list-points-explaination-list-heading h3 {
  font-size: 18px;
  margin-bottom: 0px;
  font-weight: 700;
}
.list-points-explaination-inner-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.list-points-explaination-conetnt {
  flex: 0 49%;
}
.list-points-explaination-image {
  flex: 0 49%;
  text-align: center;
  padding: 20px;
}
@media(max-width: 940px){
  .list-points-explaination-inner-wrap{
    display: block;
  }
}
li.content-two-column-left-list {
  font-size: 16px;
  line-height: 28px;
  position: relative;
}
.content-two-column-left-wrap ul{
  padding-inline: 20px;
}
.content-two-column-sub-wrap {
  display: flex;
  justify-content: space-between;
  padding: 15px 0px 0px;
}
.content-two-column-left-wrap {
  flex: 0 49%;
}
.content-two-column-right-wrap {
  flex: 0 49%;
  padding-top: 10px;
}
.content-two-column-right-image img {
  max-width: 250px !important;
}
li.content-two-column-left-list:before {
  content: "";
  height: 2px;
  left: 0px;
  position: absolute;
  top: 45%;
  width: 8px;
  background-color: #2E2E2E;
  display: none;
}
.content-two-column-heading h2 {
  color: #0052CC;
  font-size: 33px;
  line-height: 44px;
  margin-bottom: 20px;
}
.content-two-column-sub-heading h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 30px;
  font-weight: 700;
  color: #333;
}
.content-two-column-content p {
  margin: 0px;
}
.content-two-column-right-button.inb-solid-button a {
  border-radius: 5px;
  display: inline-block;
  margin: 0 auto;
  padding: 10px 50px 10px 30px;
  text-align: center;
  text-decoration: none;
  transition: .6s;
}
.content-two-column-right-button.inb-simple-button a:before, .content-two-column-right-button.inb-solid-button a:before {
  background-color: transparent;
  bottom: auto;
  box-shadow: inset -2px 2px 0 0;
  color: #fff;
  content: "";
  display: block;
  height: 8px;
  left: auto;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: .3s ease-in-out;
  width: 8px;
}
.content-two-column-right-button.inb-simple-button a:after, .content-two-column-right-button.inb-solid-button a:after {
  background-color: #fff;
  bottom: auto;
  content: "";
  display: block;
  height: 2px;
  left: auto;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  transition: .3s ease-in-out;
  width: 10px;
}
.content-two-column-right-button.inb-solid-button {
  padding-top: 10px;
}
@media(max-width: 767px){
  .content-two-column-sub-wrap{
    display: block;
  }
}
@media(min-width: 768px){
  .content-two-column-left-wrap ul{
    margin: 0px;
  }
}
.two-column-banner-heading h1 {
  font-size: 46px;
  line-height: 54px;
  color: #0052CC;
  margin-bottom: 10px;
}
.two-column-banner-column-left-heading h3 {
  font-size: 25px;
  line-height: 42px;
  margin-bottom: 10px;
}
.two-column-banner-column-left-content p {
  font-size: 18px;
  line-height: 30px;
}
.two-column-banner-column-image-only-mobile{
  display: none;
}
.two-column-banner-column-right-image img {
  max-width: 500px !important;
}
.two-column-banner-column-wrap {
  display: flex;
  gap: 50px;
  padding-top: 20px;
}
.two-column-banner-column-left,.two-column-banner-column-right {
  flex: 0 45%;
}
.footer-term-menu ul li:first-child:after {
  background-color: #fff;
  content: "";
  height: 15px;
  width: 1px;
  display: block;
  position: absolute;
  top: 13px;
  right: -3px;
}
.footer-term-menu ul {
  display: flex !important;
  gap: 18px;
  flex-direction: row !important;
}
.footer-term-menu ul li {
  flex: 0 37%;
}
.footer-term-menu ul li:first-child{
  position: relative;
}
.footer-col ul li a:before {
  content: "\f105";
  display: none;
}
.footer-col ul li a{
  font-size: 12px;
}
.hero-banner-sub-heading p{
  color: #fff;
  margin: 0px;
}
.inb-heading-highlight-wrap h2{
  display: inline;
  background: linear-gradient(to bottom, transparent 60%, #ffcb56 40%);
  background-size: 100% 100%;
  background-repeat: repeat;
  line-height: 1.5 !important;
  padding: 0 4px;
}

@media(max-width: 940px){
  .two-column-banner-column-wrap {
    display: block;
  }
  .two-column-banner-column-right-image img{
    display: none;
  }
  .two-column-banner-column-image-only-mobile{
    display: block;
    text-align: center;
  }
  .two-column-banner-column-image-only-mobile img{
    max-width: 575px !important;
    padding: 20px 0px;
    width: 100%;
  }
  .two-column-banner-column-left {
    padding-bottom: 50px;
  }
}
@media(max-width: 767px){
  .two-column-banner-column-right-image img{
    max-width: 100% !important;
  }
}
@media screen and (max-width:1280px){.left-border {padding-left: 20px;}.left-border:before {left: -2px;}}
@media screen and (max-width:767px){.fade-up-mobile{opacity:0;transition:.8s ease-in-out;transform:translateY(50px)}.fade-mobile{opacity:0;transition:1s ease-in-out;}.fade-mobile.animate{opacity:1;}}
@media(max-width:1024px){.client-feed-text{position:relative}.gs-cards-inner{display:block}.gs-cards-image{margin-bottom:20px}.hero-banner-wrapper{height:100%!important;padding:100px 20px}}
@media(max-width:1000px){.statistics-section{margin:2% 0;flex:0 46%;padding:0 2%}.statistics-left{flex:0 100%}.cta-text{flex:0 50%}}
@media(max-width:950px){.hs-tabs-inner{display:block}.hs-tabs-more.btn-wrap-text{text-align:left}.gs-cards{flex:0 48%!important}.gs-cards:nth-child(3n):before,.gs-cards:nth-last-child(3):after{background-color:rgb(203 203 203 / 30%)}.gs-cards:nth-child(2n):before{background:0 0}.growth-service-one .growth-service-section.growth-four .gs-cards:first-child:before,.growth-service-one .gs-cards:nth-child(2):after{background-color:rgb(203 203 203 / 30%)!important}.growth-service-section.growth-seven .gs-cards:last-child{border:none;flex:0 100%}.client-logos{flex:0 23%}}
@media screen and (max-width:812px){.tech-exp-outer{width:31%}.hero-banner-outer,.ty-banner-wrapper{height:100%;padding:50px 20px 100px}.hub-service-section{display:block;}}
@media screen and (max-width:768px){.slide p{padding:0 20px}.nav-btn{display:none}.testimonial-wrapper .nav-btn{display:block}}
@media screen and (max-width:767px){.fade-up-mobile{opacity:0;transition:.8s ease-in-out;transform:translateY(50px)}
  @media(max-width:767px){.testimonial-heading h2{font-size:24px;line-height:36px}.testimonial-inner{padding:20px 0}.hs-tabs-img,.team-main-left,.team-quote{position:relative;top:0}.feed-header-wrap .header__logo,.media-heading.inb-sec-title h2,.statistics-section:nth-child(odd) .statistics-left{margin:0}.about-upwork-wrapper,.feed-header-wrap{padding:0 20px}.header__container.content-wrapper{padding:0}header.header.header--no-navigation{padding:10px 0}.hs-tabs-img,.inb-img{margin-bottom:10px}.tech-exp-logo img{width:300px;height:81px!important}.about-up-outer,.carrer-section,.contact-cards,.contact-section,.cta-inner,.hero-banner-wrap,.ser-content-outer,.statistics-outer,.team-main-section,.team-outer,.two-colum-section,.vm-section-outer{display:block}.about-content-wrapper,.award-rec-wrapper,.awars-astn-wrapper,.contact-wrapper,.content-wrapper--vertical-spacing,.dnd-section,.list-wrapper,.ser-content-wrapper,.split-col-wrapper,.tech-exp-wrap,.vm-wrapper{padding:50px 20px!important}.logo-static-inner{flex:0 45%;margin-bottom:30px}.carrer-section .faq-section{top:0;position:relative;margin-bottom:30px}.media-content,.media-content:nth-child(3n-1){flex:0 46%;margin:2%}.award-right{display:none}.award-image-mobile-only{display:block}.award-rec-heading,.awars-main-heading,.logo-static-heading,.media-heading,.statistics-heading.inb-sec-title{margin-bottom:20px}.awars-astn-inner{display:block;text-align:center;margin:20px}.statistics-section:nth-child(odd){text-align:left;justify-content:center;display:flex}.statistics-left{flex:0 100%;order:1}.statistics-outer:after,.statistics-outer:before,.statistics-section:nth-child(2n):after,.statistics-section:nth-child(odd):after{content:none}.statistics-section{text-align:center;display:flex;padding:0 0 30px;margin:0 0 30px;border-bottom:1px solid #b5b5b5}.statistics-section:last-child{margin:0;border:none;padding-bottom:0}.award-left,.award-right{flex:0 100%}.award-left{order:1}.about-up-img,.contact-cards-outer:not(:last-child),.cta-text{margin-bottom:30px}.split-colum-section{display:block;border-bottom:1px solid #b5b5b5;margin-bottom:30px}.contact-cards-outer{flex: 0 100%;}.split-colum-content{max-width:100%}.split-colum-section:last-child{margin:0;border:none}.integ-img-outer{flex:0 48%}.client-logos{flex:0 31%;margin-bottom:0}.team-main-left{text-align:center;margin:0 auto;max-width:100%}.team-main-right{max-width:100%;text-align:center}.hero-banner-outer{height:100%;padding:50px 20px;background-image:none}.banner-choice-wrap,.team-main-image{margin:0 0 30px}.hero-banner-left img{width:400px!important}.statistics-heading{margin-bottom:0;text-align:left}.hs-tabs-left{padding-left:0}.about-up-content{justify-content:left;gap:0}.team-main-wrapper{padding:0 20px!important}.list-section ul{columns:1;-webkit-columns:1;-moz-columns:1}.award-rec-inner,.award-rec-inner:nth-child(3n-1){flex:0 46%;margin:20px 2%}.two-colum-image{padding-bottom:20px}.two-colum-image-mobile-only{display:block}.two-colum-image{display: none}.inb-sec-title h2,.inb-sec-title h3{font-size:26px!important;line-height:36px}.gs-cards-text p{margin:0px}.aboutus-heading,.align-center,.award-left,.award-rec-heading,.award-right,.awars-main-heading,.carrer-form-text,.carrer-form-text p,.growth-service-heading,.hub-service-heading,.list-heading,.logo-static-heading,.media-heading,.ser-form-heading,.ser-form-heading p,.statistics-text,.team-main-btn,.team-main-content,.team-main-details,.tech--button,.tech-top-sec,.testimonial-section-wrap,.testimonial-text{text-align:left}.split-colum-image-mobile-only{display:block;padding:10px 0px}.split-colum-image{display:none !important}.split-colum-image,.vm-section-image-mobile-only{display:block;text-align:left;padding: 20px 0px;}.vm-section-left{display:none}.testimonial-heading{text-align:revert-layer}.testimonial-content button.slick-prev{right:48px;left:initial}.testimonial-content button.slick-next{left:initial;right:0}.logo-static-outer{justify-content:center}.logo-static-inner,.statistics-section:nth-child(2n) .statistics-left{margin-left:0}.content-wrappers{padding:40px 20px!important}.vm-section-inner{display:block;text-align:left}.vm-heading.inb-sec-title h2{margin-bottom:15px}.team-main-details ul{justify-content:left;margin-bottom:20px}.award-rec-section,.media-content-outer{justify-content:left}.tech-platform-wrap{padding:30px 20px 0!important}.ser-content-right{padding-top:30px}.content-btn-wrapper{padding:20px 20px 50px}.crds-inner{flex:0 47%}.fullcontent-form h2{line-height:36px;font-size:26px}.team-main-btn{text-align:left;margin-bottom:20px}.statistics-right{margin:0;width:auto;flex:0 20%;border-radius:10px}.statistics-section{flex-wrap:wrap}.statistics-left{flex:0 100%;order:1}.header-top-wrapper,.hero-banner-left{display:none}.footer-menu li{border-bottom: 1px solid #ffffff;}.footer-menu ul li{border-bottom: 1px solid #ffffff;}.footer-menu ul{display: block !important;}.footer-heading h5{margin-bottom:15px;}.footer-menu a{display:inline-block;width:100%;line-height:48px;font-size:14px}.footer-menu:last-child h5{margin:45px 0 0}.two-column-service-module-v2,.image-logo-wrap,.award-wrapper,.cta-wrapper,.footer-top-wrap,.growth-service-wrapper,.hub-service-wrapper,.logo-static-wrapper,.statistics-wrapper,.testimonial-slider,.two-colum-wrapper,.aboutus-wrapper,.vm-wrapper,.list-wrapper,.content-wrappers,.contact-wrapper,.ser-content-wrapper{padding:25px 20px!important}.team-main-wrapper{padding:20px 20px 25px!important}.about-upwork-wrapper,.award-rec-wrapper,.tech-platform-wrap{padding:25px 20px 0 !important;}.media-wrapper{padding: 25px 20px 6px !important;}.award-rec-inner, .award-rec-inner:nth-child(3n-1) {margin: 0px 2% 20px 2%;}.carrer-wrapper {padding: 0px 20px 25px !important;}.contact-card-wrapper {padding-top: 25px;}.growth-service-content {margin-bottom: 0px;}.growth-service-heading,.hub-service-heading,.steps-heading h3,.steps-title.inb-sec-title{text-align:left}.steps-outer .steps-inner{text-align:left;padding:20px}.steps-wrapper,.integ-wrapper{padding:25px 20px!important}.integ-title{text-align:left;padding-bottom:15px}.cta-button{flex:0 27%;text-align:left;margin-top:20px}.cta-text{flex:0 70%}.cta-inner{display:block}}
  @media(max-width:650px){.hs-breadcrumb-menu-divider:before{display:inline-block;transform:rotate(90deg);padding-left:0!important}.breadcrumb-wrapper .hs-breadcrumb-menu-item a{padding-right:10px;padding-bottom:10px;display:inline-block}.footer-menu-outer{display: block;}.footer-menu:nth-last-child(2){margin-bottom:0}.footer-menu:last-child h5{margin:0px 0 0}}
  @media(max-width:600px){.crds-btn,.gs-cards-more{position:relative}.client-feed-text{display:none}.feed-header-wrap{text-align:center;justify-content:center}.client-feed-heading{display:block;text-align:center}.client-feed-wrapper{padding:20px 0}.inb-solid-button a,nav.hs-pagination a{font-size:14px;padding:10px 39px 10px 20px}.inb-simple-button a:after,.inb-simple-button a:before,.inb-solid-button a:after,.inb-solid-button a:before,nav.hs-pagination a:after,nav.hs-pagination a:before{right:20px}.crds-outer,.growth-service-section,.steps-outer{display:block}.gs-cards:before{content:none}.growth-service-content{text-align:left}.gs-cards-inner{padding:30px 0}.gs-cards:nth-last-child(-n+2):after{background-color:hsla(0,0%,80%,.3)!important}.gs-cards:last-child .gs-cards-inner{padding-bottom:0!important}.growth-service-section.growth-four .gs-cards:last-child,.growth-service-section.growth-seven .gs-cards:last-child{border-left:none}.gs-cards:last-child:after{background:0 0!important}.gs-cards-more{bottom:0}.tech-exp-outer{width:48%}.steps-outer .steps-inner{margin:0 0 30px}.steps-outer .steps-inner:last-child{margin:0}.team-inner{flex:0 40%}.hero-banner-outer{padding:50px 20px}.banner-wrapper{height:100%!important;padding:50px 20px!important}.banner-sec-heading h1{margin:0}.crds-inner{margin-bottom:0}.fullcontent-form input.hs-button.primary.large{height:auto;padding:15px;line-height:24px}.inb-form input.hs-button.primary{width:auto;padding:12px 15px;height:auto}.growth-service-wrapper.growth-service-one.first-column-full .gs-cards:nth-last-child(2):after {background-color: hsla(0,0%,80%,.3) !important;}}
  @media(max-width:479px){.logo-static-outer{display:block}.logo-static-inner{margin-bottom:30px!important}.media-content-outer,.social-icons ul{display:block;text-align:center}.media-content,.media-content:nth-child(3n-1){margin:0 0 20px}.banner-heading h1{font-size:32px;line-height:50px}.banner-choice-tab p{font-size:16px}.tech-exp-outer{width:98%}.client-logos{flex:0 48%}.team-inner{flex:0 100%;text-align:center}.team-image img{margin:0 auto}.tech-platform-img{flex:0 31%}.tech-platform-logo{margin-bottom:20px}.tech-platform-inner{padding-bottom:0}.inb-sec-heading h2{font-size:24px}.aboutus-image{flex-wrap:wrap;justify-content:left;gap: 50px 50px;}.aboutus-image-wrap{flex:0 35%;flex-wrap: wrap;gap: 50px 50px !important;justify-content: center !important;}.aboutus-image-wrap img{max-height: 95px;width: auto;}.social-icons ul li{display:inline-block}.social-icons ul li a{margin:10px}.statistics-right svg{width:40px;padding:5px;height:40px;display:flex;align-items:center;justify-content:center}.statistics-section{align-items:baseline}.statistics-heading h3{line-height:41px;margin-bottom:10px}.statistics-right{border-radius:10px;height:55px;width:auto;flex:0 60px}.statistics-left{flex:0 100%;margin-left:20px}.award-wrapper,.cta-wrapper,.footer-top-wrap,.growth-service-wrapper,.hub-service-wrapper,.logo-static-wrapper,.statistics-wrapper,.testimonial-slider,.two-colum-wrapper,.aboutus-wrapper,.vm-wrapper,.list-wrapper,.content-wrappers,.contact-wrapper,.ser-content-wrapper{padding:25px 20px!important}.team-main-wrapper{padding:20px 20px 25px!important}.about-upwork-wrapper,.award-rec-wrapper,.tech-platform-wrap{padding:25px 20px 0 !important;}.media-wrapper{padding: 25px 20px 6px !important;}.award-rec-inner, .award-rec-inner:nth-child(3n-1) {margin: 0px 2% 20px 2%;}.carrer-wrapper {padding: 0px 20px 25px !important;}.contact-card-wrapper {padding-top: 25px;}.growth-service-content {margin-bottom: 0px;}.growth-service-heading,.hub-service-heading,.steps-heading h3,.steps-title.inb-sec-title{text-align:left}.steps-outer .steps-inner{text-align:left;padding:20px}.steps-wrapper,.integ-wrapper{padding:25px 20px!important}.integ-title{text-align:left;padding-bottom:15px}}
  @media(max-width:370px){.banner-choice-content ul li a,.banner-choice-tab p{font-size:13px}.banner-choice-tab span{width:46px}.banner-choice-tab span svg{height:8px}.banner-choice-tab{padding:10px}}
  @media(max-width:350px){.footer-button a{padding:10px!important;min-width:100%!important;line-height:20px}.banner-sec-heading h1{font-size: 32px}.hero-banner-heading h1{font-size:32px;line-height:46px}}
  @media (max-width: 970px){.footer-col.footer-col-two{ flex: 0 100%;}.footer-address-column-two-inner {display: flex;justify-content: start;align-items: center;}.footer-address-column-two-inner-one {padding-right: 40px;max-width: 400px;}
    @media (max-width: 767px){.hub-services-button-wrap {text-align: left;}.footer-address-column-two-inner-one {padding-right: 15px;max-width: 100%;}.footer-address-column-two-inner-two {padding-top: 40px;}.footer-address-column-two-inner-two iframe{margin: 0px !important;}.footer-address-column-two-inner{display: block;}}
    @media (max-width: 767px) {.growth-service-button-wrap {text-align: left;}}
    @media(min-width: 767px) and (max-width: 970px){.contact-cards-outer{flex: 0 44%;margin: 20px !important;}}