/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

*, *:before, *:after {
  box-sizing: border-box;
}
/* ******************************************************************************
*********************************************************************************
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.
 */
 a, abbr, acronym, address, applet, b, big, blockquote, body, center, cite, code, dd, del, dfn, div, dl, dt, em, fieldset, font, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike, strong, sub, sup, tt, u, ul, var {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  vertical-align: baseline;
  background: transparent;
} 

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */


/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

/**
 * 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, a:hover {
  text-decoration: none;
}

/**
 * 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.
 */


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 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: visible;
}

/**
 * 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;
}
img {
  max-width: 100%;
  height: auto;
}
/* ******************************************************************************
*********************************************************************************
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: 50px 0;
}
.banner-area .dnd-section {
  padding: 0;
}

.page-center{
  width: 80%;
}
.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.ab-page .pane-section .dnd-section>.row-fluid,
.main-page .pane-section .dnd-section>.row-fluid {
  padding: 0;
}
.hs_cos_wrapper_type_linked_image {
  display: block;
  line-height: 0;
}

.custo-stories-section .dnd-column .dnd-column .dnd-column, 
.custo-stories-section .dnd-column .dnd-column .dnd-module {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  float: none;
}
.et_pb_image_wrap {
  display: block;
  margin: auto;
  line-height: 0;
}

.custo-stories-section .hs_cos_wrapper_type_rich_text {
  text-align: left;
}

.custo-page .bottom-pane-button .btn {
  box-shadow: 0px 20px 30px -10px rgba(46,120,145,0.29);
}

@media (min-width: 981px){
  .ab-page .dnd-section,
  .main-page .dnd-section{
    padding: 4% 0;
  }
  .ab-page .dnd-section > .row-fluid,
  .main-page .dnd-section > .row-fluid{
    padding: 2% 0;
  }
  .main-page:not(.int-page) .dnd-section > .row-fluid > .dnd-column > .row-fluid-wrapper:not(:last-child){
    margin-bottom: 2.75%;
  }
}
@media (min-width: 1350px){
  .ab-page .dnd-section,
  .main-page .dnd-section{
    padding: 54px 0;
  }
  .ab-page .dnd-section > .row-fluid,
  .main-page .dnd-section > .row-fluid{
    padding: 27px 0;
  }
}
@media (max-width: 980px){
  .ab-page .dnd-section,
  .main-page .dnd-section{
    padding: 50px 0;
  }
  .ab-page .dnd-section > .row-fluid,
  .main-page .dnd-section > .row-fluid{
    padding: 30px 0;
  }
  .main-page:not(.int-page) .dnd-section > .row-fluid > .dnd-column > .row-fluid-wrapper:not(:last-child){
    margin-bottom: 30px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */
