/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary variables that control standard elements
in the pages. This is also the file that loads all of the other themed CSS
styleshets into just this one in each of themed templates.
*********************************************************************************
****************************************************************************** */











































/* ******************************************************************************
*********************************************************************************
The intention of this file is to reset most of the different browser, built-in
CSS styles, so that it is an empty canvas for the themed specific stylesheets.
*********************************************************************************
****************************************************************************** */

***
    The new CSS reset - version 1.6.1 (last updated 25.5.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/

/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
    cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
    list-style: none;
}

/* For images to not be able to exceed their container */
img {
    max-width: 100%;
}

/* removes spacing between cells in tables */
table {
    border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
    white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
    -webkit-appearance: revert;
    appearance: revert;
}

/* reset default text opacity of input placeholder */
::placeholder {
    color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
    display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
    -webkit-user-drag: element;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! 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.
 */



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

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

body {
  margin: 0 !important;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}



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

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 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
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, 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: 700;
}

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



/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 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;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.dnd-section {
  padding: 80px 0px;
}
.banner-area .dnd-section {
  padding: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.dnd-section > .row-fluid,
.content-wrapper,
.page-center{
  width: 80%;
  margin: auto
}
.dnd-section[class*="force-full-width-section"] > .row-fluid {
  width: 100% !important;
  max-width: 100% !important;
}
.dnd-section > .row-fluid {
  padding: 32px 0;
}
.dnd-section[class*="force-full-width-section"] > .row-fluid {
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width:1627px){
  .dnd-section > .row-fluid {
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media (max-width:980px){
  .dnd-section > .row-fluid {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@font-face {
  font-family: 'Bariol bold';
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_bold-webfont.ttf) format("truetype");
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_boldwebfont.woff2) format('woff2'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_boldwebfont.woff) format('woff'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_boldwebfont.ttf) format('truetype'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_boldwebfont.svg) format('svg');
  font-display: auto;
}
@font-face {
  font-family: 'Bariol regular italic';
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regular_italic-webfont.ttf);
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regular_italicwebfont.woff2) format('woff2'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regular_italicwebfont.woff) format('woff'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regular_italicwebfont.ttf) format('truetype'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regular_italicwebfont.svg) format('svg');
  font-display: auto;
}
@font-face {
  font-family: 'Bariol';
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regular-webfont.ttf) format("truetype");
  src:url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regularwebfont.woff2) format('woff2'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regularwebfont.woff) format('woff'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regularwebfont.ttf) format('truetype'),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/bariol_regularwebfont.svg) format('svg');
  font-display: auto;
}

@font-face {
  font-family: 'Prata-Regular';
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/Prata-Regular.ttf) format('truetype');
  font-display: auto;
}

@font-face {
  font-family: ETmodules;
  src: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/modules.ttf) format("truetype"),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/modules.woff) format("woff"),
    url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/Fonts/modules.svg#ETmodules) format("svg");
  font-style: normal;
  font-weight: 400;
  font-display: auto;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  margin: 0;
  padding-bottom: 1em;
}
p:not(.has-background):last-of-type {
  padding-bottom: 0
}
/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
  padding-bottom: 10px;
  line-height: 1.3em;
  margin: 0;
}

h1 a,h2 a,h3 a,h4 a,h5 a,h6 a {
  color: inherit
}
img {
  max-width: 100%;
  height: auto
}
strong {
  font-weight: 700
}

code {
  vertical-align: bottom;
}



blockquote {
  line-height: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 2px solid #A9A9A9;
  padding-left: 15px;
}

/* Horizontal Rules */
cite,em,i {
  font-style: italic
}

code,pre {
  font-family: Courier New,monospace;
  margin-bottom: 10px
}

ins {
  text-decoration: none
}

sub,sup {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline
}

sup {
  bottom: .8em
}

sub {
  top: .3em
}

dl {
  margin: 0 0 1.5em
}

dl dt {
  font-weight: 700
}

dd {
  margin-left: 1.5em
}

blockquote p {
  padding-bottom: 0
}

embed,iframe,object,video {
  max-width: 100%
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}

:focus {
  outline: 0;
}


.hs-form label {
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  padding-top: 0;
  margin-bottom: 6px;
}

.hs-error-msgs label, .error {
  color: #f2545b;
}

.hs-input,
input[type="password"] {
  padding:10px 10px;
  width: 100%;
  border: 2px solid #333;
  border-color: #c6c6c6;
  background-color: #f2f4f5;
  border-radius: 6px;
  overflow: hidden;
}

.hs-input[type=checkbox],
.hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}

.hs-input[type=file] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
  box-shadow: none;
}

.hs-input::-webkit-input-placeholder {
  color: #000000;
  opacity:1;
}

.hs-input::-ms-input-placeholder {
  color: #000000;
  opacity:1;
}

.hs-input::-moz-placeholder {
  color: #000000;
  opacity:1;
}
input[type="password"] {
  height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 20px;
}
.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus,
input[type="password"]:focus {
  outline: none;
}

textarea.hs-input{
  min-height: 150px;
  display: block;
}
select[multiple].hs-input {
  height: inherit;
}

/* Force single column fields to full width inside of fieldsets */
fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
  width: 100% !important;
}

input.hs-input.error,
div.field.error input,
div.field.error textarea,
div.field.error .chzn-choices,
textarea.hs-input.error,
select.hs-input.error {
  border-color: #f00;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #f00;
}
span.hs-form-required {
  margin-left: 3px;
}
.actions {
  padding: 0;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 0;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.inputs-list label {
  display: block;
  float: none;
  width: auto;
  padding: 0;
  line-height: 18px;
  text-align: left;
  white-space: normal;
  font-weight: normal;
}
.inputs-list:first-child {
  padding-top: 6px;
}
.inputs-list > li + li {
  padding-top: 2px;
}
.inputs-list label > input,
.inputs-list label > span {
  vertical-align: middle;
}

ul.no-list {
  list-style: none;
}

.field,
.widget-type-google_search .hs-input{
  margin-bottom: 3%;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
  font-size: 14px;
}

.hs-form-required {
  color: red;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}
.hs-error-msgs.inputs-list label {
  color: #f00;
  margin-top: 5px;
}
.inputs-list:first-child {
  padding-top: 0;
}
.hs_error_rollup {
  margin-bottom: 15px;
}
form input:focus,
form select:focus,
form textarea:focus, .hs-input:focus {
  color: #3e3e3e;
}


form .button-wrapper-form {
  display: inline-block;
  width: auto;
  position: relative;
  z-index: 3;
  line-height: 1.7em;
  font-size: 14px;
}
form .button-wrapper-form:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: ETmodules!important;
  speak: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  text-transform: none;
  -webkit-font-feature-settings: "kern" off;
  font-feature-settings: "kern" off;
  font-variant: none;
  font-style: normal;
  font-weight: 400;
  text-shadow: none;
  opacity: 0;
  position: absolute;
  line-height: inherit;
  font-size: inherit;
  margin-left: -2em;
  left: auto;
  content: "5";
  pointer-events: none;
  top: 4px;
  color: inherit;
  z-index: 3;
}
form .button-wrapper-form:hover:after {
  left: auto;
  opacity: 1;
  left: 100%;
  margin-left: -16px;
  opacity: 1;

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #eee;
  margin: 0 0 15px;
  text-align: left;
  width: 100%;
}

th,
td {
  border-top: 1px solid #eee;
  padding: 6px 24px;
}
th {
    font-weight: normal;
}
.stacktable { width: 100%; }
.st-key { width: 49%; text-align: right;     padding-right: 24px; }
.st-val { width: 49%; padding-left: 24px; }



/* RESPONSIVE EXAMPLE */

.stacktable.large-only { display: table; }
.stacktable.small-only { display: none; }

@media (max-width: 767px) {
  .stacktable.large-only { display: none; }
  .stacktable.small-only { display: table; }
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */


.cookies-page-body .header-col.col-right {
  display: none;
}

main .widget-type-header {
  margin-bottom: 2.75%;
}

@media (max-width:980px){
  main .widget-type-header {
    margin-bottom: 30px;
  }
}

.customer-detail-page-body .website-header {
  padding-top: 0;
}
.customer-detail-page-lay {
  background-color: #1a2f55;
  padding-top:20px;
}

.customer-detail-row.customer-detail-row-1 {
  background-color: #f2f4f5;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  padding: 32px 0;
  max-width: 1303px;
  margin:auto;
  width: 80%;
}
.customer-detail-row-1 .dnd-section {
  padding-top: 0 !important;
  padding-bottom: 0px !important;
}

.customer-detail-row-1 .dnd-section > .row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 100% !important;
}
.customer-detail-row-1 .widget-type-linked_image {
  margin-bottom: 2.75%;
}
.customer-detail-row-1 .widget-type-linked_image img{
  display:block;
}
.customer-detail-row-1 .widget-type-rich_text {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 2.75%;
}
.customer-detail-row-1{
  color: #1a2f55
}
.widget-type-rich_text ul,
.widget-type-rich_text ol{
  padding: 0 0 1em 1em;
  line-height: 26px;
  margin: 0;
}
.customer-detail-page-lay {
  padding-bottom: 85px;
}

