/* 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));
    }
  
}
.dnd-section > .row-fluid,
.content-wrapper {
  margin: 0 auto;
}


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

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

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

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

@font-face {
  font-family: THICCCBOI;
  src: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Regular/THICCCBOI-Regular.woff) format("woff"),
    url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Regular/THICCCBOI-Regular.ttf) format("truetype"),
    font-style: normal;
}

@font-face {
  font-family: THICCCBOI;
  src: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Medium/THICCCBOI-Medium.woff) format("woff"),
    url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Medium/THICCCBOI-Medium.ttf) format("truetype"),
    font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: THICCCBOI;
  src: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Semi%20Bold/THICCCBOI-SemiBold.woff) format("woff"),
    url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Semi%20Bold/THICCCBOI-SemiBold.ttf) format("truetype"),
    font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: THICCCBOI;
  src: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Extra%20Bold/THICCCBOI-ExtraBold.woff) format("woff"),
    url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/fonts/THICCCBOI%20Extra%20Bold/THICCCBOI-ExtraBold.ttf) format("truetype"),
    font-style: normal;
  font-weight: 800;
}

html {
  font-size: 18px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'THICCCBOI', sans-serif;
  word-break: break-word;
}
body, li, p {
  color: #6e7791;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.1px;
  line-height: 30px;
  text-decoration: none;
  text-transform: none;
}
/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

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

/* Paragraphs */