@font-face {
  font-family: ETmodules;
  src: url("//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/fonts/modules.ttf") format("truetype"), 
       url("//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/fonts/modules.woff") format("woff"), 
       url("//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/fonts/modules.svg") format("svg");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

body {
  font-family: Open Sans, serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

p {
  padding-bottom: 1em;
}
p:last-of-type {
  padding-bottom: 0;
}
/* Anchor Links */
a {
  color: #2ea3f2;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  padding-bottom: 10px;
  line-height: 1;
  font-weight: 500;
  font-family: Open Sans, serif;
  color: #333;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

strong {
  font-weight: 700;
}

code, pre {
  font-family: Courier New,monospace;
  margin-bottom: 10px;
}

ul,
ol {
  list-style: none;
}
ul{
  list-style-type: disc;
  padding: 0 0 23px 1em;
  padding-bottom: 1em;
}
ol {
  list-style-type: decimal;
  list-style-position: inside;
  padding: 0 0 23px;
  padding-bottom: 1em;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote, q {
  quotes: none;
}
blockquote {
  margin: 20px 0 30px;
  border-left: 5px solid #2ea3f2;
  padding-left: 20px;
}

/* Horizontal Rules */


/* TODO */
small {

}

/* TODO */
mark {

}

sup,
sub {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: none;
}
/* ******************************************************************************
*********************************************************************************
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: 767px;
  font-family: Lato, sans-serif;
}
h3.form-title{
  padding:10px;
}
h3.form-title:empty{
  display:none;
}
.hs-button {
  background-color: #8624E1;
  border-color: #8624E1;
  color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
  border-style:solid;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  padding: .3em 1em;
  line-height: 1.7em;
  position: relative;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0px 20px 30px -10px rgba(134,36,225,0.4);
  background-color: #8624E1;
  border-width: 10px;
  border-color: rgba(0,0,0,0);
  border-radius: 4px;
  letter-spacing: 5px;
  font-size: 14px;
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration:none;
  white-space: normal;
  margin: 10px 0;
}

.hs-button:hover{
  background-color: #5e00b9;
  border-color: #5e00b9;
  color: #fff;
}

.hs-button:active {
  background-color: #ae4cff;
  border-color: #ae4cff;
}


.hs-form label {
  font-size: .83rem;
  color: #33475b;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 4px;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #f2545b;
}
input#hs-pwd-widget-password{
  height:auto !important;
}
input#hs-pwd-widget-password,
.hs-search-field__input,
.hs-input {
  color: #33475b;
  position: relative;
  margin: 0;
  padding: 16px;
  color: #999;
  width: 100%;
  background-color: rgba(110,130,208,0.04);
  border-width:0;
  border-style:solid;
  border-color:#333;
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  border-radius: 4px 4px 4px 4px;
  overflow: hidden;
  border-color: #bec2d8;
  border-bottom-width: 3px;
  max-width: 100%;
}

.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:-moz-placeholder {
  color: #bfbfbf;
}

.hs-input::-webkit-input-placeholder {
  color: #bfbfbf;
}

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}

input#hs-pwd-widget-password:focus,
.hs-search-field__input:focus,
.hs-input:focus {
  outline: none;
}
.hs-input.error {
  border: 1px solid red!important;
}
textarea.hs-input {
  height: auto;
}

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: #c87872;
}
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: #b9554d;
}

.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;
}
.hs-form-field {
  margin-bottom: 18px;
}
.field {
  margin-bottom: 18px;
}

.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: 14px;
  color: #666;
}
.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;
}
.hs-error-msgs {
  padding: 0 !important;
}

.hs-error-msgs label {
  color: red !important;
}
@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: Open Sans, serif;
}
/* ******************************************************************************
*********************************************************************************
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 {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

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

.lp-header  .top-navigation {
  height: 47px;
  box-sizing: unset;
}
@media(min-width:981px){

  .scroll-header .lp-header .top-navigation {
    height: 34px;
  }
}
@media(max-width:980px){
  .lp-header  .top-navigation {
    height: 56px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */


.fw-page > .page-center {
  padding-top: 58px;
  position: relative;
}


.fw-page  ul {
  line-height: 26px;
  padding: 0 0 23px 1em;
}
.fw-page pre {
  padding: 0;
  margin: 0;
  border-radius: 3px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
}
.ft-ain-section .span8 {
  width: 65.667%;
  margin-right: 3%;
}

.ft-ain-section .span4 {
  width: 31.3333%;
  padding-top: 30px;
}

.ft-ain-section .span8 .et_pb_image_0 {
  margin-top: -8vw;
  text-align: center;
}

.ft-ain-section {
  position: relative;
  z-index: 99;
}

.ft-ain-section .span4 > .row-fluid-wrapper:not(:last-child) {
  margin-bottom: 4.787% !important;
}

.ft-page h2 {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2em;
}

.ft-ain-section .span4 p {
  line-height: 2em;
  font-size: 16px;
}

.ft-ain-section .dnd-section > .row-fluid {
  padding-top: 0;
}
.ft-Billing-section .dnd-section > .row-fluid > .dnd-column > .row-fluid-wrapper:not(:last-child) {
  max-width: 800px;
  font-size: 16px;
  line-height: 2em;
  margin-left: auto;
  text-align: center;
  margin-right: auto;
}
.int-page h2 {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2em;
}

.int-main-section .span8 .et_pb_image_0 {
  margin-top: 0;
  margin-bottom: -10%;
}

.int-main-section .dnd-section {
  background-image: linear-gradient(180deg,#ffffff 0%,#F2F2FA 50%)!important;
  position: relative;
}

.int-main-section .dnd-section:after {
  content:'';
  position: absolute;
  pointer-events: none;
  width: 100%;
  display: block;
  background-repeat-y: no-repeat;
  margin-bottom: -1px;
  background-image: url(//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/images/section-curve.svg);
  background-size: 100% 250px;
  bottom: 0;
  height: 250px;
  z-index: 1;
}

.int-main-section .dnd-section > .row-fluid {
  position: relative;
  z-index: 99;
  padding: 0;
}
.sl-main-section .span10 {
  font-size: 16px;
  line-height: 2em;
  max-width: 800px;
  width: 100%;
  margin-right: 0;
  float: none;
}

.sl-main-section .space-col {
  display: none;
}
.sl-main-section .dnd-section {
  position: relative;
}

.sl-main-section .dnd-section:after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%;
  display: block;
  background-repeat-y: no-repeat;
  margin-bottom: -1px;
  bottom: 0;
  height: 600px;
  z-index: 1;
  background-image: url(//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/images/sl-section.svg);
  background-size: 166.666666667% 600px;
}
.sl-main-section .dnd-section > .row-fluid {
  position: relative;
  z-index: 99;
}
.int-page ul {
  line-height: 26px;
}
.ab-main-section .dnd-section {
  text-align: center;
}

.ab-main-section .dnd-section > .row-fluid {
  padding-top: 0;
}

.ab-main-section .et_pb_module {
  margin-top: -8vw;
  margin-bottom: 1.5%;
  position: relative;
  z-index: 99;
}

.ab-main-section .hs_cos_wrapper_type_rich_text {
  display: block;
  font-size: 16px;
  line-height: 2em;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.ab-page h2 {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2em;
}

.ab-investors-section .dnd-section {
  position: relative;
}

.ab-investors-section .dnd-section:after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 100%;
  display: block;
  background-repeat-y: no-repeat;
  margin-bottom: -1px;
  background-image: url(//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/images/section-curve.svg);
  background-size: 100% 250px;
  bottom: 0;
  height: 250px;
  z-index: 9;
}

.ab-investors-section .dnd-section > .row-fluid {
  padding: 0;
  position: relative;
  z-index: 99;
  max-width: 1440px;
}

.ab-investors-section .dnd-section .span7 {
  width: 65.667%;
  margin-right: 3%;
}

.ab-investors-section .dnd-section .span5 {
  width: 31.3333%;
  padding-top: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
}

.ab-investors-section .dnd-section {
  background-image: linear-gradient(180deg,#ffffff 0%,#F2F2FA 50%)!important;
}

.ab-investors-section .dnd-section .span5 p {
  line-height: 2em;
}

.ab-investors-section .dnd-section .span5 > .row-fluid-wrapper {
  margin-bottom: 4.787%;
}

.ab-investors-section .dnd-section .span5 .round13 img {
  max-width: 25%;
}
.ft-ain-section .dnd-section > .row-fluid {
  max-width: 1700px;
}

.ft-covered-section .dnd-section > .row-fluid {
  max-width: 1440px;
}
.ct-main-section .dnd-section > .row-fluid {
  max-width: 1440px;
}

.ct-main-section .span4 {
  margin-right: 3%;
  width: 31.3333%;
}

.ico-ping:before {
  content: '';
}

.ico-ping-trans:before {
  content: '';
}

.ct-Form-section .hs_cos_wrapper_type_rich_text {
  font-size: 16px;
  line-height: 2em;
  max-width: 800px;
  margin: 0 auto;
  display: block;
  margin-bottom: 2.75%;
}

.ct-Form-section form {
  position: relative;
  max-width: unset !important;
  margin-left: -3%;
}

.ct-Form-section form fieldset {
  max-width: 100% !important;
}

.ct-Form-section form .field {
  margin-bottom: 3%;
  padding: 0 0 0 3%;
}

.ct-Form-section form .field > label {
  display: none;
}

.ct-Form-section form .field .input {
  margin: 0 !important;
}

.ct-Form-section form .hs-input::placeholder {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  color: rgb(117, 117, 117);
}

.ct-Form-section form textarea {
  min-height: 150px;
  display: block;
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;  
  font-size: 16px;
  line-height: 1.8em;
  border-radius: 4px 4px 4px 4px;
  overflow: hidden;
  border-color: #bec2d8;
  border-bottom-width: 3px;
}

.grecaptcha-badge {
  margin-right: 0 !important;
}

.ct-Form-section form .actions {
  text-align: right;
}

.ct-Form-section form .actions input {
  margin: 0;
}
.ct-page .hs_error_rollup label {
  text-align: right;
}
.hm-Features-section .dnd-section > .row-fluid {
  max-width: 1440px;
  padding-bottom: 0;
  padding-top: 27px!important;
}

.hm-Features-section .span4 {
  margin-right: 3%;
  width: 31.3333%;
}

.ico-calculator:before {
  content: '';
}

.ico-unlock:before {
  content: '';
}

.ico-card:before {
  content: '';
}

.hm-Billing-section .hs_cos_wrapper_type_rich_text {
  font-size: 16px;
  line-height: 2em;
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.hm-Video-section {
  position: relative;
  background-image: linear-gradient(130deg,#5800d3 25%,#490077 100%)!important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  margin-top: 100px;
  margin-bottom: 60px;
}

.hm-Video-section:after {
  position: absolute;
  pointer-events: none;
  width: 100%;
  display: block;
  background-repeat-y: no-repeat;
  margin-bottom: -1px;
  background-size: 100% 480px;
  bottom: 0;
  height: 480px;
  z-index: 1;
  background-image: url(//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/images/hm-fi.svg);
  content: '';
}
.hm-Video-section .mod-item5 > .row-fluid {
  padding-top: 0;
  margin-bottom: 80px;
}

.hm-Video-section .mod-item6 > .row-fluid {
  max-width: 1440px;
  padding-bottom: 0;
  position: relative;
  z-index: 99;
}

.hm-Video-section .span8 {
  width: 65.667%;
  margin-right: 3%;
}

.hm-Video-section .span4 {
  width: 31.3333%;
  font-size: 16px;
  line-height: 2em;
}

.hm-Video-section .span4 > .row-fluid-wrapper:not(:last-child) {
  margin-bottom: 4.787% !important;
}

.hm-Video-section .span8 .et_pb_image {
  margin-bottom: -10%;
}

.hm-Integrations-section .dnd-section {
  background-image: linear-gradient(180deg,#ffffff 0%,#F2F2FA 50%)!important;
  position: relative;
}

.hm-Integrations-section .dnd-section:after {
  position: absolute;
  pointer-events: none;
  width: 100%;
  display: block;
  background-repeat-y: no-repeat;
  margin-bottom: -1px;
  background-image: url(//26879851.fs1.hubspotusercontent-eu1.net/hubfs/26879851/raw_assets/public/Billforward_August_2020/images/hm-sec.svg);
  background-size: 100% 250px;
  bottom: 0;
  height: 250px;
  z-index: 1;
  transform: rotateY(180deg);
  content: '';
}

.hm-Integrations-section .dnd-section > .row-fluid {
  width: 90%;
  max-width: 90%;
  position: relative;
  z-index: 99;
  font-size: 16px;
  line-height: 2em;
}

.hm-Integrations-section h3 {
  text-transform: uppercase;
  font-size: 20px;
  color: #c1c1c1!important;
  letter-spacing: 4px;
  line-height: 1.6em;
}

.hm-Integrations-section ul {
  line-height: 26px;
}

.hm-Integrations-section ul li {
  line-height: 2em;
  color: #000000;
}

.hm-Integrations-section .span8 {
  text-align: right;
}

.hm-Integrations-section .span8 img {
  width: 100%;
}

.hm-Integrations-section .span4 > *:not(:last-child) {
  margin-bottom: 9.27% !important;
}

.combo-section {
  background-image: linear-gradient(180deg,#ffffff 0%,#F2F2FA 50%)!important;
}

.combo-section .mod-item9 > .row-fluid {
  max-width: 1440px;
}

.combo-section .span4 {
  margin-right: 3%;
  width: 31.3333%;
}

.combo-section .span4 > *:first-child {
  margin-bottom: 10px!important;
}

.combo-section .span4 > *:not(:first-child):not(:last-child) {
  margin-bottom: 4.787% !important;
}

.success_testimonial {
  line-height: 1.5;
  position: relative;
  box-shadow: 0px 2px 50px 0px rgba(110,130,208,0.18);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px 10px 10px 10px;
  overflow: hidden;
}

.et_pb_testimonial_portrait {
  border-radius: 90px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  border: 0 solid #333;
  float: none;
  display: block;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 2em;
  border-color: #ffffff;
  padding-bottom: 0px;
  width: 90px;
  height: 90px;
}

.et_pb_testimonial_portrait:before {
  border-radius: 90px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
  box-shadow: inset 0 0 3px rgba(0,0,0,.3);
}

.et_pb_testimonial_description {
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 2em;
}

.et_pb_testimonial_description p {
  padding-bottom: 1em;
}

p.et_pb_testimonial_meta {
  display: none;
}

.hm-Subscribe-section .dnd-section > .row-fluid {
  padding: 80px 0;
}

.hm-Subscribe-section h4 {
  color: #333;
  padding-bottom: 10px;
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4em;
}
.hm-Subscribe-section .span2 {
  width: 20.875%;
}

.hm-Subscribe-section .span8 {
  width: 47.25%;
}

.hm-Subscribe-section form {
  position: relative;
  max-width: 100% !important;
  padding-top: 25px;
  font-size: 16px;
  line-height: 2em;
}

.hm-Subscribe-section .span8 > * {
  margin: 0 !important;
}

.hm-Subscribe-section form .field > label {
  display: none;
}

.hm-Subscribe-section form .hs-input {
  font-family: inherit;
  background-color: rgba(110,130,208,0.08);
  line-height: normal;
  padding: 14px 4%!important;
  border-color: #bec2d8;
  border-bottom-width: 3px;
  font-size: 16px;
  color: #666 !important;
}

.hm-Subscribe-section form .hs-input::placeholder {
  color: rgb(117, 117, 117);
}
#footer-bottom a:hover {
  opacity: .7;
}
.hm-Subscribe-section form .actions input {
  margin: 0;
  width: 100%;
}
span.blueText {
  color: #2A00FF;
}
.hm-Subscribe-section form .field {
  line-height: 2em;
  padding-bottom: 1em;
  margin-bottom: 0;
}

.actions:after {
  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;
  font-size: 1.6em;
  font-size: 32px;
  line-height: 1em;
  content: "\35";
  opacity: 0;
  position: absolute;
  margin-left: -1em;
  -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;
  color: #FFF;
  z-index: 9999;
  opacity: 1;
  left: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  transform: translateX(56px );
  font-size: 22.4px;
  opacity: 0;
}
.hm-Subscribe-section form .actions:hover input {
  padding-right: calc(14px + 1em);
}
.actions:hover:after {
  transform: translateX(76px );
  opacity: 1;
  pointer-events: none;
}

.actions {
  position: relative;
  display: inline-block;
}
.hm-page .actions {
  width: 100%;
}
.ct-Form-section form .hs-submit {
  text-align: right;
}
.et_pb_newsletter_form form .actions {
  width: 100%;
}
.et_pb_newsletter_form form .actions:hover input {
  padding-right: calc(14px + 1em);
}
.ct-Form-section form .actions:hover input {
  padding-right: calc(14px + 1em);
  padding-left: 10px;
}

.ct-Form-section form .actions:hover:after {
  transform: translateX(54px);
}
.banner-form-wrapper .form-col form .actions {
  width: 100%;
}

.banner-form-wrapper .form-col form .actions:after {
  color: #5968af;
}
.banner-form-wrapper .form-col form .actions:hover input {
  padding-right: calc(14px + 1em);
}
.hs-button:hover {
  letter-spacing: 5.5px;
}
.hs-button:hover {
  letter-spacing: 5.5px;
}

.hs-button:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: ETmodules!important;
  speak: none;
  line-height: 1em;
  content: "\35";
  opacity: 0;
  position: absolute;
  margin-left: -1em;
  -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;
  font-size: 22.4px;
}

.hs-button:hover:after {
  opacity: 1;
  margin-left: 0;
}
.hs-landing-page .actions:hover:after {
    transform: translateX(63px);
}
@media (min-width: 981px){
  .fw-page > .page-center:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #e2e2e2;
    right: 20.875%;
  }

  .fw-page .left-area {
    width: 79.125%;
    padding-bottom: 23px;
    float: left;
    padding-right: 5.5%;
  }
}
@media (max-width: 980px){
  .fw-page > .page-center .left-area {
    padding-bottom: 20px;
  }
  .custo-logo-section .span3 {
    margin-bottom: 30px;
    width: 47.25%;
    margin-right: 5.5%;
    float: left;
  }

  .custo-logo-section .span3:nth-child(2n) {
    margin-right: 0;
  }

  .custo-logo-section .span3:nth-child(3n) {
    margin-bottom: 0;
  }

  .custo-logo-section .span3:last-child {
    margin-bottom: 0;
  }
  .ft-ain-section .span8 .et_pb_image_0 {
    margin-top: 0;
  }

  .ft-ain-section .span8 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .ft-ain-section .span4 {
    width: 100%;
  }
  .ft-page h2 {
    font-size: 35px;
  }
  .ft-ain-section .span4>.row-fluid-wrapper:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .ft-Getaway-section .span4:not(:last-child) {
    margin-bottom: 30px;
  }
  .int-page h2 {
    font-size: 35px;
  }

  .int-main-section .dnd-section:after {
    background-size: 100% 150px;
    bottom: 0;
    height: 150px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }

  .int-Logo-section .span4:not(:last-child),
  .int-Logo-section .span6:not(:last-child) {
    margin-bottom: 30px;
  }
  .sl-main-section .span10 {
    margin-bottom: 30px !important;
  }

  .sl-main-section .dnd-section:after {
    background-size: 166.666666667% 220px;
    bottom: 0;
    height: 220px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }
  .ab-main-section .et_pb_module {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .ab-page h2 {
    font-size: 35px;
  }

  .ab-investors-section .dnd-section .span7 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .ab-investors-section .dnd-section .span5 {
    width: 100%;
  }

  .ab-investors-section .dnd-section .span5>.row-fluid-wrapper {
    margin-bottom: 30px;
  }

  .ab-investors-section .dnd-section .span5>.row-fluid-wrapper:last-child {
    margin-bottom: 0;
  }

  .ab-investors-section .dnd-section .span5 .round13 img {
    margin: 0 auto;
    display: block;
  }

  .ab-investors-section .dnd-section:after {
    background-size: 100% 150px;
    bottom: 0;
    height: 150px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }
  .ct-main-section .span4 {
    margin-right: 0;
    width: 100%;
  }

  .ct-main-section .span4:not(:last-child) {
    margin-bottom: 30px;
  }

  .ct-Form-section .hs_cos_wrapper_type_rich_text {
    margin-bottom: 30px;
  }
  .hm-Features-section .span4 {
    width: 100%;
    margin-right: 0;
  }

  .hm-Features-section .span4:not(:last-child) {
    margin-bottom: 30px;
  }

  .hm-Video-section .span8 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .hm-Video-section .span4 {
    width: 100%;
  }

  .hm-Video-section:after {
    background-size: 100% 150px;
    bottom: 0;
    height: 150px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }

  .hm-Integrations-section .span4>*:not(:last-child) {
    margin-bottom: 30px !important;
  }

  .hm-Integrations-section .span4 {
    margin-bottom: 30px;
  }

  .hm-Integrations-section .dnd-section:after {
    background-size: 100% 150px;
    bottom: 0;
    height: 150px;
    z-index: 1;
    transform: rotateY(180deg) rotateX(0);
  }

  .combo-section .mod-item8 {
    padding-top: 5%;
  }

  .combo-section .span4 {
    margin-right: 0;
    width: 100%;
  }

  .combo-section .span4:not(:last-child) {
    margin-bottom: 30px;
  }

  .et_pb_testimonial_portrait {
    float: left;
    display: block;
    margin-right: 30px;
  }

  .combo-section .span4>*:not(:first-child):not(:last-child) {
    margin-bottom: 30px !important;
  }

  .hm-Subscribe-section .space-col {
    display: none;
  }

  .hm-Subscribe-section .span8 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 30px;
  }

  .hm-Subscribe-section .span8 > * {
    width: 100%;
  }

  .hm-Subscribe-section .span8 > *:first-child {
    -ms-flex-item-align: start;
    align-self: start;
  }

  .hm-Subscribe-section .span8 > *:last-child {
    padding-left: 40px;
  }

  .hm-Subscribe-section form {
    padding-top: 0;
  }

  .hm-Subscribe-section .dnd-section {
    padding-bottom: 5% !important;
  }
  .hm-Video-section .span4>.row-fluid-wrapper:not(:last-child) {
    margin-bottom: 30px !important;
  }
}
@media (max-width: 767px){
  .ft-page h2 {
    font-size: 28px;
  }
  .ab-page h2,
  .int-page h2 {
    font-size: 28px;
  }
  .ab-investors-section .dnd-section:after,
  .int-main-section .dnd-section:after {
    background-size: 100% 110px;
    bottom: 0;
    height: 110px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }
  .int-Billing-section .mod-item5 {
    padding-top: 0 !important;
  }
  .sl-main-section .dnd-section:after {
    background-size: 166.666666667% 160px;
    bottom: 0;
    height: 160px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }
  .sl-Billing-section .mod-item3 {
    padding-top: 0 !important;
  }
  .ct-Form-section form .field {
    float: none !important;
    width: 100% !important;
  }
  .hm-Video-section .span4>.row-fluid-wrapper:not(:last-child) {
    margin-bottom: 30px !important;
  }

  .hm-Video-section:after {
    background-size: 100% 110px;
    bottom: 0;
    height: 110px;
    z-index: 1;
    transform: rotateY(0) rotateX(0);
  }

  .hm-Integrations-section .dnd-section:after {
    background-size: 100% 110px;
    bottom: 0;
    height: 110px;
    z-index: 1;
    transform: rotateY(180deg) rotateX(0);
  }

  .et_pb_testimonial_portrait {
    display: block;
    float: none;
    margin: 0 auto 20px;
  }

  .hm-Subscribe-section .span8 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .hm-Subscribe-section .span8>*:last-child {
    padding-top: 25px;
    padding-left: 0;
  }
}
@media (max-width: 479px){
  .custo-logo-section .span3 {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 30px !important;
  }

  .custo-logo-section .span3:last-child {
    margin-bottom: 0 !important;
  }
  .ct-page .hs-input {
    width: 100% !important;
  }
  .ct-Form-section form .field {
    overflow-x: auto;
  }
}

/* ================= Animation.css====================== */







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

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

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

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

@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
  }

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

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }

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

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

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

@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
  }

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

@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }

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

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

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

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-60%);
  }

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

@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-60%);
    transform: translatey(-60%);
  }

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

@-webkit-keyframes fadeOutTop {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(-60%);
  }
}

@keyframes fadeOutTop {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(-60%);
    transform: translatey(-60%);
  }
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translatey(60%);
  }

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

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translatey(60%);
    transform: translatey(60%);
  }

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

