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

/* 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: wrap;
    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(50% - var(--column-gap) * 0.5);
  }

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

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

@media (min-width: 1200px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }
}
.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;
  }
}

/* Fonts */
@font-face {
    font-family: 'Roboto';
    src: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-thin.woff2') format('woff2'),
      url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-light.woff2') format('woff2'),
      url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-regular.woff2') format('woff2'),
    url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-medium.woff2') format('woff2'),
    url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-bold.woff2') format('woff2'),
    url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-black.woff2') format('woff2'),
    url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/roboto-black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'icomoon';
  src:  url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/icomoon.ttf?qsiov8') format('truetype'),
    url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/icomoon.woff?qsiov8') format('woff'),
    url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/fonts/icomoon.svg?qsiov8#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-pin:before {
  content: "\e908";
}
.icon-email:before {
  content: "\e909";
}
.icon-phone:before {
  content: "\e90a";
}
.icon-right-arrow:before {
  content: "\e902";
}
.icon-left-arrow:before {
  content: "\e903";
}
.icon-quote:before {
  content: "\e904";
}
.icon-angle-double-right:before {
  content: "\e906";
}
.icon-angle-double-left:before {
  content: "\e907";
}
.icon-linkedin:before {
  content: "\e900";
}
.icon-youtube:before {
  content: "\e901";
}
.icon-arrow-down:before {
  content: "\e905";
}

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

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: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 32px;
  color: #878787;
  overflow-wrap: break-word;
}

body.menu-active {
  overflow: hidden;
}

.body-container-wrapper__home-page {
  padding-top: 72px;
}
@media(min-width: 768px) {
  .body-container-wrapper__home-page {
    padding-top: 74px;
  }
}
@media(min-width: 992px) {
  .body-container-wrapper__home-page {
    padding-top: 90px;
  }
}

/* Paragraphs */

p {
  margin: 0 0 16px;
}

/* Anchors */

a {
  color: #8066EB;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

/* Headings */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: inherit;
  font-weight: 300;
  color: #000000;
  margin: 0 0 1.4rem;
  word-break: break-word;
}

h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
h4 span, .h4 span,
h5 span, .h5 span,
h6 span, .h6 span {
  color: #8066EB;
  font-weight: 500;
}

h1, .h1 {
  font-size: 40px;
  line-height: 48px;
}

@media(min-width: 576px) {
 h1, .h1 {
    font-size: 44px;
    line-height: 52px;
  } 
}
@media(min-width: 768px) {
 h1, .h1 {
    font-size: 50px;
    line-height: 58px;
  } 
}
@media(min-width: 1200px) {
 h1, .h1 {
    font-size: 54px;
    line-height: 62px;
  } 
}

h2, .h2 {
  font-size: 36px;
  line-height: 44px;
}
@media(min-width: 992px) {
 h2, .h2 {
    font-size: 40px;
    line-height: 48px;
  } 
}
@media(min-width: 1200px) {
 h2, .h2 {
    font-size: 44px;
    line-height: 52px;
  } 
}

h3, .h3 {
  font-size: 28px;
  line-height: 36px;
}
@media(min-width: 1200px) {
 h3, .h3 {
    font-size: 30px;
    line-height: 38px;
  } 
}

h4, .h4 {
  font-size: 26px;
  line-height: 34px;
}

h5, .h5 {
  font-size: 22px;
  line-height: 30px;
}

h6, .h6 {
  font-size: 20px;
  line-height: 28px;
}

.heading-module h2 {
  margin-bottom: 30px;
}
@media(min-width: 768px) {
  .heading-module h2 {
    margin-bottom: 50px;
  }
}
@media(min-width: 1200px) {
  .heading-module h2 {
    margin-bottom: 60px;
  }
}

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

.widget-type-rich_text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-type-rich_text ul li {
  position: relative;
  padding: 0 0 15px 30px;
  color: #000;
  font-weight: 500;
  line-height: 1.25;
}
  
.widget-type-rich_text ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px; 
  height: 20px; 
  background-image: url('https://4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/purple-checklist-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
}


/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  font-size: 18px;
  line-height: 32px;
  border: 0;
  margin: 0;
  padding: 0 25px;
  position: relative;
}
blockquote:before {
  content: '\e904';
  font-family: 'icomoon' !important;
  color: #8066eb;
  position: absolute;
  top: -5px;
  left: 0;
}
@media(min-width: 768px) {
  blockquote {
    padding-left: 40px;
  }
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

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

.widget-type-linked_image .hs_cos_wrapper_type_linked_image {
  line-height: 0;
  display: block;
}

/* Container */
.container {
  padding: 0 15px;
  max-width: 1330px;
  margin: 0 auto;
}

.dnd-section > .row-fluid {
  max-width: 1330px;
  margin: 0 auto;
}

[class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
.cta_button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* button */
.cta_button, 
.hs-button {
  font-family: inherit;
  background: #8066EB;
  border: 2px solid #8066eb;
  box-shadow: none;
  border-radius: 40px;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  min-width: 105px;
}
@media(min-width: 992px) {
  .cta_button, 
  .hs-button {
    min-width: 125px;
  }
}

.cta_button:hover, .cta_button:focus, .cta_button:active,
.hs-button:hover, .hs-button:focus, .hs-button:active {
  background-color: #fff;
  color: #8066EB;
}

.cta_button.secondary {
  background: #fff;
  border-color: #fff;
  color: #000;
}
.cta_button.secondary:hover {
  background-color: #8066EB;
  border-color: #8066EB;
  color: #fff;
}

.cta_button.download-btn {
  background: #4b4c76;
  color: #fff;
  box-shadow: 0 4px 11px rgba(75,76,118,35%);
  border-radius: 8px;
}

.cta_button.show-solution {
  background: #20e3b2;
  color: #fff;
  box-shadow: 0 4px 11px rgba(32,227,278,35%);
  border-radius: 8px;
}

.cta_button.hide-solution {
  background: rgba(32,227,178,0.8);
  color: #fff;
  box-shadow: 0 4px 11px rgba(32,227,278,35%);
  border-radius: 8px;
}

.cta_button.yellow {
  background-color: #fead1f;
  border-color: #fead1f;
}
.cta_button.yellow:hover {
  background-color: #fff;
  color: #fead1f;
}

.cta_button.red {
  background-color: #f41157;
  border-color: #f41157;
}
.cta_button.red:hover {
  background-color: #fff;
  color: #f41157;
}

.hs-button.comment-reply-to {
  background: none;
  background: #fe3671;
  color: #fff;
  margin-top: 15px;
}

.cta_button.backbtn {
  margin-bottom: 25px;
  min-width: auto;
  background: transparent;
  border: 1px solid #4b4c76;
  color: #4b4c76;
  box-shadow: none;
  font-size: 14px;
  line-height: 18px;
  padding: 8px 18px;
}
.cta_button.backbtn .icon {
  font-size: 12px;
  line-height: 12px;
}
.form-module {
  padding: 40px 0;
}
.form-module h2 {
  text-align: center;
  margin-bottom: 10px;
}
.form-module .text {
  text-align: center;
}
@media(min-width: 768px) {
  .form-module {
    padding: 60px 0;
  }
}

/* Form fields */
.hs-form-field {
  margin-bottom: 15px;
}

/* Labels */

form label {
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

/* Help text - legends */

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 {
  color: #878787;
  background-color: #f0eef2;
	/*border: 1px solid #f0eef2;*/
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding: 16px 20px;
  width: 100% !important;
  outline: none;
	box-shadow: none;
}

form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=file]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #878787;
  opacity: 1;
}

form textarea {
  resize: none;
  min-height: 260px;
}

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

form select {
  appearance: none;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8+PC9zdmc+);
  background-repeat: no-repeat;
  background-position-x: 99%;
  background-position-y: 16px;
  padding: 16px 40px 16px 20px;
}

.hs-submit {
  text-align: right;
}
.hs-submit .hs-button {
  text-transform: uppercase;
  text-transform: uppercase;
  min-width: 200px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 5px 0;
}

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

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
}

/* 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: 16px;
  line-height: 20px;
}

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

/* Validation */
.hs-form-required {
  color: #000;
}

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

form .hs-form-field .hs-error-msg {
  color: #f41157;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  margin: 0;
}

form .hs-form-field label {
  font-size: 14px;
  line-height: 20px;
  color: #4b4c76;
  text-align: left; 
}

.hs-form .inputs-list .hs-form-booleancheckbox .hs-form-booleancheckbox-display {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  font-size: 12px;
  line-height: 18px;
}

.hs-form .inputs-list .hs-form-booleancheckbox input[type=checkbox] {
  height: 20px;
  width: 20px;
  margin-top: 4px;
  accent-color: #fe3671;
}

.hs-form .inputs-list .hs-form-booleancheckbox span {
  margin-left: 0;
  padding-left: 12px !important;
  width: calc(100% - 20px);
}

form .hs-form-booleancheckbox-display span a {
  color: #fe3671;
}

.hs-form .legal-consent-container .hs-richtext {
  font-size: 18px;
  line-height: 22px;
  color: #fe3671;
}

/* Captcha */
.grecaptcha-badge {
  margin: 0 auto;
}

.hs-fieldtype-intl-phone select {
  padding: 12px 27px 12px 18px;
  background-position-x: 96%;
}

.submitted-message {
  font-size: 22px;
  line-height: 30px;
}

@media (min-width: 481px) {
  .form-columns-2 .hs-form-field:first-child .input {
    margin-right: 22px;
  }
  form textarea {
    min-height: 160px;
  }
}
@media (min-width: 768px) {
  form textarea {
    min-height: 260px;
  }
}
/* 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
*/

/* 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%;
}
.header {
  background-color: #000000;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}
.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: 160px;
}
.header .header__logo a {
  display: block;
  line-height: 0;
}
.header .header__logo a img {
  max-width: 100%;
}
.header .cta_button {
  font-size: 14px;
  line-height: 22px;
  padding: 10px 16px;
  font-weight: 500;
  min-width: auto;
  display: none;
  text-transform: uppercase;
}

.header .header__menu {
  width: calc(100% - 160px);
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding-right: 45px;
}
.header #main-nav ul {
  display: block;
  margin: 0;
  padding: 0;
}
.header #main-nav ul li {
  position: relative;
}
.header #main-nav ul li:hover a,
.header #main-nav ul li.open a{
  color: #8066EB;
}
.header #main-nav ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 40px 10px 30px;
  transition: all 0.4s ease-in-out;
  font-size: 22px;
  line-height: 30px;
}
.header #main-nav ul li a:hover {
  color: #8066EB;
}
.header #main-nav ul li.hs-item-has-children .icon-arrow-down {
  color: #000;
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all .4s ease-in-out;
}
.header #main-nav ul li.hs-item-has-children:hover .icon-arrow-down, 
.header #main-nav ul li.hs-item-has-children.open .icon-arrow-down{
  color: #8066EB;
}
.header #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
  opacity: 0;
  visibility: hidden;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
/*   min-width: 100%; */
  background-color: transparent;
  position: static;
  max-height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all .3s ease-out 0;
  z-index: 1;
  border-radius: 3px;
  display: block;
  z-index: 10;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper.open-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  max-height: inherit;
  padding: 10px 40px;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover {
  background: rgba(0,0,0,.05);
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li {
  border-top: 1px solid #fff;
  border-bottom: 0;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
  white-space: inherit;
  width: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 8px 10px;
  font-size: 18px;
  line-height: 26px;
  color: #000;
}
.header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children:hover {
  background-color: transparent;
}
/* .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
  padding: 15px 40px;
} */

.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: #fff;
}
.header .nav-bar #main-nav {
  padding: 80px 0 40px;
  background: #fff;
  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: 32px;
  height: 30px;
  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: 10;
  padding: 0;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  background: #8066EB;
  height: 2px;
  transition: all 0.3s ease;
  width: 32px;
}
.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:after,
.menu-active .navbar-toggle:before,
.menu-active .navbar-toggle span {
  background: #000;
}
.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 {
    padding: 15px 0;
  }
  .header .header__menu {
    padding-right: 50px;
  }
  .header .cta_button {
    display: block;
  }
}
@media (min-width: 768px) {
  .header .header__menu {
    padding-right: 50px;
  }
  .header .cta_button {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
  .header .cta_button {
    font-size: 18px;
    line-height: 26px;
    padding: 10px 20px;
  }
  .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: 15px 22px 15px 0;
  }
  .header #main-nav ul li:hover a {
    border-color: #8066EB;
    color: rgba(255,255,255,1);
  }
  .header #main-nav ul li a {
    padding: 0;
    color: rgba(255,255,255,0.53);
    border-bottom: 4px solid #000;
    font-size: 18px;
    line-height: 26px;
  }
  .header #main-nav ul li a:hover {
    color: rgba(255,255,255,1);
    border-color: #8066EB;
  }
  .header #main-nav ul li.hs-item-has-children .icon-arrow-down {
    display: none;
  }
  .header #main-nav ul li.hs-item-has-children:hover .hs-menu-children-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper {
    background-color: #f9f9f9;
