/* Theme base styles */

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

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

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

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

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

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

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

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

body {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

b,
strong {
  font-weight: bolder;
}

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

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

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

details {
  display: block;
}

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

summary {
  display: list-item;
}

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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

/* Fonts
Base Fonts (<body>, <h1>, <a>, <p>, <button> etc.)
*/
@font-face {
  font-family: 'avenir_lt_std45_book';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/avenir-lt-std/avenir_lt_std_45_book-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/avenir-lt-std/avenir_lt_std_45_book-webfont.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'avenir_lt_std65_medium';
  font-weight: normal;
  font-style: normal;  
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/avenir-lt-std/avenir_lt_std_65_medium-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/avenir-lt-std/avenir_lt_std_65_medium-webfont.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'gilroy-regularuploaded_file';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-regular-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-regular-webfont.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'gilroy-mediumuploaded_file';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-medium-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-medium-webfont.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'gilroy-semibolduploaded_file';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-semibold-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-semibold-webfont.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'gilroy-bolduploaded_file';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-bold-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-bold-webfont.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'gilroy-extrabolduploaded_file';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-extrabold-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-extrabold-webfont.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'gilroy-blackuploaded_file';
  font-weight: normal;
  font-style: normal;
  src: url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-black-webfont.woff2') format('woff2'), url('//4644889.fs1.hubspotusercontent-na1.net/hubfs/4644889/raw_assets/public/arcalea-theme/fonts/gilory/gilroy-black-webfont.woff') format('woff');
  font-display: swap;
}


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

:root {
  --gilory: 'gilroy-regularuploaded_file';
  --gilory-500: 'gilroy-mediumuploaded_file';
  --gilory-600: 'gilroy-semibolduploaded_file';
  --gilory-700: 'gilroy-bolduploaded_file';
  --gilory-800: 'gilroy-extrabolduploaded_file';
  --gilory-900: 'gilroy-blackuploaded_file';
  --avenir-lt-std: 'avenir_lt_std45_book';
  --avenir-lt-std-500: 'avenir_lt_std65_medium';
  --white: #ffffff;
  --black: #000000;
  --white-600: #e8e8e8;
  --white-700: #b5b5b5;
  --white-800: #8c8c8c;
  --white-900: #6b6b6b;
  --grey-50: #e9e9e9;
  --grey-100: #bababa;
  --grey-200: #989898;
  --grey-300: #6a6a6a;
  --grey-400: #4d4d4d;
  --grey-500: #202020;
  --grey-600: #1d1d1d;
  --grey-700: #171717;
  --grey-800: #121212;
  --grey-900: #0d0d0d;
  --orange-50: #fdf4ea;
  --orange-100: #f8debf;
  --orange-200: #f4cea0;
  --orange-300: #efb774;
  --orange-400: #eca959;
  --orange-500: #e79430;
  --orange-600: #d2872c;
  --orange-700: #a46922;
  --orange-800: #7f511a;
  --orange-900: #613e14;
  --blue-50: #e9ebf1;
  --blue-100: #bcc1d4;
  --blue-200: #9ca3bf;
  --blue-300: #6e78a1;
  --blue-400: #525e8f;
  --blue-500: #273673;
  --blue-600: #233169;
  --blue-700: #1c2652;
  --blue-800: #151e3f;
  --blue-900: #101730;
  --bg-color: #F6F6F6;
}

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: var(--avenir-lt-std), sans-serif;
  color: var(--grey-300);
  font-size: 16px;
  line-height: 1.625;
  overflow-wrap: break-word;
}

.menu-active {
  overflow: hidden;
}

.body-container-wrapper__blog {
  padding-top: 78px;
}

@media(min-width: 768px) {
  .text-lg {
    font-size: 18px;
    line-height: 28px;
  }
  .body-container-wrapper__blog {
    padding-top: 89px;
  }
}
@media(min-width: 1200px) {
  .text-lg {
    font-size: 20px;
    line-height: 30px;
  }
  .body-container-wrapper__blog {
    padding-top: 100px;
  }
}

.body-wrapper {
  position: relative;
  overflow: hidden;
}

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

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

/* Headings */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--gilory-800), sans-serif;
  color: var(--blue-500);
  margin: 0 0 15px;
  display: block;
}
h1, .h1 {
  font-size: 38px;
  line-height: 48px;
}
h2, .h2 {
  font-size: 32px;
  line-height: 36px;
}
h3, .h3 {
  font-size: 28px;
  line-height: 32px;
}
h4, .h4 {
  font-family: var(--gilory-600), sans-serif;
  font-size: 24px;
  line-height: 28px;
}
h5, .h5 {
  font-size: 20px;
  line-height: 30px;
}
h6, .h6 {
  font-size: 18px;
  line-height: 28px;
}

@media(min-width: 576px) {
  h1, .h1 {
    font-size: 48px;
    line-height: 58px;
  }
}
@media(min-width: 768px) {
  h1, .h1 {
    font-size: 58px;
    line-height: 68px;
  }
  h2, .h2 {
    font-size: 36px;
    line-height: 44px;
  }
  h3, .h3 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media(min-width: 1200px) {
  h1, .h1 {
    font-size: 68px;
    line-height: 78px;
  }
}

.body-h1 {
  font-family: var(--avenir-lt-std-500), sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
}
.body-h2 {
  font-family: var(--avenir-lt-std), sans-serif;
  font-size: 20px;
  line-height: 30px;
}

@media(min-width: 768px) {
  .body-h1 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media(min-width: 992px) {
  .body-h1 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media(min-width: 1200px) {
  .body-h1 {
    font-size: 28px;
    line-height: 38px;
  }
}

/* Lists */
ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  max-width: 100%;
  height: auto;
}

/* section heading */
.section-header {
  text-align: center;
}
.section-header .sub-heading {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.section-header h2 {
  position: relative;
  padding-bottom: 15px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.section-header .text {
  max-width: 750px;
  margin: 0 auto;
}
.section-header .button-wrap {
  text-align: center;
  margin-top: 30px;
}

/* container */
.container {
  max-width: 1218px;
  margin: 0 auto;
  padding: 0 24px;
}
.dnd-section > .row-fluid {
  max-width: 1218px;
  margin: 0 auto;
}
.dnd-section > .row-fluid .container {
  padding: 0;
}
[class*=full-width-section], [class*=full-width-section] > .row-fluid {
  padding: 0;
}
[class*=full-width-section] > .row-fluid .container {
  padding: 0 24px;
}
[class*=full-width-section] > .row-fluid .dnd-column {
  padding: 0;
}
@media(max-width: 991px) {
  .dnd-section > .row-fluid {
    padding: 0 24px;
  }
  [class*=full-width-section] > .row-fluid {
    padding: 0;
  }
}

/* slick slider dots */
.slick-slider .slick-dots {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.slick-slider .slick-dots li {
  padding: 0 8px;
  line-height: 0;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: var(--grey-500);
}
.slick-slider .slick-dots li button {
  background-color: var(--grey-200);
  border-radius: 100%;
  border: none;
  box-shadow: none;
  font-size: 0;
  line-height: 0;
  outline: none;
  padding: 0;
  height: 10px;
  width: 10px;
}


/* slick slider arrows */
.slick-slider .slick-arrow {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  height: 40px;
  width: 40px;
  z-index: 2;
}
.slick-slider .slick-arrow.slick-next {
  right: -10px;
  left: auto;
}
.slick-slider .slick-arrow svg {
  height: 100%;
  width: 100%;
}
.slick-slider .slick-arrow svg rect, .slick-slider .slick-arrow svg path {
  transition: all 0.4s ease-in-out;
}
.slick-slider .slick-arrow:hover svg rect {
  fill: var(--orange-500);
}
.slick-slider .slick-arrow:hover svg path {
  stroke: var(--white);
}

@media(min-width: 992px) {
  .slick-slider .slick-arrow {
    height: 50px;
    width: 50px;
  }
  .slick-slider .slick-arrow {
    left: 0;
  }
  .slick-slider .slick-arrow.slick-next {
    right: 0;
  }
}
@media(min-width: 1200px) {
  .slick-slider .slick-arrow {
    height: 60px;
    width: 60px;
  }
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: var(--grey-50);
  border-color: var(--grey-50);
  color: var(--grey-300);
}

/* button */
.cta_button, 
.hs-button {
  font-family: var(--gilory-600), sans-serif;
  background-color: var(--orange-500);
  border: 2px solid var(--orange-500);
  box-shadow: none;
  border-radius: 5px;
  color: var(--grey-500);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 0;
  padding: 14px 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.cta_button:hover, .cta_button:focus, .cta_button:active,
.hs-button:hover, .hs-button:focus, .hs-button:active {
  background-color: var(--orange-700);
  border-color: var(--orange-700);
  color: var(--white);
  text-decoration: none;
}

.cta_button.btn-lg, 
.hs-button.btn-lg {
  padding: 15px 30px;
}

.cta_button.simple_link {
  font-family: var(--avenir-lt-std), sans-serif;
  background-color: transparent;
  border: none;
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  padding: 0;
}
.cta_button.simple_link:hover {
  color: var(--orange-500);
}
.cta_button.simple_link:hover svg path {
  fill: var(--orange-500);
}
.cta_button.simple_link svg {
  position: relative;
  top: 10px;
  left: 5px;
}
.cta_button.simple_link svg path {
  transition: all 0.4s ease-in-out;
}
@media(min-width: 992px) {
  .cta_button.simple_link {
    font-size: 20px;
    line-height: 30px;
  }
}
/* Fields */
.hs-form-field {
  margin-bottom: 1rem;
}
.hs-form-field.hs-recaptcha {
  margin: 1rem 0;
}

/* Labels */
form label {
  display: block;
  font-size: 16px;
}

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

/* Help text */
form legend {
  font-size: 0.875rem;
}

/* Inputs */
form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  color: var(--blue-400);
  font-size: 16px;
  line-height: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: var(--white);
  border: 1px solid var(--white);
  width: 100% !important;
}

form input[type=text]:focus,
form input[type=search]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  outline: none;
}

form textarea {
  resize: none !important;
}

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

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 1.25L9 8.75L1.5 1.25' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 18px;
}

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

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

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

form .hs-error-msgs li {
  margin: .4rem 0 0;
}
form .hs-error-msgs li .hs-error-msg {
  margin: 0;
}

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

form .inputs-list .hs-form-booleancheckbox {
  margin-top: 0;
}

form .inputs-list .hs-form-booleancheckbox-display {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  font-size: 16px;
  margin: 0;
}
form .inputs-list .hs-form-booleancheckbox-display a {
  color: #3D61F3;
}
form .hsfc-CheckboxFieldGroup__Options .hsfc-FieldLabel {
  position: relative;
  cursor: pointer;
}
form input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
form input[type="checkbox"] + label::before, form input[type="checkbox"] + span::before {
  border: 1px solid var(--orange-500);
  border-radius: 2px;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 22px; 
}
form input[type="checkbox"] + label::after, form input[type="checkbox"] + span::after {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  content: "";
  display: block;
  height: 22px;
  left: 0;
  position: absolute;
  top: 5px;
  transform: scale(0);
  transition: all .2s ease-out;
  width: 22px;
}
form input[type="checkbox"]:checked + label::before, form input[type="checkbox"]:checked + span::before {
  background-color: var(--orange-500);
}
form input[type="checkbox"]:checked + label::after, form input[type="checkbox"]:checked + span::after {
  transform: scale(1);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18.217' height='13.264'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='m.707 6.19 5.661 5.66L17.51.707'/%3E%3C/svg%3E");
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Slick slider styles */
.slick-slider {
  position: relative;
  user-select: none;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

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

.header {
  background-color: transparent !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  transition: all 0.4s ease-in-out;
}
.header .header-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.header .logo {
  width: 176px;
  position: relative;
  z-index: 11;
}
.header .logo.mobile {
  display: none;
}


.header .nav-bar {
  position: relative;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
  padding-left: 115px;
}
.header .nav-area {
  position: relative;
}
.header .menu {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.header ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px !important;
}
.header ul li {
  padding: 37px 15px;
}
.header ul li a {
  font-family: var(--gilory), sans-serif;
  font-size: 14px;
  line-height: 15.4px;
  letter-spacing: 1.4px;
  color: #fff;
  text-transform: uppercase;
}
.header ul li a .icon {
  display: inline-block;
  position: relative;
  top: -1px;
}
.header ul li a .icon svg path {
  fill: var(--white);
  transition: all 0.4s ease-in-out;
}
.header ul li.hs-item-has-children:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.header .mega-menu {
  background-color: var(--white);
  box-shadow: 0px 20px 35px 0px #0000000D;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  padding: 20px 0 60px;
}
.header .mega-menu .container {
  max-width: 1368px;
}
.header .mega-menu .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.header .mega-menu .column {
  padding: 0 15px;
  position: relative;
  width: 22%;
}
.header .mega-menu .column:nth-child(1) {
  width: 34%;
}
.header .mega-menu .column:nth-child(1):after {
  display: none;
}
.header .mega-menu .column:not(:last-child):after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  background-color: var(--orange-500);
  width: 2px;
}
.header .mega-menu .heading, .header .mega-menu .text {
  color: var(--black);
  max-width: 360px;
}
.header .mega-menu .hs-menu-children-wrapper {
  display: block;
  margin: 0 !important;
}
.header .mega-menu .hs-menu-children-wrapper li {
  display: block;
  padding: 0 0 4px;
}
.header .mega-menu .hs-menu-children-wrapper li:first-child {
  padding-bottom: 16px;
}
.header .mega-menu .hs-menu-children-wrapper li:first-child a {
  font-family: var(--avenir-lt-std-500), sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.header .mega-menu .hs-menu-children-wrapper li a {
  color: var(--black);
  text-transform: none;
}


/* mobile menu toogle */
.navbar-toggle {
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  background: var(--orange-500);
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
  display: none;
  margin-top: -2px;
}
.navbar-toggle:after,
.navbar-toggle:before,
.navbar-toggle span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grey-500);
  height: 2px;
  transition: all 0.3s ease;
  width: 14px;
}
.navbar-toggle span {
  top: 50%;
  transform: translate(-50%, -50%);
}
.navbar-toggle:after,
.navbar-toggle:before {
  content: '';
}
.navbar-toggle:after {
  bottom: 21px;
}
.navbar-toggle:before {
  top: 21px;
}
.menu-active .navbar-toggle:before {
  transform: rotate(45deg) translate(-9px, 0px)
}
.menu-active .navbar-toggle:after {
  transform: rotate(-45deg) translate(-8px, 0px)
}
.menu-active .navbar-toggle span {
  opacity: 0;
  visibility: hidden;
}


@media(max-width: 1199px) {
  .menu-active .header {
    background-color: var(--white) !important;
    transition: all 0.4s ease-in-out;
  }
  .menu-active .header .logo {
    display: none;
  }
  .menu-active .header .logo.mobile {
    display: block;
  }
  .navbar-toggle {
    display: block;
  }
  .header {
    padding: 24px 0;
  }
  .header .nav-bar {
    background: var(--white);
    position: fixed;
    left: 0;
    right: 0;
    top: 89px;
    height: 0;
    padding: 0;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    z-index: 10;
  }
  .menu-active .nav-bar {
    height: 100%;
  }
  .header .nav-area {
    background: var(--white);
    height: 100%;
    transform: translateY(-100%);
    transition: all 0.4s ease-in-out;
    overflow-y: auto;
    padding: 0 25px 120px;
  }
  .menu-active .nav-area {
    transform: translateY(0);
  }
  .header .menu {
    display: block;
    text-align: left;
  }
  .header ul { 
    display: block !important;
    margin: 0 !important;
  }
  .header ul li {
    padding: 10px 0;
  }
  .header ul li a {
    font-weight: 700; 
    color: var(--blue-500);
  }
  .header ul li a .icon svg path {
    fill: var(--blue-500);
  }
  .header .button-wrap {
    margin-top: 15px
  }
  .header .mega-menu {
    display: none;
  }
}
@media(max-width: 767px) {
  .header .logo {
    width: 121px;
  }
  .header .nav-bar {
    top: 77px;
  }
}

/* header sticky */
.header.sticky {
  background-color: var(--white) !important;
  box-shadow: 0px 20px 35px 0px #0000000D;
}
.header.sticky .logo {
  display: none;
}
.header.sticky .logo.mobile {
  display: block;
}
/* header inner style */
.header.header_inner {
  background-color: var(--white) !important;
}

@media(min-width: 992px) {
  .header.header_inner ul li a, .header.sticky ul li a {
    color: var(--grey-500);
  }
  .header.header_inner ul li a .icon svg path, .header.sticky ul li a .icon svg path {
    fill: var(--grey-500);
  }
}
.hero-banner {
  background-color: var(--bg-color);
}
.hero-banner .holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 10%;
  min-height: 569px;
  position: relative;
  padding-top: 98px;
  z-index: 1;
}
.hero-banner .holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.76);
  z-index: -1;
}
.hero-banner .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;  
}
.hero-banner .holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: top;
}

.hero-banner .wrap {
  max-width: 718px;
  margin: 0 auto;
  text-align: center;
}
.hero-banner h1 {
  color: var(--white);
}
.hero-banner .text {
  color: var(--white);
  max-width: 520px;
  margin: 0 auto;
}
.hero-banner .button-wrap {
  margin-top: 36px;
}

.hero-banner .container {
  max-width: 1298px;
}
.hero-banner .section-header {
  text-align: left;
}
.hero-banner .section-header h2 {
  margin-left: 0;
  margin-right: 0;
}
.hero-banner .section-header h2::after {
  left: 0;
  transform: none;
}
.hero-banner .content-holder {
  background-color: var(--white);
  box-shadow: 0px 6px 35px 0px #0000000D;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  margin-top: -15%;
  position: relative;
  z-index: 2;
}
.hero-banner .video-container, .hero-banner .image-holder {
  position: relative;
  width: 100%;
}
.hero-banner .content {
  padding: 35px 20px;
  width: 100%;
}
.hero-banner .content .text {
  color: var(--grey-300);
  text-align: left;
  margin-bottom: 18px;
  max-width: 100%;
}
.hero-banner .content .h4 {
  margin: 0;
}
.hero-banner .video-container {
  min-height: 234px;
}
.hero-banner .video-container video, .hero-banner .image-holder img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
}