.customer-detail-row-2 .hs-button {
  color: #e5bc9c;
  border-width: 2px;
  border-color: #e5bc9c;
  border-radius: 6px;
  letter-spacing: 1px;
  font-size: 15px;
  background-color: #1a2f55;
  padding: 7px 35px;
}
.customer-detail-row-2 .hs-button:hover{
  background-color: #1a2f55;
  border-color: #e5bc9c;
  color: #e5bc9c;
}
.hs-button {
  position: relative;
  z-index:3;
}
a.hs-button:after {
  text-transform: none;
  -webkit-font-feature-settings: "kern" off;
  font-feature-settings: "kern" off;
  font-variant: none;
  font-style: normal;
  font-weight: 400;
  text-shadow: none;
  opacity: 0;
  position: absolute;
  transition: all 300ms ease 0ms;
  line-height: inherit;
  font-size: inherit;
  margin-left: -1em;
  left: auto;
  content: "5";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0;
  font-family: ETmodules!important;
  speak: none;
}

a.hs-button:hover:after {
  left: auto;
  margin-left: .3em;
  opacity: 1;
}

.customer-detail-row-2 .dnd-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.customer-detail-row-2 .dnd-section>.row-fluid {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.customer-detail-row-2 .hs-button {
  margin-top: 30px;
  margin-bottom: 20px;
}

@media (max-width:1627px){
  .customer-detail-row.customer-detail-row-1 {
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .customer-detail-row-2 .dnd-section > .row-fluid {
    padding-top: 2%  !important;
    padding-bottom: 2% !important;
  }

  .customer-detail-page-lay {
    padding-bottom: calc(4% + 20px);
  }
}

@media (max-width:980px){
  .customer-detail-row.customer-detail-row-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .customer-detail-row-1 .widget-type-linked_image,
  .customer-detail-row-1 .widget-type-rich_text{
    margin-bottom: 30px;
  }

  .customer-detail-page-lay {
    padding-bottom: 75px;
  }

  .customer-detail-row-2 .dnd-section>.row-fluid {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

main .platform-features-row-dnd-1 .dnd-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 30px;
}

.platform-features-row-dnd-1 .dnd-section > .row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  width: 87%;
}

.platform-features-row.platform-features-row-1 {
  padding-top: 1vw;
  padding-bottom: 5vw;
  background-color: #1a2f55;
}
main .platform-features-row-dnd-2 .dnd-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.platform-features-lay a.hs-button {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  line-height: 1.7em;
  padding: 7px 35px;
  color: #e5bc9c;
  border-width: 2px;
  border-color: #e5bc9c;
  border-radius: 6px;
  letter-spacing: 1px;
  font-size: 15px;
  background-color: #1a2f55;
}

.platform-features-lay a.hs-button:hover {
  border-color: #e5bc9c;
  color: #e5bc9c;
  background-color: #1a2f55;
}

.dnd-section[class*="force-full-width-section"] .contact-us-form-card {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 0;
}
.platform-features-row.platform-features-row-2 .dnd-section {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
}
h3.form-title:empty {
  display: none;
}



.dnd-section[class*="force-full-width-section"] .features-mod-wrap {
  width: 87%;
  max-width: 1303px;
  margin: 0 auto;
}
@media (max-width:1627px){
  .dnd-section[class*="force-full-width-section"] .contact-us-form-card {
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media (max-width:980px){
  .platform-features-row.platform-features-row-1 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .dnd-section[class*="force-full-width-section"] .contact-us-form-card {
    padding-top: 30px;
    padding-bottom: 30px;
    width: 65%;
  }
  .features-mod-wrap .Digdeepertounderstandwhy .features-mod-content:after,
  .features-mod-wrap .Weareheretohelpyousucceed .features-mod-content:after{
    content: "";
    display: table;
    width: 100%;
  }
}
@media (max-width: 767px){
  .platform-features-row.platform-features-row-1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .dnd-section[class*="force-full-width-section"] .contact-us-form-card {
    width: 80%;
  }

  form fieldset .hs-form-field {
    float: none !important;
    width: 100% !important;
  }

  form fieldset .hs-form-field .input {
    margin-right: 0 !important;
  }
  form .hs-form-field .input > .hs-input {
    width: 100% !important;
  }
}
.wow.fadeTop{
  opacity:0;
}
.wow.fadeTop.animated{
  opacity:1;
  -webkit-animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
}
@-webkit-keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%)
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0)
  }
}

@keyframes fadeTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%)
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}


.book-free-demo-page-row-one {
  background-color: #1a2f55;
  color: #fff;
  padding-top: 1px;
}
.book-free-demo-page-row-one  h1,
.book-free-demo-page-row-one  h2,
.book-free-demo-page-row-one  h3,
.book-free-demo-page-row-one  h4,
.book-free-demo-page-row-one  h5,
.book-free-demo-page-row-one  h6 {
  color: #e5bc9c;
}
main .book-free-demo-page-row-one .widget-type-header {
  margin-bottom: 20px;
}
.tw-column-wrap:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}
.two-column {
  float: left;
  width: 47.25%;
  margin-right: 5.5%;
}
.two-column:last-child {
  margin-right: 0;
}

.book-free-demo-page-row-one .two-column-text {
  font-size: 18px;
  line-height: 20px;
}

.book-free-demo-page-row-one .dnd-section>.row-fluid {
  width: 85%;
}
.book-free-demo-page-row-one .contact-us-form-card .contact-us-form-message {
  margin-bottom: 5.82%;
}
.book-free-demo-page-row-one .contact-us-form-card .contact-us-form-message {
  margin-bottom: 5.82%;
}

.book-free-demo-page-row-one .contact-us-form-card .actions .hs-button,
.book-free-demo-page-row-one .contact-us-form-card .actions .hs-button:hover{
  color: #e5bc9c;
  border-width: 2px;
  border-color: #e5bc9c;
  padding: 4px 10px;
}
.book-free-demo-page-row-one .contact-us-form-card .actions .hs-button:hover{
  padding-right:15px;
}
.book-a-free-demo-page .body-container  .dnd-section>.row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.dnd-section[class*="force-full-width-section"] .our-customers .our-customer-in {
  width: 80%;
  max-width: 1303px;
  margin: 0 auto;
}

@media (max-width:980px){
  .two-column {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .two-column:last-child {
    margin-bottom: 0;
  }

  .book-free-demo-page-row-one .contact-us-form-card .contact-us-form-message {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}

.customer-case-row {
  background-color: #f2f4f5;
}
.customer-testimonial-row {
  background-color: #1a2f55;
}
.customers-page-row-two .dnd-section {
  padding-top: 22px;
  padding-bottom: 22px;
}
.customer-testimonial-row .header-section {
  text-align: center;
}
.customer-testimonial-row .header-section h2 {
  color: #e5bc9c;
}
.customer-testimonial-row .header-section .widget-type-header {
  margin-bottom: 0;
}
.customer-testimonial-row .header-section .widget-type-header {
  margin-bottom: 0;
}
.customer-testimonial-row .col-left .customer-testimonial-logo {
  margin-bottom: 12px;
  width: 29%;
  padding-bottom: 20px;
}
.customer-testimonial-row .col-left .customer-testimonial-card .customer-testimonial-description{
  min-height: 682px;
}
.customer-case-row .summary p:last-child {
  padding-bottom: 1em;
}

.three-column-wrap:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}

.customer-case-row .header-section {
  text-align: center;
}
.customer-case-row .three-column-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
}

.customer-case-row .three-column > div, 
.customer-case-row .three-column > div > div, 
.customer-case-row .three-column > div > div > div {
  position: relative;
  height: 100%;
  z-index: 3;
}
.three-column.col-center .case-study-card .case-study-card-button a,
.three-column.col-right .case-study-card .case-study-card-button a {
  padding: .3em 1em;
  padding-right: 2em;
  padding-left: 0.7em;
}
@media (min-width:981px){

  .customer-testimonial-row .two-column {
    width: 48.5%;
    margin-right: 3%;
  }

  .customer-testimonial-row .two-column:last-child {
    margin-right: 0;
  }

  .customer-case-row .summary {
    font-size: 18px;
    line-height: 20px;
  }



  .three-column {
    width: 29.6667%;
    margin-right: 5.5%;
    float: left;
  }

  .three-column:last-child {
    margin-right: 0;
  }
}
.customers-page-row .dnd-section {
  padding-top: 0;
  padding-bottom: 0;
}
.customers-page-row .dnd-section > .row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.dnd-section[class*="force-full-width-section"] .testimonial-gallery-inn{
  max-width: 1303px;
  width: 80%;
  margin: auto;
}
.customers-page-row .dnd-section[class*="force-full-width-section"] .our-customers .our-customer:first-child .our-customer-in {
  width: 85%;
}



.website-page-lay main .dnd-section > .row-fluid .dnd-column .widget-type-rich_text {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 20px;
}

.website-page-lay main .widget-type-header {
  margin-bottom: 40px;
}

.website-page-lay  main .dnd-section > .row-fluid .dnd-column .widget-type-rich_text h4 {
  line-height: 1.3em;
}