/*     box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); */
    border-radius: 6px;
    position: absolute;
    top: 100%;
    max-height: inherit;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li {
    padding: 0;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover {
    background-color: transparent;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a {
    white-space: nowrap;
    padding: 10px 20px;
    color: #000;
    border-left: 4px solid #f9f9f9;
    border-bottom: 0;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li a:hover {
    padding: 10px 20px;
    color: #8066EB;
    border-color: #8066EB;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children:hover .icon-arrow-down {
    color: #8066EB;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .icon-arrow-down {
    /*display: block;*/
    color: #000;
    transform: rotate(-88deg);
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li .hs-menu-children-wrapper {
    top: 0;
    left: 100%;
    display: none;
    transform: none;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li:hover .hs-menu-children-wrapper {
    display: block;
  }
  .header #main-nav ul li.hs-item-has-children .hs-menu-children-wrapper li.hs-item-has-children .hs-menu-children-wrapper li a {
    padding: 10px 30px;
  }
}
@media (min-width: 1200px) {
  .header #main-nav ul li {
    padding: 15px 30px 15px 0;
  }
}
.hero-banner {
  background-color: #000;
  position: relative;
  z-index: 1;
}
.hero-banner .bg-right, .hero-banner .bg-left {
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-banner .bg-right.top, .hero-banner .bg-left.top {
  top: 0;
}
.hero-banner .bg-right.bottom, .hero-banner .bg-left.bottom {
  bottom: 0;
}
.hero-banner .bg-right.left, .hero-banner .bg-left.left {
  left: 0;
}
.hero-banner .bg-right.right, .hero-banner .bg-left.right {
  right: 0;
}
.hero-banner .container {
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-banner .column {
  width: 100%;
}
.hero-banner h1 {
  color: #fff;
  margin-bottom: 0;
  max-width: 850px;
}
.hero-banner .sub-heading {
  color: #8066eb;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-banner .text {
  margin-top: 22px;
}
.hero-banner .text br {
  display: none;
}
.hero-banner .text ul, .hero-banner .text ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-banner .cta_button {
  min-width: 145px;
  margin-top: 20px;
}
.hero-banner .image-holder {
  max-width: 537px;
  margin: 30px auto 0;
}

.hero-banner.hero-banner__secondary .container {
  padding-top: 40px;
  padding-bottom: 0;
} 
.hero-banner.hero-banner__secondary .image-holder {
  max-width: inherit;
  margin: 30px auto 0;
  line-height: 1px;
} 

@media(min-width: 768px) {
  .hero-banner .container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-banner .cta_button {
    padding: 14px 30px;
  }
  .hero-banner .image-holder {
    margin: 50px auto 0;
  }
  .hero-banner.hero-banner__secondary .image-holder {
    margin: 50px auto 0;
  }
}
@media(min-width: 992px) {
  .hero-banner .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .hero-banner.hero-banner__secondary .row {
    align-items: flex-end;
  }
  .hero-banner .column {
    padding: 0 15px;
    width: 100%;
  }
  .hero-banner .column:nth-child(1) {
    width: 55%;
  }
  .hero-banner .column:nth-child(2) {
    width: 45%;
  }
  .hero-banner .column:only-child {
    width: 100%;
  }
  .hero-banner .column:only-child .text {
    max-width: 100%;
  }
  .hero-banner .text {
    max-width: 600px;
  }
  .hero-banner .text br {
    display: block;
  }
  .hero-banner .image-holder {
    margin: 0 auto;
  }
  .hero-banner.hero-banner__secondary .container {
    padding-top: 40px;
  }
  .hero-banner.hero-banner__secondary .column:nth-child(1) {
    width: 45%;
  }
  .hero-banner.hero-banner__secondary .column:nth-child(2) {
    width: 55%;
  }
  .hero-banner.hero-banner__secondary .column:only-child {
    width: 100%;
  }
  .hero-banner.hero-banner__secondary .content {
    padding-bottom: 80px;
  }
  .hero-banner.hero-banner__secondary .image-holder {
    margin: 0 0 0 auto;
    text-align: right;
  }
}
@media(min-width: 1400px) {
  .hero-banner.hero-banner__secondary .column:nth-child(1) {
    width: 35%;
  }
  .hero-banner.hero-banner__secondary .column:nth-child(2) {
    width: 65%;
  }
  .hero-banner.hero-banner__secondary .column:only-child {
    width: 100%;
  }
}
.partners-spotlight {
  background-color: #222222;
  text-align: center;
  padding: 30px 0 60px;
}
.partners-spotlight.light_background {
  background-color: #f0eef2;
}
.partners-spotlight.light_background .h6 {
  color: #000;
}
.partners-spotlight.light_background .partners-slider .slick-arrow {
  color: #000;
}
.partners-spotlight .h6 {
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}
.partners-spotlight .partners-slider {
  padding: 0 60px;
}
.partners-spotlight .partners-slider .slick-list {
  margin: 0 -20px;
}
.partners-spotlight .partners-slider .slick-slide {
  padding: 0 20px;
}
.partners-spotlight .partners-slider .slick-arrow {
  color: #8066eb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  cursor: pointer;
}
.partners-spotlight .partners-slider .slick-arrow.arrow-next {
  left: auto;
  right: 10px;
}

@media(min-width: 768px) {
  .partners-spotlight .partners-slider {
    padding: 0 80px;
  }
}
@media(min-width: 992px) {
  .partners-spotlight .partners-slider {
    padding: 0 100px;
  }
}
.content-module {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  padding: 50px 20px;
}
.content-module.dark_background {
  background-color: #000;
  color: #C1C1C1;
}
.content-module.dark_background h2 {
  color: #fff;
}
.content-module.dark_background strong {
  color: #fff;
}
.content-module h2 {
  margin-bottom: 20px
}
.content-module strong {
  color: #8066eb;
  font-weight: 900;
}
.content-module .image-holder {
  max-width: 567px;
  margin: 30px auto 0;
}

@media(min-width: 768px) {
  .content-module {
    padding: 60px 20px;
  }
  .content-module h2 {
    margin-bottom: 40px;
  }
  .content-module .image-holder {
    margin: 50px auto 0;
  }
}
@media(min-width: 992px) {
  .content-module {
    flex-direction: row;
/*     align-items: center; */
    padding: 80px 20px;
  }
  .content-module h2 {
    margin-bottom: 50px;
  }
  .content-module.left {
    flex-direction: row;
  }
  .content-module.right {
    flex-direction: row-reverse;
  }
  .content-module.left .image-holder {
    margin-right: 20px;
  }
  .content-module.right .image-holder {
    margin-left: 20px;
  }
}
@media(min-width: 1200px) {
  .content-module h2 {
    margin-bottom: 60px;
  }
}
.content-with-cta {
  position: relative;
  z-index: 1;
}
.content-with-cta.light_background {
  background-color: #F0EEF2;
}
.content-with-cta.dark_background {
  background-color: #000;
  padding: 20px 0 60px;
}
.content-with-cta.purple_background {
  background-color: #8066EB;
}
.content-with-cta .content-holder {
  display: flex;
  flex-direction: column;
  gap: 20;
  padding: 40px 30px;
  width: 100%;
}
.content-with-cta.dark_background .content-holder {
  background-color: #8066EB;
  padding: 40px 30px;
}
.content-with-cta.light_background .content-holder {
  background-color: #F0EEF2;
}
.content-with-cta .content-holder .text strong {
  font-weight: 500;
}
.content-with-cta .content-holder .text p:only-child {
  margin: 0;
}
.content-with-cta .content-holder .text h1, .content-with-cta .content-holder .text h2, .content-with-cta .content-holder .text h3, .content-with-cta .content-holder .text h4, .content-with-cta .content-holder .text h5, .content-with-cta .content-holder .text h6 {
  margin-bottom: 10px;
}
.content-with-cta.purple_background .content-holder .text h1, .content-with-cta.purple_background .content-holder .text h2, .content-with-cta.purple_background .content-holder .text h3, .content-with-cta.purple_background .content-holder .text h4, .content-with-cta.purple_background .content-holder .text h5, .content-with-cta.purple_background .content-holder .text h6 {
  color: #fff;
}
.content-with-cta .content-holder .button-holder .cta_button.secondary {
  font-weight: 400;
}
.content-with-cta .content-holder .button-holder .cta_button.secondary:hover {
  color: #fff;
  background-color: #000;
}
.content-with-cta.purple_background .content-holder .button-holder .cta_button.secondary:hover {
  color: #fff;
  background-color: #000;
}
.content-with-cta.purple_background .content-holder .button-holder .cta_button.secondary {
  background-color: #fff;
  color: #8066EB;
  font-weight: 400;
  padding: 20px 24px;
}
.content-with-cta.dark_background:after {
  content: '';
  position: absolute;
  left: -5px;
  bottom: 0;
  height: 249px;
  width: 279px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-content-cta.png");
}
.content-with-cta.purple_background:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 159px;
  width: 198px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-content-cta-blob-tl.png");
}
.content-with-cta.purple_background:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 159px;
  width: 311px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-content-cta-blob-br.png");
}
.content-with-cta.dark_background .content-holder .text {
  color: rgba(255,255,255,.64);
}
.content-with-cta.purple_background .content-holder .text {
  color: #fff;
}
.content-with-cta.dark_background .content-holder .text h1, .content-with-cta.dark_background .content-holder .text h2, .content-with-cta.dark_background .content-holder .text h3, .content-with-cta.dark_background .content-holder .text h4, .content-with-cta.dark_background .content-holder .text h5, .content-with-cta.dark_background .content-holder .text h6 {
  color: #fff;
}
@media(min-width: 768px) {
  .content-with-cta .content-holder {
    flex-direction: row;
  }
  .content-with-cta .content-holder .text {
    width: 80%;
  }
}
@media(min-width: 992px) {
  .content-with-cta .content-holder {
    padding: 80px 0px;
  }
  .content-with-cta.purple_background:before {
    height: 318px;
    width: 396px;
  }
  .content-with-cta.purple_background:after {
    height: 318px;
    width: 622px;
  }
}
@media(min-width: 1200px) {

}
.content-image-module {
  padding: 40px 0;
}
.content-image-module .content-image-article {
  margin-bottom: 30px;
}
.content-image-module .content-image-article:nth-child(2) .content .numbers {
  background-color: #fead1f ;
}
.content-image-module .content-image-article:nth-child(3) .content .numbers {
  background-color: #aeadfc;
}
.content-image-module .content-image-article:nth-child(4) .content .numbers {
  background-color: #f32e6b;
}
.content-image-module .content-image-article:last-child {
  margin-bottom: 0;
}
.content-image-module h2 {
  margin-bottom: 30px;
}
.content-image-module .column {
  width: 100%;
}
.content-image-module .content h4 {
  font-weight: 500;
}
.content-image-module .content strong {
  color: #8066eb;
  font-weight: 900;
}
.content-image-module .content .numbers {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  border-radius: 100%;
  background-color: #8066eb;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 24px;
}
.content-image-module .image-holder {
  max-width: 537px;
  margin: 30px auto 0;
}
.content-image-module .cta_button {
  margin-top: 20px;
}
.content-image-module .content-list {
  margin-bottom: 30px;
}
.content-image-module .content-list h4 {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.content-image-module .content-list h4:before {
  content: '\e902';
  font-family: 'icomoon' !important;
  position: absolute;
  top: 5px;
  left: 0;
  color: #8066eb;
  font-size: 20px;
  line-height: 20px;
}

@media(min-width: 768px) {
  .content-image-module {
    padding: 60px 0 80px;
  }
  .content-image-module h2 {
    margin-bottom: 40px;
  }
  .content-image-module .image-holder {
    margin: 50px auto 0;
  }
  .content-image-module .content-image-article {
    margin-bottom: 50px;
  }
}
@media(min-width: 992px) {
  .content-image-module {
    padding: 70px 0;
  }
  .content-image-module h2 {
    margin-bottom: 50px;
  }
  .content-image-module .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .content-image-module .row.left {
    flex-direction: row-reverse;
  }
  .content-image-module .column {
    padding: 0 15px;
  }
  .content-image-module .column:nth-child(1) {
    width: 55%;
  }
  .content-image-module .column:nth-child(2) {
    width: 45%;
  }
  .content-image-module .column:only-child {
    width: 100%;
  }
  .content-image-module .image-holder {
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .content-image-module {
    padding: 80px 0;
  }
  .content-image-module h2 {
    margin-bottom: 60px;
  }
  .content-image-module .content {
    padding-right: 30px;
  }
  .content-image-module .row.left .content {
    padding-left: 30px;
    padding-right: 0;
  }
}
.testimonial {
  background-color: #F0EEF2;
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
  position: relative;
  width: 100;
  z-index: 1;
}
.testimonial .testimonial-slider {
  padding: 0 20px;
  width: 100%;
}
.testimonial .testimonial-slider .testimonial-holder {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px;
  width: 90%;
}
.testimonial .testimonial-slider .slick-arrow {
  color: #8066eb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  cursor: pointer;
}
.testimonial .testimonial-slider .slick-arrow.arrow-next {
  left: auto;
  right: 10px;
}
.testimonial-slider .person-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.testimonial-slider .person-photo .image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 119px;
  width: 119px;
  margin: 0 auto 15px;
}
.testimonial-slider .person-info .name,
.testimonial-slider .person-info .designation, 
.testimonial-slider .person-info .department {
  display: block;
}
.testimonial-slider .person-info .designation {
  color: #8066EB;
}
.testimonial-slider .person-info .designation span {
  font-size: 12px;
  line-height: 20px;
  display: block;
}
.testimonial-slider .person-info .department {
  color: #838383;
  font-weight: 300;
}
.testimonial-slider .testimonial-holder .quote-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  text-align: center;
}
.testimonial-slider .testimonial-holder .quote-holder q {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2em 0 0 0;
  quotes: '“' '”';
}
.testimonial-slider .testimonial-holder .quote-holder q::before {
  color: #8066eb;
  content: open-quote;
  font-size: 4em;
  line-height: 0;
}
.testimonial-slider .testimonial-holder .quote-holder q::after {
  display: none;
}
.testimonial.dark_background {
  background-color: #000;
}
.testimonial.dark_background:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 160px;
  width: 281px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-testimonial-top.png');
}
.testimonial.dark_background:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 134px;
  width: 248px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-testimonial-bottom.png');
}
.testimonial-slider .testimonial-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 70%;
}
.testimonial.dark_background .testimonial-slider .person-info {
  color: #fff;
}
@media(min-width: 576px) {
  .testimonial {
    padding: 50px 30px;
  }
  .testimonial .testimonial-slider .slick-arrow {
    left: 0;
  }
  .testimonial .testimonial-slider .slick-arrow.arrow-next {
    right: 0;
  }
}
@media(min-width: 768px) {
  .testimonial .testimonial-slider {
    padding: 0 20px;
    width: 70%;
  }
  .testimonial .testimonial-slider {
    padding: 0 50px;
  }
}
@media(min-width: 992px) {
  .testimonial-slider .person-info {
    width: 100%;
    margin: 0;
  }
  .testimonial-slider .person-info .image {
    margin: 0 0 15px;
  }
  .testimonial-slider .quote-holder {
    width: 70%;
  }
}
@media(min-width: 1200px) {
  .testimonial {
    padding: 50px 60px;
  }
  .testimonial .testimonial-slider {
    padding: 0 60px;
  }
}
@media(min-width: 1400px) {
  .testimonial {
    padding: 50px 80px;
  }
  .testimonial .testimonial-slider {
    padding: 0 80px;
  }
}
.services-module {
  padding: 40px 0;
}
.services-module h2 {
  margin-bottom: 30px;
}
.services-module h2.center {
  text-align: center;
}
.services-module h2.right {
  text-align: right;
}
.services-module .column {
  width: 100%;
  margin-bottom: 30px;
}
.services-module .service {
  background-color: #F0EEF2;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  height: 100%;
  position: relative;
}
.services-module .service.center {
  align-items: center;
}
.services-module .service.right {
  align-items: flex-end;
}
.services-module .service .image-holder {
  margin-bottom: 15px;
}
.services-module .service h3 {
  margin-bottom: 15px;
}
.services-module .service.center h3 {
  text-align: center;
}
.services-module .service.right h3 {
  text-align: right;
}
.services-module .service .text {
  margin-bottom: 30px;
}
.services-module .service.center .text {
  text-align: center;
}
.services-module .service.right .text {
  text-align: right;
}
.services-module .service .text strong {
  color: #000;
}
.services-module .service .cta_button {
  font-weight: 400;
}
.services-module.center .service .button-holder {
  text-align: center;
}
.services-module.right .service .button-holder {
  text-align: right;
}