@media(min-width: 576px) {
  .hero-banner .video-container, .hero-banner .image-holder {
    min-height: 334px;
  }
}
@media(min-width: 768px) {
  .hero-banner .holder {
    min-height: 829px;
    padding-top: 152px;
  }
  .hero-banner .video-container, .hero-banner .image-holder {
    min-height: 434px;
  }
  .hero-banner .content-holder {
    margin-top: -220px;
  }
  .hero-banner .content {
    padding: 55px 30px;
  }
}
@media(min-width: 992px) {
  .hero-banner .video-container, .hero-banner .content, .hero-banner .image-holder {
    width: 50%;
  }
  .hero-banner .section-header {
    text-align: center;
  }
  .hero-banner .section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media(min-width: 1200px) {
  .hero-banner .video-container, .hero-banner .image-holder {
    width: 57%;
  }
  .hero-banner .content {
    padding: 77px 48px;
    width: 43%;
  }
}
.hero-banner-02 .holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 10%;
  min-height: 360px;
  position: relative;
  padding-top: 98px;
  z-index: 1;
}
.hero-banner-02 .holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.50);
  z-index: -1;
}
.hero-banner-02 .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;  
}
.hero-banner-02 .holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: top;
}

.hero-banner-02 .wrap {
  max-width: 808px;
  margin: 0 auto;
  text-align: center;
}
.hero-banner-02 h1 {
  color: var(--white);
}
.hero-banner-02 .short-text, .hero-banner-02 .link-wrap a {
  color: var(--white);
}
.hero-banner-02 .link-wrap .icon {
  display: inline-block;
  position: relative;
  top: 2px;
}
.hero-banner-02 .section-header h2, .hero-banner-02 .section-header .text {
  max-width: 800px;
}
.hero-banner-02 .content-holder {
  background-color: var(--bg-color);
  margin-top: -100px;
  position: relative;
  padding: 40px 20px;
  z-index: 2;
}
.hero-banner-02 .content-holder .text {
  color: var(--grey-300);
  margin-bottom: 0;
}


@media(min-width: 768px) {
  .hero-banner-02 .holder {
    min-height: 560px;
    padding-top: 152px;
  }
  .hero-banner-02 .content-holder {
    margin-top: -170px;
    padding: 70px 30px 55px;
  }
}
.hero-banner-03 .holder.large {
  display: flex;
  flex-flow: row wrap;
}
.hero-banner-03 .holder.large .container {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  width: 100%;
}
.hero-banner-03 .holder.large .row {
  width: 100%;
}

.hero-banner-03 .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;  
}
.hero-banner-03 .holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: top;
}

.hero-banner-03 .container {
  max-width: 1238px;
}
.hero-banner-03 .holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 10%;
  min-height: 360px;
  position: relative;
  padding-top: 98px;
  padding-bottom: 50px;
  z-index: 1;
}
.hero-banner-03 .holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.50);
  z-index: -1;
}
.hero-banner-03 h1 {
  color: var(--white);
  text-align: center;
}
.hero-banner-03 .text {
  color: var(--white);
  position: relative;
  text-align: center;
  padding-top: 90px;
}
.hero-banner-03 .text:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(16deg);
  width: 6px;
  height: 78px;
  background-color: var(--orange-500);
}
.hero-banner-03 .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px; 
}
.hero-banner-03 .column {
  padding: 0 15px;
  width: 100%;
}


.hero-banner-03.active-content-box .container {
  max-width: 1298px;
}
.hero-banner-03.active-content-box .holder {
  padding-bottom: 100px;
}
.hero-banner-03 .content-holder {
  background-color: var(--white);
  box-shadow: 0px 6px 35px 0px #0000000D;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}
.hero-banner-03 .video-container, .hero-banner-03 .image-holder {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-banner-03 .image-holder:hover img {
  transform: scale(1.2);
}
.hero-banner-03 .image-holder img {
  transition: all 0.4s ease-in-out;
}
.hero-banner-03 .content {
  padding: 35px 20px;
  width: 100%;
}
.hero-banner-03 .content .section-header {
  text-align: left;
}
.hero-banner-03 .content h2, .hero-banner-03 .content .text {
  max-width: 100%;
}
.hero-banner-03 .content h2:after {
  left: 0;
  transform: none;
}
.hero-banner-03 .content .text {
  color: var(--grey-300);
  text-align: left;
  margin-bottom: 18px;
  max-width: 100%;
  padding: 0;
}
.hero-banner-03 .content .text:after {
  display: none;
}
.hero-banner-03 .content .h4 {
  margin: 0;
}
.hero-banner-03 .content .link-wrap a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--grey-300);
}
.hero-banner-03 .content .link-wrap a .icon {
  position: relative;
  top: 1px;
  left: 6px;
}
.hero-banner-03 .content:only-child {
  width: 100%;
}
.hero-banner-03 .content:only-child .section-header {
  text-align: center;
  margin: 0 auto;
  max-width: 887px;
}
.hero-banner-03 .content:only-child .section-header h2:after {
  left: 50%;
  transform: translateX(-50%);
}


.hero-banner-03 .video-container, .hero-banner-03 .image-holder {
  min-height: 234px;
}
.hero-banner-03 .video-container video, .hero-banner-03 .image-holder img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
}


@media(min-width: 576px) {
  .hero-banner-03 .video-container, .hero-banner-03 .image-holder {
    min-height: 334px;
  }
}
@media(min-width: 768px) {
  .hero-banner-03 .holder {
    min-height: 550px;
    padding-top: 152px;
  }
  .hero-banner-03 .holder.small {
    min-height: 432px;
  }
  .hero-banner-03.active-content-box .holder {
    display: block;
    padding-top: 132px;
  }
  .hero-banner-03 .video-container, .hero-banner-03 .image-holder {
    min-height: 514px;
  }
  .hero-banner-03 .content {
    padding: 55px 30px;
  }
}
@media(min-width: 992px) {
  .hero-banner-03 .holder.small {
    min-height: 432px;
    padding-top: 204px;
  }
  .hero-banner-03 .column {
    width: 50%;
  }
  .hero-banner-03 h1 {
    text-align: left;
  }
  .hero-banner-03 .text {
    padding: 0 0 0 50px;
    text-align: left;
  }
  .hero-banner-03 .text:after {
    top: 50%;
    left: -30px;
    transform: translate(0, -50%) rotate(16deg);
    height: 140px;
  }
  
  .hero-banner-03.active-content-box .holder {
    min-height: 698px;
  }
  .hero-banner-03 .content-holder {
    margin-top: -295px;
  }
  .hero-banner-03 .video-container, .hero-banner-03 .image-holder, .hero-banner-03 .content {
    width: 50%;
  }
}
@media(min-width: 1200px) {
  .hero-banner-03 h1 {
    font-size: 66px;
  }
  .hero-banner-03 .video-container, .hero-banner-03 .image-holder {
    width: 57%;
  }
  .hero-banner-03 .content {
    padding: 77px 48px;
    width: 43%;
  }
}
@media(min-width: 1366px) {
  .hero-banner-03 h1 {
    font-size: 68px;
  }
}
.hero-banner-04 .container {
  max-width: 618px;
}
.hero-banner-04 .holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 10%;
  min-height: 360px;
  position: relative;
  padding-top: 98px;
  padding-bottom: 50px;
  z-index: 1;
}
.hero-banner-04 .holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.60);
  z-index: -1;
}
.hero-banner-04 .holder .image { 
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;  
}
.hero-banner-04 .holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: top;
}

.hero-banner-04 h1 {
  color: var(--white);
  text-align: center;
}
.hero-banner-04 .text {
  color: var(--white);
  position: relative;
  text-align: center;
  padding-top: 90px;
}
.hero-banner-04 .text:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(16deg);
  width: 6px;
  height: 78px;
  background-color: var(--orange-500);
}
.hero-banner-04 .form-holder .form-title {
  display: none;
}
.hero-banner-04 form .hs-submit {
  text-align: center;
  margin-top: 1rem;
}
.hero-banner-04 form .inputs-list .hs-form-booleancheckbox-display {
  color: var(--white)
}
.hero-banner-04 .form-holder .submitted-message {
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--avenir-lt-std), sans-serif;
}


@media(min-width: 768px) {
  .hero-banner-04 .holder {
    min-height: 550px;
    padding-top: 152px;
    padding-bottom: 80px;
  }
  .hero-banner-04 .form-holder {
    padding-top: 30px;
  }
}
.hero-banner-05 .holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 10%;
  min-height: 360px;
  position: relative;
  padding-top: 98px;
  padding-bottom: 50px;
  z-index: 1;
}
.hero-banner-05 .holder:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.70);
  z-index: -1;
}
.hero-banner-05 .holder .image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;  
}
.hero-banner-05 .holder img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: top;
}
.hero-banner-05 .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px; 
}
.hero-banner-05 .column {
  padding: 0 15px;
  width: 100%;
}
.hero-banner-05 h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.hero-banner-05 .text {
  color: var(--white);
}
.hero-banner-05 .back-link {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 20px;
}
.hero-banner-05 .back-link:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.hero-banner-05 .back-link a {
  color: var(--white);
  text-transform: uppercase;
}
.hero-banner-05 .form-holder {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-top: 30px;
}
.hero-banner-05 .form-holder h4 {
  color: #242424;
  font-size: 28px;
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 35px;
}
.hero-banner-05 .form-holder .form-title {
  display: none;
}
.hero-banner-05 form input[type=text],
.hero-banner-05 form input[type=search],
.hero-banner-05 form input[type=email],
.hero-banner-05 form input[type=password],
.hero-banner-05 form input[type=tel],
.hero-banner-05 form input[type=number],
.hero-banner-05 form input[type=file],
.hero-banner-05 form select,
.hero-banner-05 form textarea {
  color: var(--blue-400);
  border-color: var(--orange-500);
  padding: 11px 20px;
}
.hero-banner-05 form .hs-submit {
  text-align: center;
  margin-top: 1rem;
}
.hero-banner-05 form .inputs-list .hs-form-booleancheckbox-display {
  color: var(--grey-300)
}
.hero-banner-05 form .hs-button {
  width: 100%;
}
.hero-banner-05 .form-holder .submitted-message {
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  color: var(--blue-400);
  font-family: var(--avenir-lt-std), sans-serif;
}


@media(min-width: 768px) {
  .hero-banner-05 .holder {
    min-height: 765px;
    padding-top: 145px;
    padding-bottom: 80px;
  }
}
@media(min-width: 992px) {
  .hero-banner-05 .column:nth-child(1) {
    width: 57%;
  }
  .hero-banner-05 .column:nth-child(2) {
    width: 43%;
  }
  .hero-banner-05 .text {
    max-width: 550px;
  }
  .hero-banner-05 .form-holder {
    margin: 0;
  }
}
.hero-banner-06 {
  background-color: var(--white);
}

.hero-banner-06 .holder {
  background-color: var(--blue-500);
  min-height: 569px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 140px;
  z-index: 1;
}
.hero-banner-06 .wrap {
  max-width: 950px;
}
.hero-banner-06 h1 {
  margin-bottom: 22px;
}
.hero-banner-06 .sub-heading {
  color: var(--white);
}
.hero-banner-06 h1, .hero-banner-06 .text {
  color: var(--white);
}
.hero-banner-06 .button-wrap {
  margin-top: 28px;
}
.hero-banner-06 .cta_button {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
  padding: 16px 21px;
}
.hero-banner-06 .cta_button:hover {
  background-color: var(--orange-700);
  border-color: var(--orange-700);
  color: var(--grey-500);
}
.hero-banner-06 .logo-image {
  max-width: 100px;
}

.hero-banner-06 .content-holder {
  background-color: var(--white);
  box-shadow: 0px 6px 35px 0px #0000000D;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  margin: -100px auto 0;
  position: relative;
  max-width: 1020px;
  z-index: 2;
}
.hero-banner-06 .video-container, .hero-banner-06 .image-holder {
  min-height: 234px;
  position: relative;
  width: 100%;
}
.hero-banner-06 .video-container video, .hero-banner-06 .image-holder img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
}

.hero-banner-06.add-spacing .holder {
  min-height: 469px;
}

@media(min-width: 576px) {
  .hero-banner-06 .video-container, .hero-banner-06 .image-holder {
    min-height: 334px;
  }
}
@media(min-width: 768px) {
  .hero-banner-06 .holder {
    min-height: 749px;
    padding-top: 55px;
  }
  .hero-banner-06.add-spacing .holder {
    min-height: 669px;
    padding-top: 100px;
  }
  .hero-banner-06 .logo-image {
    max-width: 125px;
  }
  .hero-banner-06 .video-container, .hero-banner-06 .image-holder {
    min-height: 514px;
  }
  .hero-banner-06 .content-holder {
    margin-top: -160px;
  }
  .hero-banner-06.add-spacing .content-holder {
    margin-top: -260px;
  }
}
@media(min-width: 992px) {
  .hero-banner-06.add-spacing .holder {
    min-height: 749px;
  }
  .hero-banner-06 .logo-image {
    max-width: 165px;
  }
  .hero-banner-06 .content-holder {
    margin-top: -230px;
  }
  .hero-banner-06.add-spacing .content-holder {
    margin-top: -330px;
  }
}
@media(min-width: 1200px) {
  .hero-banner-06 .content-holder {
    margin-top: -200px;
  }
  .hero-banner-06.add-spacing .content-holder {
    margin-top: -300px;
  }
}
.hero-banner-07 {
  background-color: var(--white);
  text-align: center;
}

.hero-banner-07 .holder {
  background-color: var(--blue-500);
  min-height: 569px;
  position: relative;
  padding-top: 40px;
  padding-bottom: 140px;
  z-index: 1;
}
.hero-banner-07.no-media .holder {
  padding-bottom: 40px;
  min-height: inherit;
}
.hero-banner-07 h1 {
  margin-bottom: 22px;
}
.hero-banner-07 .sub-heading {
  color: var(--white);
}
.hero-banner-07 h1, .hero-banner-07 .text, .hero-banner-07 .text h1, .hero-banner-07 .text h2, .hero-banner-07 .text h3, .hero-banner-07 .text h4, .hero-banner-07 .text h5, .hero-banner-07 .text h6 {
  color: var(--white);
}
.hero-banner-07 .text {
  margin: 0 auto;
  max-width: 900px;
}
.hero-banner-07 .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  gap: 15px 30px;
  text-align: left;
}
.hero-banner-07 .text ul li {
  position: relative;
  padding-left: 30px;
}
.hero-banner-07 .text ul li::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.75 10C0.75 4.615 5.115 0.25 10.5 0.25C15.885 0.25 20.25 4.615 20.25 10C20.25 15.385 15.885 19.75 10.5 19.75C5.115 19.75 0.75 15.385 0.75 10ZM14.11 8.186C14.17 8.10605 14.2134 8.01492 14.2377 7.91795C14.262 7.82098 14.2666 7.72014 14.2514 7.62135C14.2361 7.52257 14.2012 7.42782 14.1489 7.3427C14.0965 7.25757 14.0276 7.18378 13.9463 7.12565C13.8649 7.06753 13.7728 7.02624 13.6753 7.00423C13.5778 6.98221 13.4769 6.97991 13.3785 6.99746C13.2801 7.01501 13.1862 7.05205 13.1023 7.10641C13.0184 7.16077 12.9462 7.23135 12.89 7.314L9.654 11.844L8.03 10.22C7.88783 10.0875 7.69978 10.0154 7.50548 10.0188C7.31118 10.0223 7.12579 10.101 6.98838 10.2384C6.85097 10.3758 6.77225 10.5612 6.76882 10.7555C6.7654 10.9498 6.83752 11.1378 6.97 11.28L9.22 13.53C9.29699 13.6069 9.3898 13.6662 9.49199 13.7036C9.59418 13.7411 9.70329 13.7559 9.81176 13.7469C9.92023 13.738 10.0255 13.7055 10.1201 13.6519C10.2148 13.5982 10.2967 13.5245 10.36 13.436L14.11 8.186Z' fill='white'/%3E%3C/svg%3E%0A");
}
.hero-banner-07 .button-wrap {
  margin-top: 28px;
}

.hero-banner-07 .content-holder {
  background-color: var(--white);
  box-shadow: 0px 6px 35px 0px #0000000D;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-flow: row wrap;
  margin: -100px auto 0;
  position: relative;
  max-width: 1020px;
  z-index: 2;
}
.hero-banner-07 .video-container, .hero-banner-07 .image-holder {
  box-shadow: 0px 4px 40px 0px #00000026;
  min-height: 234px;
  position: relative;
  width: 100%;
}
.hero-banner-07 .video-container video, .hero-banner-07 .image-holder img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0;
}

.hero-banner-07.add-spacing .holder {
  min-height: 469px;
}

