/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */











































/* Slider */
.slick-slider
{
    position: relative;

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

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

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

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

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

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

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

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

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

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

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

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
/* ******************************************************************************
*********************************************************************************
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.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * 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.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 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;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

.dnd-section {
  padding: 80px 0;
}

.banner-section .dnd-section,
.banner-section .row-fluid {
  padding: 0 !important;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dnd-section .widget-type-cell {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

body {
  font-family: "Open Sans",sans-serif;
  font-size: 1rem;
  color: #494a52;
  line-height: 1.45;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Open Sans",sans-serif;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
  outline: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Helvetica", Verdana, Arial, sans-serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.175rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: .9rem;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

/* Horizontal Rules */
hr {
  color: #ccc;
  background-color: #ccc;
  height: 1px;
  border: none;
}

/* 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: auto;
}

.disable-focus-styles :focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
/* ******************************************************************************
*********************************************************************************
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: 500px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.hs-button {
  margin: 20px 0;
  cursor: pointer;
  display: inline-block;
  border: 1px solid #396167;
  background-color: #494A52;
  border-color: #494A52;
  color: #fff;
  text-decoration: none !important;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  box-shadow: 0 1px 1px #eee;
}

.hs-button:hover, .hs-button:focus {
  background-color: #21222a;
  border-color: #21222a;
  color: #fff;
}

.hs-button:active {
  background-color: #71727a;
  border-color: #71727a;
}

.hs-search-module label,
.inputs-list label,
.hs-form-field label {
  color: #33475b;
  display: block;
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  padding-bottom: 4px;
}

.hs-error-msgs label {
  padding-top: 8px;
  font-size: 12px;
  font-weight: lighter;
  line-height: 1.45;
  color: #f2545b !important;
}

#hs-pwd-widget-password,
.hs-search-field__input,
.hs-input {
  color: #33475b;
  display: block;
  width: 100%;
  font-size: 14px;
  outline: none;
  line-height: 1.3;
  border: 1px solid #bbbbbb;  
  background-color: #fcfcfc;
  padding: 6px 10px;
  height: 42px;
  font-weight: 100;
  transition: all ease-in-out .15s;
  border-radius: 4px;
  font-family: "Open Sans",sans-serif;
  box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px 0px inset;
}

.systems-page input.email-edit.hs-input {
  padding: 0 15px !important;
  font-size: 21px !important;
}

#hs-pwd-widget-password {
  height: 42px !important;
  margin: 0 0 15px !important;
}

.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 input,
.hs-input textarea {
  transition: border 0.2s linear;
}

#hs-pwd-widget-password:focus,
.hs-search-field__input:focus,
form input:focus,
form select:focus,
form textarea:focus,
.hs-input:focus {
  background-color: #fff;
  border-color: #389dd9;
  outline: 0;
}

textarea.hs-input {
  height: auto;
}
.hs-form-field textarea {
  padding: 6px 10px;
}
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;
}

.inputs-list {
  margin: 0 0 5px;
  width: 100%;
  padding-left: 5px;
}
.inputs-list > li {
  display: block;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.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;
  padding-left: 0;
}

.systems-page .hs-form-field,
.field {
  margin-bottom: 20px;
}

#hs_cos_wrapper_my_password_reset > .hs-form-field > .hs-error-msgs,
#hs_cos_wrapper_my_register > .hs-form-field > .hs-error-msgs,
#hs_cos_wrapper_my_login > .hs-form-field > .hs-error-msgs,
#hs_cos_wrapper_my_password_reset_request > .hs-form-field > .hs-error-msgs {
  display: none;
}

.hs-field-desc {
  color: #7c98b6;
  margin: 0px 0px 6px;
}

.hs-form-required {
  color: #790000;
  margin-left: 4px;
}

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 1rem;
  color: #494a52;
}
.hs-richtext hr {
  text-align: left;
  margin-left: 0;
  width: 91%;
}

.grecaptcha-badge {
  margin: 0 auto;
}

.email-correction, .email-validation {
  padding-top: 3px;
  font-size: 12px;
}
.email-correction a,
.email-validation a {
  cursor: pointer;
}
@media (max-width: 400px),
  (min-device-width: 320px) and (max-device-width: 480px) {
    .email-correction form .form-columns-2 .hs-form-field,
    .email-correction form .form-columns-3 .hs-form-field,
    .email-validation form .form-columns-2 .hs-form-field,
    .email-validation form .form-columns-3 .hs-form-field {
      float: none;
      width: 100%;
    }
    .email-correction form .form-columns-2 .hs-form-field .hs-input,
    .email-correction form .form-columns-3 .hs-form-field .hs-input,
    .email-validation form .form-columns-2 .hs-form-field .hs-input,
    .email-validation form .form-columns-3 .hs-form-field .hs-input {
      width: 90%;
    }
    .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-2 .hs-form-field input[type=radio],
    .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-correction form .form-columns-3 .hs-form-field input[type=radio],
    .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-2 .hs-form-field input[type=radio],
    .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
    .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
      width: 24px;
    }
}

.hs-button,
.hs-form-field input[type=text],
.hs-form-field input[type=email],
.hs-form-field input[type=phone],
.hs-form-field input[type=number],
.hs-form-field input[type=tel],
.hs-form-field input[type=date],
.hs-form-field textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
}

.hs-default-font-element,
.hs-main-font-element {
  font-family: "Open Sans",sans-serif;
}

@media screen and (max-width: 767px){
  form {
    max-width: 100%;
  }

  .hs-button, .button--primary {
    white-space: normal;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
menu items appear, including the link and hover effects.
*********************************************************************************
****************************************************************************** */

.hs-menu-wrapper ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 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.
*********************************************************************************
****************************************************************************** */

/*Form same live site*/
 h3 {
    line-height: 1.4;
    margin-bottom: 25px;
  }
  form, fieldset {
    max-width: 100% !important;
    color: #33475b;
  }
  .hs-form-checkbox-display, .hs-form-radio-display, .hs-form-booleancheckbox-display {
    display: flex !important;
    flex-direction: row;
  }
  label {
    font-family: arial, helvetica, sans-serif !important;
    font-size: 13px; !important;
    font-weight: 500  !important;
    line-height: 20px !important;
  }
  input[type=text], input[type=email],input[type=tel],input[type=phone],input[type=number], textarea, select {
    display: inline-block;
    height: 40px;
    padding: 9px 10px  !important;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif  !important;
    font-size: 16px  !important;
    font-weight: normal;
    background-color: #f5f8fa !important;
    line-height: 22px  !important;
    color: #33475b;
    border: 1px solid #cbd6e2;
  }
  textarea {
    min-height: 64px !important;
  }
  .hs-form-required {
    color: #f80404;
  }

 @media only screen and (max-width: 768px) {
    .form-columns-2 .field {
      width: 100% !important;
    }
  }
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
.banner-slide.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.banner-section .row-fluid [class*="span"] {
  min-height: 0;
}

.slide-content-wrap {
  text-align: left;
}

.slide-content {
  position: relative;
  z-index: 2;
  margin: 60px;
  line-height: 1.4;
}

.cover {
  position: relative;
  float: left;
}

.cover h1 {
  color: #ffffff;
  padding-top: 40px;
  font-family: 'Source Sans', sans-serif;
  font-weight: 700;
  font-size: 45px;
  margin-top: -20px;
  width: 100%;
  text-shadow: 1px 1px 4px #000000;
}

.story {
  position: absolute;
  width: 50%;
  margin-left: 68%;
  color: #ffffff;
}

.story h3 {
  padding: 15px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 22px;
  background-color: #00b562;
  color: #ffffff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  font-family: Sans-Serif;
  font-weight: 700;
}

.story p {
  padding: 20px;
  font-size: 14px;
  background-color: rgba(235, 235, 235, 1);
  color: #000000;
  text-align: justify;
}

.slide-bg {
  height: 300px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.4)
}

