/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

:root {
  --white-color: #ffffff;
  --black-color: #000000;
  --slate-gray: #242e3d;
  --orange: #ff7f00;
  --magenta: #ec008c;
  --roayl-blue: #0037ff;
  --light-blue: #27aae1;
  --bg-color: #f9fafb;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--slate-gray);
  font-size: 16px;
  line-height: 1.625;
  overflow-wrap: break-word;
}

body.menu-active {
  overflow: hidden;
}

.body-wrapper {
  position: relative;
}

/* Paragraphs */
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin: 0;
}

strong, b {
  font-weight: 500;
}

/* Anchors */
a {
  color: var(--orange);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 22px;
  display: block;
}
h1, .h1 {
  font-size: 40px;
}
h2, .h2 {
  font-size: 36px;
}
h3, .h3 {
  font-size: 30px;
}
h4, .h4 {
  font-size: 24px;
}
h5, .h5 {
  font-size: 20px;
}
h6, .h6 {
  font-size: 18px;
}

@media(min-width: 768px) {
  h1, .h1 {
    font-size: 50px;
  }
  h2, .h2 {
    font-size: 44px;
  }
  h3, .h3 {
    font-size: 36px;
  }
  h4, .h4 {
    font-size: 28px;
  }
  h5, .h5 {
    font-size: 24px;
  }
  h6, .h6 {
    font-size: 20px;
  }
}

/* Lists */

ul,
ol {
  margin: 14px 0 0;
  padding: 0 0 0 26px;
}

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 {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}
.dnd-section > .row-fluid {
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 20px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
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 */
.hs-button, .cta_button {
  background-color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: var(--white-color);
  font-weight: 600;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.cta_button:hover, .cta_button:focus {
  background-color: var(--slate-gray);
  border-color: var(--slate-gray);
  text-decoration: none;
}

.cta_button.secondary {
  background-color: var(--magenta);
  border-color: var(--magenta);
}
.cta_button.secondary:hover {
  background-color: var(--slate-gray);
  border-color: var(--slate-gray);
}
/* Fields */

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

/* Labels */

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

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

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


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

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

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

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

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

/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 2;
}
.header .container {
  position: relative;
}
.header .header__holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header .header__logo {
  max-width: 220px;
  transition: all 0.4s ease-in-out;
}
.header .header__logo a {
  display: block;
  line-height: 0;
}
.header .header__logo a img {
  max-width: 100%;
}
.header .button-holder {
  display: none;
}
.header .button-holder .cta_button {
  font-weight: 500;
  padding: 7px 14px;
}
.header .button-holder .cta_button:hover {
  border-color: var(--white-color);
}

.header .header__menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding-right: 45px;
}

.header #main-nav .button-holder {
  display: block;
  text-align: center;
  margin-top: 10px;
}
.header #main-nav ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header #main-nav ul li {
  position: relative;
}
.header #main-nav ul li a {
  color: var(--white-color);
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 40px 10px 30px;
  transition: all 0.4s ease-in-out;
  text-align: center;
}
.header #main-nav ul li a:hover {
  color: var(--orange);
}

/* navbar style */
.header .nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 0;
  right: 0;
  overflow-y: auto;
  z-index: 10;
  transition: all 0.3s ease-in-out;
  background: var(--slate-gray);
}
.header .nav-bar #main-nav {
  padding: 80px 0 40px;
  background: var(--slate-gray);
  height: 100%;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.menu-active .header .nav-bar {
  height: 100%;
}
.menu-active .header .nav-bar #main-nav {
  transform: translateY(0);
}