/* about page */
.about-row-one .description {
  line-height: 1.5;
  max-width: 800px;
  padding-left: 2px;
  color: #242424;
  margin-bottom: 20px
}
main .about-row-one .widget-type-header {
  margin-bottom: 10px;
}
.about-row-one .col-right .column-in {
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-row-two {background: #f2f4f5;}

.about-row-one img,
.about-row-two img {
  display: block;
  margin: 0 auto;
}

.about-row-two .two-column.col-left {
  padding-left: 5px;
  padding-right: 5px;
}
main .about-row-two .widget-type-header {
  margin-bottom: 5.82%;
}
.about-row-two .description {
  margin-top: -20px;
}
.about-row-three {
  background-color: #1a2f55;
}

.top-row-about {
  color: #fff;
  text-align: center;
}

main .top-row-about .widget-type-header h1,
main .top-row-about .widget-type-header h2,
main .top-row-about .widget-type-header h3,
main .top-row-about .widget-type-header h4,
main .top-row-about .widget-type-header h5,
main .top-row-about .widget-type-header h6 {
  color: #e5bc9c;
}
.team-header-summary {
  font-size: 18px;
  margin-top: -10px;
  line-height: 20px;
}

.about-row-three .dnd-section > .row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.about-row-three .dnd-section > .row-fluid > div {
  padding: 32px 0;
}
.two-column-wrap:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}
.bottom-row-about .team-member-card {
  width: 65%;
  margin: 0 auto;
}
.about-row-four {
  background-color: #f1f5f9;
}

main .about-row-four .widget-type-header {
  margin-bottom: 18px;
}

.about-row-four .description {
  line-height: 1.1em;
}

.about-row-four .two-column.col-left {
  width: 64.833%;
}

.about-row-four .two-column.col-right {
  width: 29.6667%;
}

.about-row-four .two-column img {
  display: block;
}

.about-row-five .dnd-section {
  padding-top: 22px;
  padding-bottom: 22px;
}
.about-row-three .dnd-section>.row-fluid {
  max-width: 100% !important;
  width: 100%;
}
.about-row-three .dnd-section>.row-fluid > div {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1303px;
}

.fixed-header .header-col.col-left {
  z-index: 99;
}
@media (max-width:1627px){
  .about-row-three .dnd-section > .row-fluid > div {
    padding: 2% 0;
  }
}
@media (max-width:980px){
  .about-row-three .dnd-section > .row-fluid > div {
    padding: 30px 0;
  }
  .about-row-one .two-column.col-right {
    display: none;
  }

  .about-row-one .two-column.col-left:after {
    content: "";
    display: table;
    width: 100%;
  }

  main .about-row-two .widget-type-header {
    margin-bottom: 30px;
  }
  .about-row-three .three-column {
    margin-bottom: 30px;
  }

  .about-row-three .three-column:last-child {
    margin-bottom: 0;
  }

  .bottom-row-about .team-member-card {
    width: 100%;
  }

  .about-row-four .two-column.col-left,.about-row-four .two-column.col-right {
    width: 100%;
  }
}
/* Data Mangement */
.page-banner.banner-for-datamanagement {
  padding-top: 2px;
}
.cookies-page-lay main .widget-type-rich_text h4 {
  line-height: 1.3em;
}
.cookies-page-lay main .widget-type-rich_text h5 {
  font-family: 'Bariol regular italic',Helvetica,Arial,Lucida,sans-serif;
  font-size: 22px;
  text-align: left;
}
.cookies-page-lay .contact-us-form-card .actions .hs-button {
  padding: 4px 10px;
}
@media (max-width:980px){
  .cookies-page-lay main .widget-type-rich_text h5 {
    font-size: 17px;
  }
  .page-banner.banner-for-datamanagement {
    padding-top: 0;
  }
}
@media (max-width:767px){
  .cookies-page-lay main .widget-type-rich_text h5 {
    font-size: 16px;
  }
}
.cookies-page-lay main .widget-type-rich_text ul {
  padding: 0 0 23px 1em;
  line-height: 26px;
  font-size: 18px;
  padding-bottom: 1em;
}
/* Product Page */
.product-row-top .row-fluid-wrapper.dnd-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.product-row-one {
  padding-bottom: 30px;
  background-color: #1a2f55;
  color: #fff;
}

.product-row-one .dnd-section > .row-fluid > div.users-top-wrap {
  padding-bottom: 22px;
}

.product-row-one .dnd-section>.row-fluid {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.product-row-one .dnd-section>.row-fluid > div {
  padding-top: 32px;
  padding-bottom: 32px;
  max-width: 1303px;
  width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
}

main .product-row-one .widget-type-header {
  text-align: center;
  margin-bottom: 12px;
}

main .product-row-one .widget-type-header h1,
main .product-row-one .widget-type-header h2,
main .product-row-one .widget-type-header h3,
main .product-row-one .widget-type-header h4,
main .product-row-one .widget-type-header h5,
main .product-row-one .widget-type-header h6 {
  color: #e5bc9c;
}

.product-row-one .users-top-description {
  font-size: 18px;
  line-height: 20px;
}

.product-row-one .dnd-section>.row-fluid > div.users-middle-wrap {
  padding-bottom: 45px;
  padding-top: 0;
  margin-top: 21px;
  width: 70%;
  font-size: 20px;
  line-height: 0.7em;
}

.product-row-one .users-middle-wrap .two-column {
  padding-left: 20px;
}

.product-row-one .users-bottom-wrap {
  padding-top: 0px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  max-width: 1303px;
  width: 80%;
  margin-left: auto !important;
  margin-right: auto !important;
}
.product-row-one .users-button {
  text-align: right;
  padding-left: 40px;
  padding-right: 40px;
}
.product-row-one .dnd-section > .row-fluid > div.user-icon-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 1px;
  padding-bottom: 0;
}
.three-columns-wrap:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}
.product-row-one .dnd-section > .row-fluid > div.users-bottom-wrap-out{
  padding-bottom:30px;
  max-width:100%;
  width:100%;
  padding-top: 0;
}
.product-row-one {
  padding-bottom: 0;
}