.slide-foreground.container {
  padding: 0;
}

.banner-slide {
  overflow: hidden;
}

.slick-prev, .slick-next {
  width: 32px;
  height: 32px;
  background-size: 32px !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: .7;
}

.slick-prev:hover, .slick-next:hover {
  opacity: 1;
}

.slick-prev {
  left: 5px;
  z-index: 1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iZmlsbDogI2ZmZjsiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgo8cGF0aCBkPSJNMzk4LjU3MiwxMDQuMjg3TDI0Ni44NTcsMjU2LjAwMWwxNTEuNzE1LDE1MS43MTRjMy42MTcsMy42MTgsNS40MjgsNy45MDQsNS40MjgsMTIuODU2YzAsNC45NTMtMS44MTEsOS4yMzgtNS40MjgsMTIuODU3IGwtNDcuNDI4LDQ3LjQyOGMtMy42MTksMy42MTktNy45MDQsNS40MjgtMTIuODU3LDUuNDI4cy05LjIzOC0xLjgwOS0xMi44NTctNS40MjhsLTIxMi0yMTJjLTMuNjE5LTMuNjE4LTUuNDI4LTcuOTA0LTUuNDI4LTEyLjg1NiBjMC00Ljk1MywxLjgxLTkuMjM4LDUuNDI4LTEyLjg1N2wyMTItMjEyYzMuNjE5LTMuNjE4LDcuOTA0LTUuNDI4LDEyLjg1Ny01LjQyOHM5LjIzOCwxLjgxLDEyLjg1Nyw1LjQyOGw0Ny40MjgsNDcuNDI5IEM0MDIuMTg5LDgyLjE5LDQwNCw4Ni40NzYsNDA0LDkxLjQyOGMwLDQuOTUzLTEuODExLDkuMjM4LTUuNDI4LDEyLjg1N1YxMDQuMjg3eiIvPgo8L3N2Zz4=) !important;
}