/* mobile menu toogle */
.navbar-toggle {
  width: 36px;
  height: 31px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: transparent;
  text-indent: -9999px;
  overflow: hidden;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  z-index: 12;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: var(--white-color);
  height: 3px;
  transition: all 0.3s ease;
  width: 100%;
}
.navbar-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 23px
}
.navbar-toggle:before {
  top: 23px
}
.menu-active .navbar-toggle {
  background: transparent;
}
.menu-active .navbar-toggle:before {
  transform: rotate(45deg) translate(-6px, -6px)
}
.menu-active .navbar-toggle:after {
  transform: rotate(-45deg) translate(-7px, 7px)
}
.menu-active .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 480px) {
  .header .header__logo {
    max-width: 220px;
  }
  .header .header__menu {
    width: calc(100% - 220px);
  }
}
@media (min-width: 768px) {
  .header .header__menu {
    padding-right: 55px;
  }
  .header .button-holder {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header {
    padding: 25px 0;
  }
  .navbar-toggle {
    display: none;
  }
  .header .header__menu {
    padding: 0;
  }
  .header .nav-bar {
    position: static;
    overflow-y: unset;
    transition: none;
    height: auto;
    z-index: 1;
    background-color: transparent;
  }
  .header .nav-bar #main-nav {
    padding: 0;
    background: transparent;
    transform: none;
    transition: none;
    height: auto;
  }
  .header #main-nav ul {
    display: flex;
    flex-flow: row wrap;
  }
  .header #main-nav ul li {
    border: none;
    padding: 12px 25px 12px 0;
  }
  .header #main-nav ul li a {
    padding: 0;
    text-align: left:
  }
  .header #main-nav .button-holder {
    display: none;
    margin: 0;
  }
}
.hero-banner {
  background-color: var(--bg-color);
  display: flex;
  flex-flow: row wrap;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-banner .container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  min-height: inherit;
  width: 100%;
  padding-top: 100px !important;
  padding-bottom: 70px !important;
}
.hero-banner .align {
  max-width: 650px;
}
.hero-banner .video-holder {
  background: #000;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: inherit;
  object-fit: cover;
  z-index: -1;
}
.hero-banner .video-holder video {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}
.hero-banner .video-holder .mobile-video-show {
  display: none;
}
.hero-banner h1 {
  color: var(--white-color);
}
.hero-banner h2 {
  color: var(--magenta);
}
.hero-banner .cta_button.secondary:hover {
  background-color: var(--white-color);
  border-color: var(--white-color);
  color: var(--magenta);
}

@media(min-width: 768px) {
  .hero-banner .container {
    padding-top: 140px !important;
    padding-bottom: 100px !important;
  }
}
.showcase .showcase-company {
  background-color: var(--bg-color);
  padding: 20px 0;
}
.showcase .showcase-company .column {
  margin-bottom: 30px;
}
.showcase .company-info {
  text-align: center;
}
.showcase .company-info .image-holder {
  max-width: 140px;
  margin: 0 auto;
  line-height: 0;
  min-height: 106px;
}
.showcase .company-info h4 {
  margin-bottom: 15px;
}
.showcase .company-info .text {
  max-width: 250px;
  margin: 0 auto;
}


.showcase .showcase-client {
  padding: 20px 0;
}
.showcase .client-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.showcase .client-info h4 {
  margin-bottom: 0;
}
.showcase .client-info .image-holder {
  line-height: 0;
  width: 80px;
}
.showcase .client-info .content {
  padding-left: 15px;
  width: calc(100% - 80px);
}