@media(min-width: 576px) {
  .hero-banner-07 .video-container, .hero-banner-07 .image-holder {
    min-height: 334px;
  }
}
@media(min-width: 768px) {
  .hero-banner-07 .holder {
    min-height: 849px;
    padding-top: 55px;
  }
  .hero-banner-07.no-media .holder {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .hero-banner-07.add-spacing .holder {
    min-height: 669px;
    padding-top: 100px;
  }
  .hero-banner-07 .video-container, .hero-banner-07 .image-holder {
    min-height: 514px;
  }
  .hero-banner-07 .content-holder {
    margin-top: -160px;
  }
  .hero-banner-07.add-spacing .content-holder {
    margin-top: -260px;
  }
  .hero-banner-07 .text ul {
    justify-content: center;
  }
}
@media(min-width: 992px) {
  .hero-banner-07.no-media .holder {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-banner-07.add-spacing .holder {
    min-height: 749px;
  }
  .hero-banner-07 .content-holder {
    margin-top: -230px;
  }
  .hero-banner-07.add-spacing .content-holder {
    margin-top: -330px;
  }
}
@media(min-width: 1200px) {
  .hero-banner-07 .content-holder {
    margin-top: -200px;
  }
  .hero-banner-07.add-spacing .content-holder {
    margin-top: -300px;
  }
}
.intro-module {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.intro-module h2 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}
.intro-module .content {
  text-align: center;
  margin: 0 auto 50px;
  max-width: 850px;
}
.intro-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.intro-module .column {
  padding: 0 15px;
  margin-top: 30px;
  width: 100%;
}
.intro-module .features-box {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  height: 100%;
  padding: 20px;
  transition: all 0.4s ease-in-out;
}
.intro-module .features-box:hover {
  background-color: var(--white);
}
.intro-module .features-box .title {
  position: relative;
  padding-left: 40px;
}
.intro-module .features-box .title:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-size: 100%; 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='32' height='32' rx='16' fill='%23273673'/%3E%3Cpath d='M14.0007 22.1663L8.33398 15.4997L9.66732 14.333L14.0007 19.6663L22.334 9.83301L23.6673 10.833L14.0007 22.1663Z' fill='white'/%3E%3C/svg%3E");
}
.intro-module .features-box.green .title:before {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect y='0.679688' width='32' height='32' rx='16' fill='%2301BF4D'/%3E%3Cpath d='M14.0026 22.846L8.33594 16.1794L9.66927 15.0127L14.0026 20.346L22.3359 10.5127L23.6693 11.5127L14.0026 22.846Z' fill='white'/%3E%3C/svg%3E%0A");
}
.intro-module .features-box .text {
  color: var(--blue-500);
}

.intro-module.white {
  background-color: var(--white);
}
.intro-module.white .features-box {
  border-color: #F3F3F3;
}
.intro-module.white .features-box:hover {
  background-color: var(--bg-color);
}

@media(min-width: 768px) {
  .intro-module .column {
    width: 50%;
  }
  .intro-module .features-box {
    padding: 26px;
  }
  .intro-module .features-box .title {
    padding-left: 45px;
  }
  .intro-module .features-box .title:before {
    width: 32px;
    height: 32px;
  }
}
@media(min-width: 992px) {
  .intro-module {
    padding: 100px 0;
  }
  .intro-module .column, .intro-module .column.col-4 {
    width: 33.33%;
  }
  .intro-module .column.col-6 {
    width: 50%;
  }
  .intro-module .content {
    margin-bottom: 60px;
  }
}
@media(min-width: 1200px) {
  .intro-module {
    padding: 130px 0;
  }
  .intro-module .column {
    width: 33.33%;
  }
  .intro-module .column.col-3 {
    width: 25%;
  }
  .intro-module .content {
    margin-bottom: 80px;
  }
}
.call-to-action {
  background-color: var(--blue-500);
  color: var(--white);
  padding: 60px 0;
}
.call-to-action .heading {
  position: relative;
  padding: 0 0 120px;
  text-align: center;
}
.call-to-action .heading:after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: ;
  background-color: var(--orange-500);
  width: 4px;
  height: 80px;
  transform: translateY(-50%) rotate(16deg);
}
.call-to-action .button-wrap {
  text-align: center;
}
.call-to-action .heading .h3 {
  color: var(--white);
  text-decoration: underline;
  margin: 0;
}
.call-to-action .heading .h3:hover {
  color: var(--orange-500);
}


@media(min-width: 768px) {
  .call-to-action {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .call-to-action {
    padding: 106px 0;
  }
  .call-to-action .holder {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  .call-to-action .heading {
    text-align: left;
    padding: 0 60px 0 0;
  }
  .call-to-action .heading:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    bottom: auto;
    left: auto;
    width: 6px;
    height: 120px;
  }
  .call-to-action .button-wrap {
    padding-left: 20px;
    text-align: left;
  }
}
.awards .row {
  display: flex;
  flex-flow: row wrap;
  overflow: hidden;
}
.awards .column {
  width: 100%;
}

.awards .awards-slider, .awards .content {
  height: 100%;
}
.awards .awards-slider .image-holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
  min-height: 430px;
  padding: 50px 30px 100px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.awards .awards-slider .image-holder:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00000099;
  z-index: -1;
}
.awards .awards-slider h2 {
  color: var(--white);
  margin: 0 auto;
}
.awards .content {
  padding: 25px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.awards .content:after {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  bottom: -9999px;
  background-color: var(--white);
  transform: skewY(-7deg);
  z-index: -1;
}
.awards .section-header h2, .awards .section-header .text {
  max-width: 740px;
}
.awards .awards-logos {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 50px;
}
.awards .awards-logos li {
  text-align: center;
  padding: 0 15px 15px;
  width: 50%;
}

@media(min-width: 768px) {
  .awards .awards-slider .image-holder {
    min-height: 500px;
  }
  .awards .content {
    padding: 40px 24px;
  }
  .awards .awards-logos li {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .awards .column:nth-child(1) {
    width: 52%;
  }
  .awards .column:nth-child(2) {
    width: 48%;
  }
  .awards .awards-slider h2 {
    font-size: 50px;
    line-height: 58px;
    margin: 0;
  }
  .awards .awards-slider .image-holder {
    padding: 100px 30px;
    min-height: 568px;
    padding-left: 60px;
  }
  .awards .content {
    padding: 74px 24px 40px;
  }
  .awards .content:after {
    top: 0;
    left: -105px;
    right: -9999px;
    bottom: 0;
    transform: skewX(-20deg);
  }
}
@media(min-width: 1200px) {
  .awards .column:nth-child(1) {
    width: 45.6%;
  }
  .awards .column:nth-child(2) {
    width: 54.4%;
  }
  .awards .awards-slider h2 {
    font-size: 64px;
    line-height: 72px;
  }
}
@media(min-width: 1280px) { 
  .awards .awards-slider .image-holder {
    padding-left: 80px;
  }
}
.brands {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.brands .container {
  max-width: 1098px;
}
.brands .brand-logos {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
  padding-top: 45px;
}
.brands .brand-logos li {
  text-align: center;
  padding: 0 15px 34px;
  width: 50%;
}
.brands .button-wrap {
  text-align: center;
}

@media(min-width: 768px) {
  .brands .brand-logos li {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .brands {
    padding: 90px 0;
  }
  .brands .brand-logos {
    margin: 0 -20px;
  }
  .brands .brand-logos li {
    padding: 0 20px 44px;
    width: 25%;
  }
}
@media(min-width: 1200px) {
  .brands .brand-logos {
    margin: 0 -24px;
  }
  .brands .brand-logos li {
    padding: 0 24px 52px;
  }
}
.success-stories {
  padding: 60px 0;
}

.stories-slider {
  padding: 40px 0;
}
.stories-slider .slick-track {
  display: flex !important;
}
.stories-slider .slick-list {
  margin: 0 -15px;
}
.stories-slider .slick-slide {
  height: inherit !important;
  padding: 0 15px;
}
.success-article {
  background-color: var(--bg-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.success-article:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.success-article:hover .success-article__image .image {
  transform: scale(1.2);
}
.success-article .success-article__image {
  overflow: hidden;
}
.success-article .success-article__image .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 341px;
  transition: all 0.4s ease-in-out;
}
.success-article .success-article__content {
  padding: 24px 20px;
}
.success-article .text {
  color: var(--grey-400);
}
.success-article .learn-more {
  margin-top: 18px;
}
.success-article .learn-more .icon {
  position: relative;
  top: 2px;
  left: 5px;
  display: inline-block;
}

@media(min-width: 768px) {
  .stories-slider {
    padding: 50px 0;
  }
  .success-article .success-article__content {
    padding: 24px 30px;
  }
}
@media(min-width: 992px) {
  .success-stories {
    padding: 90px 0;
  }
  .stories-slider {
    padding: 70px 0;
  }
}
@media(min-width: 1200px) {
  .success-stories {
    padding: 130px 0;
  }
  .success-article .success-article__content {
    padding: 24px 38px;
  }
}
.core-values {
  background-color: var(--blue-500);
  position: relative;
}
.core-values:before, .core-values:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 129px;
  z-index: 1;
}
.core-values:before {
  left: 0;
  background: linear-gradient(270deg, rgba(39, 54, 115, 0) 0%, #273673 65.5%);
}
.core-values:after {
  right: 0;
  background: linear-gradient(-270deg, rgba(39, 54, 115, 0) 0%, #273673 65.5%);
}

.touch-device .line-box {
	width: 600px;
}
.core-values .line-box {
  padding: 47px 0;
	overflow: hidden;
	width: 100%;
}
.core-values .line-box .line-wrap {
	width: 99999px;
	float: left;
}
.core-values .line-box .values {
  font-family: var(--gilory-800), sans-serif;
  color: var(--white);
  font-size: 20px;
  line-height: 22px;
	padding: 0 25px;
  position: relative;
}
.core-values .line-box .values:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(15deg);
  background-color: var(--white);
  width: 2px;
  height: 22px;
}
.services {
  padding: 60px 0;
}
.services .container {
  max-width: 1370px;
}

.services-slider {
  padding-bottom: 40px;
}
.services-slider .slick-track {
  display: flex !important;
}
.services-slider .slick-list {
  margin: 0 -15px;
}
.services-slider .slick-slide {
  height: inherit !important;
  padding: 0 15px;
}
.services-slider .services-article {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.services-slider .section-header {
  text-align: left;
  width: 100%;
}
.services-slider .section-header h2 {
  margin-left: 0;
  margin-right: 0;
}
.services-slider .section-header h2::after {
  left: 0;
  transform: none;
}
.services-slider .section-header .text {
  max-width: 100%;
  margin: 0;
}
.services-slider .section-header .button-wrap {
  text-align: left;
}
.services-slider .image-holder {
  width: 100%;
  margin-top: 30px;
}
.services-slider .image-holder img {
  margin: 0 auto;
}

@media(max-width: 767px) {
  .services-slider .slick-arrow {
    top: auto;
    bottom: 18%;
  }
}
@media(min-width: 768px) {
  .services {
    padding: 90px 0;
  }
  .services-slider .image-holder {
    margin-top: 50px;
  }
}
@media(min-width: 992px) {
  .services-slider {
    padding: 0 80px;
  }
  .services-slider .image-holder {
    width: 45%;
  }
  .services-slider .section-header {
    padding-right: 33px;
    width: 55%;
  }
}
@media(min-width: 1200px) {
  .services {
    padding: 90px 0 140px;
  }
  .services-slider .image-holder {
    width: 55.5%;
  }
  .services-slider .section-header {
    padding: 0 33px;
    width: 44.5%;
  }
}
@media(min-width: 1366px) {
  .services-slider .section-header {
    padding-left: 63px;
  }
}
.services-02 {
  padding: 60px 0;
}
.services-02 .section-header .sub-heading {
  color: var(--grey-300);
  margin-bottom: 20px;
}
.services-02 .section-header h2, .services-02 .section-header .text {
  max-width: 550px;
}
.services-02 .row {
  display: flex;
  flex-flow: row wrap;
  margin: 40px -15px 0;
}
.services-02 .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.services-02 .services-box {
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 0 16px;
  height: 100%;
}
.services-02 .services-box .title {
  padding: 16px 0;
  margin: 0 0 13px;
  text-transform: uppercase;
  border-bottom: 1px solid #F4E7D8;
}
.services-02 .services-box .services-list li {
  font-family: var(--avenir-lt-std), sans-serif;
  color: var(--grey-500);
  position: relative;
  padding: 0 0 16px 44px;
}
.services-02 .services-box .services-list li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.15' fill-rule='evenodd' clip-rule='evenodd' d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='%23E79430'/%3E%3Cpath d='M10.3984 15.8242L7.13672 12.582C7.04557 12.4909 7 12.3737 7 12.2305C7 12.0872 7.04557 11.97 7.13672 11.8789L7.85937 11.1758C7.95052 11.0716 8.06445 11.0195 8.20117 11.0195C8.33789 11.0195 8.45833 11.0716 8.5625 11.1758L10.75 13.3633L15.4375 8.67578C15.5416 8.57161 15.6621 8.51953 15.7988 8.51953C15.9355 8.51953 16.0495 8.57161 16.1406 8.67578L16.8633 9.3789C16.9544 9.47005 17 9.58724 17 9.73047C17 9.87369 16.9544 9.99088 16.8633 10.082L11.1016 15.8242C11.0104 15.9284 10.8932 15.9805 10.75 15.9805C10.6068 15.9805 10.4896 15.9284 10.3984 15.8242Z' fill='%23E79430'/%3E%3C/svg%3E%0A");
}
.services-02 .link-wrap {
  margin: 10px 0 15px;
}
.services-02 .link-wrap a {
  color: var(--grey-500);
}

@media(min-width: 768px) {
  .services-02 {
    padding: 90px 0;
  }
  .services-02 .row {
    margin-top: 50px;
  }
  .services-02 .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .services-02-slider {
    padding: 0 80px;
  }
  .services-02 .row {
    margin-top: 60px;
  }
  .services-02 .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .services-02 {
    padding: 130px 0;
  }
}
.innovation {
  background-color: var(--white);
  padding: 60px 0;
}
.innovation.grey {
  background-color: var(--bg-color);
}

.innovation-slider {
  padding: 40px 0 0;
}
.innovation-slider .slick-track {
  display: flex !important;
}
.innovation-slider .slick-list {
  margin: 0 -10px;
  padding-right: 60px;
}
.innovation-slider .slick-slide {
  height: auto !important;
  padding: 0 10px;
}

.innovation.grey .innovation-cards {
  background-color: var(--white);
}

.innovation-cards {
  background-color: var(--bg-color);
  padding: 9px 16px;
  height: 100%;
  display: block;
}
.innovation-cards:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.innovation-cards:hover .image-holder .image {
  transform: scale(1.2);
}
.innovation-cards .body-h2 {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  display: block;
  margin-bottom: 10px;
}
.innovation-cards .note {
  color: var(--grey-500);
  display: block;
  margin-bottom: 10px;
}
.innovation-cards .image-holder {
  overflow: hidden;
}
.innovation-cards .image-holder .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 334px;
  transition: all 0.4s ease-in-out;
}
.innovation-cards .link-wrap {
  padding: 10px 0;
}
.innovation-cards .link-wrap {
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  position: relative;
}
.innovation-cards .link-wrap .icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 24px;
}
.innovation-cards .link-wrap .icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 24px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='12' viewBox='0 0 24 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.8536 5.6289L18.5894 0.364681C18.4003 0.143868 18.068 0.118127 17.8472 0.307273C17.6263 0.496373 17.6006 0.8287 17.7897 1.04951C17.8074 1.0701 17.8266 1.08932 17.8472 1.10692L22.2112 5.47622H1.37015C1.07945 5.47622 0.84375 5.71192 0.84375 6.00267C0.84375 6.29342 1.07945 6.52907 1.37015 6.52907H22.2112L17.8472 10.8931C17.6263 11.0822 17.6006 11.4145 17.7897 11.6353C17.9789 11.8561 18.3112 11.8819 18.532 11.6927C18.5526 11.6751 18.5718 11.6559 18.5894 11.6353L23.8536 6.3711C24.0577 6.16585 24.0577 5.83424 23.8536 5.6289Z' fill='%23202020'/%3E%3C/svg%3E");
}

@media(min-width: 768px) {
  .innovation-slider {
    padding: 50px 0 0;
  }
  .innovation-slider .slick-list {
    padding: 0 60px;
  }
}
@media(min-width: 992px) {
  .innovation {
    padding: 90px 0;
  }
  .innovation-slider .slick-list {
    padding: 0 120px;
  }
}
@media(min-width: 1200px) {
  .innovation {
    padding: 130px 0;
  }
  .innovation-slider .slick-list {
    padding: 0 180px;
  }
}
@media(min-width: 1366px) {
  .innovation-slider .slick-list {
    padding: 0 240px;
  }
}
@media(min-width: 1440px) {
  .innovation-slider .slick-list {
    padding: 0 280px;
  }
}
.testimonials {
  padding: 60px 0;
}
.testimonials .container {
  max-width: 1188px;
}

.testimonials-slider {
  padding: 40px 0;
}
.testimonials-slider .slick-track {
  display: flex !important;
}
.testimonials-slider .slick-list {
  margin: 0 -15px;
}
.testimonials-slider .slick-slide {
  height: inherit !important;
  padding: 0 15px;
}
.testimonials-cards {
  background-color: var(--white);
  border: 0.5px solid var(--grey-100);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  padding: 32px 16px;
  transition: all 0.4s ease-in-out;
}
.testimonials-cards:hover {
  background-color: var(--blue-50);
}
.testimonials-cards .quote-info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 34px;
}
.testimonials-cards .quote-info .image-holder {
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 65px;
  width: 65px;
  overflow: hidden;
}
.testimonials-cards .quote-info .info {
  width: calc(100% - 65px);
  padding-left: 15px;
}
.testimonials-cards .quote-info .body-h2 {
  color: var(--grey-500);
  font-weight: 700;
  display: block;
}

@media(min-width: 992px) {
  .testimonials {
    padding: 90px 0;
  }
  .testimonials-slider {
    padding: 55px 0;
  }
}
@media(min-width: 1200px) {
  .testimonials {
    padding: 115px 0;
  }
}
.testimonials-02 {
  padding: 60px 0;
}
.testimonials-02 .container {
  max-width: 1158px;
}

.testimonials-slider-02 {
  padding: 40px 0;
}
.testimonials-slider-02 .slick-track {
  display: flex !important;
}
.testimonials-slider-02 .slick-slide {
  height: inherit !important;
}
.testimonials-slider-02 .slick-arrow {
  left: -10px;
}
.testimonials-slider-02 .slick-arrow.slick-next {
  right: -10px;
  left: auto;
}

.testimonials-slider-02 .testimonials-box {
  border: 0.5px solid var(--grey-100);
  border-radius: 32px;
  overflow: hidden;
  height: 100%;
  padding: 40px;
  text-align: center;
}
.testimonials-slider-02 .testimonials-box .holder {
  max-width: 730px;
  margin: 0 auto;
}
.testimonials-slider-02 .testimonials-box .image-holder {
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 65px;
  width: 65px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.testimonials-slider-02 .testimonials-box .quote-info {
  text-align: center;
  margin-top: 34px;
}
.testimonials-slider-02 .testimonials-box .quote {
  font-size: 20px;
  line-height: 30px;
  color: #12022F;
}
.testimonials-slider-02 .testimonials-box .quote-info .name {
  color: #12022F;
  font-weight: 700;
  display: block;
}
.testimonials-slider-02 .testimonials-box .quote-info .designation {
  color: #594D6D;
  display: block;
}

@media(min-width: 768px) {
  .testimonials-slider-02 .testimonials-box {
    padding: 50px 40px;
  }
  .testimonials-slider-02 .testimonials-box .image-holder {
    margin-bottom: 30px;
  }
  .testimonials-slider-02 .testimonials-box .quote-info {
    margin-top: 44px;
  }
  .testimonials-slider-02 .testimonials-box .quote-info .name {
    margin-bottom: 15px;
  }
}
@media(min-width: 992px) {
  .testimonials-02 {
    padding: 90px 0;
  }
  .testimonials-slider-02 {
    padding: 55px 0;
  }
  .testimonials-slider-02 .testimonials-box {
    padding: 77px 50px;
  }
  .testimonials-slider-02 .testimonials-box .quote {
    font-size: 24px;
    line-height: 28px;
  }
  .testimonials-slider-02 .testimonials-box .image-holder {
    margin-bottom: 40px;
  }
  .testimonials-slider-02 .testimonials-box .quote-info {
    margin-top: 54px;
  }
}
@media(min-width: 1200px) {
  .testimonials-02 {
    padding: 115px 0;
  }
  .testimonials-slider-02 .slick-arrow {
    left: -30px;
  }
  .testimonials-slider-02 .slick-arrow.slick-next {
    right: -30px;
  }
}
.testimonials-03 {
  background-color: var(--blue-500);
  padding: 60px 0;
}
.testimonials-03 .container {
  max-width: 1158px;
}
.testimonials-03 .section-header h2, .testimonials-03 .section-header .text {
  max-width: 750px;
}

.testimonials-slider-03 {
  padding: 40px 0;
}
.testimonials-slider-03 .slick-track {
  display: flex !important;
}
.testimonials-slider-03 .slick-slide {
  height: inherit !important;
}
.testimonials-slider-03 .slick-arrow {
  left: -10px;
}
.testimonials-slider-03 .slick-arrow.slick-next {
  right: -10px;
  left: auto;
}
.testimonials-slider-03 .slick-dots li.slick-active button {
  background-color: var(--white);
}

.testimonials-slider-03 .testimonials-box {
  text-align: center;
}
.testimonials-slider-03 .testimonials-box .holder {
  max-width: 950px;
  margin: 0 auto;
}
.testimonials-slider-03 .testimonials-box .image-holder {
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 120px;
  width: 120px;
  margin: 0 auto 25px;
  overflow: hidden;
}
.testimonials-slider-03 .testimonials-box .quote-info {
  text-align: center;
  margin-top: 34px;
}
.testimonials-slider-03 .testimonials-box .quote {
  font-family: var(--gilory-500), sans-serif;
  color: var(--white);
}
.testimonials-slider-03 .testimonials-box .quote-info .name {
  color: var(--white);
  font-weight: 700;
  display: block;
}
.testimonials-slider-03 .testimonials-box .quote-info .designation {
  color: var(--white);
  display: block;
}

@media(min-width: 768px) {
  .testimonials-slider-03 .testimonials-box .quote-info {
    margin-top: 35px;
  }
  .testimonials-slider-03 .testimonials-box .quote-info .name {
    margin-bottom: 10px;
  }
}
@media(min-width: 992px) {
  .testimonials-03 {
    padding: 90px 0;
  }
  .testimonials-slider-03 {
    padding: 55px 0;
  }
}
@media(min-width: 1200px) {
  .testimonials-03 {
    padding: 115px 0;
  }
  .testimonials-slider-03 .slick-arrow {
    left: -30px;
  }
  .testimonials-slider-03 .slick-arrow.slick-next {
    right: -30px;
  }
}
.about-module {
  background-color: var(--bg-color);
  padding: 60px 0 30px;
}
.about-module .container {
  max-width: 1188px;
}
.about-module .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
  padding-top: 40px;
}
.about-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.about-module .more-info {
  text-align: center;
}
.about-module .image-holder {
  margin-bottom: 5px;
  min-height: 60px;
}

@media(min-width: 768px) {
  .about-module .column {
    width: 50%;
  }
  .about-module .row {
    padding-top: 57px;
  }
}
@media(min-width: 992px) {
  .about-module {
    padding: 90px 0 60px;
  }
  .about-module .column {
    width: 33.33%;
  }
  .about-module.two_column .column {
    width: 50%;
  }
}
@media(min-width: 1200px) {
  .about-module {
    padding: 130px 0 100px;
  }
}
.subscription {
  background-color: var(--blue-500);;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.subscription:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #192143B2;
  z-index: -1;
}
.subscription.no-image:after {
  display: none;
}
.subscription .section-header {
  color: var(--white);
}
.subscription .section-header h2 {
  color: var(--white);
  max-width: 100%;
}
.subscription .section-header .text {
  max-width: 580px;
}
.subscription .form-holder {
  max-width: 635px;
  margin: 40px auto 0;
}
.subscription .form-holder form {
  position: relative;
}
.subscription .form-holder form input[type='email'] {
  padding-right: 150px;
}
.subscription .form-holder form .hs_submit {
  position: absolute;
  top: 2px;
  right: 2px;
}
.subscription .form-holder form .hs-button {
  padding: 14px 20px;
}
.subscription .form-holder form .hs-richtext {
  text-align: center;
  color: var(--white);
  margin: 0;
}
.subscription .form-holder form .hs-richtext p {
  margin: 0;
}
.subscription .form-holder form .hs-richtext a {
  color: #07AF0E;
  margin: 0;
}
.subscription .form-holder .submitted-message {
  color: var(--white);
  font-size: 28px;
  line-height: 38px;
  text-align: center;
}

@media(min-width: 768px) {
  .subscription .form-holder form input[type="email"] {
    padding-right: 180px;
  }
  .subscription .form-holder form .hs-button {
    padding: 14px 36px;
  }
}
.subscription-02 .content {
  padding: 50px 0;
  text-align: center;
}
.subscription-02 .section-header h2, .subscription-02 .section-header .text {
  max-width: 100%;
}
.subscription-02 .section-header .text {
  color: var(--grey-500);
}

.subscription-02 .form-holder {
  max-width: 635px;
  margin: 40px auto 0;
}
.subscription-02 .form-holder form {
  position: relative;
}
.subscription-02 .form-holder form input[type='email'] {
  background-color: var(--grey-50);
  color: var(--grey-100);
  padding-right: 150px;
}
.subscription-02 .form-holder form .hs_submit {
  position: absolute;
  top: 2px;
  right: 2px;
}
.subscription-02 .form-holder form .hs-button {
  padding: 14px 16px;
}
.subscription-02 .form-holder form .hs-richtext {
  text-align: center;
  color: var(--grey-500);
  margin: 0;
}
.subscription-02 .form-holder form .hs-richtext p {
  margin: 0;
}
.subscription-02 .form-holder form .hs-richtext a {
  color: #07AF0E;
  margin: 0;
}
.subscription-02 .form-holder .submitted-message {
  color: var(--grey-500);
  font-size: 28px;
  line-height: 38px;
  text-align: center;
}

.subscription-02 .contact-info {
  border-top: 1px solid var(--grey-100);
  padding: 30px 0 50px;
}
.subscription-02 .contact-info h2 {
  text-align: center;
}
.subscription-02 .contact-info .info-list {
  margin-top: 20px;
  text-align: left;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}
.subscription-02 .contact-info .info-list li {
  padding-bottom: 30px;
  padding-left: 59px;
  position: relative;
}
.subscription-02 .contact-info .info-list li:last-child {
  padding-bottom: 0;
}
.subscription-02 .contact-info .info-list li a {
  color: var(--grey-200);
}
.subscription-02 .contact-info .info-list li .icon {
  position: absolute;
  top: -8px;
  left: 2px;
  line-height: 0;
}


@media(min-width: 768px) {
  .subscription-02 .form-holder form input[type="email"] {
    padding-right: 180px;
  }
  .subscription-02 .form-holder form .hs-button {
    padding: 14px 36px;
  }
}
@media(min-width: 992px) {
  .subscription-02 {
    border-top: 1px solid var(--grey-100);
  }
  .subscription-02 .holder {
    display: flex;
    flex-flow: row wrap;
  }
  .subscription-02 .content {
    padding: 73px 30px;
    width: 68%;
  }
  .subscription-02 .contact-info {
    padding: 73px 30px 30px 50px;
    border-top: 0;
    border-left: 1px solid var(--grey-100);
    width: 32%;
  }
  .subscription-02 .contact-info h2 {
    text-align: left;
  }
  .subscription-02 .contact-info .info-list {
    margin-top: 35px;
  }
}
@media(min-width: 1200px) {
  .subscription-02 .contact-info {
    padding-left: 90px;
  }
}
.subscription-03 {
  background-color: var(--blue-500);
  padding: 60px 0;
}
.subscription-03 .section-header h2, .subscription-03 .section-header .text {
  color: var(--white);
}
.subscription-03 .form-holder {
  max-width: 500px;
  margin: 40px auto 0;
}
.subscription-03 .form-holder form input[type='text'],
.subscription-03 .form-holder form input[type='email'] {
  background-color: #152253;
  border-color: #152253;
  color: var(--white);
}
.subscription-03 .form-holder form .hs-submit {
  text-align: center;
  margin-top: 25px;
}
.subscription-03 .form-holder form .hs-button {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--blue-500);
  padding: 14px 16px;
}
.subscription-03 .form-holder form .hs-button:hover {
  color: var(--blue-500);
}
.subscription-03 .form-holder form .hs-richtext {
  text-align: center;
  color: var(--white);
  margin: 0;
}
.subscription-03 .form-holder form .hs-richtext p {
  margin: 0;
}
.subscription-03 .form-holder form .hs-richtext a {
  color: #07AF0E;
  margin: 0;
}
.subscription-03 .form-holder .submitted-message {
  color: var(--white);
  font-size: 28px;
  line-height: 38px;
  text-align: center;
}