.slick-next {
  right: 5px;
  z-index: 1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBzdHlsZT0iZmlsbDogI2ZmZjsiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgo8cGF0aCBkPSJNMTEzLjQyOCw0MDcuNzEzbDE1MS43MTUtMTUxLjcxNEwxMTMuNDI4LDEwNC4yODVjLTMuNjE3LTMuNjE4LTUuNDI4LTcuOTA0LTUuNDI4LTEyLjg1NmMwLTQuOTUzLDEuODExLTkuMjM4LDUuNDI4LTEyLjg1NyBsNDcuNDI4LTQ3LjQyOGMzLjYxOS0zLjYxOSw3LjkwNC01LjQyOCwxMi44NTctNS40MjhzOS4yMzgsMS44MDksMTIuODU3LDUuNDI4bDIxMiwyMTJjMy42MTksMy42MTgsNS40MjksNy45MDQsNS40MjksMTIuODU2IGMwLDQuOTUzLTEuODEsOS4yMzgtNS40MjksMTIuODU3bC0yMTIsMjEyYy0zLjYxOSwzLjYxOC03LjkwNCw1LjQyOC0xMi44NTcsNS40MjhzLTkuMjM4LTEuODEtMTIuODU3LTUuNDI4bC00Ny40MjgtNDcuNDI5IGMtMy42MTctMy42MTgtNS40MjgtNy45MDQtNS40MjgtMTIuODU2YzAtNC45NTMsMS44MTEtOS4yMzgsNS40MjgtMTIuODU3VjQwNy43MTN6Ii8+Cjwvc3ZnPg==) !important;
}

.slick-prev:before, .slick-next:before {
  display: none;
}


@media (max-width: 1335px) {
  .story {
    position: relative;
    width: 50%;
    margin-left: 50%;
    color: #fff;
  }
}