@media(min-width: 768px) {
  .services-module h2 {
    margin-bottom: 50px;
  }
}
@media(min-width: 992px) {
  .services-module {
    padding: 60px 0 80px;
  }
  .services-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .services-module .column {
    padding: 0 15px;
    width: 33.333%;
  }
  .services-module .service {
    padding: 40px 20px 80px;
  }
  .services-module .column:nth-child(3n-1) .service {
    background-color: white;
  }
  .services-module .service .image-holder {
    margin-bottom: 25px;
    min-height: 95px;
  }
  .services-module .service h3 {
    margin-bottom: 22px;
  }
}
@media(min-width: 1200px) {
  .services-module h2 {
    margin-bottom: 60px;
  }
  .services-module .service {
    padding: 40px 35px 80px;
  }
  .services-module .service .button-holder {
    right: 30px;
  }
}
.blog-recent-post {
  padding: 50px 0;
}
.blog-recent-post h2 {
  margin-bottom: 30px;
  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 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.blog-recent-post .recent-post .recent-post__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 230px;
  /* margin-bottom: 20px; */
  overflow: hidden;
  display: block;
}
.blog-recent-post .recent-post .tag-list {
  display: flex;
  flex-direction: row;
  flex-flow: row wrap;
  column-gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.blog-recent-post .recent-post .tag-list li {
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.blog-recent-post .recent-post .tag-list .topic-link {
  background-color: #F3F0FD;
  border-radius: .5rem;
  color: #8066EB;
  display: inline-block;
  font-size: 1rem;
  font-weight: 200;
  padding: .4rem 1.5rem;
}
.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: 0;
  /* margin-bottom: 20px; */
  /* min-height: 60px; */
}
.blog-recent-post .recent-post .recent-post__title:hover {
  color: #8066EB;
}
.blog-recent-post .recent-post .recent-post__text {
  font-size: 16px;
  line-height: 18px;
  /* margin-bottom: 20px; */
  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: #878787;
}
.blog-recent-post .recent-post .recent-post-footer {
  align-items: center;
  color: #8066EB;
  display: flex;
  justify-content: space-between;
}
.blog-recent-post .recent-post .recent-post-footer p {
  font-size: 14px;
  font-weight: 200;
  margin: 0;
}
.blog-recent-post .recent-post .link-more {
  background-color: #8066EB;
  border-radius: 40px;
  color: white;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  padding: 15px 24px;
}

@media(min-width: 768px) {
  .blog-recent-post {
    padding: 60px 0;
  }
  .blog-recent-post h2 {
    /* margin-bottom: 40px; */
  }
}
@media(min-width: 992px) {
  .blog-recent-post {
    padding: 80px 0;
  }
  .blog-recent-post h2 {
    /* margin-bottom: 50px; */
  }
  .blog-recent-post .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .blog-recent-post .column {
    padding: 0 15px;
    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: 60px; */
  }
}
.tabs-module {
  background-color: #000;
  padding: 50px 0;
  margin: 40px 0 20px;
  position: relative;
  z-index: 1;
}
.tabs-module:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 323px;
  width: 340px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-tabs.png');
}
.tabs-module .sub-heading {
  color: #8066eb;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.tabs-module h2 {
  color: #fff;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 30px;
}

.tabs-module .tabs {
  display: flex;
  flex-flow: row wrap;
}
.tabs-module .tabs-nav {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
}
.tabs-module .tabs-nav li {
  color: #8B8B8B;
  font-size: 18px;
  line-height: 32px;
  padding: 0 10px 10px;
  cursor: pointer;
}
.tabs-module .tabs-nav li.active,
.tabs-module .tabs-nav li.active a {
  color: #fff;
  font-weight: 700;
}
.tabs-module .tabs-nav li a {
  text-decoration: none;
  color: #8B8B8B;
  text-transform: uppercase;
}
.tabs-module .tabs-nav li a:hover {
  color: #fff;
}
.tabs-module .tabs-content {
  color: #878787;
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  margin-top: 30px;
}
.tabs-module .tabs-content .icon-holder {
  max-width: 70px;
  margin-bottom: 20px;
}
.tabs-module .tabs-content h3 {
  color: #fff;
  font-weight: 700;
}
.tabs-module .tabs-content .tools-info {
  margin-top: 30px;
}
.tabs-module .tabs-content .tools-info .sub-title {
  display: block;
  margin-bottom: 15px;
}
.tabs-module .tabs-content .tools-info .tool-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.tabs-module .tabs-content .tools-info .tool-list li {
  padding: 0 15px 15px;
}
.tabs-module .tabs-content .tools-info .tool-list .tools-icon {
  max-width: 98px;
  display: block;
}
.tabs-module .tabs-content .tools-info .info-list li {
  position: relative;
  padding: 0 0 15px 50px;
}
.tabs-module .tabs-content .tools-info .info-list li .icon {
  position: absolute;
  top: 4px;
  left: 0;
  max-width: 35px;
}
.tabs-module .tabs-content .tools-info .info-list li .icon svg {
  width: 100%;
  height: 100%;
}