p {
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  transition: .2s ease-in-out;
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
  font-style: normal;
  font-weight: 800;
}
h1{
  color: #141a2b;
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  text-transform: none;
  font-size: 64px;
  letter-spacing: 0;
  line-height: 76px;
}
h2 {
  color: #141a2b;
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  text-transform: none;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 58px;
}
h3{
  color: #141a2b;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  line-height: 34px;
}
h4{
  color: #141a2b;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  line-height: 32px;
}
h5{
  font-size: 18px;
  line-height: 24px;
  color: #141a2b;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}
h6{
  font-size: 16px;
  line-height: 22px;
  color: #141a2b;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}
/* 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;
}

/* website css */
.two-column-content.cm-two-con-content .right-column .list-items-wrap {
  padding: 0;
}
.two-column-content.cm-two-con-content .right-column h2 {
  margin-bottom: 24px;
  max-width: 720px;
}
.two-column-content.cm-two-con-content .right-column .list-items-wrap .list-items .list-items-icon img {
  margin: 0;
}
.two-column-content.cm-two-con-content .right-column .list-items-wrap .list-items {
  padding-top: 16px;
  margin: 0;
  align-items: unset;
}
.two-column-content.cm-two-con-content .right-column .bnt-wrap {
  margin-top: 32px;
}
.solution--wrapper.hs-solution-2-col .solution-card-image {
  padding: 24px 4px 0;
  float: left;
  width: 23.076923077%;
  text-align: center;
}
.solution--wrapper.hs-solution-2-col .solution-card-content {
  width: 74.358974359%;
  float: left;
  padding: 24px 0;
  margin-left: 2.564102564%;
}
.title-with-button.hs-only-title {
  display: block !important;
}
.title-with-button.hs-only-title .title-with-button-left {
  width: 100%;
}
.title-with-button.hs-only-title .border-top {
  text-align: center;
  width: 140px;
  margin: 0 auto 22px;
}
.title-with-button.hs-only-title h2 {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 24px;
}
.title-with-button.hs-only-title p {
  margin: 0 auto 15px;
  text-align: center;
  max-width: 650px;
}

.title-with-button.full-with-title-with-button {
  display: block !IMPORTANT;
}
.title-with-button.full-with-title-with-button .border-top {
  text-align: center;
  width: 140px;
  margin: 0 auto -10px;
  height: 36px
}
.title-with-button.full-with-title-with-button h2 {
  margin: 0 auto;
  margin-bottom: 24px;
  text-align: center;
  max-width: 720px;
  color: #141a2b;
  font-size: 64px;
  letter-spacing: 0;
  line-height: 76px;
}
.title-with-button.full-with-title-with-button p {
  margin: 0 auto 15px;
  text-align: center;
  max-width: 720px;
  font-size: 22px;
  color: #6e7791;
  letter-spacing: -.1px;
  line-height: 30px;
  display: block;
}
.title-with-button.full-with-title-with-button .title-with-button-left {
  padding: 0;
  margin: 0;
  width: 100%;
  float: none;
}
.title-with-button.full-with-title-with-button .title-with-button-right {
  padding: 0;
  margin: 18px 0 0;
  width: 100%;
  /* float: none; */
  text-align: center;
  display: block;
}
.two-column-content.cm-two-con-content h3 {
  color: #141a2b;
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 12px;
  line-height: 34px;
}
.two-column-content.cm-two-con-content .right-column .list-items-wrap .list-items .list-items-text p {
  color: #6e7791;
  font-weight: 400;
  margin-bottom: 15px;
}

.title-with-button.hs-two-btn .title-with-button-right {
  margin: 48px auto 0;
  width: 100%;
  text-align: center;
}
.title-with-button.hs-two-btn a.hs-button {
  margin-left: 8px;
  margin-right: 8px;
}


.two-column-content.custom-two-col-con .left-column img {
  width: 540px;
}
.title-with-button.about-page-title-with-button .title-with-button-left p {
  margin-bottom: 15px;
  text-align: center;
  max-width: 610px;
}

.title-with-button.about-page-title-with-button .title-with-button-left h2 {
  text-align: center;
  color: #141a2b;
}
.title-with-button.about-page-title-with-button .title-with-button-right {
  margin-left: 0;
  min-height: 0;
  text-align: unset;
  float: none;
  width: auto;
}
.title-with-button.about-page-title-with-button .title-with-button-left .border-top {
  text-align: center;
  margin: 0 auto 22px;
}
.title-with-button.about-page-title-with-button .title-with-button-left {
  float: none;
  width: auto;
  display: -ms-flexbox;
  -ms-flex-direction: column;
  -ms-flex-align: center;
  -ms-flex-pack: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.title-with-button.about-page-title-with-button .title-with-button-right {
  margin-top: 18px;
}
.title-with-button.about-page-title-with-button {
  display: -ms-flexbox;
  -ms-flex-direction: column;
  -ms-flex-align: center;
  -ms-flex-pack: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.title-with-button.about-page-title-with-button.hs-two-con .title-with-button-left h2 {
    max-width: 650px;
}
.title-with-button.about-page-title-with-button.hs-two-con .title-with-button-left p {
    max-width: 650px;
}
div#cm-btn {
    padding-top: 48px;
}

div#cm-btn .title-with-button-right {
    width: 100%;
    float: none;
    margin: 0 auto;
    text-align: center;
}

.title-with-button.about-page-title-with-button.hs-two-content .title-with-button-left h2 {
    max-width: 620px;
}

.title-with-button.about-page-title-with-button.hs-two-content .title-with-button-left p {
    max-width: 620px;
}
/* website css End*/



@media (min-width: 768px){
  .solution--wrapper.hs-solution-2-col .solution-card-items:nth-child(2n) {
    margin-right: 0;
  }
  .two-column-content.cm-two-con-content .list-items-text {
    margin-left: 2.564102564%;
  }
  .two-column-content.custom-two-col-con .right-column {
    padding-left: 64px;
  }
}


@media (max-width: 767px){
  .title-with-button.about-page-title-with-button .title-with-button-right {
    text-align: center;
    margin-bottom: 24px;
  }
  .two-column-content.cm-two-con-content h3 {
    font-size: 24px;
    line-height: 31px;
  }
  .two-column-content.cm-two-con-content .right-column .list-items-wrap .list-items {
    display: block;
  }
  .two-column-content .right-column .list-items-wrap .list-items .list-items-icon {
    margin: 20px 0;
  }

  h2 {}
  h1 {
    font-size: 36px !IMPORTANT;
    letter-spacing: -.1px;
    line-height: 44px;
  }
  h2 {
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 40px;
  }
  h3 {
    font-size: 24px;
    line-height: 31px;
  }
  h4 {
    font-size: 22px;
    line-height: 28px;
  }
  h5 {
    font-size: 18px;
    line-height: 24px;
  }
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
  html {
    font-size: 16px;
  }
  body {
    font-size: 16px !IMPORTANT;
    line-height: 26px;
  }
  p {
    line-height: 30px;
    font-size: 16px;
  }

  .title-with-button.full-with-title-with-button h2 {
    margin-bottom: 24px;
    max-width: 720px;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -.1px;
    line-height: 44px;
  }
  .title-with-button.full-with-title-with-button .border-top {
    height: 32px;
  }
  .solution--wrapper.hs-solution-2-col .solution-card-image {
    padding: 24px 4px 0;
    float: left;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .solution--wrapper.hs-solution-2-col .solution-card-content {
    margin: 0 auto;
    padding: 8px 0 36px;
    width: 100%;
    text-align: center;
  }
  .title-with-button.hs-two-btn .title-with-button-right {
    margin: 4opx auto 0;
  }

  h2 {
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 40px;
  }
  body, p {
    color: #6e7791;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.1px;
    text-decoration: none;
    text-transform: none;
  }
  p {
    line-height: 30px;
  }
}



/* Image alt text */

img {
  max-width: 100%;
  height: auto;
}
.banner-btn-arrow {
  display: inline;
  margin-left: 5px;
  transition: .2s ease-in-out;
  vertical-align: middle
}
.banner-btn-arrow svg {
  width: 14px;
  fill: #fff
}
a.hs-button.normal-button {
  background-color: #fff;
  border: 0 solid #dce0eb;
  margin: 0 0 12px;
  color: #141a2b;
  -webkit-filter: drop-shadow(0 4px 10px rgba(74, 58, 255, .06));
  filter: drop-shadow(0 4px 10px rgba(74, 58, 255, .06));
}

a.hs-button.normal-button:hover {
  background-color: #e6752b;
  border: 0 solid #e6752b;
  color: #fff;
  transform: scale(1.05);
}


button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
.button,
.hs-blog-post-listing__post-button, 
.hs-button, 
button {
  font-weight: 700 !IMPORTANT;
  transition: .2s ease-in-out;
  height: auto;
  line-height: 1.1;
  margin: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  width: auto;
  word-break: break-word;
}

.button:focus, 
.button:hover, 
.hs-blog-post-listing__post-button:focus, 
.hs-blog-post-listing__post-button:hover, 
.hs-button:focus,
.hs-button:hover,
button:focus,
button:hover {
  transform: scale(1.05);
}

footer.footer {
  padding: 80px 20px 0 20px;
}
.footer__container {
  padding: 0;
}
.footer-top::before,
.footer-top::after {
  display: block;
  content: "";
  clear: both;
}
.footer__left-column {
  width: 33%;
  float: left;
  padding-right: 16px;
}
.footer-menu{
  width: 40%;
  float: left;
}
.footer-contact {
  width: 27%;
  float: left;
}
.footer__logo {
  margin-bottom: 8px;
}
.footer__logo img {
  width: 174px !IMPORTANT;
  max-width: 100%;
  margin-bottom: 8px;
  -webkit-transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease,-webkit-transform 350ms ease;
}
.footer__logo img:hover {
  transform: scale(1.05);
}
.footer__description {
  margin-bottom: 24px;
}
.footer__description p {
  color: #6e7791;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.1px;
  line-height: 27px;
  text-decoration: none;
  text-transform: none;
}
.footer-bottom::before,
.footer-bottom::after {
  display: block;
  content: "";
  clear: both;
}
.footer_copyright_text {
  width: 65.81196581200001%;
  float: left;
  font-size: 16px;
  line-height: 27px;
}
.footer__form form input[type=email]::placeholder {
  color: #6E7791;
}
.footer-bottom {
  border-top: 1px solid #DCE0EB;
  margin-top: 72px;
  padding: 2rem 0px 0.5rem 0px;
}
.ft-social-icons-wrap {
  width: 31.623931624%;
  float: left;
  margin-left: 2.564102564%;
}
.ft-social-links-container {
  margin-bottom: 8px;
  text-align: right;
  margin-left: -4px;
}
.ft-social-links-container a img {
  text-align: center;
  margin-bottom: 8px;
  width: 32px;
  height: 32px;
  transition: 0.3s ease-in-out;
}
.ft-social-links-container a {
  margin-left: 4px;
  margin-right: 4px;
}
.ft-social-links-container a img:hover {
  transform: scale(1.2);
}
.footer-menu .hs-menu-wrapper>ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-menu .hs-menu-wrapper>ul>li>a, 
.footer-contact .hs_cos_wrapper_type_rich_text h6 {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
  letter-spacing: -.1px;
  color: #141a2b;
  cursor: text;
}
.footer__form .hs_submit .hs-button {
  border-radius: 12px;
}
.footer-menu .hs-menu-wrapper>ul ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}
.footer-menu .hs-menu-wrapper>ul ul li {
  margin-bottom: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.1px;
  line-height: 27px;
  text-decoration: none;
  text-transform: none;
}
.footer-menu .hs-menu-wrapper>ul ul li a {
  font-size: 16px;
  line-height: 27px;
  font-style: normal;
  letter-spacing: -.1px;
  text-transform: none;
  text-decoration: unset;
  transition: .2s ease-in-out;
}
.footer__form form label {
  display: none;
}

.footer__form form input[type=email] {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  width: 100%;
  transition: 0.15s linear;
  box-shadow: 0 4px 10px rgba(74,58,255,.06);
  height: 72px;
  padding-right: 150px;
}
.footer__form form input[type=email]:focus {
  border: 2px solid #2253ff;
  outline: none;
}
.footer__form form .hs-input.invalid.error {
  border-color: #EF6B51;
}
.footer__form form .hs-error-msgs label {
  display: block;
  color: #EF6B51;
}
.footer__form .hs_submit {
  position: absolute;
  top: 9px;
  right: 10px;
}
.footer__form .hs-form-field {
  margin-bottom: 10px;
}
.footer__form form {
  position: relative;
  outline: none;
}
.footer__form .form-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  color: #141a2b;
  line-height: 32px;
  padding: 0;
  margin: 0 0 1.4rem;
  padding-top: 8px;
}


.footer-contact p {
  color: #6e7791;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  font-style: normal;
  letter-spacing: -.1px;
  text-transform: none;
  text-decoration: unset;
  transition: .2s ease-in-out;
}

@media (max-width: 1040px){

  .footer__left-column {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 20px;
  }

  .footer-menu {
    width: 66%;
    float: left;
  }
  .footer-contact {
    width: 33%;
    float: left;
  }
  .footer-bottom {
    margin-top: 0;
  }

}

@media (max-width: 767px){
  .ft-social-icons-wrap,
  .footer__left-column,
  .footer-menu,.footer-contact,
  .footer_copyright_text {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
  }
  .footer-menu .hs-menu-wrapper>ul {
    padding: 0;
  }
  .footer-menu .hs-menu-wrapper>ul>li>a,.footer-contact h6 {
    font-weight: 400;
  }
  .footer_copyright_text {
    text-align: left;
    padding: 1rem 0 0.5rem 0;
  }
  .ft-social-icons-wrap {
    margin-top: 16px;
  }
  .ft-social-links-container {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer__form .hs_submit {
    position: absolute;
    right: 10px;
    width: unset;
  }
  .footer__form .hs_submit .hs-button {
    width: 100%;
  }
  .footer__form {
    max-width: 368px;
    padding-bottom: 40px;
  }
  .footer__form .form-title {
    font-size: 22px;
    line-height: 28px;
  }
  footer.footer {
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .footer-menu .hs-menu-wrapper>ul {
    padding: 0;
    grid-template-columns: repeat(1, auto);
  }
}

@media (max-width: 450px){
  .footer__form .hs_submit {
    position: unset;
    width: 100%;
  }
  .footer__form .hs-form-field {
    margin-bottom: 16px;
  }
  .footer__form form input[type=email] {
    height: 70px;
    padding: 0.7rem 1.2rem;
  }
}

@media (max-width: 420px){
  .footer-menu .hs-menu-wrapper>ul {
    grid-template-columns: repeat(1, auto);
  }
}
/* Fields */

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

/* Labels */

form label {
  display: inline-block;
  margin-bottom: 0.35rem;
}

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

/* Help text */

form legend {

}

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

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 {

}

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


form label {
  display: block;
  padding-top: 0;
  margin-bottom: 0.35rem;
  text-align: left;
  width: auto;
  margin-top: 0.35rem;
  color: #141a2b;
  font-weight: 500;
}
.hs-form-field {
  margin-bottom: 1.8rem;
}

input[type=text], 
input[type=email], 
input[type=password], 
input[type=tel], 
input[type=number], 
input[type=file], 
select, 
textarea {
  background-color: #FFF;
  border-radius: 3px;
  display: inline-block;
  padding: 0.7rem 1.2rem;
  width: 100%;
  transition: 0.15s linear;
  border: 1px solid #eff1f6;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(74,58,255,.06);
  color: #141a2b;
  height: 62px;
  width:100% !important;
}

.disable-focus-styles :focus {
  outline: none;
}

input[type=email]:focus,
input[type=file]:focus,
input[type=number]:focus,
input[type=password]:focus, 
input[type=tel]:focus,
input[type=text]:focus,
select:focus,
textarea:focus {
  border: 2px solid #2253ff;
  outline:none;
}
textarea {
  width: 100% !important;
  height: 133px;
}

input:-moz-placeholder,
input:-ms-input-placeholder,
input::-moz-placeholder,
input::-webkit-input-placeholder,
input::placeholder {
  color: #6e7791;
}

input::-webkit-input-placeholder {
  color: #a0a8bd;
}
.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder{
  color: #a0a8bd;
}

@media(max-width:767px){

  form fieldset.form-columns-2 .hs-form-field {
    float: none !important;
    width: 100% !important;
  }
}
/* 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.header {
  width: 100%;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  background-color: #fff;
  padding: 20px 0;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 350ms ease;
  transition: -webkit-transform 350ms ease;
  transition: transform 350ms ease;
  transition: transform 350ms ease, -webkit-transform 350ms ease;
}
div#hs_menu_wrapper_mobile_menu {
  /* height: 100%; */
}

.header-overlay-search .searchBar {
  margin: auto;
  position: relative;
  text-align: center;
  top: 30%;
  -webkit-transition: transform .3s ease-in-out;
  width: 100%;
}

.header-overlay-search input[type=search] {
  line-height: 1.15;
  margin: 0;
  display: inline-block;
  padding: 0.7rem 1.2rem;
  width: 100%;
  transition: 0.15s linear;
  font-size: 32px;
  background: transparent;
  background-position: top right 0;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #BDBFD1;
  box-shadow: none;
  padding-bottom: 50px;
  padding-top: 10px;
  padding-left: 0px;
  color: #1F2559;
  height: 90px;
  outline: none;
}
.header-overlay-search label.hs-search-field__label {
  display: none;
}
.header-overlay-search form {
  margin: 0 auto;
  position: relative;
  width: 60%;
  background-color: transparent;
  display: block;
}
.search-open .header-overlay-search {
  display: block;
  opacity: 1;
}
.search-open .header-overlay-search .searchBar {
  transform: translate(0px, 100px);
}
.header-overlay-search .hs-search-field__button {
  font-size: 100%;
  line-height: 1.15;
  position: absolute;
  right: 0;
  top: 12px;
  transition: .3s ease-in-out;
  width: 37px;
  background-color: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  transform: none;
}
.header__logo img {
  margin-top: 10px;
}
.header__row-1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
.header__search--toggle {
  display: none;
}
.header__navigation {
  margin-right: 8px;
}
.header__navigation .hs-menu-wrapper {
  display: inline-block;
}
.header__navigation .hs-menu-wrapper>ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  white-space: nowrap;
}
.header__navigation .hs-menu-wrapper>ul>li {
  display: inline-block;
  padding: 15px 10px;
  margin: 0;
}
.header__navigation .hs-menu-wrapper>ul>li.hs-item-has-children {
  position: relative;
}
.header__navigation .hs-menu-wrapper>ul>li>a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  text-transform: none;
  transition: .2s ease-in-out;
  text-decoration: unset;
}
.header__navigation .hs-menu-wrapper>ul>li>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  padding-left: 32px;
  padding-top: 20px;
  position: absolute;
  text-transform: none;
  top: 100%;
  z-index: 9;
  background-color: #fff;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(10, auto);
  -webkit-box-shadow: 0 -2px 4px rgba(31,37,89,.02), 0 6px 18px rgba(31,37,89,.07);
  box-shadow: 0 -2px 4px rgba(31,37,89,.02), 0 6px 18px rgba(31,37,89,.07);
  font-weight: 500;
  min-width: 206px;
  border: 0;
  border-radius: 15px;
  left: unset;
  opacity: 0;
  -prefixes-transition-delay: 0s,.4s;
  -prefixes-transition-duration: .4s,0s;
  -prefixes-transition-property: opacity,visibility;
  transition: .2s ease-in-out;
  visibility: hidden;
}
.header__navigation .hs-menu-wrapper>ul>li:hover>ul {
  left: unset;
  opacity: 1;
  -prefixes-transition-delay: 0s,0s;
  visibility: visible;
}