@-webkit-keyframes fadeOutBottom {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(60%);
  }
}

@keyframes fadeOutBottom {
  0% {
    opacity: 1;
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translatey(60%);
    transform: translatey(60%);
  }
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }

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

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

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

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

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

@-webkit-keyframes Grow {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(.5);
  }

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

@keyframes Grow {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
  }

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideWidth {
  0% {
    width: 0;
  }
}

@keyframes slideWidth {
  0% {
    width: 0;
  }
}

@-webkit-keyframes gridFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-5%);
  }

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

@keyframes gridFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translatey(-5%);
    transform: translatey(-5%);
  }

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

/*!
* Animate.css - http://daneden.me/animate
* Licensed under the MIT license - http://opensource.org/licenses/MIT
* Copyright (c) 2015 Daniel Eden
*/
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.et-waypoint {
  opacity: 0;
}

.et-waypoint.et_pb_animation_off,.et_pb_animation_off {
  opacity: 1;
}

.et-animated li span .et_pb_counter_amount {
  opacity: 1;
  -webkit-animation: slideWidth 1s cubic-bezier(.77,0,.175,1) 1;
  animation: slideWidth 1s cubic-bezier(.77,0,.175,1) 1;
  position: relative;
}

.et_pb_animation_left.et-animated {
  opacity: 1;
  -webkit-animation: fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;
}