@media(min-width: 768px) {
  .tabs-module {
    padding: 60px 0;
  }
  .tabs-module h2 {
    margin-bottom: 40px;
  }
}
@media(min-width: 992px) {
  .tabs-module {
    padding: 80px 0;
    margin: 40px 0;
  }
  .tabs-module h2 {
    margin-bottom: 50px;
  }
  .tabs-module .tabs-nav {
    margin: 0;
    display: block;
    width: 30%;
  }
  .tabs-module .tabs-nav li {
    padding: 0 0 10px;
  }
  .tabs-module .tabs-content {
    width: 70%;
    margin: 0;
    padding-left: 25px;
  }
  .tabs-module .tabs-content .tab-content {
    max-width: 880px;
  }
  .tabs-module .tabs-content .tools-info {
    margin-top: 50px;
  }
}
@media(min-width: 1200px) {
  .tabs-module h2 {
    margin-bottom: 60px;
  }
  .tabs-module .tabs-content {
    padding-left: 45px;
  }
}
.technology-module {
  padding: 40px 0 0;
}
.technology-module h2 {
  text-align: center;
  margin-bottom: 30px;
}
.technology-module .techologies .column {
  margin-bottom: 30px;
}
.technology-module .techologies .title {
  border-bottom: 1px solid #878787;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.technology-module .techologies .logo-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -8px;
}
.technology-module .techologies .logo-list li {
  padding: 0 8px 10px;
}
.technology-module .techologies .logo-list li .image-holder {
  max-width: 98px;
  line-height: 18px;
}
.technology-module .techologies.two-column .logo-list li .image-holder {
  max-width: 98px;
}
.technology-module .techologies.three-column .logo-list li .image-holder {
  max-width: 90px;
}
.technology-module .techologies.four-column .logo-list li .image-holder {
  max-width: 70px;
}

@media(min-width: 576px) {
  .technology-module .techologies .logo-list {
    flex-flow: row nowrap;
  }
}
@media(min-width: 768px) {
  .technology-module {
    padding: 50px 0 0;
  }
  .technology-module h2 {
    margin-bottom: 40px;
  }
}
@media(min-width: 992px) {
  .technology-module {
    padding: 60px 0 0;
  }
  .technology-module h2 {
    margin-bottom: 50px;
  }
  .technology-module .techologies .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .technology-module .techologies .column {
    padding: 0 15px;
    width: 50%;
  }
  .technology-module .techologies.two-column .column {
    width: 50%;
  }
  .technology-module .techologies.three-column .column {
    width: 33.333%;
  }
  .technology-module .techologies.four-column .column {
    width: 25%;
  }
}
@media(min-width: 1200px) {
  .technology-module h2 {
    margin-bottom: 60px;
  }
}
.focus-area-module {
  background-color: #000;
  padding: 50px 0;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}
.focus-area-module:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 160px;
  width: 281px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-focus-area-top.png');
}
.focus-area-module:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 134px;
  width: 248px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-focus-area-bottom.png');
}
.focus-area-module h2 {
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
}
.focus-area-module .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.focus-area-module .column {
  padding: 0 15px;
  width: 100%;
  margin-bottom: 30px;
}
.focus-area-module .focus-area {
  text-align: center;
}
.focus-area-module .focus-area .icon {
  min-height: 88px;
  margin-bottom: 15px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.focus-area-module .focus-area .text {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}


@media(min-width: 480px) {
  .focus-area-module .column {
    width: 50%;
  }
}
@media(min-width: 768px) {
  .focus-area-module {
    padding: 60px 0;
  }
  .focus-area-module h2 {
    margin-bottom: 40px;
  }
  .focus-area-module .column {
    width: 33.333%;
  }
}
@media(min-width: 992px) {
  .focus-area-module {
    padding: 80px 0;
  }
  .focus-area-module h2 {
    margin-bottom: 50px;
  }
  .focus-area-module .column {
    width: 25%;
    margin-bottom: 40px;
  }
}
@media(min-width: 1200px) {
  .focus-area-module h2 {
    margin-bottom: 60px;
  }
}
.case-study {
  margin-bottom: 30px;
}
.case-study .case-study-box {
  background-color: #000;
  padding: 50px 15px;
  position: relative;
  z-index: 1;
}
.case-study .case-study-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 122px;
  width: 108px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-case-study-top.png');
}
.case-study .case-study-box:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 150px;
  width: 260px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-case-study-bottom.png');
}
.case-study .column {
  padding: 0 15px;
  width: 100%;
}
.case-study .text strong {
  color: #fff;
}
.case-study .text h1, .case-study .text h2, .case-study .text h3, .case-study .text h4, .case-study .text h5, .case-study .text h6 {
  color: #878787;
}
.case-study .logo-holder {
  display: block;
  margin-bottom: 20px;
  max-width: 220px;
}


@media(min-width: 768px) {
  .case-study .case-study-box {
    padding: 50px 30px;
  }
}
@media(min-width: 992px) {
  .case-study {
    margin-bottom: 50px;
  }
  .case-study .case-study-box {
    padding: 50px 60px;
  }
  .case-study .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .case-study .column:nth-child(1) {
    width: 70%;
  }
  .case-study .column:nth-child(2) {
    width: 30%;
  }
  .case-study .button-holder {
    text-align: right;
  }
  .case-study .logo-holder {
    display: block;
    margin: 0 0 20px auto;
  }
}
@media(min-width: 1200px) {
  .case-study .column:nth-child(1) {
    width: 75%;
  }
  .case-study .column:nth-child(2) {
    width: 25%;
  }
}
@media(min-width: 1400px) {
  .case-study .case-study-box {
    padding: 50px 100px;
  }
}
.core-features {
  padding: 50px 0 0;
}
.core-features .container {
  max-width: 1170px;
}
.core-features h2 {
  margin: 0 auto 30px;
  text-align: center;
  max-width: 750px;
}
.core-features .column {
  width: 100%;
}
.core-features .features {
  text-align: center;
}
.core-features .features h3 {
  font-weight: 500;
}
.core-features .features .features-image {
  min-height: 88px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media(min-width: 768px) {
  .core-features {
    padding: 60px 0 30px;
  }
  .core-features h2 {
    margin-bottom: 40px;
  }
}
@media(min-width: 992px) {
  .core-features {
    padding: 60px 0 40px;
  }
  .core-features h2 {
    margin-bottom: 50px;
  }
  .core-features .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .core-features .column {
    padding: 0 15px;
    width: 33.333%;
  }
}
@media(min-width: 1200px) {
  .core-features h2 {
    margin-bottom: 60px;
  }
}
.blog-content-with-cta {
  background-color: #F0EEF2;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.blog-content-with-cta .content-holder .text strong {
  font-weight: 500;
}
.blog-content-with-cta .content-holder .text p:only-child {
  margin: 0;
}
.blog-content-with-cta .content-holder .text h1, .blog-content-with-cta .content-holder .text h2, .blog-content-with-cta .content-holder .text h3, .blog-content-with-cta .content-holder .text h4, .blog-content-with-cta .content-holder .text h5, .blog-content-with-cta .content-holder .text h6 {
  margin-bottom: 10px;
}

@media(min-width: 992px) {
  .blog-content-with-cta {
    padding: 40px 0;
  }
  .blog-content-with-cta .content-holder .row {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px
  }
  .blog-content-with-cta .content-holder .column {
    padding: 0 15px;
  }
  .blog-content-with-cta .content-holder .column:nth-child(1) {
    width: 70%;
  }
  .blog-content-with-cta .content-holder .column:nth-child(2) {
    width: 30%;
  }
  .blog-content-with-cta .content-holder .button-holder {
    text-align: right;
  }
}
@media(min-width: 1200px) {
  .blog-content-with-cta .content-holder .column:nth-child(1) {
    width: 80%;
  }
  .blog-content-with-cta .content-holder .column:nth-child(2) {
    width: 20%;
  }
}
.newsletter-from .image-holder {
  margin-bottom: 20px;
  text-align: center;
}
.newsletter-from h6 {
  font-weight: 500;
  margin-bottom: 5px;
}
.newsletter-from .form-title {
  display: none;
}
.newsletter-from form .hs-button  {
  display: block;
  width: 100%;
  font-weight: 400;
  text-transform: uppercase;
}
.newsletter-from form input[type="email"] {
  background-color: #fff;
  border-color: #fff;
  font-size: 17px;
}
.newsletter-from-2 {
  margin-top: 40px;
}
.newsletter-from-2 h6 {
  font-weight: 500;
  margin-bottom: 15px;
}
.newsletter-from-2 .form-title {
  display: none;
}
.newsletter-from-2 form {
  position: relative;
}
.newsletter-from-2 form .hs-button  {
  display: block;
  width: 100%;
  font-weight: 400;
  text-transform: uppercase;
}
.newsletter-from-2 form input[type="email"] {
  background-color: #F0EEF2;
  border-color: #F0EEF2;
  font-size: 17px;
  padding: 16px 60px 16px 20px;
}
.newsletter-from-2 form .hs-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
}
.newsletter-from-2 form .actions {
  height: 100%;
  position: relative;
}
.newsletter-from-2 form .actions:after {
  cursor: pointer;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 17px;
  cursor: pointer;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37.725' height='34.516' viewBox='0 0 37.725 34.516'%3E%3Cg id='Group_3' data-name='Group 3' transform='translate(1.795 2.816)'%3E%3Cpath id='Path_5' data-name='Path 5' d='M0,0,17.6,14.539,0,28.887' transform='translate(16.331)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='4'/%3E%3Cpath id='Path_6' data-name='Path 6' d='M32.846.5.211.6' transform='translate(0 13.943)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.newsletter-from-2 form input[type="submit"] {
  font-size: 0;
  line-height: 0;
  min-width: inherit;
  height: 100%;
}
.newsletter-from-2 form input[type="submit"]:hover {
  background: #8066EB;
  border: 2px solid #8066eb;
}
.newsletter-from-3 {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-top: 40px;
  padding: 30px;
  display: none;
}
.newsletter-from-3 h3 {
  font-weight: 500;
  margin-bottom: 0;
}
.newsletter-from-3 .form-title {
  display: none;
}
.newsletter-from-3 form {
  position: relative;
}
.newsletter-from-3 form .hs-button  {
  display: block;
  width: 100%;
  font-weight: 400;
  text-transform: uppercase;
}
.newsletter-from-3 form input[type="email"] {
  background-color: #fff;
  border-color: #fff;
  font-size: 17px;
  padding: 16px 60px 16px 20px;
}
.newsletter-from-3 form .hs-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
}
.newsletter-from-3 form .actions {
  height: 100%;
  position: relative;
}
.newsletter-from-3 form .actions:after {
  cursor: pointer;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 17px;
  cursor: pointer;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37.725' height='34.516' viewBox='0 0 37.725 34.516'%3E%3Cg id='Group_3' data-name='Group 3' transform='translate(1.795 2.816)'%3E%3Cpath id='Path_5' data-name='Path 5' d='M0,0,17.6,14.539,0,28.887' transform='translate(16.331)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='4'/%3E%3Cpath id='Path_6' data-name='Path 6' d='M32.846.5.211.6' transform='translate(0 13.943)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.newsletter-from-3 form input[type="submit"] {
  font-size: 0;
  line-height: 0;
  min-width: inherit;
  height: 100%;
}
.newsletter-from-3 form input[type="submit"]:hover {
  background: #8066EB;
  border: 2px solid #8066eb;
}