@media (max-width: 768px) {
  .banner-section {
    display: none;
  }
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

.site-header {
  background-color: #F8FAFC;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  font-size: 15px;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
}

.custom-menu-primary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-menu-primary nav>ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.custom-menu-primary nav>ul>li {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  border-left: 1px solid transparent;
  position: relative;
}

.custom-menu-primary nav>ul>li>a {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 14px 8px;
  position: relative;
  color: #333;
  font-family: inherit;
}

.custom-menu-primary nav>ul>li:first-child,
.custom-menu-primary nav>ul>li:last-child {
  border-left: 0;
}

.custom-menu-primary nav>ul>li.has-submenu>a {
  padding-right: 22px;
}

.child-trigger {
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  width: 22px;
  height: 20px;
  margin: -10px 0 0;
}

.child-trigger:after {
  content: '';
  position: absolute;
  right: 50%;
  top: 50%;
  z-index: 1;
  display: block;
  width: 9px;
  height: 9px;
  margin: -5px -5px 0 0;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform-origin: right bottom;
  transform: translateX(-5px) rotate(45deg);
  border-color: inherit;
}

.custom-menu-primary nav>ul ul {
  display: none;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  text-align: left;
  min-width: 220px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.custom-menu-primary nav>ul ul li {
  position: relative;
}

.custom-menu-primary nav>ul ul li a {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 14px 8px;
  position: relative;
  color: #333;
  font-family: inherit;
}

.custom-menu-primary nav>ul ul li:not(:first-child) {
  border-top: 1px solid transparent;
}

.header-logo {
  width: 13.89%;
}

.custom-menu-primary {
  width: 62.87%;
}

.header-logo img {
  width: auto !important;
  transition: all 0.4s ease-in-out, background-position 1ms;
}

.site-header>div {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
}

.header-logo>div {
  padding: 20px 5px 20px 20px;
  transition: all 0.4s ease-in-out, background-position 1ms;
  width: 100%;
}


.custom-menu-primary>div {
  transition: all 0.4s ease-in-out, background-position 1ms;
  width: 100%;
  padding: 20px 0;
}

.header-contact-info,
.header-btn-wrap {
  flex-wrap: wrap;
  background-color: #e6ebfa;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}

.header-contact-info p {
  text-align: center;
  color: #7e818a;
  font-size: 13px;
}

.header-contact-info .phone a {
  font-family: 'Open Sans', Sans-Serif;
  color: #444444;
  font-size: 16px;
  margin-bottom: 5px;
  display: inline-block;
}

.header-contact-info>div {
  padding: 0 5px;
  text-align: center;
  width: 100%;
}

.header-contact-info .phone a img {
  width: auto;
  margin-right: 5px;
  max-height: 24px;
}

.icon-group .icon {
  vertical-align: middle;
  display: inline-block;
  margin: 10px;
}

.header-social .icon a {
  text-decoration: none;
}

.header-social .icon a i {
  font-size: 20px;
  float: left;
  height: auto;
  width: auto;
}

.header-social .icon a .fa-facebook {
  color: #3b5998;
}

.header-social .icon a .fa-google-plus-g {
  color: #dd4b39;
}

.header-btn-wrap a {
  letter-spacing: 1px;
  font-family: 'Open Sans', Sans-Serif;
  cursor: pointer;
  outline: 0;
  text-align: center;
  max-width: 100%;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: normal;
  border-radius: 4px;
  display: inline-block;
  width: 140px;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  background: #00b562;
  border: 1px solid #00a956;
}

.header-btn-wrap a:hover {
  color: #00b562;
  border-color: #f3f3f3;
  background: #ffffff;
}

.header-btn-wrap>div {
  text-align: center;
  padding: 5px 10px 5px 0;
  width: 100%;
}

.header-contact-info {
  width: 12.49%;
}

.header-btn-wrap {
  width: 10.75%;
}

.mobile-trigger {
  display: none !important;
}

@media (min-width: 769px) {
  .site-header>.custom-menu-primary {
    display: flex !important;
  }
  
  .custom-menu-primary nav>ul li.has-submenu:hover>ul {
    display: block !important;
  }

  .custom-menu-primary nav>ul ul {
    display: none !important;
    visibility: visible !important;
  }
}

@media (min-width: 1280px) {
  .header-wrap {
    min-height: 129px;
  }
  .sticky.lp .header-logo>div {
    padding-top: 24px;
    padding-bottom: 23px;
  }
  .sticky .header-logo>div {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .header-logo img {
    max-height: 89px;
  }

  .sticky .header-logo img {
    max-height: 50px;
  }
}

@media (max-width: 1339px) {
  .header-btn-wrap a {
    font-size: 14px;
  }

  .custom-menu-primary nav>ul>li>a {
    padding: 14px 4px;
  }
}

@media (max-width: 1279px) {
  .site-header {
    position: relative;
  }
  .header-contact-info p {
    color: #363636 !important;
  }
  .header-contact-info {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
  }

  .header-logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .custom-menu-primary {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header-btn-wrap {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    background-color: #fff !important;
  }

  .header-contact-info {
    padding: 0 20px;
  }

  .header-contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-contact-info>div {
    padding: 0;
  }

  .header-contact-info p {
    font-size: 14px;
    color: #363636;
  }

  .header-logo {
    width: 14.04%;
  }

  .lp .header-logo>div {
    width: 14.04%;
  }

  .custom-menu-primary nav>ul>li {
    font-size: 10px;
  }

  .custom-menu-primary nav>ul>li>a {
    padding: 14px 7px;
  }

  .header-btn-wrap a {
    font-size: 10px;
    padding: 12px 10px;
  }

  .header-btn-wrap {
    width: 12.47%;
  }

  .custom-menu-primary {
    width: 73.49%;
  }

  .header-contact-wrap .text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-contact-wrap .phone {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header-contact-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }

  .header-contact-wrap>div {
    width: 33.333%;
    padding: 0 20px;
  }


  .header-contact-info .phone a {
    font-size: 14px;
    font-weight: 600;
  }

}

@media (max-width: 899px) {
  .header-btn-wrap a {
    padding: 12px 5px;
  }

  .custom-menu-primary nav>ul>li>a {
    padding: 14px 4px;
  }

  .header-logo {
    width: 12.04%;
  }

  .lp .header-logo>div {
    width: 12.04%;
  }

  .custom-menu-primary {
    width: 77.49%;
  }

  .header-btn-wrap {
    width: 10.47%;
  }

  .custom-menu-primary nav>ul {
    flex-wrap: nowrap;
  }

  .custom-menu-primary nav>ul>li.has-submenu>a {
    padding-right: 15px;
  }

  .child-trigger {
    width: 15px;
  }

}

@media (max-width: 768px) {
  .header-contact-wrap>div {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .header-contact-info {
    padding: 0;
  }

  .header-social {
    max-width: 400px;
  }

  .header-contact-wrap .text {
    width: 50%;
  }

  .header-contact-wrap .phone {
    width: 100%;
  }

  .header-contact-info p {
    font-size: 10px;
    margin-top: 5px;
  }

  .header-contact-info .phone a {
    text-decoration: none;
    font-size: 13px;
    margin: 0;
  }

  .header-contact-info .phone {
    margin-top: 6px;
    margin-bottom: 10px;
  }

  .header-contact-info .phone a img {
    width: auto;
    margin-right: 6px;
  }

  .mobile-trigger {
    width: 30%;
    display: flex !important;
    order: 3;
  }

  .site-header>.custom-menu-primary {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    left: 20px;
    right: 20px;
    z-index: 1500;
    width: calc(100% - 40px);
    flex: none;
    overflow-y: auto;
  }

  .custom-menu-primary>div {
    padding: 0;
  }

  .custom-menu-primary nav>ul {
    display: block;
    text-align: left;
  }

  .custom-menu-primary nav>ul>li {
    display: block;
    font-weight: 600;
    font-size: 16px;
    border: 0;
  }

  .custom-menu-primary nav>ul>li>a {
    padding: 10px 14px;
    color: #000000 !important;
  }

  .custom-menu-primary nav>ul>li.has-submenu>a {
    padding-right: 25px;
  }

  .custom-menu-primary nav>ul ul {
    position: static;
    box-shadow: none;
  }

  .custom-menu-primary nav>ul ul li a {
    padding: 10px 14px;
    color: #000000 !important;
  }

  .navbar-toggler {
    border: 0;
    padding: 10px 14px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: 20px;
    font-size: 16px;
    text-transform: capitalize;
    color: #000000;
    line-height: 1.2;
    cursor: pointer;
  }
  
  .svg-container svg {
    fill: currentColor;
  }

  .header-btn-wrap {
    width: 35%;
  }

  .header-btn-wrap a {
    padding: 12px 24px;
    width: 130px;
    line-height: 14px;
  }

  .header-logo {
    width: 35%;
  }

  .lp .header-logo>div {
    width: 35%;
  }

  .navbar-toggler span.svg-container {
    display: inline-block;
    position: relative;
    width: 1.4em;
    height: 1.4em;
    vertical-align: middle;
  }

  .navbar-toggler span.svg-text {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
  }

  .navbar-toggler span {
    pointer-events: none;
  }

  .header-btn-wrap>div {
    padding: 0;
  }

  .child-trigger {
    width: 25px;
    height: 36px;
    top: 0;
    margin: 0;
  }
}

@media (max-width: 479px) {
  .navbar-toggler {
    flex-direction: column;
    align-items: center;
    margin-right: 0;
    font-size: 14px;
  }

  .navbar-toggler span.svg-text {
    margin: 3px 0;
  }

  .header-logo>div {
    padding: 20px;
  }

  .header-logo {
    padding: 12.9px 0;
  }

  .header-btn-wrap a {
    padding: 12px 10px;
    width: 90px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.site-footer {
  background-color: transparent;
  font-size: 15px;
  line-height: 1.45;
}

.footer-menu .hs-menu-wrapper > ul {
  line-height: 1;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
  justify-content: center;
  flex-wrap: nowrap;
}

.footer-menu .hs-menu-wrapper > ul > li {
  display: inline-block;
  position: relative;
}

.footer-menu .hs-menu-wrapper > ul > li a {
  display: block;
  padding: 4px 14px;
  color: #4a4949;
  text-decoration: none;
  font-family: inherit;
  white-space: nowrap;
}

.footer-menu .hs-menu-wrapper > ul ul {
  display: none;
}

.copyright {
  text-align: center;
  font-size: 13px;
  padding-top: 20px;
}

.terms {
  text-align: center;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  font-size: 13px;
}

.terms ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms ul a {
  padding: 5px;
  display: block;
  color: #959595;
  line-height: 1;
  text-decoration: none;
  font-family: inherit;
}

.terms ul li {
  display: inline-block;
}

.footer-bottom .container {
  padding-top: 13px;
  padding-bottom: 20px;
}

.footer-menu {
  padding: 20px 0;
}

.footer-top {
  position: relative;
  padding: 40px 20px;
  background-color: #120f62;
}

.footer-menu .hs-menu-wrapper > ul > li:not(:first-child) {
  border-left: 1px solid transparent;
}

.footer-menu .hs-menu-wrapper > ul ul li:not(:first-child) {
  border-top: 1px solid transparent;
}

.footer-top h2 {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-align: right;
  margin: 0;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: 0px;
}

.footer-top h2 span {
  font-size: 20px;
  font-weight: 100;
}

.footer-top .span4 {
  width: 37.64%;
  padding: 20px;
}

.footer-top .container {
  padding: 0;
}

.footer-top .span5 {
  margin: 0;
  width: 34.97%;
  padding: 0 20px;
}

.footer-top  ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-top ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  white-space: nowrap;
}

.footer-top ul li a {
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 16px;
  font-family: 'Open Sans', Sans-Serif;
  margin-left: 10px;
  color: #ffffff !important;
}

.footer-top ul li a span {
  margin-left: 32px;
}

.footer-top .icon-group .icon a {
  color: #fff;
  font-size: 30px;
}

.footer-top .icon-group .icon {
  margin-left: 0;
}

.footer-top .icon-group .icon a i {
  float: left;
  height: auto;
  width: auto;
}

.footer-top .span3 {
  margin-left: 0;
  padding: 0 20px;
  width: 27.39%;
}

.footer-top .icon-group {
  padding: 20px 0;
}

#hs_cos_wrapper_masterbuilder_logo {
  padding: 20px 0;
  display: block;
}

#hs_cos_wrapper_mobile_masterbuilder_logo {
  display: none;
}

.footer-trigger {
  display: none;
}

.footer-bottom {
  padding: 0 20px;
}

@media (min-width: 769px) {
  
  .footer-menu .hs-menu-wrapper > ul ul {
    display: none !important;
    position: absolute;
    bottom: 100%;
    left: 0;
    visibility: visible !important;
    z-index: 10;
    text-align: left;
    background-color: #ffffff;
    box-shadow: 0 1px 20px rgba(0,0,0,0.1);
    min-width: 220px;
  }

  .footer-menu .hs-menu-wrapper > ul > li.hs-item-has-children:hover > ul {
    display: block !important;
  }
}

@media (max-width: 899px) {
  .footer-top ul li a {
    font-size: 13px;
    margin-left: 3px;
  }

  .footer-top ul li img {
    width: 20px;
  }

}

@media (max-width: 768px) {
  .footer-menu .hs-menu-wrapper > ul {
    display: inline-block;
    text-align: left;
  }

  .footer-menu .hs-menu-wrapper > ul > li {
    display: block;
  }

  .footer-menu {
    text-align: center;
  }

  .footer-menu .hs-menu-wrapper > ul > li:not(:first-child) {
    border-left: 0;
    border-top: 1px solid transparent;
  }

  .footer-top .span3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    text-align: center;
  }

  .footer-top {
    padding: 40px 0;
  }

  .footer-top .span3 > * {
    width: 50%;
  }

  .footer-top .icon-group {
    padding: 20px;
  }

  #hs_cos_wrapper_masterbuilder_logo {
    display: none;
  }

  #hs_cos_wrapper_mobile_masterbuilder_logo,
  #hs_cos_wrapper_masterbuilder_logo {
    padding: 20px;
  }

  #hs_cos_wrapper_mobile_masterbuilder_logo {
    display: block;
  }

  .footer-top .icon-group .icon {
    margin-left: 10px;
  }

  .footer-top ul li img {
    width: auto;
  }

  .footer-top ul li a {
    margin-left: 10px;
    font-size: 16px;
  }

  .footer-top .span5,
  .footer-top .span4 {
    width: 100%;
  }

  .footer-top h2 {
    text-align: center;
  }

  .footer-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 13px;
    height: 21px;
    font-weight: 600;
    color: #4a4949;
    cursor: pointer;
    z-index: 1;
  }

  .footer-trigger:after {
    content: '';
    padding: 2px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }

}