.et_pb_animation_right.et-animated {
  opacity: 1;
  -webkit-animation: fadeRight 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeRight 1s cubic-bezier(.77,0,.175,1) 1;
}

.et_pb_animation_top.et-animated {
  opacity: 1;
  -webkit-animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
}

.et_pb_animation_bottom.et-animated {
  opacity: 1;
  -webkit-animation: fadeBottom 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeBottom 1s cubic-bezier(.77,0,.175,1) 1;
}

.et_pb_animation_fade_in.et-animated {
  opacity: 1;
  -webkit-animation: fadeIn 1s cubic-bezier(.77,0,.175,1) 1;
  animation: fadeIn 1s cubic-bezier(.77,0,.175,1) 1;
}

@media (max-width: 980px) {
  .et_pb_animation_left_tablet.et-animated {
    opacity:1;
    -webkit-animation: fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_right_tablet.et-animated {
    opacity: 1;
    -webkit-animation: fadeRight 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeRight 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_top_tablet.et-animated {
    opacity: 1;
    -webkit-animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_bottom_tablet.et-animated {
    opacity: 1;
    -webkit-animation: fadeBottom 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeBottom 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_fade_in_tablet.et-animated {
    opacity: 1;
    -webkit-animation: fadeIn 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeIn 1s cubic-bezier(.77,0,.175,1) 1;
  }
}

@media (max-width: 767px) {
  .et_pb_animation_left_phone.et-animated {
    opacity:1;
    -webkit-animation: fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeLeft 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_right_phone.et-animated {
    opacity: 1;
    -webkit-animation: fadeRight 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeRight 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_top_phone.et-animated {
    opacity: 1;
    -webkit-animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeTop 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_bottom_phone.et-animated {
    opacity: 1;
    -webkit-animation: fadeBottom 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeBottom 1s cubic-bezier(.77,0,.175,1) 1;
  }

  .et_pb_animation_fade_in_phone.et-animated {
    opacity: 1;
    -webkit-animation: fadeIn 1s cubic-bezier(.77,0,.175,1) 1;
    animation: fadeIn 1s cubic-bezier(.77,0,.175,1) 1;
  }
}

.et_animated {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both!important;
  animation-fill-mode: both!important;
}

.et_animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.et_had_animation {
  position: relative;
}

@-webkit-keyframes et_pb_fade {
  to {
    opacity: 1;
  }
}

@keyframes et_pb_fade {
  to {
    opacity: 1;
  }
}

.et_animated.fade {
  -webkit-animation-name: et_pb_fade;
  animation-name: et_pb_fade;
}

@-webkit-keyframes et_pb_fadeTop {
  0% {
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes et_pb_fadeTop {
  0% {
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.et_animated.fadeTop {
  -webkit-animation-name: et_pb_fadeTop;
  animation-name: et_pb_fadeTop;
}

@-webkit-keyframes et_pb_fadeRight {
  0% {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes et_pb_fadeRight {
  0% {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.et_animated.fadeRight {
  -webkit-animation-name: et_pb_fadeRight;
  animation-name: et_pb_fadeRight;
}

@-webkit-keyframes et_pb_fadeBottom {
  0% {
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes et_pb_fadeBottom {
  0% {
    -webkit-transform: translate3d(0,100%,0);
    transform: translate3d(0,100%,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.et_animated.fadeBottom {
  -webkit-animation-name: et_pb_fadeBottom;
  animation-name: et_pb_fadeBottom;
}

@-webkit-keyframes et_pb_fadeLeft {
  0% {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes et_pb_fadeLeft {
  0% {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.et_animated.fadeLeft {
  -webkit-animation-name: et_pb_fadeLeft;
  animation-name: et_pb_fadeLeft;
}

@-webkit-keyframes et_pb_slide {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes et_pb_slide {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.et_animated.slide {
  -webkit-animation-name: et_pb_slide;
  animation-name: et_pb_slide;
}

@-webkit-keyframes et_pb_slideTop {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes et_pb_slideTop {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.et_animated.slideTop {
  -webkit-animation-name: et_pb_slideTop;
  animation-name: et_pb_slideTop;
}

@-webkit-keyframes et_pb_slideRight {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes et_pb_slideRight {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.et_animated.slideRight {
  -webkit-animation-name: et_pb_slideRight;
  animation-name: et_pb_slideRight;
}

@-webkit-keyframes et_pb_slideBottom {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes et_pb_slideBottom {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.et_animated.slideBottom {
  -webkit-animation-name: et_pb_slideBottom;
  animation-name: et_pb_slideBottom;
}

@-webkit-keyframes et_pb_slideLeft {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@keyframes et_pb_slideLeft {
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

.et_animated.slideLeft {
  -webkit-animation-name: et_pb_slideLeft;
  animation-name: et_pb_slideLeft;
}

@-webkit-keyframes et_pb_bounce {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  60% {
    -webkit-transform: scale3d(1.03,1.03,1.03);
    transform: scale3d(1.03,1.03,1.03);
  }

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

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

@keyframes et_pb_bounce {
  0%,20%,40%,60%,80%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: scale3d(.3,.3,.3);
    transform: scale3d(.3,.3,.3);
  }

  20% {
    -webkit-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
  }

  40% {
    -webkit-transform: scale3d(.9,.9,.9);
    transform: scale3d(.9,.9,.9);
  }

  60% {
    -webkit-transform: scale3d(1.03,1.03,1.03);
    transform: scale3d(1.03,1.03,1.03);
  }

  80% {
    -webkit-transform: scale3d(.97,.97,.97);
    transform: scale3d(.97,.97,.97);
  }

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

.et_animated.bounce {
  -webkit-animation-name: et_pb_bounce;
  animation-name: et_pb_bounce;
}

@-webkit-keyframes et_pb_bounceTop {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(0,-200px,0);
    transform: translate3d(0,-200px,0);
  }

  60% {
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_bounceTop {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(0,-200px,0);
    transform: translate3d(0,-200px,0);
  }

  60% {
    -webkit-transform: translate3d(0,25px,0);
    transform: translate3d(0,25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,-10px,0);
    transform: translate3d(0,-10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,5px,0);
    transform: translate3d(0,5px,0);
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.bounceTop {
  -webkit-animation-name: et_pb_bounceTop;
  animation-name: et_pb_bounceTop;
}

@-webkit-keyframes et_pb_bounceRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(200px,0,0);
    transform: translate3d(200px,0,0);
  }

  60% {
    -webkit-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(-5px,0,0);
    transform: translate3d(-5px,0,0);
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_bounceRight {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(200px,0,0);
    transform: translate3d(200px,0,0);
  }

  60% {
    -webkit-transform: translate3d(-25px,0,0);
    transform: translate3d(-25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(10px,0,0);
    transform: translate3d(10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(-5px,0,0);
    transform: translate3d(-5px,0,0);
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.bounceRight {
  -webkit-animation-name: et_pb_bounceRight;
  animation-name: et_pb_bounceRight;
}

@-webkit-keyframes et_pb_bounceBottom {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(0,200px,0);
    transform: translate3d(0,200px,0);
  }

  60% {
    -webkit-transform: translate3d(0,-25px,0);
    transform: translate3d(0,-25px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

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

@keyframes et_pb_bounceBottom {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(0,200px,0);
    transform: translate3d(0,200px,0);
  }

  60% {
    -webkit-transform: translate3d(0,-25px,0);
    transform: translate3d(0,-20px,0);
  }

  75% {
    -webkit-transform: translate3d(0,10px,0);
    transform: translate3d(0,10px,0);
  }

  90% {
    -webkit-transform: translate3d(0,-5px,0);
    transform: translate3d(0,-5px,0);
  }

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

.et_animated.bounceBottom {
  -webkit-animation-name: et_pb_bounceBottom;
  animation-name: et_pb_bounceBottom;
}

@-webkit-keyframes et_pb_bounceLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(-200px,0,0);
    transform: translate3d(-200px,0,0);
  }

  60% {
    -webkit-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(5px,0,0);
    transform: translate3d(5px,0,0);
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_bounceLeft {
  0%,60%,75%,90%,to {
    -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }

  0% {
    -webkit-transform: translate3d(-200px,0,0);
    transform: translate3d(-200px,0,0);
  }

  60% {
    -webkit-transform: translate3d(25px,0,0);
    transform: translate3d(25px,0,0);
  }

  75% {
    -webkit-transform: translate3d(-10px,0,0);
    transform: translate3d(-10px,0,0);
  }

  90% {
    -webkit-transform: translate3d(5px,0,0);
    transform: translate3d(5px,0,0);
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.bounceLeft {
  -webkit-animation-name: et_pb_bounceLeft;
  animation-name: et_pb_bounceLeft;
}

@-webkit-keyframes et_pb_zoom {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes et_pb_zoom {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.et_animated.zoom {
  -webkit-animation-name: et_pb_zoom;
  animation-name: et_pb_zoom;
}

@-webkit-keyframes et_pb_zoomTop {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes et_pb_zoomTop {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.et_animated.zoomTop {
  -webkit-animation-name: et_pb_zoomTop;
  animation-name: et_pb_zoomTop;
  -webkit-transform-origin: top;
  transform-origin: top;
}

@-webkit-keyframes et_pb_zoomRight {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes et_pb_zoomRight {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.et_animated.zoomRight {
  -webkit-animation-name: et_pb_zoomRight;
  animation-name: et_pb_zoomRight;
  -webkit-transform-origin: right;
  transform-origin: right;
}

@-webkit-keyframes et_pb_zoomBottom {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes et_pb_zoomBottom {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.et_animated.zoomBottom {
  -webkit-animation-name: et_pb_zoomBottom;
  animation-name: et_pb_zoomBottom;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

@-webkit-keyframes et_pb_zoomLeft {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes et_pb_zoomLeft {
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}

.et_animated.zoomLeft {
  -webkit-animation-name: et_pb_zoomLeft;
  animation-name: et_pb_zoomLeft;
  -webkit-transform-origin: left;
  transform-origin: left;
}

@-webkit-keyframes et_pb_flip {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

@keyframes et_pb_flip {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

.et_animated.flip {
  -webkit-animation-name: et_pb_flip;
  animation-name: et_pb_flip;
}

@-webkit-keyframes et_pb_flipTop {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

@keyframes et_pb_flipTop {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

.et_animated.flipTop {
  -webkit-animation-name: et_pb_flipTop;
  animation-name: et_pb_flipTop;
}

@-webkit-keyframes et_pb_flipRight {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

@keyframes et_pb_flipRight {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

.et_animated.flipRight {
  -webkit-animation-name: et_pb_flipRight;
  animation-name: et_pb_flipRight;
}

@-webkit-keyframes et_pb_flipBottom {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

@keyframes et_pb_flipBottom {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

.et_animated.flipBottom {
  -webkit-animation-name: et_pb_flipBottom;
  animation-name: et_pb_flipBottom;
}

@-webkit-keyframes et_pb_flipLeft {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

@keyframes et_pb_flipLeft {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

.et_animated.flipLeft {
  -webkit-animation-name: et_pb_flipLeft;
  animation-name: et_pb_flipLeft;
}

@-webkit-keyframes et_pb_fold {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

@keyframes et_pb_fold {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

.et_animated.fold {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: et_pb_fold;
  animation-name: et_pb_fold;
}

@-webkit-keyframes et_pb_foldTop {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

@keyframes et_pb_foldTop {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

.et_animated.foldTop {
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-animation-name: et_pb_foldTop;
  animation-name: et_pb_foldTop;
}

@-webkit-keyframes et_pb_foldRight {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

@keyframes et_pb_foldRight {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

.et_animated.foldRight {
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-animation-name: et_pb_foldRight;
  animation-name: et_pb_foldRight;
}

@-webkit-keyframes et_pb_foldBottom {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

@keyframes et_pb_foldBottom {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateX(0deg);
    transform: perspective(0) rotateX(0deg);
  }
}

.et_animated.foldBottom {
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-animation-name: et_pb_foldBottom;
  animation-name: et_pb_foldBottom;
}

@-webkit-keyframes et_pb_foldLeft {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

@keyframes et_pb_foldLeft {
  to {
    opacity: 1;
    -webkit-transform: perspective(0) rotateY(0deg);
    transform: perspective(0) rotateY(0deg);
  }
}

.et_animated.foldLeft {
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-animation-name: et_pb_foldLeft;
  animation-name: et_pb_foldLeft;
}

@-webkit-keyframes et_pb_roll {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_roll {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.roll {
  -webkit-animation-name: et_pb_roll;
  animation-name: et_pb_roll;
}

@-webkit-keyframes et_pb_rollTop {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }

  to {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_rollTop {
  0% {
    -webkit-transform-origin: top;
    transform-origin: top;
  }

  to {
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.rollTop {
  -webkit-animation-name: et_pb_rollTop;
  animation-name: et_pb_rollTop;
}

@-webkit-keyframes et_pb_rollRight {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  to {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_rollRight {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  to {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.rollRight {
  -webkit-animation-name: et_pb_rollRight;
  animation-name: et_pb_rollRight;
}

@-webkit-keyframes et_pb_rollBottom {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }

  to {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_rollBottom {
  0% {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }

  to {
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.rollBottom {
  -webkit-animation-name: et_pb_rollBottom;
  animation-name: et_pb_rollBottom;
}

@-webkit-keyframes et_pb_rollLeft {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  to {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes et_pb_rollLeft {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  to {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

.et_animated.rollLeft {
  -webkit-animation-name: et_pb_rollLeft;
  animation-name: et_pb_rollLeft;
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

.header {
  background-color: transparent;
}

.header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}

.header__row-1,
.header__row-2 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.header__row-1 {
  padding-top: 20px;
}

.header__menu--flex {
  display: flex;
}
#nav-toggle {
  display: none;
}

/* Styles for the Logo */

.header__logo {
  display: flex;
  align-items: center;
  max-width: 200px;
  height: auto;
  margin-left: 22px;
  margin-right: auto;
  overflow: hidden;
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 28px;
  margin-top: 7px;
}

.header__logo--tablet {
  display: none;
}

.header__logo--main {
  padding-top: 20px;
}

/* Styles for the Search Bar */

.header__search {
  width: auto;
  padding: 0 22px;
}

.header__search .hs-search-field__input {
  box-sizing: border-box;
  background-color: white;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
  background-repeat: no-repeat;
  background-position: center right 15px;
  color: #666;
  border: 1.79px solid #D1D6DC;
  border-radius: 6px;
  font-family: Open Sans, serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 42;
  padding: 0 15px;
  height: 45px;
}

.header__search .hs-search-field--open .hs-search-field__input {
  border: 1.79px solid #D1D6DC;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background-color: white;
}

.header__search .hs-search-field__input::placeholder {
  color: transparent;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  position: absolute;
  width: 100%;
  background-color: white;
  border-top: -2px solid white;
  border: 1.79px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-family: Open Sans, serif;
  font-size: 22px;
}

.header__search .hs-search-field__suggestions li a {
  color: #666;
  text-decoration: none;
  padding: 3px 15px;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

/* Styles for the Language Switcher Component */

.header__language-switcher {
  padding-right: 35px;
  cursor: pointer;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  display: block;
  visibility: hidden;
  opacity: 0;
  font-family: Open Sans, serif;
  font-size: 0.8rem;
  color: #666;
  top: 42px;
  left: calc(100% - 24px);
  padding-top: 0;
  min-width: 100px;
  text-align: left;
  transition: opacity 0.3s;
  border: 1.79px solid #D1D6DC;
  border-radius: 6px;
  box-shadow: 0 2px 9px 0 rgba(0,0,0,0.2)
}

.header__language-switcher:hover .lang_list_class {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s;
}

.header__language-switcher .lang_list_class:before {
  top: -24px;
  left: 70%;
  border-bottom-color: #D1D6DC;
  border-radius: 6px;
}

.header__language-switcher .lang_list_class:after {
  top: -22px;
  left: 70%;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  border-bottom-color: #EBEFF3;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  padding: 10px 15px;
  font-size: 18px;
}

.header__language-switcher .lang_list_class li:first-child {
  border-top: none;
  border-radius: 6px 6px 0 0;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  background-color: #EBEFF3;
  transition: background-color 0.3s;
}

.header__language-switcher .lang_list_class li a {
  font-family: Open Sans, serif;
  color: #666;
}

.header__language-switcher .lang_list_class li a:hover {
  color: #666;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  font-size: 18px;
  margin-left: 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}
.header__language-switcher--label-current:after {
  content: "";
  display: block;
  height: 0px;
  width: 0px;
  margin-top: 3px;
  margin-left: 10px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #666;
}

/* Tablet Styles */

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }

  .header__logo--main {
    display: none;
  }

  .header__logo--tablet {
    display: block;
  }
}

/* Mobile Styles */

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 20px 0 0;
  }

  .header__container form {
    max-width: 100%;
  }

  .header__logo {
    width: 100%;
    margin: 0 auto;
  }

  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    display: block;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    height: calc(100vh - 115px);
    background-color: transparent;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    position: relative;
    cursor: pointer;
    margin: 0 5vw;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-right: auto;
    margin-left: 0;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    position: absolute;
    left: 40px;
    top: -10px;
    font-weight: 600;
    font-size: 26px;
    text-transform: uppercase;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 30px;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 25px;
    width: 25px;
    cursor: pointer;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-right: 0;
    padding-left: 30px;
  }

  .header__language-switcher .lang_list_class {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 0;
    left: 30px;
    border: none;
    border-radius: 0;
    box-shadow: unset;
    padding: 0 30px;
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 22px;
  }
  .header__language-switcher--label-current {
    display: none;
  }
  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover {
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__search {
    order: 1;
    padding: 30px;
    border-top: 2px solid #CED4DB;
  }

  .header__search .hs-search-field__input {
    padding-left: 15px;
  }

  .header__search .hs-search-field__suggestions li {
    padding: 10px 0;
  }

  .header__close--toggle {
    display: none;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-size: 110%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    margin-right: 0;
  }

  .header__close--toggle.show {
    display: block;
  }
}












/* ======================== Custom Header ======================= */


header#main-header {
  transition: background-color .4s,color .4s,transform .4s,opacity .4s ease-in-out,-webkit-transform .4s;
  z-index: 99999;
  background-color: #fff;
  width: 100%;
  box-shadow: 0 1px 0 rgba(0,0,0,.1);
  line-height: 23px;
  font-weight: 500;
  position: fixed;
  top: 0;
}

#main-header .page-center {
  width: 100%;
  max-width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
}

.logo_container {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  position: absolute;
  height: 100%;
  width: 100%;
}

span.logo_helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.logo_container img {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  margin-bottom: 0;
  max-height: 54%;
  display: inline-block;
  float: none;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  width: auto !important;
}

.logo_container a {
}

div#hs_cos_wrapper_header_logo {
  display: none;
}

.top-navigation {
  font-weight: 600;
  float: right;
  padding-top: 33px;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  padding-left: 156px;
}

.mobile_nav_menu {
  display: none;
}

.top-menu-nav {
  line-height: 0;
  float: left;
}

.top-menu-nav .hs-menu-wrapper > ul {
  list-style: none;
  line-height: 0;
}

.top-menu-nav .hs-menu-wrapper > ul > li {
  display: inline-block;
  font-size: 14px;
  padding-right: 22px;
  position: relative;
  line-height: 1em;
}

.top-menu-nav .hs-menu-wrapper > ul > li:last-child {
  padding: 0;
}

.top-menu-nav .hs-menu-wrapper > ul li.hs-item-has-children > ul.hs-menu-children-wrapper {
  padding: 20px 0;
  width: 240px;
  position: absolute;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateZ(0);
  text-align: left;
}

.top-menu-nav .hs-menu-wrapper > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 1;
  visibility: visible;
}
.top-menu-nav .hs-menu-wrapper > ul > li > a {
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  color: rgba(0,0,0,.6);
  padding-bottom: 33px;
}

.top-menu-nav .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-menu-nav .hs-menu-wrapper > ul > li > a:hover {
  opacity: .7;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.top-menu-nav .hs-menu-wrapper > ul > li.active > a, 
.top-menu-nav .hs-menu-wrapper > ul > li.active-branch > a {
  color: #2ea3f2;
}
.top-menu-nav .hs-menu-wrapper > ul > li.hs-item-has-children > a {
  padding-right: 20px;
}

.top-menu-nav .hs-menu-wrapper > ul ul{
  border-top: 3px solid #2ea3f2;
  border-color: #2ea3f2;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.1);
}
.top-menu-nav .hs-menu-wrapper > ul ul li {
  position: relative;
  line-height: 2em;
  display: inline-block;
  font-size: 14px;
  padding: 0 20px;
  margin: 0;
}

.top-menu-nav .hs-menu-wrapper > ul ul li a {
  text-decoration: none;
  display: block;
  position: relative;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  padding: 6px 20px;
  width: 200px;
  color: rgba(0,0,0,0.7);
}

.top-menu-nav .hs-menu-wrapper > ul ul li a:hover {
  background-color: rgba(0,0,0,.03);
  opacity: .7;
}

.top-menu-nav .hs-menu-wrapper > ul ul li.active > a, 
.top-menu-nav .hs-menu-wrapper > ul ul li.active-branch > a {
  color: red;
  background: yellow;
}

.body-wrapper {
  transition: margin-top .4s ease-in-out;
  -webkit-transition: margin-top .4s ease-in-out;
  -moz-transition: margin-top .4s ease-in-out;
  padding-top: 80px;
  overflow-y: hidden;
  margin-top: -1px;
}
@media (min-width:981px){
  .scroll-header header#main-header {
    box-shadow: 0 0 7px rgba(0,0,0,.1);
  }

  .scroll-header .top-navigation {
    padding-top: 20px;
  }

  .scroll-header .top-menu-nav .hs-menu-wrapper > ul > li > a {
    padding-bottom: 20px;
  }

  .scroll-header.body-wrapper {
    margin-top: -27px;
  }
}
@media (max-width:1020px) and (min-width:981px){
  .top-menu-nav .hs-menu-wrapper > ul > li {
    padding-right: 17px;
  }
}

@media (max-width:980px){
  header#main-header {
    position: absolute;
  }

  .body-wrapper {
    position: relative;
    padding-top: 80px;
    margin-top: 0;
  }

  #main-header .page-center {
    width: 80%;
    max-width: 1080px;
    padding: 0;
  }

  .logo_container img {
    max-width: 50%;
  }

  .top-navigation {
    padding-top: 24px;
    display: block;
    padding-left: 156px;
  }

  .top-menu-nav {
    display: none;
  }

  .mobile_nav_menu {
    display: block;
    float: right;
  }

  .menu_bar_toggle {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 24px;
  }

  .menu_bar_toggle:before {
    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;
    color: #2ea3f2;
    content: "\61";
    font-size: 32px;
    position: relative;
    left: 0;
    top: 0;
    cursor: pointer;
  }

  .mobile-menu-wrapper {
    visibility: visible;
    opacity: 1;
    display: none;
    z-index: 9999;
    position: absolute;
    left: 0;
    width: 100%;
  }
  .mobile-menu-wrapper .hs-menu-wrapper > ul {
    list-style: none;
    border-color: #2ea3f2;
    border-top: 3px solid #2ea3f2;
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    background: #fff;
    padding: 5%;
  }

  .mobile-menu-wrapper .hs-menu-wrapper > ul > li > a {
    font-size: 14px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-bottom: 1px solid rgba(0,0,0,.03);
    color: #666;
    padding: 10px 5%;
    display: block;
  }

  .mobile-menu-wrapper .hs-menu-wrapper > ul > li.hs-item-has-children > a {
    font-weight: 700;
    background-color: rgba(0,0,0,.03);
  }

  .mobile-menu-wrapper .hs-menu-wrapper > ul > li > a:hover {
    background-color: rgba(0,0,0,.03);
    opacity: .7;
  }

  .mobile-menu-wrapper .hs-menu-wrapper > ul ul {
    padding-left: 10px;
  }

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

  .mobile-menu-wrapper .hs-menu-wrapper > ul ul li a {
    font-size: 14px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    border-bottom: 1px solid rgba(0,0,0,.03);
    color: #666;
    padding: 10px 5%;
    display: block;
  }

  .mobile-menu-wrapper .hs-menu-wrapper > ul ul li a:hover {
    background-color: rgba(0,0,0,.03);
    opacity: .7;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


#footer-widgets {
  padding: 6% 0 0;
}

.footer-widget {
  float: left;
}

#et-footer-nav .hs-menu-wrapper > ul {
  padding: 15px 0;
}

#et-footer-nav .hs-menu-wrapper > ul li {
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
  padding-right: 22px;
}

#et-footer-nav .hs-menu-wrapper > ul li a {
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

#et-footer-nav .hs-menu-wrapper > ul li a:hover {
  opacity: .7;
}

div#footer-bottom {
  padding: 15px 0 5px;
}

.footer-social-share {
  float: right;
}

.footer-social-share ul {
  padding: 0;
}

.footer-social-share ul li {
  display: inline-block;
  margin-left: 20px;
}

.footer-social-share ul li a {
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  position: relative;
  text-align: center;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.footer-social-share ul li a span {
  display: none;
}

.footer-social-share ul li a:before {
  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;
}

.et-social-twitter a.icon:before {
  content: "\e094";
}

.et-social-rss a.icon:before {
  content: "\e09e";
}

footer#main-footer {
  line-height: 1.7em;
}

.copyright {
  float: left;
}

@media (min-width: 981px) {
  .footer-widget {
      margin-bottom: 5.5%;
  }
}

@media(max-width:980px){
  #footer-widgets {
    padding: 8% 0;
}

#et-footer-nav .hs-menu-wrapper > ul {
    text-align: center;
}

.copyright {
    float: none;
}

.footer-social-share {
    float: none;
}

.footer-social-share ul {
    text-align: center;
    margin: 0 0 5px;
}
}

@media(max-width:767px){
  #footer-widgets {
    padding: 10% 0;
}
}

@media(max-width:479px){
  #footer-widgets {
    padding: 12% 0;
}
.footer-widget {
  margin-bottom: 11.5%!important;
}
}
/* ******************************************************************************
*********************************************************************************
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;
  padding: 0 20px;
  margin: 0 auto;
}

.blog-header {
  background-color: {
    {
      dnd_accent_bg_color
    }
  }

  ; 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-content--small h2 {
  font-size: {
    {
      h3_font_size
    }
  }

  ; }

.blog-index__post-content p {
  font-family: {
    {
      secondary_font_family
    }
  }

  ; }

.blog-index__post-content a {
  color: {
    {
      body_color
    }
  }

  ; }

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

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: {
    {
      secondary_font_family
    }
  }

  ; margin-bottom: 3.3rem;
}

.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: {
    {
      body_color
    }
  }

  ; 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 {
  color: #B0C1D4;
  pointer-events: none;
  cursor: default;
}

.blog-pagination__prev-link svg, .blog-pagination__next-link svg {
  fill: {
    {
      body_color
    }
  }

  ; 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 {
  background-color: {
    {
      body_color
    }
  }

  ; }

.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 {
  color: {
    {
      body_color
    }
  }

  ; text-decoration: underline;
}

.blog-post__tags {
  font-family: {
    {
      secondary_font_family
    }
  }

  ; color: #000;
}

.blog-post__tags svg {
  width: 15px;
  height: auto;
  margin-right: 10px;
}

.blog-post__tag-link {
  font-size: .8rem;
  color: #000;
}

.blog-recent-posts {
  margin-top: 3rem;
  background-color: {
    {
      dnd_accent_bg_color
    }
  }

  ; 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%;
  color: {
    {
      body_color
    }
  }

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

.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .hs-button {
  background-color: transparent;
  border: 2px solid {
    {
      form_button_color
    }
  }

  ; color: {
    {
      form_button_color
    }
  }

  ; }

.blog-comments .hs-button:hover {
  background-color: {
    {
      form_button_color
    }
  }

  ; color: {
    {
      form_button_text_color
    }
  }

  ; }

.blog-comments .comment-reply-to {
  border: 0 none;
}

.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: {
    {
      form_button_color
    }
  }

  ; }

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

/* ===================== Custom Blog ================================== */
.bottom-pane-wrapper {
  position: relative;
}

.blog-ly .banner-title-wrapper {
  margin: 0;
}

.banner .page-center.form-container {
  padding-top: 0;
}

.banner-form-wrapper:after {
  display: table;
  content: '';
  width: 100%;
}

.banner-form-wrapper {
}

.banner-form-wrapper .space-col {
  width: 20.875%;
  margin-right: 5.5%;
  float: left;
  min-height: 1px;
}

.banner-form-wrapper .space-col:last-child {
  margin-right: 0;
}

.banner-form-wrapper .form-col {
  margin-right: 5.5%;
  width: 47.25%;
  float: left;
}

.banner-form-wrapper .form-col form {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  padding-top: 25px;
}

.banner-form-wrapper .form-col form .field > label {
  display: none;
}

.banner-form-wrapper .form-col form .hs-input {
  margin: 0;
  border: 0 solid #333;
  width: 100%;
  font-weight: 400;
  border-width: 0;
  border-radius: 3px;
  padding: 14px 4%;
  font-size: 16px;
  border-color: rgba(255,255,255,0.3);
  border-bottom-width: 3px;
  background-color: rgba(255,255,255,0.21);
  color: #fff;
  line-height: normal;
}

.banner-form-wrapper .form-col form .field {
  margin: 0;
  padding-bottom: 1em;
}

.banner-form-wrapper .form-col form .hs-input::placeholder {
  color: #ffffff;
}

.banner-form-wrapper .form-col form .actions input {
  width: 100%;
  text-align: center;
  background-color: #9efaff;
  color: #5968af;
  border-color: rgba(0,0,0,0);
  box-shadow: 0px 20px 30px -10px rgba(50,11,142,0.4);
  margin:0;
}

.blog-list-wrapper {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F2F2FA;
}

.blog-list-inner {
  padding-top: 20px;
  padding-bottom: 20px;
}

.blog-list-pan:after {
  content: '';
  display: table;
  width: 100%;
}

.post-list-item {
  float: left;
  width: 29.667%;
  margin-right: 5.5%;
}

.post-list-item:nth-child(3n) {
  margin-right: 0;
}

.post-list-item:nth-child(3n + 1) {
  clear: left;
}

.post-list-item-inner {
  border: 1px solid #d8d8d8;
  padding: 19px;
  background-color: #fff;
  box-shadow: 0px 2px 70px 0px rgba(110,130,208,0.18);
  border-radius: 10px 10px 10px 10px;
  border-width: 0px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all .3s ease-in-out;
}

.post-list-item-inner:hover {
  box-shadow: 0px 2px 20px 0px rgba(110,130,208,0.18);
}

.post-list-item-inner h4.entry-title {
  font-size: 18px;
  line-height: 1.3em;
  margin-top: 20px;
  margin-bottom: 10px;
  min-height: 75px;
  padding-bottom: 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit !important;
}

.post-list-item-inner h4.entry-title a {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif!important;
  font-weight: 700;
}

.post-list-item-inner p.post-meta {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6em;
  min-height: 90px;
}

.post-list-item-inner .post-content {
  line-height: 1.8em;
  min-height: 120px;
}

.bottom-pane-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
  background-color: #fff;
  padding-top: 10vw;
  padding-bottom: 7vw;
  background-image: linear-gradient(130deg,#7876FE 0%,#99D1FF 100%);
}

.bottom-pane_divider {
  position: absolute;
  pointer-events: none;
  width: 100%;
  display: block;
  background-repeat-y: no-repeat;
  margin-top: -1px;
  background-size: 100% 250px;
  top: 0;
  height: 250px;
  z-index: 1;
  transform: rotateX(180deg);
}

.bottom-pane-wrapper .page-center {
  position: relative;
}

.bottom-pane-wrapper .page-center.content-page-center {
  width: 89%;
  max-width: 89%;
}

.bottom-pane-content-inner {
  max-width: 850px;
  margin: 0 auto;
  margin-bottom: 2.75%;
  text-align: center;
}

.bottom-pane-button {
  text-align: center;
}

.bottom-pane-content-inner h3 {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 5px;
  line-height: 2em;
  text-align: center;
}

.bottom-pane-content-inner h2 {
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.4em;
  color: #fff;
}

.btn {
  font-size: 20px;
  font-weight: 500;
  padding: .3em 1em;
  line-height: 1.7em;
  background-color: transparent;
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid;
  border-radius: 3px;
  -webkit-transition: all .2s;
  transition: all .2s;
  position: relative;
  display: inline-block;
}

.bottom-pane-button .btn {
  box-shadow: 0px 20px 30px -10px rgba(50,11,142,0.4);
  transition: all 300ms ease 0ms;
  padding: 18px 34px;
  color: #5968af;
  border-width: 0px;
  border-color: rgba(0,0,0,0);
  border-radius: 4px;
  letter-spacing: 5px;
  font-size: 14px;
  font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  background-image: linear-gradient(90deg,#9ed8ff 0%,#aaffdb 100%);
}

.btn:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: ETmodules!important;
  speak: none;
  font-size: 32px;
  line-height: 1em;
  content: "\35";
  opacity: 0;
  position: absolute;
  margin-left: -1em;
  -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;
}

.bottom-pane-button .btn:after {
  transition: all 300ms ease 0ms;
  font-size: 1.6em;
}

.bottom-pane-button .btn:hover {
  letter-spacing: 5.5px;
}

.bottom-pane-button .btn:hover:after {
  -webkit-transition: none!important;
  transition: none!important;
  opacity: 1;
  margin-left: 0;
}

ul.bottom-pane-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 26px;
  text-align: center;
}

ul.bottom-pane-social-link li {
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
}

ul.bottom-pane-social-link li a {
  border: 0 solid #333;
  margin-right: 4px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  position: relative;
  background: #fcb6ab;
  height: 32px;
  width: 32px;
  padding: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 34px 34px 34px 34px;
}

ul.bottom-pane-social-link li a:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-shadow: 0 0;
  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;
  height: 32px;
  width: 32px;
  font-size: 16px;
  line-height: 32px;
  display: block;
  color: #fff;
  transition: color .3s;
  -moz-transition: color .3s;
  -webkit-transition: color .3s;
  position: relative;
  z-index: 10;
}

.et_pb_social_media_follow_network_name {
  display: none;
}

ul.bottom-pane-social-link li:last-child a {
  margin-right: 0;
}

.et-social-linkedin a.icon:before {
  content: "\e09d";
}
.post-list_image_container {
  margin: -20px -20px 29px;
  position: relative;
  margin-bottom: 0;
}

.post-list_image_container a {
  display: block;
  position: relative;
  margin-bottom: 0;
}

.post-list_image_container a img {
  vertical-align: bottom;
  min-width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}
.blog-post-wrapper .page-center {
  text-align: left;
  position: relative;
  padding-top: 58px;
}
.blog-post-wrapper div#left-area {
  width: 79.125%;
  padding-bottom: 23px;
  float: left;
  padding-right: 5.5%;
}

.blog-post {
  max-width: 100%;
  padding: 0;
  padding-bottom: 25px;
  margin-bottom: 27px;
}

.blog-post_meta_wrapper h1 {
  font-size: 30px;
}

.blog-post_meta_wrapper p {
  margin-bottom: 6px;
  font-size: 14px;
  padding-bottom: 15px;
}

.blog-post_meta_wrapper p a {
  text-decoration: none;
  color: #666;
}

.blog-post_meta_wrapper img {
  width: 100%;
}

.blog-post-content {
  padding-top: 30px;
}

@media (min-width: 981px) {
  .bottom-pane-wrapper .page-center,
  .blog-list-wrapper .page-center {
    padding: 2% 0;
  }
  .blog-post-wrapper .page-center:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #e2e2e2;
    right: 20.875%;
  }
}

@media only screen and (min-width: 1350px) {
  .bottom-pane-wrapper .page-center,
  .blog-list-wrapper .page-center {
    padding: 27px 0;
  }
}

@media (max-width: 980px) {
  .banner-form-wrapper .space-col {
    display: none;
  }

  .banner-form-wrapper .form-col {
    margin: 0;
    width: 100%;
    float: none;
  }

  .banner-form-wrapper .form-col form {
    padding-left: 40px;
    padding-top: 0;
  }

  .banner-form-wrapper {
    margin-bottom: 30px;
  }
  .blog-list-wrapper .page-center {
    padding: 30px 0;
  }

  .post-list-item {
    width: 47.25%;
  }

  .post-list-item:nth-child(2n) {
    margin-right: 0;
  }

  .post-list-item:nth-child(3n) {
    margin-right: 5.5%;
  }

  .post-list-item:nth-child(3n+1) {
    clear: none;
  }

  .bottom-pane-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .bottom-pane_divider {
    background-size: 100% 150px;
    top: 0;
    height: 150px;
    z-index: 1;
    transform: rotateY(0) rotateX(180deg);
  }

  .bottom-pane-wrapper .page-center {
    padding: 30px 0;
  }

  .bottom-pane-wrapper .page-center.content-page-center {
    width: 80%;
    max-width: 80%;
  }

  .bottom-pane-content-inner h2 {
    font-size: 40px;
  }

  .bottom-pane-content-inner h3 {
    font-size: 16px;
  }

  .bottom-pane-content-inner {
    margin-bottom: 30px;
  }
  .post-list-item-inner {
    margin-bottom: 30px;
  }
  .page-center.form-container {
    padding-bottom: 27px!important;
  }
  .blog-post-wrapper div#left-area {
    width: 100%;
    padding: 0;
  }
}
@media(max-width:767px){
  .banner-form-wrapper .form-col form {
    padding-top: 25px;
    padding-left: 0;
  }

  .post-list-item {
    width: 100%;
    margin-right: 0 !important;
  }

  .post-list-item-inner {
    margin-bottom: 9.5%;
  }

  .bottom-pane-content-inner h2 {
    font-size: 32px;
  }

  .bottom-pane-content-inner h3 {
    font-size: 14px;
  }

  .bottom-pane_divider {
    background-size: 100% 110px;
    top: 0;
    height: 110px;
    z-index: 1;
    transform: rotateY(0) rotateX(180deg);
  }
}
@media (max-width: 479px){
  .post-list-item-inner {
    margin-bottom: 11.5%;
  }
}
/* BASICS */

.my-syntax-highlighter pre {
    padding: 0;
    margin: 0;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

.my-syntax-highlighter .CodeMirror {
    border-radius: 3px;
}

.my-syntax-highlighter .CodeMirror pre {
    height: 24px;
    margin: 0 !important;
}

.my-syntax-highlighter .CodeMirror-linenumber {
    text-align: center;
}
.CodeMirror {
    height: 100% !important;
}

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor-mark {
  background-color: rgba(20, 255, 20, 0.5);
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
}
.cm-animate-fat-cursor {
  width: auto;
  border: 0;
  -webkit-animation: blink 1.06s steps(1) infinite;
  -moz-animation: blink 1.06s steps(1) infinite;
  animation: blink 1.06s steps(1) infinite;
  background-color: #7e7;
}
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: -20px;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 30px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -30px; margin-right: -30px;
  padding-bottom: 30px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 30px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -30px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }



.cm-s-eclipse span.cm-meta { color: #FF1717; }
.cm-s-eclipse span.cm-keyword { line-height: 1em; font-weight: bold; color: #7F0055; }
.cm-s-eclipse span.cm-atom { color: #219; }
.cm-s-eclipse span.cm-number { color: #164; }
.cm-s-eclipse span.cm-def { color: #00f; }
.cm-s-eclipse span.cm-variable { color: black; }
.cm-s-eclipse span.cm-variable-2 { color: #0000C0; }
.cm-s-eclipse span.cm-variable-3, .cm-s-eclipse span.cm-type { color: #0000C0; }
.cm-s-eclipse span.cm-property { color: black; }
.cm-s-eclipse span.cm-operator { color: black; }
.cm-s-eclipse span.cm-comment { color: #3F7F5F; }
.cm-s-eclipse span.cm-string { color: #2A00FF; }
.cm-s-eclipse span.cm-string-2 { color: #f50; }
.cm-s-eclipse span.cm-qualifier { color: #555; }
.cm-s-eclipse span.cm-builtin { color: #30a; }
.cm-s-eclipse span.cm-bracket { color: #cc7; }
.cm-s-eclipse span.cm-tag { color: #170; }
.cm-s-eclipse span.cm-attribute { color: #00c; }
.cm-s-eclipse span.cm-link { color: #219; }
.cm-s-eclipse span.cm-error { color: #f00; }

.cm-s-eclipse .CodeMirror-activeline-background { background: #e8f2ff; }
.cm-s-eclipse .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; }


.cm-s-eclipse span.cm-meta {
    color: #FF1717;
}

.cm-s-eclipse span.cm-keyword {
    line-height: 1em;
    font-weight: bold;
    color: #7F0055;
}

.cm-s-eclipse span.cm-atom {
    color: #219;
}

.cm-s-eclipse span.cm-number {
    color: #164;
}

.cm-s-eclipse span.cm-def {
    color: #00f;
}

.cm-s-eclipse span.cm-variable {
    color: black;
}

.cm-s-eclipse span.cm-variable-2 {
    color: #0000C0;
}

.cm-s-eclipse span.cm-variable-3, .cm-s-eclipse span.cm-type {
    color: #0000C0;
}

.cm-s-eclipse span.cm-property {
    color: black;
}

.cm-s-eclipse span.cm-operator {
    color: black;
}

.cm-s-eclipse span.cm-comment {
    color: #3F7F5F;
}

.cm-s-eclipse span.cm-string {
    color: #2A00FF;
}

.cm-s-eclipse span.cm-string-2 {
    color: #f50;
}

.cm-s-eclipse span.cm-qualifier {
    color: #555;
}

.cm-s-eclipse span.cm-builtin {
    color: #30a;
}

.cm-s-eclipse span.cm-bracket {
    color: #cc7;
}

.cm-s-eclipse span.cm-tag {
    color: #170;
}

.cm-s-eclipse span.cm-attribute {
    color: #00c;
}

.cm-s-eclipse span.cm-link {
    color: #219;
}

.cm-s-eclipse span.cm-error {
    color: #f00;
}

.cm-s-eclipse .CodeMirror-activeline-background {
    background: #e8f2ff;
}

.cm-s-eclipse .CodeMirror-matchingbracket {
    outline: 1px solid grey;
    color: black !important;
}
/* ******************************************************************************
*********************************************************************************
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 20px;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: 650px;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4F7D24;
  padding: .1rem .75rem;
}

.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.hs-search-results__title {
  font-family: Open Sans, serif;
  font-size: 1.25rem;
  color: #666;
  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: #666;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}
div#content {
  max-width: 650px;
  min-width: 0;
  width: 100%;
}
@media (max-width:479px){
  .systems-page h2 {
    font-size: 20px;
  }
}