@media(min-width: 992px) {
  .newsletter-from-3 {
    display: block;
  }
  .newsletter-from-3 .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .newsletter-from-3 .content, .newsletter-from-3 .form-holder {
    padding: 0 15px;
    width: 100%;
  }
}
.map-module {
  padding: 30px 0 60px;
}
.map-module .address-info {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.map-module .address-info li {
  padding: 0 0 20px 35px;
  position: relative;
}
.map-module .address-info li .icon {
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 28px;
  line-height: 28px;
}
.map-module .address-info li.address .icon {
  color: #8066eb;
}
.map-module .address-info li.number .icon {
  color: #fead1f;
}
.map-module .address-info li.email .icon {
  color: #f41157;
}
.map-module .address-info li.address a:hover {
  color: #8066eb;
}
.map-module .address-info li.number a:hover {
  color: #fead1f;
}
.map-module .address-info li.email a:hover {
  color: #f41157;
}
.map-module .address-info li a {
  color: #878787;
  display: inline-block;
}
.map-module .map-holder iframe {
  border: 0;
  width: 100%;
  height: 450px;
}

@media(min-width: 992px) {
  .map-module {
    padding-bottom: 80px;
  }
  .map-module .address-info {
    display: flex;
    flex-flow: row wrap;
    margin: 0 0 30px;
  }
  .map-module .address-info li {
    padding: 0 35px;
  }
}
@media(min-width: 1200px) {
  .map-module {
    padding-bottom: 100px;
  }
}
.intro-banner {
  padding: 40px 0;
}
.intro-banner .intro-article {
  background-color: #f0edf2;
  padding: 30px 20px 0;
}
.intro-banner .intro-article.no-image {
  padding: 30px 20px;
}
.intro-banner .intro-article .image-holder {
  line-height: 1;
  margin: 30px auto 0;
  text-align: center;
}
.intro-banner .intro-article .content strong {
  color: #000;
}

@media(min-width: 992px) {
  .intro-banner {
    padding: 60px 0;
  }
  .intro-banner .intro-article {
    display: flex;
    flex-flow: row nowrap;
    flex-direction: row-reverse;
    padding: 0;
  }
  .intro-banner .intro-article .image-holder {
    width: 338px;
  }
  .intro-banner .intro-article .content {
    width: calc(100% - 338px);
    padding: 30px 40px;
  }
  .intro-banner .intro-article .content:only-child {
    width: 100%;
  }
}
@media(min-width: 1200px) {
  .intro-banner .intro-article {
    align-items: flex-end;
  }
}
@media(min-width: 1400px) {
  .intro-banner .intro-article .content {
    padding: 40px 60px;
  }
}
.challenge-solution {
  padding: 40px 0;
}
.challenge-solution .column {
  width: 100%;
}
.challenge-solution .column:first-child {
  border: solid #cfccd2;
  border-width: 0 0 2px;
}
.challenge-solution .challenge {
  margin-bottom: 30px;
}
.challenge-solution .challenge .text p:last-child {
  margin-bottom: 0;
}
.challenge-solution .solution {
  margin-top: 30px;
}
.challenge-solution .solution .text p:last-child {
  margin-bottom: 0;
}

@media(min-width: 992px) {
  .challenge-solution .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .challenge-solution .column {
    padding: 0 15px;
    width: 50%;
  }
  .challenge-solution .column:first-child {
    border-width: 0 2px 0 0;
  }
  .challenge-solution .challenge {
    margin-bottom: 0;
    padding-right: 15px;
  }
  .challenge-solution .solution {
    margin-top: 0;
    padding-left: 15px;
  }
}
@media(min-width: 1200px) {
  .challenge-solution .challenge {
    padding-right: 30px;
  }
  .challenge-solution .solution {
    padding-left: 30px;
  }
}
@media(min-width: 1400px) {
  .challenge-solution .challenge {
    padding-right: 70px;
  }
  .challenge-solution .solution {
    padding-left: 70px;
  }
}
.case-study-features {
  background-color: #1e1e1e;
  padding: 30px 0 0;
}
.case-study-features .list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin: 0 -15px;
}
.case-study-features .list li {
  padding: 0 15px 30px;
  width: 50%;
  text-align: center;
}
.case-study-features .list a {
  display: inline-block;
  color: #878787;
  font-size: 18px;
  line-height: 28px;
}
.case-study-features .list a:hover {
  color: #fff;
}
.case-study-features .list a .icon-holder {
  display: block;
  margin-bottom: 10px;
  min-height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case-study-features .list a .title {
  display: block;
}
@media(min-width: 768px) {
  .case-study-features {
    padding: 30px 0;
  }
  .case-study-features .list li {
    padding: 0 15px;
    width: 25%;
  }
  .case-study-features .list a {
    font-size: 20px;
    line-height: 30px;
  }
}
@media(min-width: 1200px) {
  .case-study-features .list a {
    font-size: 22px;
    line-height: 32px;
  }
}
.project-overview {
  padding: 40px 0 20px;
}
.project-overview__box {
  background-color: #f0eef2;
  padding: 30px 15px;
}
.project-overview__box .column {
  width: 100%;
}
.project-overview__box .project-info .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-overview__box .project-info .list li .title {
  color: #000;
  display: block;
  font-weight: 500;
}
.project-overview__box .project-info .list li .text {
  display: block;
}
.project-overview__box .project-info .logo-holder {
  margin: 0 0 20px;
}
.project-overview__box .project-info .logo-holder.desktop {
  display: none;
}
.project-overview__box .overview {
  margin: 30px 0 0;
}

@media(min-width: 576px) {
  .project-overview__box .project-info .list li {
    display: flex;
    flex-flow: row wrap;
  }
  .project-overview__box .project-info .list li .title {
    display: inline-block;
    width: 160px;
  }
  .project-overview__box .project-info .list li .text {
    display: inline-block;
    width: calc(100% - 160px);
    padding-left: 15px;
  }
}
@media(min-width: 768px) {
  .project-overview__box {
    padding: 30px;
  }
  .project-overview {
    padding: 60px 0 40px;
  }
}
@media(min-width: 1200px) {
  .project-overview__box .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .project-overview__box {
    padding: 40px;
  }
  .project-overview__box .column {
    padding: 0 15px;
  }
  .project-overview__box .column:nth-child(1) {
    width: 42%;
  }
  .project-overview__box .column:nth-child(2) {
    width: 58%;
  }
  .project-overview__box .project-info .logo-holder {
    margin: 50px 0 0;
  }
  .project-overview__box .project-info .logo-holder.mobile {
    display: none;
  }
  .project-overview__box .project-info .logo-holder.desktop {
    display: block;
  }
  .project-overview__box .overview {
    margin: 0;
  }
}
@media(min-width: 1400px) {
  .project-overview__box {
    padding: 50px 60px;
  }
}
.project-detail {
  padding: 40px 0;
}
.project-detail h2 {
  margin-bottom: 40px;
}
.project-detail .project {
  padding-bottom: 30px;
  padding-top: 30px;
}
.project-detail .project:last-child {
  margin-bottom: 0;
}
.project-detail .project .column {
  width: 100%
}
.project-detail .project .title {
  font-weight: 500;
  margin: 0 0 10px;
}
.project-detail .project .icon {
  display: block;
  max-width: 70px;
}
.project-detail .project .image-list li {
  text-align: center;
  margin-bottom: 30px;
}
.project-detail .project .image-list li:last-child {
  margin-bottom: 0;
}
.project-detail .project .image-list li .caption {
  text-align: center;
  display: block;
  font-size: 16px;
  line-height: 26px;
}

@media(min-width: 768px) {
  .project-detail .project .heading {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  .project-detail .project .title {
    width: calc(100% - 100px);
    padding-left: 15px;
  }
  .project-detail .project .icon {
    width: 100px;
  }
}
@media(min-width: 992px) {
  .project-detail .project .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .project-detail .project {
    padding-bottom: 50px;
  }
  .project-detail .project .column {
    padding: 0 15px;
  }
  .project-detail .project .column:nth-child(1) {
    width: 65%;
  }
  .project-detail .project .column:nth-child(2) {
    width: 35%;
  }
}
@media(min-width: 1200px) {
  .project-detail {
    padding: 60px 0;
  }
}
.team-module .container {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.team-module .container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background-color: #cfccd2;
}
.team-module h2 {
  text-align: center;
  margin-bottom: 30px;
}
.team-module .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.team-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.team-module .team-member {
  position: relative;
}
.team-module .team-member:hover .team-member__info {
  opacity: 1;
  visibility: visible;
}
.team-module .team-member .image-holder {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  line-height: 0;
}
.team-module .team-member .image-holder img {
  width: 100%;
}
.team-module .team-member .team-member__info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 15px;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-module .team-member .team-member__info .name {
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
}
.team-module .team-member .team-member__info .designation {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
}
.team-module .team-member .team-member__info .text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.team-module .team-member .team-member__info .social-link {
  background-color: #fff;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  display: inline-block;
}

@media(min-width: 576px) {
  .team-module .column {
    width: 50%;
  }
}
@media(min-width: 768px) {
  .team-module h2 {
    margin-bottom: 40px;
  }
  .team-module .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media(min-width: 992px) {
  .team-module h2 {
    margin-bottom: 50px;
  }
  .team-module .column {
    width: 33.333%;
  }
}
@media(min-width: 1200px) {
  .team-module .container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .team-module h2 {
    margin-bottom: 60px;
  }
  .team-module .column {
    width: 25%;
  }
}
.team-slider-module {
  background-color: #f0eef2;
  padding: 40px 0;
}
.team-slider-module h2 {
  text-align: center;
  margin-bottom: 20px;
}
.team-slider {
  padding: 0 20px;
}
.team-slider .slick-arrow {
  color: #8066eb;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  cursor: pointer;
}
.team-slider .slick-arrow.arrow-next {
  left: auto;
  right: 0;
}
.team-slider .team-member .team-member__content .image-holder {
  display: none;
}
.team-slider .team-member .team-member__content .member-info {
  text-align: center;
}
.team-slider .team-member .team-member__content .member-info .designation {
  color: #8066eb;
}
.team-slider .team-member .team-member__content .member-info .address {
  display: block;
  margin-top: 5px;
}
.team-slider .team-member .team-member__content .member-info blockquote {
  margin-top: 20px;
}
.team-slider .team-member .team-member__content .member-info.desktop {
  display: none;
}
.team-slider .team-member .team-member__content .member-info.mobile .image-holder {
  width: 120px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto 20px;
  display: block;
}
.team-slider .team-member .team-member__info {
  text-align: center;
  margin-top: 20px;
}
.team-slider .team-member .team-member__info .hobbies {
  margin-bottom: 15px;
}
.team-slider .team-member .team-member__info .title {
  color: #000;
  display: block;
}

@media(min-width: 768px) {
  .team-slider-module {
    padding: 60px 0;
  }
  .team-slider {
    padding: 0 50px;
  }
  .team-slider .slick-arrow {
    font-size: 22px;
    line-height: 22px;
  }
}
@media(min-width: 992px) {
  .team-slider-module h2 {
    margin-bottom: 40px;
  }
}
@media(min-width: 1200px) {
  .team-slider-module {
    padding: 80px 0;
  }
  .team-slider-module h2 {
    margin-bottom: 60px;
  }
  .team-slider .slick-arrow {
    font-size: 26px;
    line-height: 26px;
  }
  .team-slider .team-member {
    display: flex;
    flex-flow: row wrap;
  }
  .team-slider .team-member .team-member__content {
    display: flex;
    flex-flow: row wrap;
    width: 75%;
  }
  .team-slider .team-member .team-member__content .image-holder {
    width: 250px;
    border-radius: 0;
    overflow: visible;
    margin: 0;
    display: block;
  }
  .team-slider .team-member .team-member__content .member-info {
    width: calc(100% - 250px);
    padding-left: 25px;
    text-align: left;
  }
  .team-slider .team-member .team-member__content .member-info .name, .team-slider .team-member .team-member__content .member-info .designation, .team-slider .team-member .team-member__content .member-info .address {
    font-size: 20px;
    line-height: 30px;
  }
  .team-slider .team-member .team-member__content .member-info blockquote {
    margin-top: 40px;
    padding: 30px 20px 0 0;
  }
  .team-slider .team-member .team-member__content .member-info.desktop {
    display: block;
  }
  .team-slider .team-member .team-member__content .member-info.mobile {
    display: none;
  }
  .team-slider .team-member .team-member__info {
    width: 25%;
    text-align: left;
  }
  .team-slider .team-member .team-member__info .hobbies {
    margin-bottom: 30px;
  }
}
@media(min-width: 1400px) {
  .team-slider-module h2 {
    margin-bottom: 60px;
  }
  .team-slider {
    padding: 0 70px;
  }
  .team-slider .team-member .team-member__content .member-info blockquote {
    padding-right: 50px;
  }
  .team-slider .team-member .team-member__info {
    padding-left: 35px;
  }
}
.webinar-hero-banner {
  background-color: #000;
  position: relative;
  z-index: 1;
}
.webinar-hero-banner:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 531px;
  width: 537px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-webinar-banner.png');
}
.webinar-hero-banner .container {
  padding-top: 40px;
  padding-bottom: 60px;
}
.webinar-hero-banner .column {
  width: 100%;
}
.webinar-hero-banner h1 {
  color: #fff;
  margin-bottom: 0;
}
.webinar-hero-banner .sub-heading {
  color: #8066eb;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.webinar-hero-banner .text {
  margin-top: 22px;
}
.webinar-hero-banner .text br {
  display: none;
}
.webinar-hero-banner .text ul, .webinar-hero-banner .text ol {
  padding: 0 0 0 20px;
  margin: 0 0 16px;
}
.webinar-hero-banner .webinar-info {
  margin: 30px 0;
  max-width: 500px;
}
.webinar-hero-banner .webinar-info span {
  display: block;
  color: #fff;
}
.webinar-hero-banner .webinar-info .title {
  color: #8066eb;
}
.webinar-hero-banner .webinar-info .date-time {
  margin-bottom: 20px;
}
.webinar-hero-banner .form-holder {
  background-color: #8066eb;
  padding: 30px 15px;
  margin-top: 50px;
}
.webinar-hero-banner .form-holder .form-title {
  display: none;
}
.webinar-hero-banner .form-holder form .hs-form-field label {
  color: #fff;
  font-size: 16px;
  line-height; 24px;
}
.webinar-hero-banner .form-holder form input[type=text],
.webinar-hero-banner .form-holder form input[type=email],
.webinar-hero-banner .form-holder form input[type=password],
.webinar-hero-banner .form-holder form input[type=tel],
.webinar-hero-banner .form-holder form input[type=number],
.webinar-hero-banner .form-holder form input[type=file],
.webinar-hero-banner .form-holder form select,
.webinar-hero-banner .form-holder form textarea {
  color: #fff;
  background-color: #674fc8;
	border: 1px solid #674fc8;
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding: 12px 16px;
  width: 100% !important;
  outline: none;
	box-shadow: none;
}
.webinar-hero-banner .form-holder form input[type=text]::placeholder,
.webinar-hero-banner .form-holder form input[type=email]::placeholder,
.webinar-hero-banner .form-holder form input[type=password]::placeholder,
.webinar-hero-banner .form-holder form input[type=tel]::placeholder,
.webinar-hero-banner .form-holder form input[type=number]::placeholder,
.webinar-hero-banner .form-holder form input[type=file]::placeholder,
.webinar-hero-banner .form-holder form select::placeholder,
.webinar-hero-banner .form-holder form textarea::placeholder {
  color: #fff;
  opacity: 0.7;
}
.webinar-hero-banner form .hs-form-required {
  color: #fff;
}
.webinar-hero-banner form label.hs-error-msg {
  color: #fff;
  font-size: 12px !important;
  line-height: 16px !important;
}
.webinar-hero-banner form .hs-submit {
  text-align: left;
  margin-top: 50px;
}
.webinar-hero-banner form .hs-submit .hs-button {
  width: 100%;
  background-color: #fff;
  color: #000;
}
.webinar-hero-banner .form-holder .submitted-message {
  color: #fff;
  text-align: center;
}

@media(min-width: 576px) {
  .webinar-hero-banner .webinar-info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }
  .webinar-hero-banner .webinar-info .date-time {
    margin-bottom: 0;
  }
  .webinar-hero-banner .form-holder {
    padding: 30px;
  }
}
@media(min-width: 768px) {
  .webinar-hero-banner .container {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media(min-width: 992px) {
  .webinar-hero-banner .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .webinar-hero-banner .column {
    padding: 0 15px;
    width: 100%;
  }
  .webinar-hero-banner .column:nth-child(1) {
    width: 55%;
  }
  .webinar-hero-banner .column:nth-child(2) {
    width: 45%;
  }
  .webinar-hero-banner .column:only-child {
    width: 100%;
  }
  .webinar-hero-banner .column:only-child .text {
    max-width: 100%;
  }
  .webinar-hero-banner .text {
    max-width: 600px;
  }
  .webinar-hero-banner .text br {
    display: block;
  }
  .webinar-hero-banner .form-holder {
    margin: 0;
  }
}
.help-info {
  text-align: center;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.help-info .left-image {
  display: none;
}
.help-info .right-image {
  display: none;
}
.help-info h2 {
  max-width: 950px;
  margin: 0 auto 20px;
}
.help-info .text {
  max-width: 470px;
  margin: 0 auto 20px;
}
.help-info .cta_button {
  text-transform: uppercase;
}

@media(min-width: 768px) {
  .help-info {
    padding: 60px 0;
  }
  .help-info h2 {
    margin-bottom: 30px;
  }
  .help-info .text {
    margin-bottom: 30px;
  }
  .help-info .left-image {
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 0;
    z-index: -1;
    max-width: 200px;
    display: block;
  }
  .help-info .right-image {
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 0;
    z-index: -1;
    max-width: 240px;
    display: block;
  }
}
@media(min-width: 992px) {
  .help-info {
    padding: 80px 0;
  }
  .help-info .left-image {
    max-width: 250px;
  }
  .help-info .right-image {
    max-width: 300px;
  }
}
@media(min-width: 1200px) {
  .help-info .left-image {
    max-width: 300px;
  }
  .help-info .right-image {
    max-width: 360px;
  }
}
@media(min-width: 1400px) {
  .help-info .left-image {
    max-width: 350px;
  }
  .help-info .right-image {
    max-width: 420px;
  }
}
.popup-modal-apply-job {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 999;
  display: none;
}
.popup-modal-apply-job.active-popup {
  display: block;
}
.popup-modal-apply-job__inner {
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: inherit;
  padding: 80px 15px;
  position: relative;
  overflow-y: scroll;
}
.popup-modal-apply-job__inner .holder {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #f0eef2;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 30px;
}
.popup-modal-apply-job__inner .holder .title {
  margin-bottom: 30px;
}
.popup-modal-apply-job__inner .holder .form-title {
  display: none;
}
.popup-modal-apply-job__inner .holder .form-holder {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.popup-modal-apply-job__inner form input[type=text],
.popup-modal-apply-job__inner form input[type=email],
.popup-modal-apply-job__inner form input[type=password],
.popup-modal-apply-job__inner form input[type=tel],
.popup-modal-apply-job__inner form input[type=number],
.popup-modal-apply-job__inner form input[type=file],
.popup-modal-apply-job__inner form select,
.popup-modal-apply-job__inner form textarea {
  background-color: #fff;
	border: 1px solid #fff;
  padding: 12px 16px;
}
.popup-modal-apply-job__inner form .hs-input.invalid.error {
  border-color: #f41157;
}
.popup-modal-apply-job__inner .holder .icon-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 5;
}
.popup-modal-apply-job__inner .holder .icon-close:before, .popup-modal-apply-job__inner .holder .icon-close:after {
  position: absolute;
  left: 15px;
  content: '';
  height: 33px;
  width: 2px;
  background-color: #8066EB;
}
.popup-modal-apply-job__inner .holder .icon-close:before {
  transform: rotate(45deg);
}
.popup-modal-apply-job__inner .holder .icon-close:after {
  transform: rotate(-45deg);
}

@media (min-width: 576px) {
  .popup-modal-apply-job__inner .holder {
    padding: 50px 40px;
  }
}
.case-studies .content {
  margin-bottom: 30px;
  max-width: 850px;
}
.case-studies .column {
  width: 100%;
  margin-bottom: 30px;
}
.case-studies .column.column_one .image-holder {
  background-position: 50% 15%;
}
.case-studies .case-study-article .image-holder {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 289px;
  margin-bottom: 25px;
  overflow: hidden;
  display: block;
}
.case-studies .case-study-article .title {
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}
.case-studies .case-study-article .title {
  color: #000;
  font-weight: 500;
  margin-bottom: 5px;
}
.case-studies .case-study-article .industry {
  color: #FEAD1F;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.case-studies .case-study-article .text {
  margin-bottom: 20px;
}
.case-studies .case-study-article .link-more {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
}


@media(min-width: 992px) {
  .case-studies .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .case-studies .column {
    padding: 0 15px;
  }
  .case-studies .column.column_one {
    width: 100%;
  }
  .case-studies .column.column_two {
    width: 50%;
  }
  .case-studies .column.column_three {
    width: 33.333%;
  }
  .case-studies .content {
    margin-bottom: 50px;
  }
}
.focus-area-two  .content {
  margin-bottom: 30px;
  max-width: 850px;
}
.focus-area-two .column {
  width: 100%;
  margin-bottom: 30px;
}
.focus-area-two .link {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  text-transform: uppercase;
  color: #000;
}
.focus-area-two .link h4 {
  font-weight: 500;
  width: calc(100% - 45px);
  padding-left: 15px;
  margin: 0;
  line-height: 44px;
  color: inherit;
}
.focus-area-two .link:hover {
  color: #FEAD1F;
}
.focus-area-two .link.purple:hover {
  color: #9F9FFF;
}
.focus-area-two .link.purple .icon {
  background-color: #9F9FFF;
}
.focus-area-two .link.red:hover {
  color: #F41157;
}
.focus-area-two .link.red .icon {
  background-color: #F41157;
}
.focus-area-two .icon {
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  background-color: #FEAD1F;
  border-radius: 100%;
  font-size: 30px;
  line-height: 30px;
}
.focus-area-two .icon::before {
  margin-top: -2px;
  margin-right: -4px;
}

@media(min-width: 768px) {
  .focus-area-two .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .focus-area-two .column {
    width: 50%;
    padding: 0 15px;
  }
}
@media(min-width: 992px) {
  .focus-area-two  .content {
    margin-bottom: 50px;
  }
  .focus-area-two .column {
    width: 33.333%;
  }
}
.button-holder: {
  
}

.our-solutions .content {
  margin-bottom: 30px;
  max-width: 850px;
}
.our-solutions .solution-article {
  background-color: #F9F9F9;
  margin-bottom: 30px;
  text-align: center;
  padding: 30px 20px;
  border-radius: 24px;
}
.our-solutions .solution-article h3 {
  font-weight: 700;
}
.our-solutions .solution-article .info-holder {
  text-align: center;
  width: 100%;
}
.our-solutions .solution-article .icon-holder {
  max-width: 87px;
  margin: 0 auto 22px;
}
.our-solutions .solution-article .text {
  position: relative;
  padding-top: 22px;
}
.our-solutions .solution-article .text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #8066eb;
  transform: translateX(-50%);
}


@media(min-width: 992px) {
  .our-solutions .content {
    margin-bottom: 50px;
  }
  .our-solutions .solution-article {
    display: flex;
    flex-flow: row wrap;
    text-align: left;
    padding: 30px;
  }
  .our-solutions .solution-article .info-holder {
    text-align: left;
    width: 30%;
    padding-right: 30px;
  }
  .our-solutions .solution-article .icon-holder {
    margin: 0 0 22px;
  }
  .our-solutions .solution-article .text {
    text-align: left;
    width: 70%;
    padding: 0 0 0 30px;
  }
  .our-solutions .solution-article h3 {
    margin: 0;
  }
  .our-solutions .solution-article .text:before {
    top: 50%;
    left: 0;
    width: 3px;
    height: 100%;
    transform: translateY(-50%);
  }
}
@media(min-width: 1200px) {
  .our-solutions .solution-article {
    padding: 40px 50px;
  }
  .our-solutions .solution-article .text {
    padding: 0 0 0 50px;
  }
/*   .our-solutions .solution-article .info-holder {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  } */
  .our-solutions .solution-article .icon-holder {
    margin: 0 22px 10px 0;
  }
}
.proposal-module {
  background-color: #000;
  padding: 50px 15px;
  color: #d6d6d6;
  position: relative;
  z-index: 1;
}
.proposal-module:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 134px;
  width: 248px;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backdrop-testimonail-bottom.png');
}
.proposal-module h1, .proposal-module h2, .proposal-module h3, .proposal-module h4, .proposal-module h5, .proposal-module h6 {
  color: #fff;
  font-weight: 700;
}
.proposal-module h1 span, .proposal-module h2 span, .proposal-module h3 span, .proposal-module h4 span, .proposal-module h5 span, .proposal-module h6 span {
  color: #fff;
}
.proposal-module .column:first-child .content {
  margin-bottom: 30px;
}

@media(min-width: 992px) {
  .proposal-module {
    padding: 50px 30px;
  }
  .proposal-module .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .proposal-module .column {
    padding: 0 15px;
  }
  .proposal-module .column:nth-child(1) {
    width: 45%;
  }
  .proposal-module .column:nth-child(2) {
    width: 55%;
  }
  .proposal-module .column:only-child {
    width: 100%;
  }
  .proposal-module .column:nth-child(1) .content {
    max-width: 480px;
    margin: 0;
  }
  .proposal-module .column:nth-child(2) .content {
    max-width: 600px;
  }
}
@media(min-width: 1200px) {
  .proposal-module {
    padding: 50px;
  }
}
.checklist-module {
  background-color: #f0eef2;
  padding: 40px 0 10px;
}
.checklist-module.white_background {
  background-color: #fff;
}
.checklist-module ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
}
.checklist-module ul li {
  padding: 0 20px 30px 45px;
  position: relative;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}
.checklist-module ul li .icon-holder {
  position: absolute;
  top: -6px;
  left: 0;
  width: 30px;
  display: inline-block;
}
@media(min-width: 1200px) {
  .checklist-module ul li {
    padding-right: 40px;
  }
}
.pre-engegement h2 {
  font-weight: 700;
  margin-bottom: 40px;
}
.pre-engegement ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
}
.pre-engegement ul li {
  padding: 0 20px 30px 45px;
  position: relative;
  font-size: 22px;
  line-height: 32px;
}
.pre-engegement ul li .icon-holder {
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  display: inline-block;
}
.pre-engegement ul li p strong {
  color: #000;
  font-weight: 600;
}
@media(min-width: 1200px) {
  .pre-engegement ul li {
    padding-right: 40px;
  }
}
.post-engegement h2 {
  font-weight: 700;
  margin-bottom: 40px;
}
.post-engegement ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
}
.post-engegement ul li {
  padding: 0 20px 30px 45px;
  position: relative;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  line-height: 32px;
}
.post-engegement ul li .icon-holder {
  position: absolute;
  top: -4px;
  left: 0;
  width: 30px;
  display: inline-block;
}
@media(min-width: 1200px) {
  .post-engegement ul li {
    padding-right: 40px;
  }
}
.what-next {
  background: #F0EEF2;
  padding: 30px;
  position: relative;
  z-index: 1;
}
.what-next:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url('//4489304.fs1.hubspotusercontent-na1.net/hubfs/4489304/raw_assets/public/nextlinklabs/images/backgdrop-what-next.png');
}
.what-next ul li {
  display: flex;
  flex-flow: row nowrap;
}
.what-next ul li .icon-holder { 
  width: 20px;
  margin-right: 15px;
  position: relative;
  top: 6px;
}
.what-next ul li p { 
  width: calc(100% - 20px);
}