.header__navigation .hs-menu-wrapper>ul>li:hover > a {
  color: #e6752b;
}
.header-overlay-search input[type=search]::placeholder {
  color: #a0a8bd;
}
.header-overlay-search .hs-search-field__button svg {
  display: none;
}
.header-overlay-search .hs-search-field__button img:hover {
  transform: scale(1.2);
}
.header-overlay-search .hs-search-field__button img {
  transition: .3s ease-in-out;
  width: 37px;
}
.header__navigation .hs-menu-wrapper>ul>li>ul>li>a {
  font-size: 16px;
  line-height: 40px;
  display: block;
  padding-right: 32px;
  transition: all .35s ease;
}
.header-overlay-search {
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  background-color: hsla(0,0%,100%,.84);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: .2s ease-in-out;
  width: 100%;
  z-index: 4;
}

.showBtn {
  cursor: pointer;
  background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/serch.svg);
  background-size: 20px;
  background-color: #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  margin: 0px 16px 0px -6px;
  transition: 0.2s ease-in-out;
  border: 1px solid #EFF1F6;
  box-shadow: 0px 4.16667px 10.4167px rgba(20, 20, 43, 0.04);
}


.showBtn:hover {
  background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/srch%20hover.svg);
  transform: scale(1.1);
}

.header-overlay-search .hideBtn {
  background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/close.svg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 25px;
  width: 25px;
  transition: 0.3s ease-in-out;
  color: #62668a;
  cursor: pointer;
  font-size: 52px;
  position: absolute;
  right: 40px;
  top: 40px;
}
.header-btn a svg {
  width: 14px;
  fill: #FFFFFF;
}
.header-btn a {
  letter-spacing: 0;
  padding: 24px 30px;
}
.header-btn {
  margin-left: 8px;
}
.header-btn a>span {
  vertical-align: middle;
  margin-left: 5px;
  transition: .2s ease-in-out;
}