main .product-row-one  .dnd-section {
  padding-bottom: 40px;
}
.product-row-two {
  background-image: linear-gradient(40deg,#f2f4f5 0%,#ffffff 100%);
}

.product-row-two .dnd-section {
  padding-bottom: 0;
}

.product-row-two .dnd-section > .row-fluid {
  padding-bottom: 0;
  width: 75%;
}

.product-row-two .two-column.col-left {
  padding-left: 30px;
  padding-top: 25px;
  text-align: center;
}

main .product-row-two .widget-type-header {
  margin-bottom: 13px;
}

.product-row-two .description {
  margin-bottom: 5.82%;
  color: #242424;
  line-height: 1em;
}

.product-row-two .description h6 {
  font-size: 18px;
  color: #000000;
}

.product-row-two  .button {
  text-align: right;
  margin: 30px 15px;
}

.product-row-two .button a.hs-button {
  padding: 7px 15px;
  border: none;
}

.product-row-two .button a.hs-button:hover {
  letter-spacing: 1px;
  padding-right: 22px;
}
.product-row-three {
  text-align: center;
}
.product-row-three .widget-type-header {
  margin-bottom: 11px;
}
.product-user-gallry {
  position: relative;
  z-index: 5;
}
.row-fluid.middle-row-product-fluid {
  background-color: #1a2f55;
  border-radius: 10px 10px 10px 10px;
  padding-left: 10px;
  padding-right: 10px;
  color: #f2f4f5;
}
.product-row-three .middle-row-product {
  padding-bottom: 1px;
}
.product-row-four {
  background-color: #f2f4f5;
}

.row-fluid.middle-row-product-spacer .product-spacer {
  min-height: 1px;
}

.product-row-four .top-row-help {
  text-align: center;
}

main .product-row-four .widget-type-header {
  margin-bottom: 0;
}

.product-row-four .help-header-summary {
  font-size: 30px;
  color: #1a2f55;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
}
.row-fluid.product-row-four-section-header {
  padding-bottom: 3px!important;
}

.row-fluid.product-row-four-content {
  padding-right: 10px;
  padding-left: 10px;
}

.row-fluid.product-row-four-content .two-column.col-right {
  text-align: center;
}

.row-fluid.product-row-four-content .two-column.col-right .column-in {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

.row-fluid.product-row-four-content  img {
  display: block;
}

.row-fluid.product-row-four-content  .description {
  margin-bottom: 5.82%;
}

.row-fluid.product-row-four-content .description:last-child {
  margin-bottom: 0;
}

.product-row-five .dnd-section {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media (min-width:981px){
  .user-analytics-wrap .dnd-section > .row-fluid {
    width: 85.7%;
  }
}
@media (max-width:1627px){
  .product-row-one .dnd-section > .row-fluid>div {
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media (max-width:980px){
  .user-analytics-wrap .two-column.col-left {
    background-image: initial;
    background-color: rgba(229,230,232,0.95);
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-radius: 10px 10px 10px 10px;
    overflow: hidden;
  }

  .product-row-one .dnd-section>.row-fluid>div {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .product-row-one .dnd-section>.row-fluid>div.users-middle-wrap {
    width: 55%;
  }

  .content-with-icon-box {
    max-width: 550px;
    margin: 0 auto;
  }

  .content-with-icon-box .icon {
    font-size: 70px;
  }
  .user-icon-wrap .three-column {
    margin-bottom: 30px;
  }

  .product-row-two .dnd-section {
    padding-top: 100px;
  }

  .product-row-two  .two-column.col-right {
    padding-right: 60px;
    padding-left: 60px;
  }

  .product-row-two .dnd-section>.row-fluid {
    width: 80%;
  }

  .product-row-two .description {
    margin-bottom: 30px;
  }

  .product-row-two .two-column.col-right:after {
    content: "";
    display:table;
    width:100%;
  }
  .product-row-two .two-column.col-left img {
    display: block;
  }
  .product-row-three .three-column {
    margin-bottom: 30px;
  }

  .product-row-three .three-column:after {
    content: "";
    display: table;
    width: 100%;
  }
  .product-row-three .three-column:last-child {
    margin-bottom: 0;
  }
  .product-row-three .three-column:last-child {
    margin-bottom: 0;
  }

  .product-row-four .help-header-summary {
    font-size: 26px;
  }

  .row-fluid.product-row-four-content .description {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px){
  .product-row-four .help-header-summary {
    font-size: 18px;
  }
  .product-row-one .users-bottom-wrap {
    padding-bottom: 0;
  }
  .product-row-one .dnd-section>.row-fluid>div.users-middle-wrap,
  .product-row-one .users-button {
    display: none;
  }
  .product-row-one .dnd-section>.row-fluid>div.user-icon-wrap {
    padding-top: 10px;
  }

  .user-icon-wrap .three-column:first-child {
    padding-bottom: 30px;
  }

  .user-icon-wrap .three-column:first-child {
  }

  .product-row-two .dnd-section {
    padding-top: 30px;
  }

  .product-row-two .dnd-section>.row-fluid {
    width: 85%;
  }

  .product-row-two .two-column.col-right {
    padding-right: 10px;
    padding-left: 10px;
  }

  .product-row-two .two-column.col-left {
    display: none;
  }
}

.row-fluid.customer_cases_summary_top {
  width: 70%;
}


.customer-testimonial-card .customer-testimonial-logo img {
  margin: 0 auto;
}
.customer-detail-row-1 .widget-type-rich_text h4 {
  font-size: 28px;
}
@media (max-width:980px){
  .customer-case-row .summary {
    font-size: 18px;
    line-height: 20px;
  }

  .customer-case-row .three-column {
    float: none;
    width: 100%;
    margin-bottom: 30px;
  }

  .customer-case-row .three-column-wrap {
    display: block;
  }

  .customer-case-row .three-column:last-child {
    margin-bottom: 0;
  }
  .customer-testimonial-row .header-section .widget-type-header {
    display: none;
  }

  .customer-testimonial-row .two-column.col-right {
    padding-top: 40px;
  }

  .customer-testimonial-card .customer-testimonial-logo {
    text-align: center;
  }
  main .customer-testimonial-row .dnd-section {
    padding-top: 5%;
    padding-bottom: 5%;
  }
  .customer-detail-row-1 .widget-type-rich_text h4{
    font-size: 26px;
  }
}

@media (max-width:767px){
  .customer-testimonial-row .two-column.col-right {
    padding-top: 30px;
  }

  .customer-detail-row-1 .widget-type-rich_text h4{
    font-size: 24px;
  }
}
.policy-page-lay main .widget-type-rich_text p {
  font-size: 18px;
  line-height: 20px;
}
.policy-page-lay main .widget-type-rich_text h4 {
  line-height: 1.3em;
}
.policy-page-lay main .widget-type-rich_text:after {
  content: "";
  display: table;
  width:100%;
}

.policy-page-lay main .widget-type-rich_text table {
  margin-bottom: 2.75%;
}


.website-header-language ul.active-lan-head.open-lan-child+.lang_list_class {
  margin-top: 3px;
}

@media (max-width:980px){
  .website-header-language .header-col.col-right {
    padding-right: 16px !important;
    padding-left: 16px !important;
    overflow: visible;
  }
  .policy-page-lay main .widget-type-rich_text table {
    margin-bottom: 30px;
  }
}
@media (max-width:767px){
  .website-header-language .header-col.col-right {
    display: block;
  }
}
.book-free-demo-page-row-one .contact-us-form-card .actions .button-wrapper-form {
  color: #e5bc9c;
}

.policy-page-lay.policy-page-lay-sv .footer-row.footer-row-4 {
  display: none;
}


/* Home Page */
.home-page-lay .our-customers .our-customer:last-child .our-customer-in {
  padding-top: 32px;
  padding-bottom: 32px;
}

.home-page-row-two {
  background-image: linear-gradient(40deg,#f2f4f5 0%,#ffffff 100%);
  background-color: #f1f5f9;
}

main .home-page-row-two .widget-type-header {
  margin-bottom: 17px;
}

.home-page-row-two .dnd-section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home-page-row-two .description {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 5.82%;
}
.home-page-row-two  .two-column.col-right .column-in {
  width: 90%;
  margin: 0 auto;
}

.home-page-row-two .two-column.col-right .column-in img {
  display: block;
}

.home-page-row-two  .home-button {
  text-align: right;
  padding-left: 20px;
  padding-right: 20px;
}

.home-page-row-two .home-button a.hs-button {
  letter-spacing: 1px;
  padding: 7px 15px;
  line-height: 1.7em;
  border: none;
}

.home-page-row-two .home-button a.hs-button:hover {
  padding-right: 22px;
}

.home-page-lay .row-fluid.home-page-row-two-bottom {
  margin-top: 18px;
  margin-bottom: 18px;
  padding-top: 0;
  padding-bottom: 4px;
  background-color: rgba(0,0,0,0);
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
  box-shadow: 0px 2px 7px 0px rgba(0,0,0,0.3);
  background-color: #ffffff;
}
.home-page-row-four {
  background-color: #1a2f55;
}

main .home-page-row-four  .widget-type-header {
  text-align: center;
  margin-bottom: 8px;
}

main .home-page-row-four .widget-type-header h2 {
  color: #e5bc9c;
}

.row-fluid.home-page-row-four-top {
  padding-top: 17px;
  padding-bottom: 8px;
}

.row-fluid.home-page-row-four-middle {
  padding-top: 27px;
  padding-bottom: 0px;
}

.four-column-wrap:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  width: 0;
}



.row-fluid.home-page-row-four-bottom {
  text-align: center;
}
.dnd-section>.row-fluid.home-page-row-four-middle {
  max-width: 1440px;
}
.et-team:before {content: "";}
.et-pie-chart:before {content: "";}
.et-board:before {content: "";}
.et-compass:before {content: "";}
.row-fluid.home-page-row-four-bottom {}

.row-fluid.home-page-row-four-bottom .header {
  margin-top: 30px;
  margin-bottom: 30px;
}

.row-fluid.home-page-row-four-bottom a.hs-button,
.row-fluid.home-page-row-four-bottom a.hs-button:hover {
  color: #e5bc9c;
  border-width: 2px;
  border-color: #e5bc9c;
  font-size: 15px;
  letter-spacing: 1px;
  background: transparent;
  padding: 7px 35px;
  line-height: 1.7em;
}

.home-page-row-five {
  background-color: #f2f4f5;
}
.home-page-row-five .two-column.col-right .column-in {
  filter: saturate(118%) brightness(110%) opacity(83%);
  backface-visibility: hidden;
  padding-right: 10px;
  padding-left: 10px;
  text-align: center;
}
.dnd-section > .row-fluid.home-page-row-two-top{
  width: 85%;
}

.home-page-row-five .two-column.col-right .widget-type-linked_image {
  border-radius: 5px 5px 5px 5px;
  overflow: hidden;
}

.home-page-row-five .two-column.col-right .widget-type-linked_image img {
  display: block;
}
.dnd-section > .row-fluid.website-performance-top {
  text-align: center;
  padding-top: 17px;
  padding-bottom: 8px;
}
.dnd-section > .row-fluid.website-performance-middle {
  width: 75%;
}

.home-page-lay .dnd-section[class*="force-full-width-section"] .our-customers .our-customer-in {
  width: 85%;
}
.testimonial-gallery.without-gallery-dots {
  padding-bottom: 7px;
}
form .button-wrapper-form a.hs-button.primary:after {
  display: none;
}
.hs_recaptcha.hs-recaptcha.field.hs-form-field {
    max-width: 100%;
    overflow: hidden;
    overflow-x: auto;
    padding: 5px;
}
@media (min-width:981px){
  .home-page-row-five .two-column.col-left {
    width: 64.833%;
  }

  .home-page-row-five .two-column.col-right {
    width: 29.6667%;
  }
  .home-page-row-five  .description {
    margin-bottom: 4.242%;
  }
  .four-column {
    width: 22.75%;
    float: left;
    margin-right: 3%;
  }

  .four-column:last-child {
    margin-right: 0;
  }
}
@media (max-width:1626px){
  .home-page-lay .our-customers .our-customer:last-child .our-customer-in {
    padding-top: 2%;
    padding-bottom: 2%;
  }
}
@media (max-width:980px){
  .home-page-row-two .dnd-section {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .home-page-row-two .description {
    line-height: 1.1;
    margin-bottom: 30px;
  }

  .home-page-row-two .description p {
    padding-bottom: 10px;
  }

  .home-page-row-two .two-column.col-right .column-in {
    width: 80%;
  }
  .home-page-row-five .description {
    margin-bottom: 30px;
  }


  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:first-child img {
    width: 97% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(2) img {
    width: 80% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) img {
    width: 100% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(4) img {
    width: 67% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(6) img {
    width: 73% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col .our-customer-col-in {
    margin-top: 11px !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(2) .our-customer-col-in {
    margin-top: 10px !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) .our-customer-col-in {
    padding-top: 0;
    margin-top: -2px !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(4) .our-customer-col-in {
    padding-top: 17px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(5) .our-customer-col-in {
    padding-top: 19px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(6) .our-customer-col-in {
    padding-top: 4px;
  }

  .home-page-lay .our-customers .our-customer.our-customer-type-6 {
    padding-bottom: 2px;
  }
  .home-page-lay .our-customers .our-customer:last-child .our-customer-in {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width:980px) and (min-width:480px){
  .four-column {
    width: 47.25%;
    margin-right: 5.5%;
    margin-bottom: 30px;
    float: left;
  }

  .four-column:nth-child(2n) {
    margin-right: 0;
  }

  .four-column:last-child,.four-column:nth-last-child(2) {
    margin-bottom: 0;
  }
}
@media (max-width:767px){
  .customers-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) img {
    width: 60% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:first-child img {
    width: 50% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(2) img {
    width: 40% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) img {
    width: 60% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(4) img {
    width: 34% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(6) img {
    width: 40% !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(5) .our-customer-col-in {
    padding-top: 5px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(6) .our-customer-col-in {
    padding-top: 14px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(4) .our-customer-col-in {
    padding-top: 11px;
  }

  .home-page-lay .our-customers .our-customer.our-customer-type-6 {
    padding-bottom: 7px;
  }
  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) img {
    margin-left: auto;
    margin-right: 0;
  }
  .policy-page-lay main table .st-key {display: none;}

  .policy-page-lay main table .st-val {
    border-right-width: 1px;
    border-right-style: solid;
  }
}
@media (max-width:479px){
  .four-column {
    margin-bottom: 30px;
  }

  .four-column:last-child {
    margin-bottom: 0;
  }
  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) img {
    margin-right: auto;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(2) .our-customer-col-in {
    padding-top: 2px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(3) .our-customer-col-in {
    margin-top: 0px !important;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(4) .our-customer-col-in {
    padding-top: 3px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(5) .our-customer-col-in {
    padding-top: 10px;
  }

  .home-page-lay .our-customers .our-customer-type-6 .our-customer-col:nth-child(6) .our-customer-col-in {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .home-page-lay .our-customers .our-customer.our-customer-type-6 {
    padding-bottom: 5px;
  }

  main .home-page-row-two .widget-type-header {
    margin-bottom: 15px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */
.website-header {
  margin-top: 0px;
  padding:20px 0;
  position: relative;
}
.header-wrap {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.col-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}

.col-middle {
  /* flex: 4 3 0; */
  justify-content: center;
}

.col-right {
  display: flex;
  flex-direction:row;
  flex-wrap: nowrap;
  /* flex: 2 1 0; */
  justify-content: right;
  /* max-width: 314px; */
  padding-right: 1rem;
}

.col-right .content {
  margin-left: .5rem;
}


.mobile_trigger {
  float: right;
  display: none;
}

span.mobile_trigger_menu_bar {
  position: relative;
  display: block;
  line-height: 0;
  -webkit-transform: translateY(3%);
  transform: translateY(3%);
}

.header-menu .hs-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  float: none;
  justify-content: center;
}

.header-menu .hs-menu-wrapper > ul {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  line-height: 1.7em;
  margin-left: -11px;
  margin-right: -11px;
}

.header-menu .hs-menu-wrapper > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0;
}
.header-menu .hs-menu-wrapper > ul > li:hover::after,
.header-menu .hs-menu-wrapper > ul > li.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 10px;
  width: calc(100% - 20px);
  height: 4px;
  border-radius: 2px;
}

.header-menu .hs-menu-wrapper > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 31px 10px;
  white-space: nowrap;
  font-family: "Bariol", Helvetica, Arial, Lucida, sans-serif;
  font-size: 18px;
}

.header-menu .hs-menu-wrapper > ul > li.hs-item-has-children > a {
  padding-right: 20px;
  position: relative;
}

.header-menu .hs-menu-wrapper > ul > li.hs-item-has-children > a:after {
  font-family: ETmodules;
  content: "3";
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-menu .hs-menu-wrapper > ul ul > li.hs-item-has-children > a {
  padding-right: 20px;
  position: relative;
}

.header-menu .hs-menu-wrapper > ul ul > li.hs-item-has-children > a:after {
  font-family: ETmodules;
  content: "5";
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 800;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-menu .hs-menu-wrapper > ul ul {
  position: absolute;
  z-index: 9999;
  width: auto;
  visibility: hidden;
  opacity: 0;
  padding: 20px 0;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
  border-radius: 4px;
}

.header-menu .hs-menu-wrapper > ul > li > ul {
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%);
}

.header-menu .hs-menu-wrapper > ul li:hover > ul {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
  visibility: visible;
}

.header-menu .hs-menu-wrapper > ul ul ul {
  left: 100%;
  top: 0;
}

.header-menu .hs-menu-wrapper > ul ul ul ul {
  left: auto;
  right: 100%;
}

.header-menu .hs-menu-wrapper > ul ul li {
  position: relative;
  line-height: 2em;
  padding: 0 20px;
  margin: 0;
  display: block;
  font-size: 14px;
}

.header-menu .hs-menu-wrapper > ul ul li a {
  transition: background-color 300ms ease 0ms, background-image 300ms ease 0ms,
    color 300ms ease 0ms;
  font-size: 18px;
  padding: 6px 20px;
  display: block;
  white-space: nowrap;
}

.header-menu .hs-menu-wrapper > ul > li {
  line-height: 1em;
  font-size: 14px;
}

.header-menu .hs-menu-wrapper > ul > li > a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 1200px) {

  .col-right {
    display: none;
  }
  .col-left {
    margin-left: 6px;
  }
  .header-menu {
    display: none;
  }

  .mobile_trigger {
    float: none;
    margin: 0 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;

  }

  span.mobile_trigger_menu_bar:before {
    content: "\61";
    font-size: 32px;
    position: relative;
    left: 0;
    top: 0;
    cursor: pointer;
    font-family: ETmodules !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0;
  }

  .header-col.col-right .header-col-in a.hs-button {
    padding-right: 20px;
  }

  .header-col.col-right {
    overflow: hidden;
  }
  .mobile-menu {
    z-index: 9999;
    background-color: rgba(106, 58, 153, 1.0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    visibility: visible;
    opacity: 1;
    position: absolute;
    top:100%;
    left: 0;
    line-height: 26px;
    padding: 0;
    list-style: none;
    text-align: left;
    display: none;
  }
  .header-left-columns {
    position: relative;
    z-index: 3;
  }
  .mobile-menu .hs-menu-wrapper > ul li > a {
    padding: 15px;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    font-family: "Bariol", Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
  }

  .mobile-menu .hs-menu-wrapper > ul li.hs-item-has-children > a {

  }

  .mobile-menu .hs-menu-wrapper > ul ul li {
    padding-left: 2%;
  }

  .mobile-menu .hs-menu-wrapper > ul ul {
    background-color: rgba(0, 0, 0, 0.03);
    visibility: visible !important;
    display: block !important;
    padding-left: 10px;
  }

  .mobile-menu .hs-menu-wrapper > ul li > a:hover {
    background-color: rgba(0, 0, 0, 0.03);
    opacity: 0.7;
  }
  .mobile-menu {
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }
  .mobile-menu .hs-menu-wrapper > ul li > a {
    color: #fff;
  }
  .header-wrap {
    min-height: 62px;
  }

  .header-left-colum.col-left .header-left-colum-in {
    max-width: 132px;
  }
  .header-col.col-right {
    display: none;
  }
  .fixed-header .header-col.col-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    background-color: rgba(0, 103, 138, 1);
  }
  .fixed-header .website-header-language .header-col.col-right {
    padding-top: 32px;
  }
}

.website-header-language .header-col.col-right {
  padding-right: 65px;
  padding-left: 65px;
}

.website-header-language .header-col.col-right .header-col-in {
  margin-top: 22px;
  margin-bottom: 22px;
}

.website-header-language .globe_class {
  width: 15.5em;
  max-width: 100%;
  background: transparent;
}
.website-header-language ul.active-lan-head {
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 0 0 23px 1em;
  line-height: 26px;
}

.website-header-language ul.active-lan-head a {
  padding: 5px 10px;
  line-height: 1;
  display: block;
  text-decoration: none;
  position: relative;
  padding-right: calc(10px + 0.7em + 0.7em);
}

.website-header-language ul.active-lan-head a:after {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border: 0.35em solid transparent;
  border-top: 0.5em solid;
  position: absolute;
  right: 10px;
  top: calc(50% - 0.175em);
}

.website-header-language .globe_class {
  height: auto;
  border-radius: 0;
  width: 150px;
  text-align: left;
}
.website-header-language .globe_class ul a img {
  margin-right: 0.4em;
}
.website-header-language ul.active-lan-head a {
  padding: 7px 10px 5px;
}
.website-header-language .globe_class:hover .lang_list_class,
.website-header-language .lang_list_class {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 0;
  margin: 0;
  list-style-type: none;
  z-index: 101;
  line-height: 26px;
  transform: none;
  background: transparent;
  text-align: left;
  visibility: hidden;
}
.website-header-language ul.active-lan-head.open-lan-child + .lang_list_class {
  visibility: visible !important;
}
.website-header-language .globe_class:hover .lang_list_class:before,
.website-header-language .lang_list_class:before,
.website-header-language .globe_class:hover .lang_list_class:after,
.website-header-language .lang_list_class:after {
  display: none;
}

.website-header-language .lang_list_class li {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  font-size: inherit !important;
}

.website-header-language .lang_list_class li a.lang_switcher_link {
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  line-height: 1;
  border-width: 0 1px 1px 1px;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

footer.website-footer {
  padding-top: 3vw;
  text-align: center;

}
footer.website-footer a {
  text-decoration: underline;
}
footer.website-footer a.hs-button{
  text-decoration: none;
}
footer p{
  font-size: 16px;
}

.footer-row {
  padding: 2% 5%;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}
.footer-row.footer-row-1 {
  padding: 0 5% !important;
}
@media (min-width: 1220px) {
  .footer-row,
  .footer-row.footer-row-1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.footer-row-1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.footer-row-1 .content{
  margin-right: 60px;
}
.footer-row-1 .content:last-child {
  margin-right: 0;
}
.footer-row-1 .content p{
  padding-bottom: .3rem;
}
.footer-row-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.website-footer h1 {
  margin: 0;
  padding-bottom: 10px;
}

@media (max-width: 1024px) {

}

@media (max-width: 767px) {
  .footer-row-3 .content,
  .footer-row-1 .content{
    margin-bottom: 40px;
  }
  .footer-row-3,
  .footer-row-1 {
    flex-direction: column;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.blog-header {
  text-align: center;
}

.blog-header__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-header__title {
  font-size: 2rem;
}
.blog-header__subtitle {
  margin: 1rem 0 2rem;
}

.blog-header__form {
  margin: 0 1rem;
}

@media screen and (min-width: 768px) {
  .blog-header__form {
    width: 500px;
    margin: 0 auto;
  }
}

.blog-index {
  display: flex;
  flex-wrap: wrap;
  padding: 3.3rem 0;
}
.blog-index:after {
  content: "";
  flex: auto;
}
.blog-index__tag-header {
  flex: 1 0 100%;
  padding: 1rem;
}
.blog-index__tag-subtitle {
  font-size: 1.16rem;
  line-height: 1.1;
}
.blog-index__tag-heading {
  padding-bottom: 1rem;
  border-bottom: 3px solid #D1D6DC;
}
.blog-index__post {
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-index__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-index__post {
    flex:  0 0 calc(100%/3);
  }
}
@media screen and (min-width: 768px) {
  .blog-index__post--large {
    flex: 1 0 100%;
    display: flex;
    justify-items: space-between;
  }
}
.blog-post img {
  max-width: 100%;
}
.blog-index__post-image {
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
  background-image: url('./images/grayscale-mountain.png');
    }
@media screen and (min-width: 768px) {
  .blog-index__post-image--large {
    flex: 1 1 100%;
    padding-bottom: 0;
  }
  .blog-index__post-content--large {
    flex: 1 1 100%;
    padding-left: 2rem;
  }
  .blog-index__post-image--large {
    flex: 1 1 48%;
  }
  .blog-index__post-content--large {
    flex: 1 1 48%;
    padding-left: 2rem;
  }
}
.blog-index__post-content h2 {
  margin: .5rem 0;
}

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

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: Lato, sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;

  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  border-radius: 7px;
}
.blog-pagination__link--active {
  border: 2px solid #B0C1D4;
}
.blog-pagination__link:hover,
.blog-pagination__link:focus {
  text-decoration: none;
}
.blog-pagination__prev-link,
.blog-pagination__next-link {
  display: inline-flex;
  align-items: center;
}
.blog-pagination__prev-link {
  text-align: right;
  margin-right: .25rem;
}
.blog-pagination__next-link {
  text-align: left;
  margin-left: .25rem;
}
.blog-pagination__prev-link--disabled,
.blog-pagination__next-link--disabled {

  pointer-events: none;
  cursor: default;
}
.blog-pagination__prev-link svg,
.blog-pagination__next-link svg {

  margin: 0 5px;
}
.blog-pagination__prev-link--disabled svg,
.blog-pagination__next-link--disabled svg {
  fill: #B0C1D4;
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  border: 2px solid #B0C1D4;
}

.blog-header__author-avatar {
  height: 200px;
  width: 200px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 12px 0 rgba(0,0,0,0.15);
  margin: 0 auto 1.5rem;
}
.blog-header__author-social-links a {
  display: inline-block;
  position: relative;
  background-color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.blog-header__author-social-links a:hover {

}
.blog-header__author-social-links svg {
  fill: #fff;
  height: 15px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blog-post {
  max-width: 960px;
  margin: 0 auto;
  padding: 3.3rem 0;
}
.blog-post h1 {
  font-size: 1.6rem;
}
.blog-post__meta {
  margin: 1rem 0;
}
.blog-post__meta a {

  text-decoration: underline;
}

.blog-post__tags {

}
.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}
.blog-post__tag-link {
  font-size: .8rem;

}

.blog-recent-posts {
  margin-top: 3rem;
  padding: 2rem 0;
}
.blog-recent-posts h2 {
  text-align: center;
}
.blog-recent-posts__list {
  display: flex;
}
.blog-recent-posts__post {
  display: block;
  flex:  0 0 100%;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/2);
  }
}
@media screen and (min-width: 1000px) {
  .blog-recent-posts__post {
    flex:  0 0 calc(100%/3);
  }
}
.blog-recent-posts__post:hover {
  text-decoration: none;
}
.blog-recent-posts__image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-bottom: 63%;
}
.blog-recent-posts__title {
  margin: 1rem 0 .5rem;
}

.blog-comments {
  max-width: 680px;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.grecaptcha-badge {
  margin: 0 !important;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
}

/*             Blog Listing with Sidebar            */

.post-item .page-center{
  display: -webkit-flex; /* Safari */
  display: flex; /* Standard syntax */
  margin-bottom: 20px;
}
.post-item .page-center .span4, .post-item .page-center .span8 {
  -webkit-flex: 1; /* Safari */
  -ms-flex: 1; /* IE 10 */
  flex: 1; /* Standard syntax */
}
.post-item .page-center .span8 {
  flex-basis: 31.914893614%;

}
img.featured-image {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}
@media(max-width: 480px){
  .blog-post img {
    width: 100% !important;
    float: none !important;
  }
}

/*             Blog Grid Listing            */

.blog-index__post.blog-index__post--small {
  display: flex;
}

.blog-index__post-inner-card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  border-radius: 5px;
}

.blog-index__post-image {
  border-radius: 5px 5px 0 0;
}

.blog-index__post-inner-card .blog-index__post-content {
  display: flex;
  flex-direction: column;
  padding: 16px 20px 20px 20px;
  height: 100%;
}

.blog-post__tag-link,
.blog-post__tags {
  font-size: 16px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01rem;
}

.blog-post__tag-link:hover{
  text-decoration: none;
}

.blog-index__post-content--small h2 {
}

.blog-index__post-content--small h2 a:hover {
  text-decoration: none;
  transition: all .5s;
}

.blog-post__meta-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 30px;
}

.blog-post__read-more a:hover {
  text-decoration: none;
}

.read-more__arrow {
  position: relative;
  top: 3px;
  padding-left: 10px;
}

.blog-post__read-more svg {
  width: 15px;
  height: auto;
}

.blog-post__read-more a svg {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media screen and (max-width: 767px) {
  .blog-index.sidebar {
    padding: 1rem 0;
    padding-bottom: 3.3rem;
  }
}

/*             Blog Grid Listing with Sidebar            */

.blog-index.sidebar {
  display:flex;
}

@media screen and (min-width: 1000px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/2);
  }
}

@media screen and (max-width: 999px) {
  .blog-index.sidebar .blog-index__post {
    flex: 0 0 calc(100%/1);
  }
}

.blog-sidebar {
  padding-top: 3.9rem;
}

@media screen and (max-width: 767px) {
  .blog-sidebar {
    padding: 2rem 1rem;
    padding-bottom: 0;
  }
}

.blog-sidebar h3 {

}

.blog-sidebar ul {
  padding: 30px;
  margin: 0 0 40px 0;
  list-style: none;
  border-radius: 5px;
  background: #fff;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-top: 1px solid #dfddd9;
}

.blog-sidebar ul li:first-child {
  border-top-color: transparent;
}

.blog-sidebar a {
  text-decoration: none;
}

.blog-sidebar a:hover {
  text-decoration: none;
}

.blog-sidebar .filter-link-count {
  display: none;
}

.blog-sidebar .filter-expand-link {
  position: relative;
  top: -15px;
  display: block;
  margin-bottom: 25px;
  text-transform: capitalize;
  text-align: center;
}

.blog-sidebar-post-listing ul li {
  padding-left: 2.3em;
  line-height: 24px;
  text-indent: -2.3em;
}

.blog-sidebar-post-listing li:before {
  position: relative;
  width: 22px;
  float: left;
  content: counter(list-item);
  margin-right: 25px;
  font-size: 36px;
  font-weight: 600;
}

.blog-sidebar-post-listing li a {
  position: relative;
  top: -3px;
}

.blog-pagination.span12 {
  display: flex;
  margin-left: 0;
}

/* Mobile Blog Sidebar */

@media(max-width: 767px) {
  .hs-blog-listing .content-wrapper > .row-fluid {
    display: flex;
    flex-direction: column;
  }

  .hs-blog-listing .span3 {
    order: 1;
  }

  .hs-blog-listing .span9 {
    order: 2;
  }

  .hs-blog-listing .blog-pagination {
    order: 3;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter ul,
  .blog-sidebar.mobile .blog-sidebar-post-listing ul {
    visibility: hidden;
    opacity: 0;
    transition: all 5s;
    display: none;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter h3,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3 {
    cursor: pointer;
  }
  .blog-sidebar.mobile .blog-sidebar-topic-filter h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing h3:after {
    content: "+";
    padding-left: 6px;
  }

  .blog-sidebar.mobile .blog-sidebar-topic-filter.clicked h3:after,
  .blog-sidebar.mobile .blog-sidebar-post-listing.clicked h3:after {
    content: "-";
    padding-left: 7px;
  }

  .blog-sidebar.mobile .clicked ul {
    display: block;
    visibility: visible;
    transition: all 1s;
    opacity: 1;
  }
}

/* Blog Subscription Section */

.subscription-form {
  display: block;
  margin: 0 auto;
  padding: 60px 0;
  width: 40%;
  text-align: center;
}

@media (max-width: 767px) {
  .subscription-form {
    width: 85%;
  }
}

.subscription-form label {
  text-align: center;
}

/*             Blog Post Layout          */

.post-featured-image {
  margin-bottom: -110px;
  min-height: 300px;
  background-size: cover;
  border-radius: 5px;
  margin-top: 40px;
  background-position: center center;
}

.blog-post {
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 84px 100px 80px 100px;
  background: #fff;
  border-radius: 5px;
}

.blog-post.no-image {
  margin-top: 50px;
}

.blog-post__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.blog-post__meta a {
  text-decoration: none;
}

.blog-post__links {
  display: block;
  padding: 26px 0;
  margin-top: 20px;
}

.blog-post__back-to-blog {
  text-decoration: none;
}

.blog-post__back-to-blog svg {
  position: relative;
  top: 6px;
  margin-right: 10px;
  width: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

@media (max-width: 767px) {
  .blog-post {
    width: 90%;
    padding: 30px;
  }
}

/* Blog Comments */

.blog-comments {
  max-width: 100%;
}

.comment.depth-0:first-child {
  margin-top: 2em;
}

.comment.depth-1 {
  padding-left: 2em;
  padding-top: 1em;
  margin-top: 1em;
}

.blog-comments form {
  margin-top: 2em;
  padding-top: 2em;
}

/* Related Articles */

.blog-recent-posts__list {
  flex-wrap: wrap;
}

.blog-recent-posts .blog-index__post-content h2 {
  text-align: left;
}

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}
.blog-page-banner .blog-banner-content {
  padding: 32px 0;
  padding-top: 100px;
  text-align: center;
}

.blog-page-banner {
  padding-bottom: 65px;
  background-color: rgba(255, 255, 255, 1.0);
}
@media (max-width:1627px){
  .blog-page-banner {
    padding-bottom: 4.4%;
  }
  .blog-page-banner .blog-banner-content {
    padding-bottom: 2%;
  }
}
@media (max-width:980px){
  .blog-page-banner .blog-banner-content h1 {
    font-size: 46px;
  }

  .blog-page-banner {
    padding-bottom: 50px;
  }

  .blog-page-banner .banner-content {
    padding: 30px 0;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px){
  .blog-page-banner .blog-banner-content h1 {
    font-size: 38px;
  }
}
.blog-page-banner .blog-header {
    background: transparent;
}

.blog-page-banner .blog-header__inner {
    padding: 0;
}

.blog-page-banner .blog-header__subtitle {
    margin: 0;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
.error-page:before {
  content: attr(data-error);
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Lato, sans-serif;
  font-size: 40vw;
  font-weight: bold;
  color: #F3F6F9;
  z-index: -1;
}
@media screen and (min-width: 1100px) {
  .error-page:before {
    font-size: 20rem;
  }
}
.error-page_heading {
  margin-bottom: 1rem;
}

.systems-page {
  padding: 3rem 0px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  width: 650px;
  background-color: #cde3cc;
  border: 1.5px solid #4f7d24;
  border-radius: 6px;
  font-size: .9rem;
  color: #4f7d24;
  padding: 10px;
  max-width: 100%;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Merriweather, serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

/* Error 404 */
.system-page-wrap {}

.system-page-wrap .content-wrapper {
  padding-bottom: 0;
  padding-top: 58px;
  position: relative;
  z-index: 3;
}

.system-page-wrap .content-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #e2e2e2;
  right: 20.875%;
}

.error-page-col-wrap:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.error-page-col {
  float: left;
}

.error-page-col.col-left {
  padding-right: 5.5%;
  width: 79.125%;
  padding-bottom: 23px;
}

.error-page-col.col-right {
  padding-left: 30px;
  padding-bottom: 28px;
  width: 20.875%;
}

.error-page-col h1.not-found-title {
  font-family: 'Bariol',Helvetica,Arial,Lucida,sans-serif;
  font-size: 40px;
}
.error-page-sidebar-row {
  margin-bottom: 30px;
}

.error-page-sidebar-row label,.error-page-sidebar-row h3 {
  font-family: 'Bariol',Helvetica,Arial,Lucida,sans-serif;
  display: block;
  font-size: 24px;
  color: #3f3f3f;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
}

.hs-search-field__bar form {
  position: relative;
  z-index: 3;
}

.hs-search-field__bar form input.hs-search-field__input {
  padding: .7em;
  height: 40px!important;
  margin: 0;
  font-size: 14px;
  line-height: normal!important;
  border: 1px solid #ddd;
  color: #666;
  width: 100%;
  border-radius: 3px;
  background-color: #fff;
  font-family: 'Bariol',Helvetica,Arial,Lucida,sans-serif;
  padding-right: 70px;
}

.hs-search-field__bar form button {
  padding: .7em;
  height: 40px!important;
  margin: 0;
  font-size: 14px;
  line-height: normal!important;
  border: 1px solid #ddd;
  color: #666;
  background-color: #ddd;
  width: 70px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
  font-family: 'Bariol',Helvetica,Arial,Lucida,sans-serif;
}

.hs-search-field__bar form button span {
  display: none;
}

.hs-search-field__bar form button:before {
  content: "Search";
}

.hs-search-field__bar form button {
  outline: none;
}
.error-page-sidebar-row .widget-module ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.error-page-sidebar-row .widget-module ul li {
  margin-bottom: .5em;
}

.error-page-sidebar-row .widget-module ul li a {
  text-decoration: none;
  color: #666;
}

.error-page-sidebar-row .widget-module ul li a:hover {
  text-decoration: none;
  color: #e5bc9c;
}
.hs-search-field__suggestions {
  position: absolute;
  top: 100%;
  width: 100%;
  background: #fff;
}
.hs-search-field__suggestions li {
  padding: 5px 10px;
}
.hs-search-field__suggestions li a:hover {
  background: transparent;
}
ul.hs-search-results__listing li {
  margin-bottom: 60px;
}

ul.hs-search-results__listing .hs-search-results__title {
  font-family: 'Bariol',Helvetica,Arial,Lucida,sans-serif;
  font-size: 34px;
  color: #3f3f3f;
  line-height: 1em;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
  text-decoration: none;
}

ul.hs-search-results__listing .hs-search-results__title:hover {
  color: #3f3f3f;
  text-decoration: none;
}
.error-page-sidebar-row  span.filter-link-count {
  display: none;
}
.hs-search-results__pagination a,.hs-search-results__pagination a:hover {
  color: #0658cc;
  text-decoration: none;
}
.systems-page .form-container {
  max-width: 767px;
}

.systems-page .form-container .hs-form-field {
  margin-bottom: 1rem;
}

.systems-page .form-container .hs-form-field label+a {
  display: block;
  margin-bottom: 6px;
}

.systems-page .form-container  .hs-submit {
  margin-top: 15px;
  margin-bottom: 15px;
}
ul.no-list.hs-error-msgs {
  padding-left: 0;
}
.email-prefs .button-wrapper-form {
  margin-top: 15px;
}
input.email-edit.hs-input {
  max-width: 100%;
  padding: 17px 16px !important;
}
@media (max-width:980px){
  .error-page-col.col-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 42px;
  }

  .error-page-col {
    float: none;
  }

  .system-page-wrap .content-wrapper:before {
    display: none;
  }

  .error-page-col.col-right {
    padding-left: 0;
    width: 100%;
  }

  .system-page-wrap .content-wrapper {
    padding-bottom: 0;
  }
  .systems-page h2 {
    font-size: 23px;
  }
}
.mfp-wrap .mfp-container button:hover{background:transparent!important}.mfp-wrap .mfp-arrow:active{position:absolute;top:50%}.mfp-wrap .mfp-close:active{position:absolute;top:-10px}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after,.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{font-family:ETmodules;speak:none;font-style:normal;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mfp-fade.mfp-bg{opacity:.001;-webkit-transition:all .5s ease-out;transition:all .5s ease-out}.mfp-fade.mfp-bg.mfp-ready{opacity:.8}.mfp-fade.mfp-bg.mfp-removing{opacity:0}.mfp-fade .mfp-wrap.mfp-wrap.mfp-ready .mfp-content{opacity:1}.mfp-fade .mfp-wrap.mfp-wrap.mfp-removing .mfp-content{opacity:0}.mfp-fade .mfp-wrap .mfp-content{opacity:.001;-webkit-transition:all .5s ease-out;transition:all .5s ease-out}.mfp-bg{z-index:1000000;overflow:hidden;background:#0b0b0b;opacity:.8;filter:alpha(opacity=80)}.mfp-bg,.mfp-wrap{top:0;left:0;width:100%;height:100%;position:fixed}.mfp-wrap{z-index:1000001;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-ajax-holder .mfp-content,.mfp-inline-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:zoom-in}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-arrow,.mfp-close,.mfp-counter,.mfp-preloader{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-error .mfp-content,.mfp-s-ready .mfp-preloader{display:none}button.mfp-arrow,button.mfp-close{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;-webkit-box-shadow:none;box-shadow:none}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;filter:alpha(opacity=65);padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:focus,.mfp-close:hover{opacity:1;filter:alpha(opacity=100)}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px}.mfp-arrow{position:absolute;opacity:.55;filter:alpha(opacity=55);top:50%;margin:-32px 0 0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:hover{opacity:1;filter:alpha(opacity=100)}.mfp-arrow-left{left:10px}.mfp-arrow-right{right:10px}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}.mfp-arrow{background:none!important;margin-top:-32px!important;line-height:1em!important}.mfp-arrow,.mfp-arrow:after{width:48px!important;height:48px!important}.mfp-arrow:after{margin:0!important;top:0!important;border:none!important}.mfp-arrow-left{left:0!important}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after,.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{border:none;font-size:64px;color:#fff}.mfp-arrow-left:before,.mfp-arrow-right:before{display:none}.mfp-arrow-left .mfp-a,.mfp-arrow-left:after{content:"\34"}.mfp-arrow-right .mfp-a,.mfp-arrow-right:after{content:"\35"}.mfp-iframe-holder .mfp-close,.mfp-image-holder .mfp-close{font-size:64px;font-family:Open Sans,Arial,sans-serif;font-weight:200;top:-10px;opacity:.2}.mfp-iframe-holder .mfp-close:hover,.mfp-image-holder .mfp-close:hover{opacity:1}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding:40px 0;margin:0 auto}.mfp-figure,img.mfp-img{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,.6);box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media (max-width:900px){.mfp-arrow{-webkit-transform:scale(.75);transform:scale(.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

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

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

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

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
body.compensate-for-scrollbar {
  overflow-y: auto;
  padding-right: 0;
  margin-right: 0 !important;
}
.fancybox-active {
  height: auto;
}
.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}
.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.fancybox-bg {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: 1;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}
.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}
.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 0;
}
.fancybox-slide--image:before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;

}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}
.fancybox-container [data-selectable="true"] {
  cursor: text;
}
.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  background: #000;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}
.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}
.fancybox-button:hover {
  color: #fff;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}
.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}
.fancybox-navigation .fancybox-button div {
  padding: 7px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}
.fancybox-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}
@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
.fancybox-loading {
  animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  transform: translateZ(0) scale(1);
}
@media (max-height: 576px) {

  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}
.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}
.fancybox-share p {
  margin: 0;
  padding: 0;
}
.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #3b5998;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #bd081d;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: #1da1f2;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}
.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}
.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}
@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible;
}

.fancybox-button--close.fancybox-button {
  width: 36px;
  height: 36px;
  background: url(//8819850.fs1.hubspotusercontent-na1.net/hubfs/8819850/raw_assets/public/Extellio/images/fancyClose.png) no-repeat center;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  opacity: 1;
  color: inherit;
}
.fancybox-button--close.fancybox-button svg {
  display: none;
}
.fancybox-slide--image .fancybox-content {
  display: flex;
  position: absolute;
  top: 10%;
  right: 10%;
  bottom: 10%;
  left: 10%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  cursor: default;
}

.fancybox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  overflow-x: hidden;
  position: static;
  width: auto;
}
/**************************\
  Basic Modal Styles
\**************************/

.micromodal {
  display: none;
}

.micromodal.is-open {
  display: block;
}

.micromodal__overlay {
  z-index: 2;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.65);
}

.micromodal__close {
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  background: transparent;
  border: 0;
}

.micromodal__container {
  box-sizing: border-box;
  max-width: 90vw;
  background-color: #fff;
  border-radius: 6px;  
  width: 600px;
}

.micromodal__header {
  background: #6A3A99;
  color: white;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px
}

.micromodal__header__title {
  /* font-family: Prata-Regular,Helvetica,Arial,Lucida,sans-serif; */
  color: white;
  font-size: 26px;
  margin-bottom: 0;
  padding-bottom: 0;
  flex: 1;
}

.micromodal__content {
  position: relative;
  overflow: auto;
  min-height: 400px;
  max-height: calc(90vh - 64px);
  border-radius:6px;
}

.micromodal[aria-hidden="false"] .micromodal__overlay {
  animation: microModalFadeIn .2s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal[aria-hidden="false"] .micromodal__container {
  animation: microModalSlideIn .2s cubic-bezier(0, 0, .2, 1);
}

.micromodal .micromodal__container,
.micromodal .micromodal__overlay {
  will-change: transform;
}

.micromodal__loading__overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px
}

.micromodal__loading__overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: #D3BDF2;
  border-top-color: #6A3A99;
  animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes microModalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes microModalSlideIn {
  from {
    transform: translateY(15%);
  }

  to {
    transform: translateY(0);
  }
}

/**************************\
  Pricing modal styles
\**************************/

.tools{
  display: flex;
  flex-direction: column;
  overflow: visible;
  gap: 12px;
  padding: 20px;
  background: #fff;
}
.tools .tool-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tools .tool-type{
  font-family: Bariol bold,Helvetica,Arial,Lucida,sans-serif;
}
.tools .tool-card .footer{

    justify-content: flex-end;
}

.tools .tool-card .description.alone{
  border-radius: 6px;
  flex-direction: column;
  padding: 15px;
}
.tools .for-all-tools{
  color: #2B384F;
  font-size: 20px;
  line-height: 26px;
  font-family: Bariol bold,Helvetica,Arial,Lucida,sans-serif;

}
.tools .tool-card .description .add-on{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.tools .tool-card .description .add-on div{
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-size: 13px;
  line-height: 22px;
  font-family: Bariol bold,Helvetica,Arial,Lucida,sans-serif;
}

.price-summary{
  display: flex;
  flex-direction: column;
  overflow: visible;
  gap: 12px;
  padding: 20px;
}
.price-summary .addon-item-price{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  font-family: Bariol bold,Helvetica,Arial,Lucida,sans-serif;
  padding: 0px 10px;
}
.price-summary .total-price{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.2px;
  font-family: Bariol bold,Helvetica,Arial,Lucida,sans-serif;
  border: 1px solid rgba(43, 56, 79, 0.1);
  padding: 13px 10px;
  box-shadow: 0px 11px 15px rgba(0, 0, 0, 0.05), 0px 9px 46px rgba(0, 0, 0, 0.03), 0px 24px 38px rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background: rgba(43, 56, 79, 0.1);

}
.contact-form{
  display: flex;
  flex-direction: column;
  overflow: visible;
  gap: 12px;
  padding: 20px;
  padding-bottom: 50px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.2px;
}
.contact-form div{
  display: flex;
  flex-direction: column;
  overflow: visible;
  gap: 4px;
  padding: 0;
}
.modal-footer{
  position: sticky;
  bottom: 0;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 13px 10px;
  border-top: 1px solid #EBF1EF;
  box-shadow: 0px -3px 5px rgba(0, 0, 0, 0.05);
}

.modal-footer .footer-terms label {
  display: flex;
  flex-direction: row;
  justify-content:flex-start;
  align-items: center;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.1px;
  gap: 10px;
}

@media only screen and (min-width: 900px) {
  .tools{
    flex-direction: row;
  }
  .invisible-desktop{
    opacity: 0;
  }
}