@media (max-width: 479px) {
  .footer-top ul li a {
    font-size: 14px;
    margin-left: 5px;
  }

  .footer-top .span3 > * {
    width: 100%;
  }

  #gtranslate_wrapper {
    bottom: 0 !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 */

.blog-container-wrapper {
  background-color: #f5f5f5;
}

.blog-container-wrapper p {
  text-align: justify;
}

.blog-sidebar.span3 {
  padding: 20px;
  width: 20.46%;
}

.blog-container-wrapper .content-wrapper {
  padding: 0;
}

.blog-index.span9 {
  margin: 0;
  width: 79.54%;
  padding: 20px;
}

.blog-listing-wrap {
  position: relative;
  max-width: 810px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.post-item-wrap {
  border: 1px solid #e6e6e6;
  overflow: hidden;
  border-radius: 15px;
  background-color: #e6ebfa;
  transition: all 0.8s ease;
  font-size: 14px;
  height: 100%;
  transition: all 0.8s ease;
}

.blog-listing-wrap .post-item {
  width: 33.33333%;
  padding: 0 5px;
  margin-bottom: 10px;
}

.post-item-wrap:hover {
  box-shadow: 1px 1px 20px #666;
}

.featured-image-wrapper {}

.featured-image-wrapper img.featured-image {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.post-description {
  padding: 20px;
}

.post-description h2 {
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 5px;
  line-height: 26px;
  margin-bottom: 0;
}

.post-description h2 a {
  color: #333;
  text-decoration: none;
}

.post-description h2 a:hover {
  color: #428bca;
}

.date {
  font-size: 14px;
  color: #00B562;
  padding-bottom: 15px;
}

.post-bdy-content {
  font-size: 16px;
}

.read-more {
  margin-top: 10px;
}

.read-more a {
  font-family: "Raleway", sans-serif;
  border: none;
  padding: 10px 26px;
  min-width: 150px;
  color: #ffffff;
  line-height: 36px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  margin-right: 8px;
  background-color: #00B562;
  text-decoration: none;
}

.read-more a:hover {
  background-color: #fff;
  color: #00B562;
  text-decoration: none;
}

.blog-pagination {
  padding: 40px 0;  
  font-weight: 400;
}

.blog-pagination ul {
  margin: 0px;
  padding: 0;
  list-style: none;
  text-align: center;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li .page-numbers {
  border: 1px solid #e6e6e6;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 0 5px;
  text-decoration: none;
}

.blog-pagination ul li .page-numbers.current {
  background: #f5f5f5;
}

.site-search .hs-search-field__input {
  transition: all ease-in-out .15s;
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #808080;
  background-color: #fcfcfc;
  box-shadow: none;
  height: 50px;
  border-radius: 0;
  border: none;
  font-family: inherit;
}

.blog-sidebar h3 {
  text-align: justify;
  margin-top: 10px;
  font-style: normal;
  color: #333;
  line-height: 1.4;
  letter-spacing: 0px;
  padding-bottom: 15px;
  border-bottom: solid 1px #ccc;
  font-family: Sans-Serif;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 18px;
}

.blog-sidebar>div {
  margin-bottom: 40px;
}

.blog-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 400;
}

.blog-sidebar ul li {
  display: block;
  margin-bottom: 8px;
}

.blog-post-banner {
  background-color: #363636;
  padding-top: 200.5px;
  padding-bottom: 200.5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: contain;
}

.hs-blog-post .blog-container-wrapper {
  background-color: #ffffff;
}

.blog-post {
  padding: 20px;
}

.blog-post h1 {
  font-family: Raleway, sans-serif;
  font-weight: 600;
  font-size: 40px;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 20px;
  line-height: 1.4;
  letter-spacing: 0px;
}

.blog-post__meta {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
}

span.post-info-sep {
  margin: 0 3px;
}

.related-post {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 20px;
}

.related-post h3 {
  font-family: 'Raleway', Sans-Serif !important;
  color: #00b562;
  text-align: center;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0px;
  font-weight: 400;
}

.relpost-block-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.relpost-block-single {
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  float: none;
  margin: 0 10px 10px;
  padding: 15px;
  border: 1px solid #ccc;
  width: 200px;
  min-height: 165px;
  box-sizing: border-box;
}

.relpost-block-single-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto 15px;
  height: 75px;
  width: 100px;
}

.relpost-block-single-text {
  font-weight: 400;
  line-height: normal;
  margin: 3px 0 0;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
}

.blogPostBtn {
  padding: 20px 0;
}

.blogPostBtn a {
  border: 1px solid #00a956;
  background: #00b562;
  border-radius: 4px;
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  line-height: 18px;
  padding: 12px 24px;
  text-decoration: none;
  text-shadow: none;
  color: #fff;
}

.blogPostBtn a:hover {
  border: 1px solid #f3f3f3;
  color: #00b562;
  background: #ffffff;
}

.blogPostFooter {
  background-color: #45454b;
  color: #ffffff;
  margin: 0 -20px;
}

.PostBottomContent {
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
}

.call-to-action h3 {
  font-family: 'Open Sans', Sans-Serif;
  font-weight: 300;
  font-size: 18px;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 10px;
}

.hs-blog-post .grecaptcha-badge {
  margin: 0;
}

#comments-listing .comment-reply-to {
  box-shadow: none;
  background-color: transparent;
  margin: 10px 0;
}

.comment-date,
.comment-from {
  display: block !important;
  margin-bottom: 5px;
}


.call-to-action a.btn {
  color: #fff;
  font-size: 18px;
  font-family: 'Open Sans', Sans-Serif;
  margin: 25px 20px 25px 40px;
  background-color: #00b562;
  border: none;
  line-height: 1.2;
  padding: 12px 12px;
  font-weight: normal;
  text-shadow: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.call-to-action a.btn:hover {
  background-color: #fff;
  color: #00b562;
}

.call-to-action-header {
  margin: 15px 20px 20px 20px;
}

.call-to-action img {
  padding: 0 20px;
}

.call-to-action a {
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
}

.call-to-action a:hover {
  color: #fff;
}

.call-to-action .cta-title h3 span {
  font-weight: 400;
}

.call-to-action .cta-title h3 span.small {
  font-size: 16px;
  font-weight: 300;
}

.blogPostFooter.mobile {
  display: none;
}

.call-to-action .light {
  color: #838385;
}

@media (max-width: 1111px) {
  .blog-listing-wrap {
    max-width: 530px;
  }

  .blog-listing-wrap .post-item {
    width: 50%;
  }
}

@media (max-width: 991px) {
  .blog-post__meta {
    font-size: 14px;
  }

  .call-to-action a.btn {
    font-size: 16px;
    padding: 13px 12px;
  }
}

@media (max-width: 768px) {
  .blog-listing-wrap {
    max-width: 530px;
  }

  .blog-listing-wrap .post-item {
    width: 50%;
  }

  .blog-sidebar.span3 {
    max-width: 400px;
    width: 100%;
    float: none;
    margin: 0 auto !important;
  }

  .body-container-wrapper.blog-container-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-index.span9 {
    width: 100%;
  }

  .blogPostBtn {
    text-align: center;
  }

  .blogPostFooter.mobile {
    display: block;
  }

  .call-to-action h3 {
    font-size: 12px;
  }

  .call-to-action .cta-title h3 span.small {
    font-size: 10px;
  }

  .call-to-action img {
    padding: 0 3.5px;
  }

  .cta-title {
    order: 1;
    width: 50%;
    padding: 10px 0 10px 20px;
  }

  .cta-btn {
    order: 3;
    width: 100%;
  }

  .call-to-action-header {
    order: 2;
    margin: 0;
    width: 50%;
    padding: 10px 20px 18px;
  }

  .call-to-action a.btn {
    margin: 0;
    border-radius: 0;
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 17px;
  }

  .PostBottomContent {
    padding: 0;
  }

  .blogPostFooter.mobile {
    margin-bottom: 40px;
  }

  .blog-post {
    padding: 20px 20px 0;
  }

}

@media (max-width: 585px) {
  .blog-listing-wrap {
    max-width: 260px;
  }

  .blog-listing-wrap .post-item {
    width: 100%;
  }
}
/* ******************************************************************************
*********************************************************************************
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: "Open Sans",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 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  min-width: 650px;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  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: "Helvetica", Verdana, Arial, sans-serif;
  font-size: 1.25rem;
  color: #494a52;
  text-decoration: underline;
  margin-bottom: .25rem;
}
.hs-search-results__title:hover {
  text-decoration: none;
}
.hs-search-results__description {
  padding-top: .5rem;
}
.hs-search-highlight {
  font-weight: bold;
}
.hs-search-results__pagination a {
  color: #494a52;
}

.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}

.systems-page input.email-edit.hs-input {
  width: 100% !important;
  max-width: 500px !important;
}

@media (max-width: 767px) {
  .systems-page .success {
    min-width: 100%;
  }
  .error-page[data-error="404"] {
    max-width: 100%;
  }
}