@media (min-width: 911px){
  .mobile-menu {
    display: none;
  }
  .menu-arrow {
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/menu-arrow.svg);
    background-repeat: no-repeat;
    background-position: 25% 75%;
    height: 13px;
    width: 16px;
    display: inline-block;
    cursor: pointer;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}



@media screen and (max-width: 1250px){
  .header__container{
    padding: 0 20px;
  }
}
@media screen and (max-width: 1250px){
  .header__navigation .hs-menu-wrapper>ul>li {
    font-size: f;
  }

  .header__navigation .hs-menu-wrapper>ul>li>a {
    font-size: 13px;
  }

  .header__navigation .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 13px;
  }

  .header-btn a {
    font-size: 10px;
    padding: 24px 10px;
  }

  .header-btn a svg {
    width: 10px;
  }

  .showBtn {
    height: 30px;
    width: 30px;
    border: 0;
    box-shadow: none;
    margin: 0;
    margin-right: 5px;
    background-size: 13px;
  }

}

@media (max-width: 910px){
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 9px 0 0;
  }
  .header__logo {
    padding: 0px 0px 0px 20px;
    width: 100%;
    padding-bottom: 0;
  }
  .header-overlay-search input[type=search] {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .header-overlay-search .hs-search-field__button img {
    width: 24.7px;
  }
  .header-overlay-search .hs-search-field__button {
    bottom: 34px;
    top: unset;
    width: 24.7px;
  }
  .header-overlay-search form {
    width: 85%;
  }
  .header-overlay-search .searchBar {
    position: relative;
    top: 20%;
  }
  .mobile-menu .hs-menu-wrapper>ul>li.hs-item-has-children {
    position: relative;
  }
  .header-overlay-search .hideBtn {
    background-size: 18px;
    right: 20px;
    top: 20px;
  }
  .showBtn {
    height: 45px;
    margin: 0px 16px 0px -6px;
    width: 45px;
    background-size: 20px;
    border: 1px solid #EFF1F6;
    box-shadow: 0px 4.16667px 10.4167px rgba(20, 20, 43, 0.04);
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/mob%20serch%20bnt.svg);
    position: absolute;
    top: -53px;
    right: 62px;
  }
  .header-btn {
    display: none;
  }
  .header__navigation {
    display: none;
  }
  .header__navigation--toggle {
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/menu%20trigger.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    visibility: visible;
    cursor: pointer;
    height: 43px;
    width: 43px;
    position: absolute;
    display: block ;
    opacity: 1;
    top: -83px;
    right: 20px;
    background-color: #e6752b;
    padding: 10px;
    border-radius: 7px;
    transition: all ease 0.35s;
    margin: 0;
  }
  .mobile-menu {
    opacity: 0;
    height: 0;
    width: 100%;
    visibility: hidden;
    transition: all .25s ease-in-out;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    background-color: #fff;
  }
  .mobile-header-btn {
    margin-top: 20vh;
    display: block;
    background: #fff;
    padding: 20px;
  }
  .mobile-header-btn .hs-button {
    word-break: break-word;
    white-space: normal;
    position: relative;
    text-align: center;
    text-decoration: none;
    height: auto;
    line-height: 1.1;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    border-radius: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 24px 30px;
    transition: .2s ease-in-out;
    text-decoration: none;
    width: 100%;
  }
  .mobile-header-btn .hs-button:hover {
    background-color: #141a2b;
    border: 0 solid #4b5266;
    color: #fff;
    transform: scale(1.05);
  }
  .mobile-open .mobile-menu {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 147px);
    z-index: 2;
    opacity: 1;
    visibility: visible;
  }
  .header__search--toggle {
    fill: #1F2559;
    cursor: pointer;
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/header-serch-toggle.svg);
    background-size: cover;
    height: 25px;
    width: 25px;
    position: absolute;
    top: -41px;
    right: 70px;
    margin: 0;
  }
  .mobile-open .header__navigation--toggle {
    transform: scale(1.1);
    opacity: 0;
    visibility: hidden;
  }
  .header__close--toggle:hover {
    transform: scale(1.2);
  }
  .mobile-open .header__close--toggle {
    visibility: visible;
    opacity: 1;
  }
  .header__column {
    position: relative;
  }
  .header__close--toggle {
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/trigger.svg);
    background-repeat: no-repeat;
    background-size: 13px;
    background-position: center;
    visibility: hidden;
    height: 43px;
    width: 43px;
    position: absolute;
    opacity: 0;
    top: -83px;
    right: 20px;
    background-color: #e6752b;
    padding: 10px;
    border-radius: 7px;
    transition: all ease 0.35s;
    margin: 0;
    cursor: pointer;
  }
  .mobile-menu .hs-menu-wrapper>ul {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
  }
  .child-trigger {
    cursor: pointer;
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/download.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    height: 29px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    width: 29px;
    box-shadow: 0px -0.709347px 3.54674px rgba(31, 37, 89, 0.01), 0px 2.83739px 6.38413px rgba(38, 54, 200, 0.08);
    border-radius: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    position: absolute;
    float: right;
    right: 20px;
    top: 16px;
  }
  .child-trigger.child-open {
    background-image: url(//8855460.fs1.hubspotusercontent-na1.net/hubfs/8855460/raw_assets/public/TikaMSL%20Website%20Theme/images/child-open.svg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .mobile-menu .hs-menu-wrapper>ul>li {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -.1px;
    line-height: 30px;
    text-decoration: none;
    display: block;
    padding: 0;
    background-color: #fff;
    width: 100%;
    text-transform: uppercase;
  }

  .mobile-menu .hs-menu-wrapper>ul>li>a {
    background-color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 7px 20px;
    display: block;
    width: 100%;
    font-style: normal;
    letter-spacing: -.1px;
    text-transform: none;
    transition: .2s ease-in-out;
    line-height: 40px;
    text-decoration: unset;
  }
  .header__navigation--toggle:hover {
    transform: scale(1.1);
  }
  .mobile-menu .hs-menu-wrapper>ul>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #fff;
    height: 100%;
    width: 100%;
    font-weight: 500;
    padding-left: 32px;
    display: none;
  }
  .mobile-menu .hs-menu-wrapper>ul>li>ul>li>a {
    font-size: 16px;
    font-style: normal;
    border-radius: 15px;
    letter-spacing: -.1px;
    line-height: 40px;
    padding-right: 15px;
    background-color: #fff;
    display: block;
    transition: all .35s ease;
    text-transform: none;
    position: relative;
    z-index: 2;
    width: 100%;
    text-decoration: unset;
  }

  @media (max-width: 857px){
    .mobile-menu .hs-menu-wrapper>ul>li>ul {
      padding-left: 20px;
    }
  }
  @media (max-width: 767px){
    .header__container{
      padding:0;
    }
    .header__logo img {
      margin-top: 0px;
    }
  }

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