@media(min-width: 768px) {
  .showcase .showcase-company .row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -15px;
  }
  .showcase .showcase-company .column {
    width: 50%;
  }
  .showcase .showcase-client .row {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    margin: 0 -15px;
  }
  .showcase .showcase-client .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .showcase .showcase-company .column {
    margin: 0;
    width: 25%;
  }
  .showcase .showcase-client .column {
    margin: 0;
    width: 25%;
  }
}
.partners {
  background-color: var(--bg-color);
  text-align: center;
  padding: 30px 0 60px;
}
.partners .h6 {
  font-weight: 600;
}
.partners .h6 span {
  color: var(--orange);
}
.partners .partners-slider {
  padding: 0 40px;
}
.partners .partners-slider .slick-list {
  margin: 0 -15px;
}
.partners .partners-slider .slick-slide {
  padding: 0 15px;
}
.partners .partners-slider .slick-arrow {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' fill='none'%3E%3Cpath fill='%23ff7f00' d='M6.933 8.819.324 2.459a1.04 1.04 0 0 1 0-1.51 1.14 1.14 0 0 1 1.569 0l7.392 7.115a1.043 1.043 0 0 1 0 1.51l-7.392 7.114a1.14 1.14 0 0 1-1.569 0 1.04 1.04 0 0 1 0-1.51z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 17px;
  width: 12px;
  right: 0;
  cursor: pointer;
}
.partners .partners-slider .slick-arrow.arrow-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='17' fill='none'%3E%3Cpath fill='%23ff7f00' d='M6.933 8.819.324 2.459a1.04 1.04 0 0 1 0-1.51 1.14 1.14 0 0 1 1.569 0l7.392 7.115a1.043 1.043 0 0 1 0 1.51l-7.392 7.114a1.14 1.14 0 0 1-1.569 0 1.04 1.04 0 0 1 0-1.51z'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(-180deg);
  left: 0;
  right: auto;
}
.partners .partners-slider .image {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

@media(min-width: 768px) {
  .partners .partners-slider {
    padding: 0 40px;
  }
}
@media(min-width: 992px) {
  .partners .partners-slider {
    padding: 0 60px;
  }
}
.solutions {
  padding: 50px 0;
}
.solutions h2 {
  margin-bottom: 50px;
}
.solutions .content-slider .content {
  background: linear-gradient(to right,  rgba(248,141,39,1) 0%,rgba(237,27,132,1) 100%);
  border-radius: 8px;
  display: inline-block;
  position: relative;
  padding: 20px;
}
.solutions .content-slider .content .h4 {
  color: var(--white-color);
  margin-bottom: 0;
}


@media(min-width: 992px) {
  .solutions .holder {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    min-height: 200px;
  }
  .solutions .holder .title { 
    margin-bottom: 0;
    width: 250px;
  }
  .solutions .holder .content-slider {
    width: calc(100% - 250px);
  }
}


.solutions .content-slider .content .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.map-module {
  padding: 50px 0;
  text-align: center;
}
.map-module .text {
  font-size: 20px;
  margin-bottom: 25px;
}
.map-module .map-image {
  text-align: center;
}
.team {
  padding: 50px 0;
}
.team h2 {
  margin-bottom: 30px;
  text-align: center;
}
.team .column {
  margin-bottom: 30px;
}
.team .column:last-child {
  margin-bottom: 0;
}
.team .team-info {
  background-color: var(--slate-gray);
  color: var(--white-color);
  padding: 30px;
  height: 100%;
}
.team .team-info .text {
  font-size: 20px;
}
.team .social-netwroks {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -7px 20px;
}
.team .social-netwroks li {
  padding: 0 7px;
  line-height: 0;
}
.team .social-netwroks svg {
  fill: var(--white-color);
  width: 25px;
}
.team .image-holder {
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin: 0 auto 20px;
  width: 200px;
  height: 200px;
}
.team .name {
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.team .designation {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
}

@media(min-width: 768px) {
  .team .image-holder {
    width: 300px;
    height: 300px;
  }
}
@media(min-width: 992px) {
  .team .row {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
    margin: 0 -15px;
  }
  .team .column {
    padding: 0 15px;
    margin: 0;
    width: 50%;
  }
  .team .image-holder {
    border-radius: 0;
    width: 100%;
    height: 450px;
  }
  .team .name, .team .designation {
    text-align: left;
  }
}
@media(min-width: 1200px) {
  .team .column:nth-child(1) {
    width: 45%;
  }
  .team .column:nth-child(2) {
    width: 55%;
  }
  .team .image-holder {
    height: 650px;
  }
}
.blog-recent-post {
  padding: 50px 0;
}
.blog-recent-post h2 {
  margin-bottom: 20px;
  text-align: center;
}
.blog-recent-post .column {
  width: 100%;
}
.blog-recent-post .column:last-child .recent-post {
  margin-bottom: 0;
}
.blog-recent-post .recent-post {
  margin-bottom: 30px;
}
.blog-recent-post .recent-post .recent-post__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 230px;
  margin-bottom: 20px;
  overflow: hidden;
  display: block;
}
.blog-recent-post .recent-post .recent-post__title {
  color: #000;
  font-weight: 500;
  display: block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  overflow: hidden; 
  text-overflow: ellipsis; 
  margin-bottom: 10px;
  min-height: 60px;
}
.blog-recent-post .recent-post .recent-post__title:hover {
  color: var(--orange);
}
.blog-recent-post .recent-post .recent-post__text {
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-recent-post .recent-post .recent-post__text h1, .blog-recent-post .recent-post .recent-post__text h2, .blog-recent-post .recent-post .recent-post__text h3, .blog-recent-post .recent-post .recent-post__text h4, .blog-recent-post .recent-post .recent-post__text h5, .blog-recent-post .recent-post .recent-post__text h6, .blog-recent-post .recent-post .recent-post__text .hs-responsive-embed-wrapper, .blog-recent-post .recent-post .recent-post__text iframe, .blog-recent-post .recent-post .recent-post__text ul {
  display: none !important;
}
.blog-recent-post .recent-post .recent-post__text p {
  margin: 0;
  display: inline;
}
.blog-recent-post .recent-post .recent-post__text a {
  color: var(--slate-gray);
  text-decoration: underline;
}
.blog-recent-post .recent-post .recent-post__text a:hover {
  color: var(--orange);
}
.blog-recent-post .recent-post .link-more {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

@media(min-width: 768px) {
  .blog-recent-post {
    padding: 60px 0;
  }
  .blog-recent-post h2 {
    margin-bottom: 30px;
  }
}
@media(min-width: 992px) {
  .blog-recent-post {
    padding: 80px 0;
  }
  .blog-recent-post h2 {
    margin-bottom: 40px;
  }
  .blog-recent-post .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
  }
  .blog-recent-post .column {
    padding: 0 10px;
    width: 33.333%;
  }
  .blog-recent-post .recent-post .recent-post__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media(min-width: 1200px) {
  .blog-recent-post h2 {
    margin-bottom: 50px;
  }
}
.footer {
  background-color: var(--bg-color);
  padding: 50px 0;
}
.footer .column {
  margin-bottom: 30px;
}
.footer .column:last-child {
  margin-bottom: 0;
}
.footer .logo {
  line-height: 0;
  margin-bottom: 30px;
}
.footer .social-networks {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -5px 30px;
}
.footer .social-networks li {
  padding: 0 5px;
  line-height: 0;
}
.footer .social-networks a {
  background-color: var(--orange);
  border-radius: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
}
.footer .social-networks a:hover {
  background-color: var(--slate-gray);
}
.footer .social-networks a svg {
  fill: var(--white-color);
  width: 17px;
  height: 17px;
}
.footer .contact-list li {
  font-weight: 500;
  position: relative;
  padding: 0 0 10px 30px;
}
.footer .contact-list li:last-child {
  padding-bottom: 0;
}
.footer .contact-list li .icon {
  position: absolute;
  top: 0;
  left: 0;
}
.footer .contact-list li svg {
  width: 15px;
  height: 15px; 
}
.footer .contact-list li a {
  color: var(--slate-gray);
} 
.footer .contact-list li a:hover {
  color: var(--orange);
}
.footer .footer-links li {
  padding-bottom: 8px;
}
.footer .footer-links li:last-child {
  padding-bottom: 0;
}
.footer .footer-links li a {
  font-weight: 500;
  color: var(--slate-gray);
} 
.footer .footer-links li a:hover {
  color: var(--orange);
}

@media(min-width: 768px) {
  .footer .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .footer .column {
    padding: 0 15px;
    width: 33.33%;
  }
  .footer .column:nth-child(1) {
    width: 100%;
  }
}
@media(min-width: 992px) {
  .footer .column {
    padding: 0 15px;
    width: 20%;
  }
  .footer .column:nth-child(1) {
    width: 40%;
  }
}
/* 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;
  }
}