@media(min-width: 768px) {
  .what-next ul {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .what-next ul li {
    width: 50%;
    padding: 0 15px;
  }
}
@media(min-width: 992px) {
  .what-next {
    padding: 50px;
  }
}
.featured-speakers {
  background-color: #F0EEF2;
  padding: 30px 0 0;
}
.featured-speakers h2 {
  color: #000;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.featured-speakers .speakers-holder {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -20px;
}
.featured-speakers .column {
  padding: 0 20px;
  margin-bottom: 30px;
  width: 100%;
}
.featured-speakers .speakers {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.featured-speakers .speakers h3 {
  color: #8066EB;
  font-weight: 700;
  margin-bottom: 0;
}
.featured-speakers .speakers .designation {
  line-height: 26px;
  display: inline-block;
}
.featured-speakers .speakers .speakers__image {
  border-radius: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 109px;
  height: 109px;
}
.featured-speakers .speakers .speakers__info {
  width: calc(100% - 109px);
  padding-left: 20px;
}

@media(min-width: 768px) {
  .featured-speakers .column {
    width: 50%;
  }
}
@media(min-width: 1200px) {
  .featured-speakers .container {
    display: flex;
    flex-flow: row wrap;
  }
  .featured-speakers h2 {
    text-align: left;
    max-width: 140px;
    margin: 15px 30px 15px 0;
  }
  .featured-speakers .speakers-holder {
    width: calc(100% - 170px);
  }
  .featured-speakers .column {
    margin-bottom: 30px;
    width: 33.333%;
  }
}
.footer {
  background-color: #000;
  display: flex;
  font-size: 1rem;
  padding: 40px 20px;
  color: #878787;
  position: relative;
  z-index: 1;
}
.footer:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 350px;
  width: 226px;
  z-index: -1;
  background-color: #000000;
}
.footer .row {
  display: flex;
  flex-flow: column;
  gap: 30px;
  justify-content: space-between;
}
.footer .column {
  width: 100%;
}
.footer .footer-logo {
  max-width: 160px;
  margin-bottom: -20px;
}
.footer .text {
  max-width: 420px;
}
.footer h6 {
  color: #fff;
  margin-bottom: 15px;
}
.footer .social-links {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
}
.footer .social-links li {
  padding: 0 5px;
  font-size: 18px;
  line-height: 18px;
}
.footer .social-links li a {
  display: inline-block;
}
.footer .social-links li a.linkedin, .footer .social-links li a.youtube {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 100%;
  width: 35px;
  height: 35px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.footer .footer-links li a {
  color: #878787;
  display: inline-block;
}
.footer .footer-links li a:hover {
  color: #fff;
}
.footer .contact-list li a {
  color: #878787;
  display: inline-block;
}
.footer .contact-list li a:hover {
  color: #fff;
}
.footer .important_links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  white-space: nowrap;
}
.footer .important_links .column {
  width: auto;
}
.footer .social_links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.contact-info {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  list-style: none;
}
.contact-info li {
  align-items: center;
  display: flex;
  gap: 10px;
}
.contact-info li a {
  color: #878787;
  white-space: nowrap;
}
.contact-info li a:hover {
  text-decoration: underline;
}
.icon-phone:before {
  color: #8066EB;
}
.icon-email:before {
  color: #8066EB;
}
.footer .contact_us form label {
  display: none;
}
.footer .contact_us 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 {
  width: 100%;
}
.footer .contact_us .footer_form_wrapper form .actions {
  display: flex;
}
.footer .contact_us .footer_form_wrapper form .actions .hs-button {
  text-transform: capitalize;
}
.footer .contact_us .footer_form_wrapper form .submitted-message.hs-main-font-element {
  background-color: green;
  color: red;
  font-size: 16px;
}

@media(min-width: 768px) {
  .footer .text {
    font-size: 16px;
    line-height: 26px;
  }
  .footer .footer-links li {
    font-size: 16px;
    line-height: 30px;
  }
  .footer .contact-list li {
    font-size: 16px;
    line-height: 30px;
  }
  .footer .important_links li {
    font-size: 16px;
    line-height: 30px;
  }
  .footer:after {
    width: 300px;
  }
}
@media(min-width: 992px) {
  .footer {
    padding: 65px 0 130px;
  }
  .footer .row {
    flex-direction: row;
  }
  .footer .column { 
    margin: 0;
  }
  .footer .social_links {
    padding: 0 20px 0 0;
    width: 35%;
  }
  .footer .important_links {
    flex-direction: row;
    flex-grow: 2;
  }
  .footer .contact_us {
    width: 25%;
  }
  /* .footer:after {
    height: 300px;
    width: 175px;
  } */
}
@media(min-width: 1400px) {
  /* .footer:after {
    height: 200px;
    width: 150px;
  } */
}

/* templates
Specific pieces of UI that are stylized. Typically used for templates styling
*/
.blog-listing .post-listing {
  padding-bottom: 60px;
}

/* grid view */
.blog-listing .listing-grid-view {
  padding: 60px 0;
  border-bottom: 2px solid #979797;
}
.listing-grid-view .column {
  width: 100%;
}
.listing-grid-view .column:last-child .post-article {
  margin-bottom: 0;
}
.listing-grid-view .post-article {
  margin-bottom: 30px;
}
.listing-grid-view .post-article .post-article__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 230px;
  margin-bottom: 20px;
  overflow: hidden;
  display: block;
}
.listing-grid-view .post-article .post-article__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: 20px;
  min-height: 60px;
}
.listing-grid-view .post-article .post-article__title:hover {
  color: #8066EB;
}
.listing-grid-view .post-article .post-article__text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing-grid-view .post-article .post-article__text h2, .listing-grid-view .post-article .post-article__text h3, .listing-grid-view .post-article .post-article__text h4, .listing-grid-view .post-article .post-article__text h5, .listing-grid-view .post-article .post-article__text h6,  .listing-grid-view .post-article .post-article__text .hs-responsive-embed-wrapper, .listing-grid-view .post-article .post-article__text iframe, .listing-grid-view .post-article .post-article__text ul {
  display: none !important;
}
.listing-grid-view .post-article .post-article__text p {
  margin: 0;
  display: inline;
}
.listing-grid-view .post-article .post-article__text a {
  color: #878787;
}