@media(min-width: 768px) {
  .subscription-03 {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .subscription-03 {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .subscription-03 {
    padding: 130px 0;
  }
}
.content-with-image {
  padding: 60px 0;
}
.content-with-image.grey {
  background-color: var(--bg-color);
}
.content-with-image .container {
  max-width: 1300px;
}
.content-with-image .section-header {
  text-align: left;
}
.content-with-image .section-header h2, .content-with-image .section-header .text {
  max-width: 100%;
}
.content-with-image .section-header .text ul {
  margin: 0;
  padding-left: 15px;
}
.content-with-image .section-header h2:after {
  left: 0;
  transform: none;
}
.content-with-image .holder {
  background-color: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
}
.content-with-image.grey .holder {
  background-color: var(--white);
}
.content-with-image .content {
  padding: 30px 20px;
}
.content-with-image .image, .content-with-image .video {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.content-with-image .image:hover img {
  transform: scale(1.2);
}
.content-with-image .image img, .content-with-image .video .hs-video-wrapper {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute !important;
  top: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.content-with-image .button-wrap {
  margin-top: 20px;
  text-align: left;
}

.content-with-image .additonal-info {
  text-align: center;
  padding: 30px 0 0;
}
.content-with-image .additonal-info .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.content-with-image .additonal-info .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.content-with-image .additonal-info .text {
  text-transform: uppercase;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  color: var(--grey-500);
}


@media(max-width: 991px) {
  .content-with-image .image::before {
    content: "";
    display: block;
    padding-top: 71.6%;
  }
  .content-with-image .video:before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}
@media(min-width: 768px) {
  .content-with-image {
    padding: 80px 0;
  }
  .content-with-image .content {
    padding: 40px;
  }
  .content-with-image .additonal-info {
    padding-top: 50px;
  }
  .content-with-image .additonal-info .column {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .content-with-image {
    padding: 100px 0;
  }
  .content-with-image .holder {
    display: flex;
    flex-flow: row wrap;
  }
  .content-with-image .holder.left {
    flex-direction: row-reverse;
  }
  .content-with-image .content {
    padding: 80px 30px;
    width: 43%;
  }
  .content-with-image .image, .content-with-image .video {
    width: 57%;
  }
  .content-with-image .additonal-info {
    padding-top: 70px;
  }
}
@media(min-width: 1200px) {
  .content-with-image {
    padding: 130px 0;
  }
  .content-with-image .content {
    padding: 110px 50px;
  }
}
.content-with-image-02 {
  padding: 60px 0;
}
.content-with-image-02 .container {
  display: flex;
  flex-flow: column wrap;
}
.content-with-image-02 .image, .content-with-image-02 .video {
  line-height: 0;
  margin-bottom: 40px;
  overflow: hidden;
}
.content-with-image-02 .image:hover img {
  transform: scale(1.2);
}
.content-with-image-02 .image img {
  transition: all 0.4s ease-in-out;
}


@media(min-width: 768px) {
  .content-with-image-02 {
    padding: 80px 0;
  }
  .content-with-image-02 .container {
    flex-direction: column-reverse;
  }
  .content-with-image-02 .image, .content-with-image-02 .video {
    margin: 50px 0 0;
  }
}
@media(min-width: 992px) {
  .content-with-image-02 {
    padding: 100px 0;
  }
  .content-with-image-02 .image, .content-with-image-02 .video {
    margin: 60px 0 0;
  }
}
@media(min-width: 1200px) {
  .content-with-image-02 {
    padding: 130px 0;
  }
}
.content-with-image-03 {
  padding: 60px 0;
}
.content-with-image-03 .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.content-with-image-03 .column {
  padding: 0 15px;
  width: 100%;
}
.content-with-image-03 .logo-image {
  margin-bottom: 20px;
  max-width: 150px;
}
.content-with-image-03 .sub-heading {
  color: var(--grey-500);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
.content-with-image-03 h2 {
  position: relative;
  padding-bottom: 15px;
}
.content-with-image-03 h2:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.content-with-image-03 .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.content-with-image-03 .text ul li {
  font-family: var(--avenir-lt-std-500);
  color: #273673;
  position: relative;
  padding: 0 0 10px 35px;
}
.content-with-image-03 .text ul li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='24' height='24' rx='12' fill='%2301BF4D'/%3E%3Cg clip-path='url(%23clip0_728_691)'%3E%3Cpath d='M10.0026 18.1663L4.33594 11.4997L5.66927 10.333L10.0026 15.6663L18.3359 5.83301L19.6693 6.83301L10.0026 18.1663Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_728_691'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.content-with-image-03 .image, .content-with-image-03 .video {
  line-height: 0;
  margin-top: 30px;
  text-align: center;
  border-radius: 16px;
  overflow: hidden;
}
.content-with-image-03 .image:hover img {
  transform: scale(1.2);
}
.content-with-image-03 .image img {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.content-with-image-03 .button-wrap {
  margin-top: 20px;
}

@media(min-width: 768px) {
  .content-with-image-03 {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .content-with-image-03 {
    padding: 100px 0;
  }
  .content-with-image-03 .row.left {
    flex-direction: row-reverse;
  }
  .content-with-image-03 .column:nth-child(1) {
    width: 56%;
  }
  .content-with-image-03 .column:nth-child(2) {
    width: 44%;
  }
  .content-with-image-03 .left .column:nth-child(1) {
    width: 48%;
  }
  .content-with-image-03 .left .column:nth-child(2) {
    width: 52%;
  }
  .content-with-image-03 .logo-image {
    margin-bottom: 30px;
    max-width: 100%;
  }
  .content-with-image-03 .text {
    max-width: 520px;
  }
  .content-with-image-03 .content {
    max-width: 550px;
  }
  .content-with-image-03 .image, .content-with-image-03 .video {
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .content-with-image-03 {
    padding: 130px 0;
  }
}
.content-with-image-04 {
  padding: 60px 0;
}
.content-with-image-04 .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
}
.content-with-image-04 .column {
  padding: 0 15px;
  width: 100%;
}
.content-with-image-04 .sub-heading {
  color: var(--grey-300);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.content-with-image-04 h2 {
  position: relative;
  padding-bottom: 15px;
}
.content-with-image-04 h2:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.content-with-image-04 .text ul {
  margin: 0;
  padding-left: 15px;
}
.content-with-image-04 .image-silder {
  padding: 30px 0;
}
.content-with-image-04 .image-silder .image {
  text-align: center; 
  border-radius: 16px;
  overflow: hidden; 
}
.content-with-image-04 .image-silder .image img {
  margin: 0 auto;
}
.content-with-image-04 .button-wrap {
  margin-top: 20px;
}

@media(min-width: 768px) {
  .content-with-image-04 {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .content-with-image-04 {
    padding: 100px 0;
  }
  .content-with-image-04 .row.left {
    flex-direction: row-reverse;
  }
  .content-with-image-04 .column:nth-child(1) {
    width: 46%;
  }
  .content-with-image-04 .column:nth-child(2) {
    width: 54%;
  }
  .content-with-image-04 .left .column:nth-child(1) {
    width: 44%;
  }
  .content-with-image-04 .left .column:nth-child(2) {
    width: 56%;
  }
  .content-with-image-04 .content {
    max-width: 500px;
  }
  .content-with-image-04 .image-silder {
    padding-top: 0;
  }
  .content-with-image-04 .image-silder .image img {
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .content-with-image-04 {
    padding: 130px 0;
  }
}
.content-with-image-05 {
  padding: 60px 0;
}
.content-with-image-05 .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.content-with-image-05 .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.content-with-image-05 h2 {
  position: relative;
  padding-bottom: 15px;
}
.content-with-image-05 h2:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.content-with-image-05 .sub-heading {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 18px;
}
.content-with-image-05 .text ul {
  margin: 0;
  padding-left: 15px;
}
.content-with-image-05 .button-wrap {
  margin-top: 20px;
}
.content-with-image-05 .image-holder {
  text-align: center; 
  overflow: hidden;
  border-radius: 16px;
}
.content-with-image-05 .image-holder img {
  transition: all 0.4s ease-in-out;
}
.content-with-image-05 .image-holder:hover img {
  transform: scale(1.2);
}
.content-with-image-05 .information .info {
  margin-bottom: 15px;
}
.content-with-image-05 .information .title {
  font-family: var(--gilory-600), sans-serif;
  color: var(--grey-500);
  margin: 0;
}
.content-with-image-05 .information .text {
  color: var(--grey-300);
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
}

@media(min-width: 768px) {
  .content-with-image-05 {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .content-with-image-05 {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .content-with-image-05 {
    padding: 130px 0;
  }
  .content-with-image-05 .column:nth-child(1) {
    width: 41%;
  }
  .content-with-image-05 .column:nth-child(2) {
    width: 35%;
  }
  .content-with-image-05 .column:nth-child(3) {
    width: 24%;
  }
  .content-with-image-05 .text {
    padding-right: 15px;
  }
  .content-with-image-05 .information {
    padding-left: 20px;
  }
}
.content-module {
  padding: 60px 0;
}
.content-module .container {
  max-width: 1300px;
}
.content-module .section-header h2, .content-module .section-header .text {
  max-width: 1030px;
}
.content-module .section-header .text {
  margin-top: 30px;
}
.content-module .section-header .text ul {
  margin: 0;
  padding-left: 15px;
}

@media(min-width: 768px) {
  .content-module {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .content-module {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .content-module {
    padding: 130px 0;
  }
}
.core-features {
  padding: 60px 0;
}
.core-features .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 10px;
}
.core-features .column {
  padding: 0 15px;
  margin-top: 30px;
  width: 100%;
}
.core-features .column.col-12 {
  width: 100%;
}
.core-features .features {
  background-color: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  color: var(--grey-300);
  height: 100%;
  text-align: center;
  padding: 30px 20px;
  transition: all 0.4s ease-in-out;
  display: block;
}
.core-features .features.left {
  text-align: left;
}
.core-features .features:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.core-features .features:hover .link-wrap {
  color: var(--orange-500);
}
.core-features .features:hover .link-wrap svg path {
  stroke: var(--orange-500);
}
.core-features .features .image {
  margin-bottom: 13px;
}
.core-features .features .title {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.core-features .features .link-wrap {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700; 
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
.core-features .features .link-wrap .icon {
  display: inline-block;
  position: relative;
  top: 2px;
  left: 4px;
}
.core-features .features .link-wrap svg path {
  transition: all 0.4s ease-in-out;
}
.core-features .short-note {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  font-size: 28px;
  line-height: 38px;
  text-align: center;
}

@media(min-width: 768px) {
  .core-features {
    padding: 80px 0;
  }
  .core-features .row {
    padding-top: 15px;
  }
  .core-features .column, .core-features .column.col-6 {
    width: 50%;
  }
  .core-features .features {
    padding: 30px;
  }
  .core-features .short-note {
    margin-top: 30px;
  }
}
@media(min-width: 992px) {
  .core-features {
    padding: 100px 0;
  }
  .core-features .row {
    padding-top: 25px;
  }
  .core-features .column {
    width: 33.33%;
  }
  .core-features .short-note {
    margin-top: 40px;
  }
}
@media(min-width: 1200px) {
  .core-features {
    padding: 130px 0;
  }
  .core-features .row {
    padding-top: 55px;
  }
  .core-features .column.col-3 {
    width: 25%;
  }
}
.core-points {
  padding: 60px 0;
}
.core-points .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 10px;
}
.core-points .column {
  padding: 0 15px;
  margin-top: 30px;
  width: 100%;
}
.core-points .features {
  background-color: var(--white);
  border: 1px solid #BCC1D4;
  border-radius: 16px;
  color: var(--grey-300);
  height: 100%;
  padding: 20px 20px;
  transition: all 0.4s ease-in-out;
  display: block;
}
.core-points .features:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.core-points .features:hover .link-wrap {
  color: var(--orange-500);
}
.core-points .features:hover .link-wrap svg path {
  stroke: var(--orange-500);
}
.core-points .features.center {
  text-align: center;
}
.core-points .features .image {
  margin-bottom: 6px;
}
.core-points .features .title {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.core-points .features .link-wrap {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700; 
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.core-points .features .link-wrap svg path {
  transition: all 0.4s ease-in-out;
}
.core-points .features .link-wrap .icon {
  display: inline-block;
  position: relative;
  top: 2px;
  left: 4px;
}

@media(min-width: 768px) {
  .core-points {
    padding: 80px 0;
  }
  .core-points .row {
    padding-top: 15px;
  }
  .core-points .column {
    width: 50%;
  }
  .core-points .features {
    padding: 20px 30px;
  }
}
@media(min-width: 992px) {
  .core-points {
    padding: 100px 0;
  }
  .core-points .row {
    padding-top: 25px;
  }
  .core-points .column.col-4 {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .core-points {
    padding: 130px 0;
  }
  .core-points .row {
    padding-top: 35px;
  }
}
.brands-testimonials {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.brands-testimonials .container {
  max-width: 1298px;
}
.brands-testimonials .section-header .check-list {
  text-align: left;
  margin: 40px auto 0;
  max-width: 868px;
}
.brands-testimonials .section-header .check-list li {
  font-family: var(--avenir-lt-std), sans-serif;
  color: var(--grey-500);
  position: relative;
  padding: 0 16px 16px 44px;
}
.brands-testimonials .section-header .check-list li:last-child {
  padding-bottom: 0;
}
.brands-testimonials .section-header .check-list li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.15' fill-rule='evenodd' clip-rule='evenodd' d='M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z' fill='%23E79430'/%3E%3Cpath d='M10.3984 15.8242L7.13672 12.582C7.04557 12.4909 7 12.3737 7 12.2305C7 12.0872 7.04557 11.97 7.13672 11.8789L7.85937 11.1758C7.95052 11.0716 8.06445 11.0195 8.20117 11.0195C8.33789 11.0195 8.45833 11.0716 8.5625 11.1758L10.75 13.3633L15.4375 8.67578C15.5416 8.57161 15.6621 8.51953 15.7988 8.51953C15.9355 8.51953 16.0495 8.57161 16.1406 8.67578L16.8633 9.3789C16.9544 9.47005 17 9.58724 17 9.73047C17 9.87369 16.9544 9.99088 16.8633 10.082L11.1016 15.8242C11.0104 15.9284 10.8932 15.9805 10.75 15.9805C10.6068 15.9805 10.4896 15.9284 10.3984 15.8242Z' fill='%23E79430'/%3E%3C/svg%3E%0A");
}
.brands-testimonials .multi-check-list {
  margin-top: 50px;
  text-align: left;
}
.brands-testimonials .multi-check-list .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.brands-testimonials .multi-check-list .column {
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}
.brands-testimonials .multi-check-list .title  {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--blue-500);
  font-weight: 700;
}
.brands-testimonials .multi-check-list .check-list {
  margin-top: 20px;
  max-width: 100%;
}

.brands-testimonials .short-note {
  text-align: center;
  margin: 58px auto 0;
  max-width: 950px;
}
.brands-testimonials .short-note h3 {
  font-family: var(--gilory-600), sans-serif;
}


.brands-testimonials .testimonials-slider-02 {
  padding-bottom: 50px;
}
.brands-testimonials .testimonials-slider-02 .slick-arrow {
  bottom: -22px;
  top: auto;
  transform: none;
  left: -10px;
}
.brands-testimonials .testimonials-slider-02 .slick-arrow.slick-next {
  right: -10px;
  left: auto;
}

.brands-testimonials .testimonial-box {
  background-color: var(--white);
  box-shadow: 0px 6px 35px 0px #0000000D;
  border-radius: 12px;
  overflow: hidden;
}
.brands-testimonials .testimonial-box .content {
  padding: 30px 20px;
}
.brands-testimonials .testimonial-box .logo {
  margin-bottom: 15px;
}
.brands-testimonials .testimonial-box .info-list {
  padding-top: 33px;
/*   max-width: 405px; */
}
.brands-testimonials .testimonial-box .info-list li {
  padding: 0 0 135px;
  position: relative;
}
.brands-testimonials .testimonial-box .info-list li:last-child {
  padding: 0;
}
.brands-testimonials .testimonial-box .info-list li:not(:last-child):before {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 20px;
  width: 4px;
  height: 90px;
  background-color: var(--orange-500);
  transform: rotate(16deg);
}
.brands-testimonials .testimonial-box .info-list span {
  color: var(--grey-500);
  display: block;
  max-width: 150px;
}
.brands-testimonials .testimonial-box .info-list .value {
  font-family: var(--gilory-800), sans-serif;
  color: var(--blue-500);
  font-size: 32px;
  line-height: 44px;
  display: block;
}
.brands-testimonials .testimonial-box .image {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.brands-testimonials .testimonial-box .image:hover img {
  transform: scale(1.2);
}
.brands-testimonials .testimonial-box .image img {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

@media(max-width: 991px) {
  .brands-testimonials .testimonial-box .image::before {
    content: "";
    display: block;
    padding-top: 71.6%;
  }
}
@media(min-width: 768px) {
  .brands-testimonials {
    padding: 80px 0;
  }
  .brands-testimonials .testimonial-box .content {
    padding: 30px 40px;
  }
  .brands-testimonials .testimonial-box .info-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 -35px;
/*     max-width: 425px; */
  }
  .brands-testimonials .testimonial-box .info-list li {
    padding: 0 35px;
    width: 50%;
  }
  .brands-testimonials .testimonial-box .info-list li:last-child {
    padding: 0 35px;
  }
  .brands-testimonials .testimonial-box .info-list li:not(:last-child)::before {
    top: 50%;
    right: 20px;
    left: auto;
    transform: translateY(-50%) rotate(16deg);
  }
  .brands-testimonials .section-header .check-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
  }
  .brands-testimonials .section-header .multi-check-list .check-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  .brands-testimonials .multi-check-list .column {
    width: 50%;
  }
  .brands-testimonials .multi-check-list .column:after {
    content: '';
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
    background-color: var(--orange-500);
    width: 2px;
    display: none;
  }
  .brands-testimonials .multi-check-list .column:nth-child(1):after, .brands-testimonials .multi-check-list .column:nth-child(3):after {
    display: block;
  }
}
@media(min-width: 992px) {
  .brands-testimonials {
    padding: 100px 0;
  }
  .brands-testimonials .testimonials-slider-02 .slick-arrow {
    margin-top: -35px;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
  }
  .brands-testimonials .testimonial-box {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row-reverse;
  }
  .brands-testimonials .testimonial-box .content {
    padding: 30px 40px;
    width: 42%;
  }
  .brands-testimonials .testimonial-box .image {
    width: 58%;
  }
  .brands-testimonials .multi-check-list .column {
    width: 33.33%;
  }
  .brands-testimonials .multi-check-list .column:nth-child(1):after, .brands-testimonials .multi-check-list .column:nth-child(2):after {
    display: block;
  }
}
@media(min-width: 1200px) {
  .brands-testimonials {
    padding: 130px 0;
  }
  .brands-testimonials .multi-check-list .column {
    width: 25%;
  }
  .brands-testimonials .multi-check-list .column:nth-child(1):after, .brands-testimonials .multi-check-list .column:nth-child(2):after, .brands-testimonials .multi-check-list .column:nth-child(3):after {
    display: block;
  }
}
@media(min-width: 1366px) {
  .brands-testimonials .testimonials-slider-02 .slick-arrow {
    left: -30px;
  }
  .brands-testimonials .testimonials-slider-02 .slick-arrow.slick-next {
    right: -30px;
  }
}
.media-campaign {
  padding: 60px 0;
}
.media-campaign .row {
  display: flex;
  flex-flow: row wrap; 
  margin: 0 -15px;
}
.media-campaign .column {
  padding: 0 15px;
  padding-bottom: 140px;
  position: relative;
  width: 100%;
}
.media-campaign .column:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 30px;
  width: 4px;
  height: 90px;
  background-color: var(--orange-500);
  transform: rotate(16deg);
}
.media-campaign .column:last-child {
  padding-bottom: 0;
}
.media-campaign .section-header h2, .media-campaign .section-header .text {
  max-width: 680px;
}
.media-campaign .image-holder {
  margin-top: 70px;
  margin-bottom: 40px;
}
.media-campaign .campaigns h3 {
  color: var(--grey-500);
  padding-bottom: 16px;
  border-bottom: 1px solid #BABABA;
  max-width: 310px;
  text-transform: uppercase;
}
.media-campaign .campaigns .link-wrap {
  margin-top: 16px;
}
.media-campaign .campaigns .link-wrap a {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  text-transform: uppercase;
}
.media-campaign .campaigns .link-wrap svg {
  position: relative;
  display: inline-block;
  top: 3px;
  left: 2px;
}


@media(min-width: 768px) {
  .media-campaign {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .media-campaign {
    padding: 100px 0;
  }
  .media-campaign .column:not(:last-child)::before {
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%) rotate(16deg);
    width: 6px;
    height: 190px;
  }
  .media-campaign .row {
    margin: 0 -70px;
  }
  .media-campaign .column {
    padding: 0 70px;
    width: 50%;
  }
  .media-campaign .image-holder {
    margin-bottom: 50px;
  }
  .media-campaign .campaigns .content {
    max-width: 472px;
  }
}
@media(min-width: 1200px) {
  .media-campaign {
    padding: 130px 0;
  }
  .media-campaign .row {
    margin: 0 -100px;
  }
  .media-campaign .column {
    padding: 0 100px;
  }
  .media-campaign .image-holder {
    margin-bottom: 64px;
  }
}
@media(min-width: 1366px) {
  .media-campaign .row {
    margin: 0 -114px;
  }
  .media-campaign .column {
    padding: 0 114px;
  }
}
.insight {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.insight .insight-slider {
  padding: 45px 0;
}
.insight .insight-slider .slick-list {
  margin: 0 -15px;
}
.insight .insight-slider .slick-slide {
  padding: 0 15px;
}
.insight .insight-post {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 344px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  padding: 35px 24px;
  z-index: 1;
}
.insight .insight-post:hover {
  text-decoration: none;
}
.insight .insight-post:hover .image {
  transform: scale(1.2);
}
.insight .insight-post:hover .title {
  color: var(--orange-500);
}
.insight .insight-post:hover .cta_button {
  background-color: var(--orange-700);
  border-color: var(--orange-700);
  color: var(--white);
}
.insight .insight-post .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border: 0;
  transition: all 0.4s ease-in-out;
  min-height: inherit;
  z-index: -1;
}
.insight .insight-post .image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
  z-index: -1;
}
.insight .insight-post .title {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}


@media(min-width: 768px) {
  .insight {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .insight {
    padding: 90px 0;
  }
}
@media(min-width: 1200px) {
  .insight {
    padding: 110px 0;
  }
}
@media(min-width: 1366px) {
  .insight .insight-slider .slick-arrow {
    left: -80px;
  }
  .insight .insight-slider .slick-arrow.slick-next {
    left: auto;
    right: -80px;
  }
}
.case-studies {
  padding: 60px 0;
}
.case-studies .section-header h2, .case-studies .section-header .text {
  max-width: 850px;
}
.case-studies .case-box {
  background-color: var(--bg-color);
  border-radius: 12px;
  text-align: center;
  display: block;
}
.case-studies .case-box:hover {
  background-color: var(--blue-50);
}
.case-studies .case-box:hover .image-holder:hover .image {
  transform: scale(1.2);
}
.case-studies .case-box:hover .cta_button {
  color: var(--white);
}
.case-studies .case-box:hover .cta_button svg path {
  stroke: var(--white);
}
.case-studies .case-box .image-holder {
  overflow: hidden;
}
.case-studies .case-box .image-holder .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  min-height: 206px;
  transition: all 0.4s ease-in-out;
}
.case-studies .case-box .content {
  padding: 17px 15px;
}
.case-studies .case-box .logo-holder {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  min-height: 70px;
  margin-bottom: 17px;
}
.case-studies .case-box .cta_button {
  font-family: var(--avenir-lt-std), sans-serif;
  font-size: 20px;
  line-height: 30px;
  text-transform: none;
  padding: 7px 20px;
}
.case-studies .case-box .cta_button .icon {
  position: relative;
  display: inline-block;
  top: 6px;
}
.case-studies .case-box .cta_button svg path {
  stroke: var(--grey-500);
}

.case-studies .row {
  display: flex;
  flex-flow: row wrap;
  margin: 40px -15px 0;
}
.case-studies .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}

.case-studies .view-all {
  text-align: center;
  margin-top: 30px;
}
.case-studies .view-all .cta_button {
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  text-transform: none;
  padding: 10px 20px;
}

.case-studies.grey {
  background-color: var(--bg-color);
}
.case-studies.grey .case-box {
  background-color: var(--white);
}

@media(min-width: 768px) {
  .case-studies {
    padding: 80px 0;
  }
  .case-studies .row {
    margin-top: 50px;
  }
  .case-studies .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .case-studies {
    padding: 100px 0;
  }
  .case-studies .row {
    margin-top: 60px;
  }
  .case-studies .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .case-studies {
    padding: 130px 0;
  }
  .case-studies .row {
    margin-top: 70px;
  }
}
.blockquote-module {
  background-color: var(--blue-500);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.blockquote-module .container {
  max-width: 980px;
}
.blockquote-module .quote, .blockquote-module .h3 {
  font-family: var(--gilory), sans-serif;
  color: var(--white);
  margin-bottom: 35px;
}
.blockquote-module .name {
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.blockquote-module .company {
  text-transform: uppercase;
}
.blockquote-module .image-holder {
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  height: 120px;
  width: 120px;
  margin: 0 auto 25px;
  overflow: hidden;
}

.blockquote-module .additonal-info {
  text-align: center;
  margin-top: 50px;
}
.blockquote-module .additonal-info .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.blockquote-module .additonal-info .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.blockquote-module .additonal-info .title {
  color: var(--white);
}
.blockquote-module .additonal-info .text {
  text-transform: uppercase;
  max-width: 270px;
  margin: 0 auto;
  display: block;
  color: var(--white);
}


@media(min-width: 768px) {
  .blockquote-module {
    padding: 80px 0;
  }
  .blockquote-module .additonal-info {
    margin-top: 60px;
  }
  .blockquote-module .additonal-info .column {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .blockquote-module {
    padding: 100px 0;
  }
  .blockquote-module .additonal-info {
    margin-top: 70px;
  }
}
@media(min-width: 1200px) {
  .blockquote-module {
    padding: 125px 0;
  }
  .blockquote-module .additonal-info {
    margin-top: 80px;
  }
}
.contact-module {
  padding: 60px 0;
}
.contact-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.contact-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.contact-module .contact-box {
  background-color: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  overflow: hidden;
  color: var(--grey-300);
  padding: 32px;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.contact-module .contact-box:hover {
  background-color: var(--blue-50);
}
.contact-module .contact-box .title {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.contact-module .contact-box .text a {
  color: var(--grey-300);
  text-decoration: underline;
}
.contact-module .contact-box .link-wrap {
  margin-top: 15px;
}
.contact-module .contact-box .link-wrap a {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  text-decoration: underline;
}

@media(min-width: 768px) {
  .contact-module {
    padding: 80px 0;
  }
  .contact-module .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .contact-module {
    padding: 100px 0;
  }
  .contact-module .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .contact-module {
    padding: 130px 0;
  }
}
.tags-sections {
  padding: 60px 0;
}
.tags-sections h2 {
  margin-bottom: 30px;
}
.tags-sections .tags-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.tags-sections .tags-list li {
  padding: 0 10px 20px;
  width: 100%;
}
.tags-sections .tags-list li a {
  display: flex;
  color: var(--grey-300);
  border: 1px solid var(--grey-50);
  margin-right: 10px;
  padding: 3px 15px;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
}

@media(min-width: 576px) {
  .tags-sections .tags-list li {
    width: 50%;
  }
}
@media(min-width: 768px) {
  .tags-sections {
    padding: 80px 0;
  }
  .tags-sections h2 {
    margin-bottom: 40px;
  }
  .tags-sections .tags-list li {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .tags-sections {
    padding: 100px 0;
  }
  .tags-sections h2 {
    margin-bottom: 50px;
  }
  .tags-sections .tags-list li {
    width: 25%;
  }
}
@media(min-width: 1200px) {
  .tags-sections {
    padding: 130px 0;
  }
}
.tags-recent-posts {
  padding: 60px 0;
}
.tags-recent-posts .section-header {
  position: relative;
}
.tags-recent-posts .section-header h2 {
  text-align: left;
  max-width: 100%;
  text-transform: uppercase;
}
.tags-recent-posts .section-header h2:after {
  left: 0;
  transform: none;
}
.tags-recent-posts .tag-category {
  font-size: 20px;
  line-height: 26px;
  text-align: left;
  font-style: italic;
}
.tags-recent-posts .tag-category a {
  color: var(--grey-500);
}

.tag-post-slider {
  padding: 40px 0;
}
.tag-post-slider .slick-list {
  margin: 0 -15px;
}
.tag-post-slider .slick-slide {
  padding: 0 15px;
}
.tag-post-slider .tag-post {
  position: relative;
}
.tag-post-slider .tag-post .tag-post__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.tag-post-slider .tag-post .tag-post__image {
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  min-height: 344px;
  padding: 30px 20px;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.tag-post-slider .tag-post .tag-post__image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
  z-index: -1;
}
.tag-post-slider .tag-post .tag-post__title {
  font-family: var(--avenir-lt-std), sans-serif;
  color: var(--white);
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 15px;
  display: block;
}
.tag-post-slider .tag-post .tag-post__meta {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.tag-post-slider .tag-post .tag-post__meta li {
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
  color: var(--white);
}
.tag-post-slider .tag-post .tag-post__meta li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 4px;
  right: -2px;
  background-color: var(--white);
  width: 2px;
  height: 15px;
}


@media(min-width: 768px) {
  .tags-recent-posts {
    padding: 80px 0;
  }
  .tags-recent-posts .tag-category {
    position: absolute;
    top: 9px;
    right: 0;
  }
}
@media(min-width: 992px) {
  .tags-recent-posts {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .tags-recent-posts {
    padding: 130px 0;
  }
}
.solutions {
  padding: 60px 0;
}
.solutions .row {
  display: flex;
  flex-flow: row wrap;
  margin: 40px -15px 0;
}
.solutions .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.solutions .image-holder, .solutions .video {
  line-height: 0;
  margin-top: 20px;
  text-align: center;
  overflow: hidden;
}
.solutions .image-holder:hover img {
  transform: scale(1.2);
}
.solutions .image-holder img {
  transition: all 0.4s ease-in-out;
}
.solutions .solution-box {
  background-color: var(--white);
  border: 1px solid var(--grey-100);
  padding: 20px;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.solutions .solution-box:hover {
  background-color: var(--blue-50);
}
.solutions .solution-box .title {
  color: var(--grey-500);
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}


@media(min-width: 768px) {
  .solutions {
    padding: 80px 0;
  }
  .solutions .row {
    margin-top: 50px;
  }
}
@media(min-width: 992px) {
  .solutions {
    padding: 100px 0;
  }
  .solutions .row {
    margin-top: 60px;
  }
  .solutions .column {
    width: 50%;
  }
  .solutions .image {
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .solutions {
    padding: 130px 0;
  }
  .solutions .row {
    margin-top: 70px;
  }
}
.results-module {
  padding: 60px 0 30px;
}
.results-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 40px;
}
.results-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.results-module .results {
  background-color: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  height: 100%;
  padding: 30px 20px;
  transition: all 0.4s ease-in-out;
}
.results-module .results:hover {
  background-color: var(--blue-50);
}
.results-module .results .image {
  margin-bottom: 6px;
}
.results-module .results .title {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

@media(min-width: 768px) {
  .results-module {
    padding: 80px 0 50px;
  }
  .results-module .row {
    padding-top: 45px;
  }
  .results-module .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .results-module {
    padding: 100px 0 70px;
  }
  .results-module .row {
    padding-top: 55px;
  }
  .results-module .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .results-module {
    padding: 130px 0 100px;
  }
  .results-module .row {
    padding-top: 65px;
  }
}
.social-media-strategy {
  padding: 60px 0;
}
.social-media-strategy .section-header h2, .social-media-strategy .section-header .text {
  max-width: 740px;
}
.social-media-strategy .social-icons {
  margin: 0 auto;
  max-width: 600px;
}
.social-media-strategy .social-networks {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 70px -15px 0;
}
.social-media-strategy .social-networks li {
  padding: 0 15px 40px;
}

.social-media-strategy .partnership {
  text-align: center;
  margin-top: 23px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.social-media-strategy .partnership .sub-heading {
  color: var(--grey-400);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}
.social-media-strategy .partnership .sub-heading:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 3px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='75' height='3' viewBox='0 0 75 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5H74' stroke='%23E79430' stroke-width='1.5' stroke-linecap='round' stroke-dasharray='4 4'/%3E%3C/svg%3E%0A");
}
.social-media-strategy .partnership h3 {
  margin-bottom: 15px;
}
.social-media-strategy .partnership .button-wrap {
  margin-top: 25px;
}

@media(min-width: 768px) {
  .social-media-strategy {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .social-media-strategy {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .social-media-strategy {
    padding: 130px 0;
  }
}
.team-module {
  padding: 60px 0;
}
.team-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 40px -15px 0;
}
.team-module .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.team-module .team {
  text-align: center;
}
.team-module .team .team__image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 307px;
  margin-bottom: 15px;
}
.team-module .team .name {
  margin-bottom: 5px;
}

@media(min-width: 768px) {
  .team-module {
    padding: 80px 0;
  }
  .team-module .row {
    margin-top: 50px;
  }
  .team-module .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .team-module {
    padding: 100px 0;
  }
  .team-module .row {
    margin-top: 60px;
  }
  .team-module .column {
    width: 33.33%;
    margin-bottom: 40px;
  }
}
@media(min-width: 1200px) {
  .team-module {
    padding: 130px 0;
  }
  .team-module .row {
    margin-top: 70px;
  }
}
.strategy-planning {
  padding: 60px 0;
}
.strategy-planning .container {
  max-width: 1300px;
}
.strategy-planning .section-header {
  margin-bottom: 50px;
}

.strategy-planning .holder {
  background-color: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}
.strategy-planning .holder:last-child {
  margin: 0;
}
.strategy-planning .holder .section-header {
  text-align: left;
}
.strategy-planning .holder .section-header h2, .strategy-planning .holder .section-header .text {
  max-width: 100%;
}
.strategy-planning .holder .section-header h2:after {
  left: 0;
  transform: none;
}
.strategy-planning .content {
  padding: 30px 20px;
}
.strategy-planning .content .section-header {
  margin: 0;
}
.strategy-planning .content ul {
  padding-left: 20px;
}
.strategy-planning .image, .strategy-planning .video {
  line-height: 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.strategy-planning .image:hover img {
  transform: scale(1.2);
}
.strategy-planning .image img {
  transition: all 0.4s ease-in-out;
}
.strategy-planning .video .hs-video-wrapper {
  display: block;
  height: 100% !important;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute !important;
  top: 0;
  width: 100%;
}
.strategy-planning .button-wrap {
  margin-top: 20px;
  text-align: left;
}

.strategy-planning.grey {
  background-color: var(--bg-color);
}
.strategy-planning.grey .holder {
  background-color: var(--white);
}


@media(max-width: 991px) {
  .strategy-planning .video:before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}
@media(min-width: 768px) {
  .strategy-planning {
    padding: 80px 0;
  }
  .strategy-planning .holder {
    margin-bottom: 40px;
  }
  .strategy-planning .content {
    padding: 40px 30px;
  }
}
@media(min-width: 992px) {
  .strategy-planning {
    padding: 100px 0;
  }
  .strategy-planning .holder {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 50px;
  }
  .strategy-planning .holder.left {
    flex-direction: row-reverse;
  }
  .strategy-planning .content {
    padding: 50px 30px;
    width: 43%;
  }
  .strategy-planning .image, .strategy-planning .video {
    width: 57%;
  }
}
@media(min-width: 1200px) {
  .strategy-planning {
    padding: 130px 0;
  }
  .strategy-planning .content {
    padding: 50px;
  }
}
.faq-module {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.faq-module.white {
  background-color: var(--white);
}
.faq-module.blue {
  background-color: var(--blue-800);
}

.faq-module .section-header {
  margin-bottom: 50px;
}
.faq-module .section-header h2, .faq-module .section-header .text {
  max-width: 750px;
}
.faq-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.faq-module .column {
  padding: 0 15px;
  width: 100%;
}
.faq-module .accordion {
  margin-bottom: 22px;
}
.faq-module .accordion .accordion__title {
  position: relative;
  padding: 0 30px 20px 50px;
  cursor: pointer;
}
.faq-module .accordion .accordion__title.active .icon {
  transform: rotate(180deg);
}
.faq-module .accordion .accordion__title .h4 {
  color: var(--grey-500);
  margin: 0;
}
.faq-module .accordion .accordion__title .icon-holder {
  position: absolute;
  top: 0;
  left: 0;
}
.faq-module .accordion .accordion__title .icon {
  position: absolute;
  top: 0;
  right: 0;
}
.faq-module .accordion .accordion__content {
  display: none;
}
.faq-module .image-holder {
  text-align: center;
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}


.faq-module.blue .section-header h2, .faq-module.blue .section-header .text {
  color: var(--white);
}
.faq-module.blue .section-header .cta_button {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
  padding: 16px 21px;
}
.faq-module.blue .section-header .cta_button:hover {
  background-color: var(--white);
  color: var(--grey-500);
}
.faq-module.blue .accordion .accordion__title .h4, .faq-module.blue .accordion .accordion__content {
  color: var(--white);
}
.faq-module.blue .accordion .accordion__title .icon svg path {
  stroke: var(--white);
}


@media(min-width: 768px) {
  .faq-module {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .faq-module {
    padding: 100px 0;
  }
  .faq-module .section-header {
    margin-bottom: 77px;
  }
  .faq-module .row {
    flex-direction: row-reverse;
  }
  .faq-module .row.right {
    flex-direction: inherit;
  }
  .faq-module .column {
    width: 50%;
  }
  .faq-module .image-holder {
    margin-top: 0;
  }
}
@media(min-width: 1200px) {
  .faq-module {
    padding: 130px 0;
  }
  .faq-module .accordion {
    padding-left: 30px;
  }
  .faq-module .row.right .accordion {
    padding-right: 30px;
    padding-left: 0;
  }
}
.faq-module-02 {
  padding: 60px 0;
}

.faq-module-02 .section-header {
  margin-bottom: 50px;
}
.faq-module-02 .section-header h2, .faq-module-02 .section-header .text {
  max-width: 750px;
}
.faq-module-02 .button-wrap {
  text-align: center;
  margin-top: 30px;
}

.faq-module-02 .accordion-02 {
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  margin-bottom: 16px;
  padding: 20px;
}
.faq-module-02 .accordion-02 .accordion__title {
  position: relative;
  padding-right: 50px;
  cursor: pointer;
}
.faq-module-02 .accordion-02 .accordion__title.active .icon:before {
  display: none;
}
.faq-module-02 .accordion-02 .accordion__title .h5 {
  color: var(--grey-500);
  margin: 0;
}
.faq-module-02 .accordion-02 .accordion__title .icon {
  border: 2px solid #A4A7AE;
  border-radius: 100%;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  right: 0;
}
.faq-module-02 .accordion-02 .accordion__title .icon:after, .faq-module-02 .accordion-02 .accordion__title .icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #A4A7AE;
  transform: translate(-50%, -50%);
}
.faq-module-02 .accordion-02 .accordion__title .icon:before {
  height: 10px;
  width: 2px;
}
.faq-module-02 .accordion-02 .accordion__title .icon:after {
  height: 2px;
  width: 10px;
}
.faq-module-02 .accordion-02 .accordion__content-02 {
  display: none;
  padding-top: 15px;
}


@media(min-width: 768px) {
  .faq-module-02 {
    padding: 80px 0;
  }
  .faq-module-02 .accordion-02 {
    padding: 25px;
  }
  .faq-module-02 .button-wrap {
    margin-top: 40px;
  }
}
@media(min-width: 992px) {
  .faq-module-02 {
    padding: 100px 0;
  }
  .faq-module-02 .accordion-02 {
    padding: 32px;
  }
}
@media(min-width: 1200px) {
  .faq-module-02 {
    padding: 130px 0;
  }
  .faq-module-02 .button-wrap {
    margin-top: 50px;
  }
}
.how-it-works {
  padding: 60px 0;
}
.how-it-works .container {
  max-width: 1058px;
}
.how-it-works .section-header {
  margin-bottom: 50px;
}
.how-it-works .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.how-it-works .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.how-it-works .step {
  text-align: center;
}
.how-it-works .step .number {
  border: 3px solid var(--blue-500);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 82px;
  width: 82px;
  margin: 0 auto 15px;
}
.how-it-works .step .text {
  padding: 0 15px;
}
.how-it-works .step .text ul {
  list-style: none;
  padding: 0;
}
.how-it-works .step .text ul li {
  position: relative;
  padding-left: 10px;
}
.how-it-works .step .text ul li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  height: 6px;
  width: 6px;
  background-color: var(--grey-300);
  border-radius: 100%;
}

@media(min-width: 768px) {
  .how-it-works {
    padding: 80px 0;
  }
  .how-it-works .section-header {
    margin-bottom: 60px;
  }
  .how-it-works .column {
    width: 33.33%;
  }
  .how-it-works .step .number {
    height: 102px;
    width: 102px;
  }
}
@media(min-width: 992px) {
  .how-it-works {
    padding: 100px 0;
  }
  .how-it-works .section-header {
    margin-bottom: 70px;
  }
}
@media(min-width: 1200px) {
  .how-it-works {
    padding: 130px 0;
  }
}
.how-it-works-02 {
  padding: 60px 0;
}
.how-it-works-02 .container {
  max-width: 1058px;
}
.how-it-works-02 .section-header {
  margin-bottom: 50px;
}

.how-it-works-02 .steps {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.how-it-works-02 .steps:nth-child(even) {
  flex-direction: row-reverse;
}
.how-it-works-02 .steps:last-child .content {
  padding-bottom: 0;
}

.how-it-works-02 .steps:nth-child(even) .content {
  border-right: 2px dashed var(--blue-500);
  padding-right: 20px;
  text-align: right;
}
.how-it-works-02 .steps:nth-child(even) .image {
  text-align: left;
}

.how-it-works-02 .steps:nth-child(odd) .image {
  border-right: 2px dashed var(--blue-500);
  text-align: right;
  padding-right: 20px;
}

.how-it-works-02 .steps:nth-child(even) .content, .how-it-works-02 .steps:nth-child(odd) .image {
  padding-right: 20px;
}
.how-it-works-02 .steps:nth-child(odd) .content, .how-it-works-02 .steps:nth-child(even) .image {
  padding-left: 20px;
}


.how-it-works-02 .steps .image, .how-it-works-02 .steps .content {
  width: 50%;
}
.how-it-works-02 .steps .content {
  padding-bottom: 50px;
}
.how-it-works-02 .steps h3 {
  font-size: 24px;
  line-height: 28px;
}
.how-it-works-02 .steps h4 {
  font-size: 20px;
  line-height: 28px;
  margin: 0;
}
.how-it-works-02 .steps .text {
  padding: 0 15px;
}
.how-it-works-02 .steps .text ul {
  list-style: none;
  padding: 0;
}
.how-it-works-02 .steps .text ul li {
  position: relative;
  padding-left: 10px;
}
.how-it-works-02 .steps .text ul li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  height: 6px;
  width: 6px;
  background-color: var(--grey-300);
  border-radius: 100%;
}

@media(min-width: 768px) {
  .how-it-works-02 {
    padding: 80px 0;
  }
  .how-it-works-02 .section-header {
    margin-bottom: 60px;
  }
  .how-it-works-02 .steps:nth-child(even) .content, .how-it-works-02 .steps:nth-child(odd) .image {
    padding-right: 40px;
  }
  .how-it-works-02 .steps:nth-child(odd) .content, .how-it-works-02 .steps:nth-child(even) .image {
    padding-left: 40px;
  }
  .how-it-works-02 .steps h3 {
    font-size: 32px;
    line-height: 36px;
  }
  .how-it-works-02 .steps h4 {
    font-size: 28px;
    line-height: 38px;
  }
}
@media(min-width: 992px) {
  .how-it-works-02 {
    padding: 100px 0;
  }
  .how-it-works-02 .section-header {
    margin-bottom: 70px;
  }
}
@media(min-width: 1200px) {
  .how-it-works-02 {
    padding: 130px 0;
  }
}
.success {
  padding: 60px 0;
}
.success .container {
  max-width: 1058px;
}
.success .section-header {
  margin-bottom: 50px;
}
.success .row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 -15px;
}
.success .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.success .success-numbers {
  text-align: center;
}
.success .success-numbers .text {
  padding: 0 15px;
}

@media(min-width: 768px) {
  .success {
    padding: 80px 0;
  }
  .success .section-header {
    margin-bottom: 60px;
  }
  .success .column {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .success {
    padding: 100px 0;
  }
  .success .section-header {
    margin-bottom: 70px;
  }
}
@media(min-width: 1200px) {
  .success {
    padding: 130px 0;
  }
}
.who-we-are {
  padding: 60px 0;
}
.who-we-are .section-header h2, .who-we-are .section-header .text {
  max-width: 850px;
}
.who-we-are .row {
  display: flex;
  flex-flow: row wrap;
  margin: 40px -15px 0;
}
.who-we-are .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.who-we-are .contact-box {
  background-color: var(--white);
  border: 1px solid var(--grey-100);
  color: var(--grey-300);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}
.who-we-are .contact-box:hover {
  background-color: var(--blue-50);
}
.who-we-are .contact-box:hover .link-wrap {
  color: var(--orange-500);
}
.who-we-are .contact-box:hover .link-wrap svg path {
  stroke: var(--orange-500);
} 
.who-we-are .contact-box .link-wrap {
  margin-top: 15px;
}
.who-we-are .contact-box .link-wrap {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  transition: all 0.4s ease-in-out;
  font-weight: 700;
}
.who-we-are .contact-box .link-wrap .icon {
  display: inline-block;
  position: relative;
  top: 2px;
  left: 4px;
}
.who-we-are .contact-box .link-wrap svg path {
  transition: all 0.4s ease-in-out;
}

@media(min-width: 768px) {
  .who-we-are {
    padding: 80px 0;
  }
  .who-we-are .row {
    margin-top: 50px;
  }
}
@media(min-width: 992px) {
  .who-we-are {
    padding: 100px 0;
  }
  .who-we-are .row {
    margin-top: 60px;
  }
  .who-we-are .column {
    width: 50%;
  }
  .who-we-are .contact-box {
    padding: 30px;
  }
  .who-we-are .image {
    margin: 0;
  }
}
@media(min-width: 1200px) {
  .who-we-are {
    padding: 130px 0;
  }
  .who-we-are .row {
    margin-top: 70px;
  }
}
.media-module {
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.media-module:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--blue-500);
  height: 48%;
  z-index: -1;
}
.media-module .image-holder, .media-module .video {
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

@media(min-width: 768px) {
  .media-module {
    padding-bottom: 80px;
  }
}
@media(min-width: 992px) {
  .media-module {
    padding-bottom: 100px;
  }
}
@media(min-width: 1200px) {
  .media-module {
    padding-bottom: 130px;
  }
}
.features-table {
  padding: 60px 0;
}
.features-table .section-header {
  margin-bottom: 40px;
}
.features-table .table {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}
.features-table .table th:nth-child(1) {
  width: 40%;
}
.features-table .table th:nth-child(2), .features-table .table th:nth-child(3) {
  width: 30%;
}
.features-table .table th, .features-table .table td {
  vertical-align: middle;
  padding: 8px;
  text-align: center;
}
.features-table .table th {
  font-family: var(--avenir-lt-std-500);
  color: #fff;
}
.features-table .table td {
  color: #000000;
  background-color: #EAEEF2;
  border-bottom: 1px solid #D6DBE1;
  padding: 8px;
}
.features-table .table td:nth-child(1) {
  text-align: left;
}
.features-table .table td:nth-child(even) {
  background-color: #fff;
}
.features-table .table .icon {
  display: inline-block;
  height: 20px;
  width: 20px;
}
.features-table .table .icon svg {
  width: 100%;
}



@media (min-width: 768px) {
  .features-table {
    padding: 80px 0;
  }
  .features-table .section-header {
    margin-bottom: 45px;
  }
  .features-table .table th, .features-table .table td {
    padding: 10px 15px;
  }
  .features-table .table .icon {
    height: 30px;
    width: 30px;
  }
}
@media (min-width: 992px) {
  .features-table {
    padding: 100px 0;
  }
  .features-table .section-header {
    margin-bottom: 55px;
  }
  .features-table .table th, .features-table .table td {
    padding: 16px 24px;
  }
  .features-table .table td {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (min-width: 1200px) {
  .features-table {
    padding: 130px 0;
  }
  .features-table .section-header {
    margin-bottom: 65px;
  }
  .features-table .table .icon {
    height: 40px;
    width: 40px;
  }
}
.integration-module {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.integration-module .section-header {
  margin-bottom: 35px;
}
.integration-module .logos {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin: 0 -15px;
}
.integration-module li {
  text-align: center;
  padding: 0 15px;
  margin-top: 15px;
  width: 50%;
}
.integration-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 10px;
}
.integration-module .column {
  padding: 0 15px;
  margin-top: 30px;
  width: 100%;
}
.integration-module .column.col-12 {
  width: 100%;
}
.integration-module .features {
  background-color: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: 16px;
  color: var(--grey-300);
  height: 100%;
  padding: 30px 20px;
  transition: all 0.4s ease-in-out;
  display: block;
}
.integration-module .features.left {
  text-align: left;
}
.integration-module .features:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.integration-module .features:hover .link-wrap {
  color: var(--orange-500);
}
.integration-module .features:hover .link-wrap svg path {
  stroke: var(--orange-500);
}
.integration-module .features .image {
  margin-bottom: 13px;
}
.integration-module .features .title {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

@media(min-width: 768px) {
  .integration-module {
    padding: 80px 0;
  }
  .integration-module .row {
    padding-top: 15px;
  }
  .integration-module .column, .integration-module .column.col-6 {
    width: 50%;
  }
  .integration-module .features {
    padding: 30px;
  }
  .integration-module li {
    width: 25%;
  }
}
@media(min-width: 992px) {
  .integration-module {
    padding: 100px 0;
  }
  .integration-module .row {
    padding-top: 35px;
  }
  .integration-module .column {
    width: 33.33%;
  }
  .integration-module .column {
    width: 33.33%;
  }
  .integration-module li {
    width: 16.667%;
  }
}
@media(min-width: 1200px) {
  .integration-module {
    padding: 130px 0;
  }
  .integration-module .row {
    padding-top: 55px;
  }
  .integration-module .column.col-3 {
    width: 25%;
  }
}
.why-us {
  padding: 60px 0;
}
.why-us .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  padding-top: 10px;
}
.why-us .column {
  padding: 0 15px;
  margin-top: 30px;
  width: 100%;
}
.why-us .features {
  background-color: var(--bg-color);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
.why-us .features h3 {
  font-size: 28px;
  line-height: 32px;
}
.why-us .features .text ul {
  padding-left: 25px;
}

@media(min-width: 768px) {
  .why-us {
    padding: 80px 0;
  }
  .why-us .row {
    padding-top: 15px;
  }
  .why-us .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .why-us {
    padding: 100px 0;
  }
  .why-us .row {
    padding-top: 35px;
  }
}
@media(min-width: 1200px) {
  .why-us {
    padding: 130px 0;
  }
  .why-us .row {
    padding-top: 55px;
  }
}
.comparison-module {
  padding: 60px 0;
}
.comparison-module .section-header {
  margin-bottom: 40px;
}
.comparison-module .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -7px;
}
.comparison-module .column {
  padding: 0 7px;
  margin-top: 30px;
  width: 50%;
}
.comparison-module .comparison {
  color: var(--grey-300);
  height: 100%;
  transition: all 0.4s ease-in-out;
  display: block;
}
.comparison-module .comparison .image {
  border-radius: 8px 0 0 8px;
  margin-bottom: 13px;
  position: relative;
  overflow: hidden;
}
.comparison-module .comparison .image:before {
  content: "";
  display: block;
  padding-top: 90%;
}
.comparison-module .comparison .image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  object-position: center;
}
.comparison-module .column:nth-child(even) .image {
  border-radius: 0 16px 16px 0;
}
.comparison-module .comparison .title {
  font-family: var(--avenir-lt-std-500), sans-sarif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

@media(min-width: 768px) {
  .comparison-module {
    padding: 80px 0;
  }
  .comparison-module .comparison .image {
    border-radius: 16px 0 0 16px;
  }
}
@media(min-width: 992px) {
  .comparison-module {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .comparison-module {
    padding: 130px 0;
  }
}
.footer {
  background-color: var(--blue-800);
  color: var(--white);
  padding: 60px 0 30px;
}
.footer .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;  
}
.footer .column {
  padding: 0 15px;
  margin-bottom: 30px;
  width: 100%;
}
.footer .logo {
  margin-bottom: 30px;
  display: block;
}
.footer .company-info li {
  position: relative;
  padding-left: 53px;
  padding-bottom: 30px;
}
.footer .company-info li:last-child {
  padding-bottom: 0;
}
.footer .company-info li .icon {
  position: absolute;
  top: 0;
  left: 10px;
}
.footer .company-info li a {
  color: var(--white);
}
.footer h5, .footer .h5 {
  color: var(--white);
  margin-bottom: 25px;
}
.footer .navigation li {
  padding-bottom: 12px;
}
.footer .navigation li:last-child {
  padding-bottom: 0;
}
.footer .navigation li a {
  color: var(--white);
}
.footer .h4 {
  color: var(--white);
  margin-bottom: 25px;
  text-align: right;
}
.footer form {
  position: relative;
}
.footer form input[type='email'] {
  background-color: #27367399;
  border-color: #27367399;
  border-radius: 50px;
  color: var(--white);
}
.footer form .hs_submit {
  position: absolute;
  top: 2px;
  right: 2px;
}
.footer form .hs-button {
  background: linear-gradient(93.36deg, #DB50D9 0%, #4E91DF 97.22%);
  border: none;
  border-radius: 50px;
  color: var(--white);
  padding: 17px 20px;
}
.footer .social-networks {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -6px;
  padding-top: 10px;
}
.footer .social-networks li {
  padding: 0 6px;
  line-height: 0;
}
.footer .social-networks li.facebook svg {
  max-width: 15px;
}
.footer .social-networks li a {
  background-color: transparent;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  padding: 14px;
}
.footer .social-networks li a:hover {
  background: linear-gradient(93.36deg, #DB50D9 0%, #4E91DF 97.22%);
}
.footer .social-networks li a svg {
  fill: var(--white);
  width: 100%;
  height: 100%;
}
.footer .footer-links li {
  padding: 0 0 10px;
}
.footer .footer-links li a {
  color: var(--white);
}


@media(min-width: 992px) {
  .footer {
    padding: 80px 0 30px;
  }
  .footer .column {
    margin: 0;
  }
  .footer .column:nth-child(1) {
    width: 40%;
  }
  .footer .column:nth-child(2) {
    width: 27%;
  }
  .footer .column:nth-child(3) {
    width: 33%;
  }
  .footer .logo {
    margin-bottom: 48px;
  }
  .footer .social-networks {
    padding-top: 30px;
  }
  .footer-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    padding-top: 30px;
  }
  .footer .footer-links {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    margin: 0 -15px;
  }
  .footer .footer-links li {
    padding: 0 15px;
  }
}
@media(min-width: 1200px) {
  .footer .social-networks {
    margin: 0 -12px;
  }
  .footer .social-networks li {
    padding: 0 12px;
  }
}
/* 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%;
}

/* Templates
Specific pieces of UI that are stylized. Typically used for templates styling
*/
.blog-header {
  background-color: var(--blue-500);
  padding: 14px 0;
  position: relative;
}
.blog-header .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 -10px;
}
.blog-header .column {
  padding: 0 10px;
  width: 33.33%
}
.blog-header .column:nth-child(1) {
  width: 20%;
}
.blog-header .column:nth-child(2) {
  width: 60%;
}
.blog-header .column:nth-child(3) {
  width: 20%;
}

@media(min-width: 768px) {
  .blog-header .column:nth-child(1), .blog-header .column:nth-child(2), .blog-header .column:nth-child(3) {
    width: 33.33%;
  }
}
@media(min-width: 992px) {
  .blog-header .column:nth-child(1), .blog-header .column:nth-child(3) {
    width: 20%;
  }
  .blog-header .column:nth-child(2) {
    width: 60%;
  }
}


.blog-header .blog-name {
  color: var(--white);
  font-size: 14px;
  line-height: 17.15px;
  text-transform: uppercase;
  margin: 0;
}
@media(min-width: 768px) {
  .blog-header .blog-name {
    font-size: 20px;
    line-height: 23.86px;
  }
}

.blog-header .menu-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

/* links style */
.blog-header .blog-menu {
  display: flex;
  flex-flow: row wrap;
}
.blog-header .blog-menu a {
  font-family: var(--gilory), sans-serif;
  color: var(--white);
  font-size: 10px;
  line-height: 15.4px;
  text-transform: uppercase;
  margin: 0 10px;
}
.blog-header .blog-menu a .icon {
  position: relative;
  top: -2px;
  display: inline-block;
}
.blog-header .blog-submenu {
  background-color: var(--bg-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  height: 100vh;
  z-index: 12;
}
.blog-header.blog-menu-active .blog-submenu {
  display: block;
}
.blog-header .blog-submenu .holder {
  overflow: auto;
  height: inherit;
  padding: 40px 20px;
}
.blog-header .blog-submenu .section-header h2 {
  max-width: 100%;
  text-align: left;
  margin-bottom: 40px;
}
.blog-header .blog-submenu .section-header h2:after {
  transform: none;
  left: 0;
}
.blog-submenu .container {
  position: relative;
}
.blog-submenu .menu-topics {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.blog-submenu .menu-topics li {
  padding: 0 10px 20px;
}
.blog-submenu .menu-topics li a {
  display: flex;
  color: var(--grey-300);
  border: 1px solid var(--grey-50);
  margin-right: 10px;
  padding: 3px 15px;
  justify-content: center;
  text-align: center;
  text-transform: capitalize;
}
.blog-submenu .menu-closer {
  position: absolute;
  top: 0;
  right: 0;
}

@media (min-width: 576px) {
  .blog-submenu .menu-topics li {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .blog-header .blog-menu a {
    font-size: 12px;
  }
  .blog-submenu .menu-topics li {
    width: 33.33%;
  }
  .blog-header .blog-submenu .holder {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .blog-header .blog-menu a {
    font-size: 14px;
  }
  .blog-submenu .menu-topics li {
    width: 25%;
  }
  .blog-header .blog-submenu .holder {
    padding: 40px 80px;
  }
}



/* search style */
.search .search-holder {
  display: none;
}
.search .search-icon {
  color: var(--white);
  display: inline-block;
  line-height: 15.4px;
  position: relative;
  top: 2px;
  margin-left: 10px;
}
.search .search-holder {
  padding-left: 22px;
}
.search .input-holder {
  position: relative;
}
@media(min-width: 480px) {
  .search .input-holder {
    min-width: 354px;
  }
}
.search .search-form input[type="text"] {
  background-color: var(--white);
  border-radius: 50px;
  padding: 9px 100px 9px 20px;
}
.search .input-holder .cta_button {
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 7px 14px;
  border-radius: 50px;
}
.search .search-closer {
  position: absolute;
  top: 30px;
  right: 30px;
}

@media(max-width: 991px) {
  .search .search-holder {
    background-color: var(--bg-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    height: 100vh;
    z-index: 12;
  }
  .search.search-active .search-holder {
    display: block;
    padding: 100px 30px;
  }
  .search .search-holder .search-form {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media(min-width: 992px) {
  .search .search-holder {
    display: block;
  }
  .search .search-icon {
    display: none;
  }
  .search .search-holder {
    padding-left: 10px;
  }
  .search .input-holder {
    min-width: 310px;
  }
}
@media(min-width: 1200px) {
  .search .search-holder {
    padding-left: 22px;
  }
  .search .input-holder {
    min-width: 354px;
  }
}


/* social share */
.blog-header .social-share {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.blog-header .social-share .title {
  color: var(--white);
  font-family: var(--gilory), sans-serif;
  font-size: 10px;
  line-height: 15.4px;
  letter-spacing: 1.3px;
  display: inline-block;
  text-transform: uppercase;
}
.blog-header .social-networks {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -7px;
  display: none;
}
.blog-header .social-networks li {
  padding: 0 7px;
  line-height: 15.4px;
}

@media(max-width: 767px) {
  .blog-header .social-networks {
    position: absolute;
    top: 35px; 
    right: -24px;
    background: var(--blue-500);
    display: block;
    margin: 0;
  }
  .blog-header .social-networks li {
    padding: 0;
    text-align: center;
  }
  .blog-header .social-networks li a {
    padding: 18px;
  }
}
@media(min-width: 768px) {
  .blog-header .social-share .title {
    font-size: 12px;
    padding-right: 15px;
  }
  .blog-header .social-networks {
    display: flex;
  }
}
@media(min-width: 992px) {
  .blog-header .social-share .title {
    font-size: 14px;
  }
}
.blog-listing {
  padding: 60px 0;
}
.blog-listing .section-header {
  margin-bottom: 40px;
}
.blog-listing .section-header h2 {
  max-width: 100%;
  text-transform: capitalize;
  display: none;
}
.blog-listing .section-header h2:first-child, .blog-listing .section-header h2:only-child {
  display: block;
}
@media(min-width: 768px) {
  .blog-listing {
    padding: 80px 0;
  }
  .blog-listing .section-header {
    margin-bottom: 50px;
  }
}
@media(min-width: 992px) {
  .blog-listing {
    padding: 100px 0;
  }
  .blog-listing .section-header {
    margin-bottom: 64px;
  }
}
@media(min-width: 1200px) {
  .blog-listing {
    padding: 130px 0;
  }
}

.blog-listing .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}

.listing-page .column {
  padding: 0 15px;
  width: 100%;
}

.listing-page .post-article .post-article__image {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 472px;
  padding: 40px 20px;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.listing-page .post-article .post-article__image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
  z-index: -1;
}
.listing-page .post-article .post-article__title {
  font-family: var(--gilory-700), sans-serif;
  color: var(--white);
}
.listing-page .post-article .post-article__meta {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px 15px;
}
.listing-page .post-article .post-article__meta li {
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
  color: var(--white);
}
.listing-page .post-article .post-article__meta li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 4px;
  right: -2px;
  background-color: var(--white);
  width: 2px;
  height: 15px;
}
.listing-page .post-article .post-article__meta li a {
  color: var(--white);
}
.listing-page .post-article .post-article__link {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.listing-page .post-article .post-article__link:hover {
  background-color: var(--white);
  color: var(--grey-500);
}

@media(min-width: 768px) {
  .listing-page .post-article .post-article__image {
    padding: 40px 30px;
  }
}
@media(min-width: 992px) {
  .listing-page .column:nth-child(1) {
    width: 60%;
  }
  .listing-page .column:nth-child(2) {
    width: 40%;
  }
}
@media(min-width: 1200px) {
  .listing-page .post-article .post-article__image {
    padding: 40px;
  }
}



/* category page */
.category-page .column {
  padding: 0 15px;
  width: 100%;
}
.category-page .column {
  margin-bottom: 30px;
}
.category-page .post-article .post-article__image {
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  overflow: hidden;
  min-height: 344px;
  padding: 30px 20px;
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.category-page .post-article .post-article__image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000066;
  z-index: -1;
}
.category-page .post-article .post-article__title {
  font-family: var(--avenir-lt-std), sans-serif;
  color: var(--white);
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 15px;
  display: block;
}
.category-page .post-article .post-article__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.category-page .post-article .post-article__meta {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.category-page .post-article .post-article__meta li {
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
  color: var(--white);
}
.category-page .post-article .post-article__meta li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 4px;
  right: -2px;
  background-color: var(--white);
  width: 2px;
  height: 15px;
}

@media(min-width: 768px) {
  .category-page .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .category-page .column {
    width: 33.33%;
  }
}



/* listing view */
.listing-view {
  padding-top: 30px;
}
.listing-view .post-article {
  border-bottom: 1px solid var(--orange-500);
  margin-bottom: 30px;
}
.listing-view .post-article .post-article__title {
  font-family: var(--avenir-lt-std), sans-serif;
  color: var(--black);
  font-size: 24px;
  line-height: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing-view .post-article .post-article__meta li, .listing-view .post-article .post-article__meta li a {
  color: var(--grey-500);
}
.listing-view .post-article .post-article__meta li:not(:last-child)::after {
  background-color: var(--grey-500);
}
.listing-view .post-article .post-article__meta li a {
  font-weight: 700;
}


@media(min-width: 992px) {
  .listing-view {
    padding: 0;
  }
  .listing-view .post-article .post-article__title {
    font-size: 28px;
    line-height: 38px;
  }
}
/* Blog template */
.post-template {
  padding: 60px 0;
}
.post-template .container {
  max-width: 975px;
}
@media(min-width: 1200px) {
  .post-template {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .post-template {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .post-template {
    padding: 130px 0;
  }
}

/* blog post meta */
.post-template .blog-post__meta .title {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  padding: 10px 0;
}
.post-template .blog-post__meta ul {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.post-template .blog-post__meta ul li {
  color: var(--grey-200);
  font-weight: 600;
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
}
.post-template .blog-post__meta ul li:not(:last-child):after {
  content: '';
  position: absolute;
  top: 4px;
  right: -2px;
  background-color: var(--grey-200);
  width: 2px;
  height: 15px;
}
.post-template .blog-post__meta .blog-post__tags {
  padding: 0;
}
.post-template .blog-post__meta .blog-post__tags li {
  line-height: 1;
}
.post-template .blog-post__meta .blog-post__tags li:not(:last-child):after {
  background-color: var(--grey-500);
  height: 19px;
  top: 14px;
}

/* blog post author */
.post-template .blog-post__author {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.post-template .blog-post__author-avatar {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 64px;
  width: 64px;
}
.post-template .blog-post__author-info {
  padding-left: 15px;
}
.post-template .blog-post__author-info .name {
  color: var(--grey-500);
}
.post-template .blog-post__author-info .bio {
  color: var(--grey-200);
}


/* blog post */
.post-template .blog-post {
  padding-top: 35px;
}
.post-template .blog-post h1, .post-template .blog-post h2, .post-template .blog-post h3, .post-template .blog-post h4, .post-template .blog-post h5, .post-template .blog-post h6 {
  color: var(--grey-500);
}
.post-template .blog-post__body {
  border-top: 1px solid var(--grey-100);
  padding-top: 30px;
  margin-top: 30px;
}
.post-template .blog-post h3 {
  font-family: var(--gilory-600), sans-serif;
  font-size: 24px;
  line-height: 28px;
}
.post-template .blog-post img {
  border: 1px solid var(--grey-100);
}
.post-template .blog-post p:last-child {
  margin: 0 0 1rem;
}
.post-template .blog-post ul, .post-template .blog-post ol {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}
.post-template .blog-post__tags {
  display: flex;
  padding-top: 50px;
}
.post-template .blog-post__tags .blog-post__tag-link {
  display: flex;
  color: var(--grey-300);
  border: 1px solid var(--grey-50);
  margin-right: 10px;
  padding: 3px 15px;
  text-transform: capitalize;
}
@media(min-width: 768px) {
  .post-template .blog-post {
    padding-top: 58px;
  }
}


/* blog comments */
.blog-comments {
  padding-top: 50px;
}
.blog-comments h2 {
  border-bottom: 1px solid var(--grey-50);
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.blog-comments form {
  border: 1px solid var(--grey-50);
  padding: 30px;
}
.blog-comments form input[type=text],
.blog-comments form input[type=search],
.blog-comments form input[type=email],
.blog-comments form input[type=password],
.blog-comments form input[type=tel],
.blog-comments form input[type=number],
.blog-comments form input[type=file],
.blog-comments form select,
.blog-comments form textarea {
  border: 1px solid var(--grey-200);
  border-radius: 0;
}
.blog-comments form textarea {
  height: 109px;
}
.blog-comments form label {
  color: var(--grey-500);
  margin-bottom: 10px;
}
.blog-comments form .inputs-list {
  padding: 0;
  margin: 0;
}
.blog-comments form .inputs-list .hs-error-msg {
  color: #EF6B51;
}
.blog-comments form .hs-form-field.hs-recaptcha {
  margin: 0 0 1rem;
}
.blog-comments form .hs-button {
  background-color: var(--white);
  border-color: var(--grey-200);
  color: var(--grey-400);
}
.blog-comments form .hs-button:hover {
  background-color: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--grey-400);
}
@media(min-width: 768px) {
  .blog-comments form {
    padding: 50px;
  }
}



/* blog related post */
.blog-related-posts {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.blog-related-posts h2 {
  margin-bottom: 30px;
}
.blog-related-posts .row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
}
.blog-related-posts .column {
  padding: 0 15px;
  width: 100%;
}
.blog-related-posts__post .blog-related-posts__post-image-wrapper {
  position: relative;
  height: 241px;
  margin-bottom: 20px;
}
.blog-related-posts__post .blog-related-posts__post-image-link {
  display: block;
}
.blog-related-posts__post .blog-related-posts__post-image-wrapper img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  border: 0
}
.blog-related-posts__post .blog-related-posts__title {
  font-family: var(--avenir-lt-std), sans-serif;
  font-size: 20px;
  line-height: 30px;
}
.blog-related-posts__post .blog-related-posts__title a {
  color: var(--black);
}
.blog-related-posts__post .blog-related-posts__meta {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px;
}
.blog-related-posts__post .blog-related-posts__meta li {
  padding: 0 10px;
  text-transform: uppercase;
  position: relative;
  color: var(--grey-200);
}
.blog-related-posts__post .blog-related-posts__meta li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 4px;
  right: -2px;
  background-color: var(--grey-200);
  width: 2px;
  height: 15px;
}
.blog-related-posts__post .blog-related-posts__meta li a {
  color: var(--grey-200);
}


@media(min-width: 768px) {
  .blog-related-posts {
    padding: 80px 0;
  }
  .blog-related-posts h2 {
    margin-bottom: 40px;
  }
  .blog-related-posts .column {
    width: 50%;
  }
}
@media(min-width: 992px) {
  .blog-related-posts {
    padding: 100px 0;
  }
  .blog-related-posts h2 {
    margin-bottom: 50px;
  }
  .blog-related-posts .column {
    width: 33.33%;
  }
}
@media(min-width: 1200px) {
  .blog-related-posts {
    padding: 130px 0;
  }
}
.blog-listing-insight {
  background-color: var(--bg-color);
  padding: 60px 0;
}
.blog-listing-insight .heading {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.blog-listing-insight .heading h2 {
  margin: 0;
}
.blog-listing-insight .no-result {
  text-align: center;
  display: none;
}

@media(min-width: 768px) {
  .blog-listing-insight {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .blog-listing-insight {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .blog-listing-insight {
    padding: 130px 0;
  }
}

/* insight listing */
.insight-listing .post-article {
  background-color: var(--bg-color);
  border: 1px solid #D3D3D3;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: block;
}
.insight-listing .post-article:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.insight-listing .post-article:hover .post-article__link {
  color: var(--orange-500);
}
.insight-listing .post-article:hover .post-article__link svg path {
  stroke: var(--orange-500);
}
.insight-listing .post-article .post-article__title {
  color: var(--grey-500);
  display: block;
}
.insight-listing .post-article .post-article__title {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.insight-listing .post-article .post-article__time {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-300);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}
.insight-listing .post-article .post-article__link {
  transition: all 0.4s ease-in-out;
  color: var(--grey-500);
  font-family: var(--avenir-lt-std-500), sans-serif;
  text-align: right;
  font-weight: 700;
}
.insight-listing .post-article .post-article__link .icon {
  position: relative;
  top: 2px;
  right: -1px;
}
.insight-listing .post-article .post-article__link svg path {
  transition: all 0.4s ease-in-out;
}
.blog-listing-career {
  padding: 60px 0;
}
.blog-listing-career .section-header {
  margin-bottom: 50px;
}
.blog-listing-career .section-header h2, .blog-listing-career .section-header .text {
  max-width: 880px;
}
.blog-listing-career .heading {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.blog-listing-career .heading h2 {
  margin: 0;
}
.blog-listing-career .no-result {
  text-align: center;
  display: none;
}

@media(min-width: 768px) {
  .blog-listing-career {
    padding: 80px 0;
  }
  .blog-listing-career .section-header {
    margin-bottom: 60px;
  }
}
@media(min-width: 992px) {
  .blog-listing-career {
    padding: 100px 0;
  }
  .blog-listing-career .section-header {
    margin-bottom: 70px;
  }
}
@media(min-width: 1200px) {
  .blog-listing-career {
    padding: 130px 0;
  }
  .blog-listing-career .section-header {
    margin-bottom: 80px;
  }
}

/* career listing */
.career-listing .post-article {
  background-color: var(--bg-color);
  border: 1px solid #D3D3D3;
  padding: 20px 22px;
  margin-bottom: 20px;
  display: block;
}
.career-listing .post-article:hover {
  background-color: var(--blue-50);
  text-decoration: none;
}
.career-listing .post-article:hover .post-article__link {
  color: var(--orange-500);
}
.career-listing .post-article:hover .post-article__link svg path {
  stroke: var(--orange-500);
}
.career-listing .post-article .post-article__title {
  color: var(--grey-500);
  display: block;
}
.career-listing .post-article .post-article__title {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.career-listing .post-article .post-article__time {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-300);
  font-weight: 700;
  display: block;
  text-transform: uppercase;
}
.career-listing .post-article .post-article__link {
  transition: all 0.4s ease-in-out;
  font-family: var(--avenir-lt-std-500), sans-serif;
  text-align: right;
  color: var(--grey-500);
  font-weight: 700;
}
.career-listing .post-article .post-article__link .icon {
  position: relative;
  top: 2px;
  right: -1px;
}
.career-listing .post-article .post-article__link svg path {
  transition: all 0.4s ease-in-out;
}
/* filter style */
.filtration {
  margin-bottom: 50px;
}
.filtration .button-holder {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.filtration .cta_button {
  padding: 10px 15px;
}
.filtration .clear_filter {
  font-family: var(--avenir-lt-std-500), sans-serif;
  color: var(--grey-500);
  font-weight: 700;
  text-decoration: underline;
}
.filtration .clear_filter .icon {
  position: relative;
  top: 2px;
  right: -2px;
}
.search-form .row {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -15px;
} 
.search-form .column {
  padding: 0 15px;
  margin-bottom: 15px;
  width: 100%;
}
.search-form label {
  font-family: var(--avenir-lt-std-500), sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--grey-500);
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.search-form input[type="text"] {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9998 18.9998L13.8028 13.8028M13.8028 13.8028C15.2094 12.3962 15.9996 10.4885 15.9996 8.49931C15.9996 6.51011 15.2094 4.60238 13.8028 3.19581C12.3962 1.78923 10.4885 0.999023 8.49931 0.999023C6.51011 0.999023 4.60238 1.78923 3.19581 3.19581C1.78923 4.60238 0.999023 6.51011 0.999023 8.49931C0.999023 10.4885 1.78923 12.3962 3.19581 13.8028C4.60238 15.2094 6.51011 15.9996 8.49931 15.9996C10.4885 15.9996 12.3962 15.2094 13.8028 13.8028Z' stroke='%236A6A6A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 16px;
}
.search-form input[type="text"],
.search-form select {
  font-family: var(--avenir-lt-std-500), sans-serif;
  background-color: var(--bg-color);
  border-color: #DEDEDE;
  border-radius: 0;
  font-weight: 700;
  color: var(--grey-300);
  padding: 16px 45px 16px 20px;
}
.search-form select {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.5 1.25L9 8.75L1.5 1.25' stroke='%236A6A6A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position-x: 95%;
  background-position-y: 22px;
}

@media(min-width: 768px) {
  .search-form .column {
    width: 33.33%;
  }
}
/* pagination style */
.pagiation {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  margin: 30px -7px 0;
}
.pagiation li {
  padding: 0 7px;
  line-height: 1;
}
.pagiation li .pagiation__item {
  font-family: var(--avenir-lt-std-500), sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  background-color: var(--grey-50);
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
}
.pagiation li .pagiation__item a {
  color: var(--grey-300);
}
.pagiation li .pagiation__next {
  transform: rotateY(180deg);
}
.pagiation li .pagiation__prev.disabled, .pagiation li .pagiation__next.disabled {
  pointer-events: none;
}
.pagiation li .pagiation__prev svg rect, .pagiation li .pagiation__next svg rect {
  fill: var(--grey-100);
} 
.pagiation li .pagiation__prev.disabled svg rect, .pagiation li .pagiation__next.disabled svg rect {
  fill: var(--grey-50);
}
/* System pages */
.systems-page {
  background-color: var(--bg-color);
  padding: 60px 0;
}
@media(min-width: 768px) {
  .systems-page {
    padding: 80px 0;
  }
}
@media(min-width: 992px) {
  .systems-page {
    padding: 100px 0;
  }
}
@media(min-width: 1200px) {
  .systems-page {
    padding: 130px 0;
  }
}

/* Search pages */
.hs-search-results__title {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  text-decoration: underline;
}

.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: 0.7rem;
}





.systems-page .header {
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}
.systems-page .success {
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  display: inline-block;
  margin: 1.4rem 0;
  padding: 0.1rem 0.7rem;
  width: 100%;
}
.systems-page form input {
  max-width: 100%;
}
.systems-page form input[type='submit'] {
  margin: 0.7rem 0;
  display: block;
}


/* Error pages */
.error-page {
  padding: 10rem 0;
  position: relative;
  text-align: center;
}

.error-page:before {
  color: #F3F6F9;
  content: attr(data-error);
  font-size: 40vw;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}

/* Password prompt */
.password-prompt input[type=password] {
  height: auto !important;
  margin-bottom: 1.4rem;
}

.systems-page #hs-login-widget-remember,
.systems-page #hs-login-widget-remember ~ label {
  display: inline-block;
  margin-bottom: 0.175rem;
}

.systems-page #hs_login_reset {
  display: block;
  margin-bottom: 0.7rem;
}

/* Backup unsubscribe */
.backup-unsubscribe #email-prefs-form div {
  padding-bottom: 0 !important;
}

.backup-unsubscribe input[type=email] {
  font-size: 0.875rem !important;
  margin-bottom: 1.4rem;
  padding: 0.7rem !important;
}

/* Subscription preferences */
#email-prefs-form .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#email-prefs-form .item.disabled input:disabled {
  cursor: not-allowed;
}

/* Membership pages */
#hs-membership-form a[class*='show-password'] {
  font-size: 0.75rem;
}

/* Input error messages */
.form-input-validation-message ul.hs-error-msgs {
  padding-left: 0;
  margin: 0;
}

.form-input-validation-message ul.hs-error-msgs li {
  margin: 0;
}



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