/* listing view */
.blog-listing .listing-view {
  padding: 60px 0;
}
.listing-view .post-article {
  margin-bottom: 30px;
  display: flex;
  flex-flow: row wrap;
}
.listing-view .post-article:last-child {
  margin-bottom: 0;
}
.listing-view .post-article .post-article__image {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 230px;
  margin-bottom: 20px;
  overflow: hidden;
  display: block;
  width: 100%;
}
.listing-view .post-article .post-article__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: 20px;
}
.listing-view .post-article .post-article__title:hover {
  color: #8066EB;
}
.listing-view .post-article .post-article__text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 20px;
  max-width: 720px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing-view .post-article .post-article__text h2, .listing-view .post-article .post-article__text h3, .listing-view .post-article .post-article__text h4, .listing-view .post-article .post-article__text h5, .listing-view .post-article .post-article__text h6, .listing-view .post-article .post-article__text .hs-responsive-embed-wrapper, .listing-view .post-article .post-article__text iframe, .listing-view .post-article .post-article__text ul {
  display: none !important;
}
.listing-view .post-article .post-article__text p {
  margin: 0;
  display: inline;
}
.listing-view .post-article .post-article__text a {
  color: #878787;
}

/* pagincation */
.blog-pagination {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.blog-pagination .blog-pagination__link {
  margin-right: 5px;
  width: 40px;
  height: 40px;
}
.blog-pagination .blog-pagination__link:last-child {
  margin-right: 0;
}
.blog-pagination .blog-pagination__number-link {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e2e2e2;
  transition: all .15s ease-in-out;
  text-align: center;
  padding: 7px 13px;
}
.blog-pagination .blog-pagination__number-link:hover {
  background: #8066eb;
  color: #fff;
}
.blog-pagination .blog-pagination__prev-link, .blog-pagination .blog-pagination__next-link {
  color: #4b4c76;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  background: #fff;
  border: 1px solid #e2e2e2;
  transition: all .15s ease-in-out;
  text-align: center;
  padding: 4px 12px;
}
.blog-pagination .blog-pagination__link--active {
  background: #8066eb;
  color: #fff;
}
.blog-pagination .blog-pagination__prev-link--disabled, .blog-pagination .blog-pagination__next-link--disabled {
  color: #dadada;
  border: 1px solid #e5e5e5;
  background-color: #f5f7f9;
}

/* blog tags */
.blog-post-tags {
  background-color: #f0eef2;
  padding: 20px 0;
}
.blog-post-tags .tags-slider {
  max-width: 1330px;
  padding: 0 60px;
  margin: 0 auto;
}
.blog-post-tags .tags-slider .slick-list {
  margin: 0 -5px;
}
.blog-post-tags .tags-slider .slick-slide {
  padding: 0 10px;
  width: auto !important;
}
.blog-post-tags .tags-slider .tags {
  border: 2px solid #8066eb;
  background-color: #f0eef2;
  padding: 10px 20px;
  display: inline-block;
}
.blog-post-tags .tags-slider .tags.active {
  background-color: #8066eb;
  color: #fff;
}
.blog-post-tags .tags-slider .all-tags {
  border: 2px solid #8066eb;
  background-color: #f0eef2;
  padding: 10px 20px;
  display: inline-block;
}
.blog-post-tags .tags-slider .all-tags.active {
  background-color: #8066eb;
  color: #fff;
}
.blog-post-tags .tags-slider .arrow-before, .blog-post-tags .tags-slider .arrow-next {
  color: #000;
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.blog-post-tags .tags-slider .arrow-before {
  left: 15px;
}
.blog-post-tags .tags-slider .arrow-next {
  right: 15px;
}

@media(min-width: 992px) {
  .blog-listing .post-listing {
    padding-bottom: 80px;
  }
  .listing-grid-view .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .listing-grid-view .column {
    padding: 0 15px;
    width: 33.333%;
  }
  .listing-grid-view .post-article {
    margin-bottom: 0;
  }
  .listing-grid-view .post-article .post-article__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog-listing .listing-view {
    padding: 80px 0;
  }
  .listing-view .post-article .post-article__image {
    width: 413px;
  }
  .listing-view .post-article .post-article__content {
    width: calc(100% - 413px);
    padding-left: 45px;
  }
}
@media(min-width: 1200px) {
  .blog-listing .post-listing {
    padding-bottom: 100px;
  }
}
.post-template .post-wrapper {
  padding: 40px 0 20px;
}
.post-template .post-wrapper .featured-image {
  margin-bottom: 30px;
}
.post-template .post-wrapper h1 {
  margin-bottom: 50px;
}
.post-template .post-wrapper h1, .post-template .post-wrapper h1 span {
  color: #000;
  font-weight: 300;
}
.post-template .post-wrapper .post-content h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
}
.post-template .post-wrapper .post-content h2, .post-template .post-wrapper .post-content h3, .post-template .post-wrapper .post-content h4, .post-template .post-wrapper .post-content h5, .post-template .post-wrapper .post-content h6 {
  margin-bottom: 16px;
  font-weight: 400;
}
.post-template .post-wrapper .post-content ul, .post-template .post-wrapper .post-content ol {
  padding-left: 15px;
}
.post-template .post-wrapper .post-content ul + ul, .post-template .post-wrapper .post-content ol + ol {
  padding-left: 30px;
}
.post-template .post-wrapper .post-content iframe {
  width: 100%;
  height: 300px;
}
.post-template .post-wrapper .post-content .hs-responsive-embed {
  margin-bottom: 40px !important;
}
.post-template .post-wrapper .post-content pre, .post-template .post-wrapper .post-content code {
  border-radius: 8px;
  display: block;
  padding: 15px;
  background: #272822;
  color: #f8f8f2;
}
.post-template .post-wrapper .post-tags {
  margin-top: 40px;
}
.post-template .post-wrapper .tag-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -7px;
}
.post-template .post-wrapper .tag-list li {
  padding: 0 7px 14px;
}
.post-template .post-wrapper .tag-list a {
  font-size: 17px;
  line-height: 24px;
  color: #fff;
  padding: 14px 20px;
  background-color: #8066EB; 
  display: inline-block;
}

/* post sidebar style */
.post-template .sidebar {
  margin-top: 50px;
}

/* post author style */
.post-author {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 40px;
}
.post-author .post-author__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #f0eef2;
  border-radius: 100%;
  overflow: hidden;
  height: 88px;
  width: 88px;
}
.post-author .post-author__info {
  width: calc(100% - 88px);
  padding-left: 15px;
}
.post-author .post-author__info .name {
  color: #8066eb;
  font-weight: 500;
  display: block;
  line-height: 26px;
  margin-bottom: 5px;
}
.post-author .post-author__info .date {
  display: block;
  font-size: 18px;
  line-height: 26px;
}

/* post tags style */
.sidebar .post-tags {
  margin-top: 40px;
}
.sidebar .post-tags h6 {
  color: #8066eb;
  font-weight: 500;
  display: block;
  line-height: 26px;
  margin-bottom: 5px;
}
.sidebar .post-tags .tag-list {
  display: flex;
  flex-flow: row wrap;
  margin: 20px -7px 0;
}
.sidebar .post-tags .tag-list li {
  padding: 0 7px 14px;
}
.sidebar .post-tags .tag-list a {
  font-size: 17px;
  line-height: 24px;
  color: #6D6D6D;
  padding: 8px 16px;
  background-color: #F3F0FD; 
  display: inline-block;
}

/* recent author post  */
.author-posts {
  margin-top: 30px;
}
.author-posts .title {
  color: #8066eb;
  font-weight: 400;
  margin-bottom: 25px;
  display: block;
}
.recent-author-post {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-author-post li {
  position: relative;
  padding: 25px 0;
}
.recent-author-post li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #878787;
}
.recent-author-post a {
  color: #878787;
}
.recent-author-post a:hover {
  color: #8066eb;
}

@media(min-width: 992px) {
  .hero-banner-blog-post {
    padding: 60px 0;
  }
  .post-template .post-wrapper {
    padding: 60px 0 30px;
  }
  .post-template .post-wrapper .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .post-template .post-wrapper .column {
    padding: 0 15px;
  }
  .post-template .post-wrapper .column:nth-child(1) {
    width: 70%;
  }
  .post-template .post-wrapper .column:nth-child(2) {
    width: 30%
  }
  .post-template .post-wrapper .post-body {
    padding-right: 30px;
  }
  .post-template .post-wrapper .featured-image {
    margin-bottom: 40px;
  }
  .post-template .sidebar {
    margin: 0;
  }
  .recent-author-post li:before {
    width: 100%;
    color: #979797;
  }
}
@media(min-width: 1200px) {
  .post-template .post-wrapper {
    padding: 80px 0 40px;
  }
  .post-template .post-wrapper .post-body {
    padding-right: 60px;
  }
  .post-template .post-wrapper .featured-image {
    margin-bottom: 50px;
  }
}
.career-listing {
  padding-bottom: 40px;
}
.career-listing .career-listing__heading {
  padding: 80px 0 30px;
}
.career-listing .heading-module h2 {
  margin: 0;
}
.career-listing .listing-view {
  padding-bottom: 40px;
}
.career-listing .careers-post {
  border-bottom: 2px solid #979797;
  padding: 30px 0;
}
.career-listing .careers-post:last-child {
  border: none;
}
.career-listing .careers-post .careers-post__content {
  margin-bottom: 30px;
}
.career-listing .careers-post .location {
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}
.career-listing .careers-post .title {
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
}

@media(min-width: 768px) {
  .career-listing {
    padding-bottom: 40px;
  }
  .career-listing .careers-post {
    padding: 50px 0;
  }
}
@media(min-width: 992px) {
  .career-listing {
    padding-bottom: 80px;
  }
  .career-listing .career-listing__heading {
    padding: 100px 0 50px;
  }
  .career-listing .careers-post {
    display: flex;
    flex-flow: row nowrap;
  }
  .career-listing .careers-post .careers-post__content {
    width: 75%;
    margin-bottom: 0;
  }
  .career-listing .careers-post .button-holder {
    width: 25%;
    text-align: right;
    margin-top: 50px;
  }
}
@media(min-width: 1200px) {
  .career-listing {
    padding-bottom: 100px;
  }
}
.careers-post-template .careers-post-summary {
  display: none;
}
.careers-post-banner {
  background-color: #000;
}
.careers-post-banner .container {
  padding-top: 40px;
}
.careers-post-banner h1, .careers-post-banner h1 span {
  color: #fff;
  font-weight: 300;
}
.careers-post-banner .image-holder {
  max-width: 714px;
  margin: 30px auto 0;
  line-height: 1px;
}

.careers-post-template .post-wrapper {
  padding: 40px 0 60px;
}
.careers-post-template .post-wrapper .post-content h2, .careers-post-template .post-wrapper .post-content h3, .careers-post-template .post-wrapper .post-content h4, .careers-post-template .post-wrapper .post-content h5, .careers-post-template .post-wrapper .post-content h6 {
  margin-bottom: 16px;
}
.careers-post-template .post-wrapper .post-content ul, .careers-post-template .post-wrapper .post-content ol {
  padding-left: 15px;
}
.careers-post-template .post-wrapper .post-content ul + ul, .careers-post-template .post-wrapper .post-content ol + ol {
  padding-left: 30px;
}
.careers-post-template .post-wrapper .post-content iframe {
  width: 100%;
  height: 300px;
  margin-bottom: 40px !important;
}

/* post sidebar style */
.careers-post-template .sidebar {
  background-color: #f0eef2;
  padding: 50px 30px;
}
.careers-post-template .sidebar .focused {
  margin-bottom: 40px;
}
.careers-post-template .sidebar .icon-holder {
  margin-bottom: 15px;
}
.careers-post-template .sidebar .title {
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  color: #000;
}

@media(min-width: 768px) {
  .careers-post-template .post-wrapper {
    padding: 60px 0 80px;
  }
  .careers-post-banner .image-holder {
    margin: 50px auto 0;
  }
}
@media(min-width: 992px) {
  .careers-post-template .post-wrapper .row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -15px;
  }
  .careers-post-template .post-wrapper .column {
    padding: 0 15px;
  }
  .careers-post-template .post-wrapper .column:nth-child(1) {
    width: 67%;
  }
  .careers-post-template .post-wrapper .column:nth-child(2) {
    width: 33%
  }
  .careers-post-template .post-wrapper .post-content {
    padding-right: 30px;
  }
  .careers-post-banner .container {
    padding-top: 70px;
  }
  .careers-post-banner .row {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-end;
    margin: 0 -15px;
  }
  .careers-post-banner .column {
    padding: 0 15px;
    width: 50%;
  }
  .careers-post-banner .image-holder {
    margin: 0 0 0 auto;
  }
  .careers-post-banner .content {
    padding-bottom: 60px;
  }
}
@media(min-width: 1200px) {
  .careers-post-template .post-wrapper {
    padding: 80px 0 120px;
  }
  .careers-post-template .post-wrapper .post-content {
    padding-right: 55px;
  }
  .careers-post-banner .content {
    padding-bottom: 100px;
  }
}

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