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

html {
  
}

/* 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;
  vertical-align:middle;
  max-width:100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

progress {
  vertical-align: baseline;
}

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

textarea {
  overflow: auto;
}

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

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

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

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

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

template {
  display: none;
}

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

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

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

.page-center, 
.container,
.content-wrapper{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  padding: 50px 25px;
}

.dnd-section .widget-type-cell {
}
.dnd-section>.row-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}

@media(max-width:992px){
  .page-center, .container,.content-wrapper{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin: 0 auto;
    padding: 30px 20px;
    width: 100%;
  }
  .dnd-section {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  .dnd-section>.row-fluid {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}


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

@font-face {
  font-family: 'wsocial';
  src: url('//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/wsocial.eot');
  src: url('//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/wsocial.eot?#iefix') format('embedded-opentype'),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/wsocial.woff) format('woff'),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/wsocial.woff2) format('woff2'),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/wsocial.ttf) format('truetype'),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/wsocial.svg) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Proxima Nova';
  font-weight: 300;
  src: url('//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/proxima_0_0.eot');
  src: url('//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/proxima_0_0.eot?#iefix') format("embedded-opentype"), 
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/proxima_0_0.woff) format("woff"),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/proxima_0_0.ttf) format("truetype");
}

@font-face {
  font-family: 'Proxima Nova';
  src: url("//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/fonts/proxima_1_0.eot");
  src: url('../fonts/proxima_1_0eot?#iefix') format("embedded-opentype"),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/proxima_1_0.woff) format("woff"), 
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/proxima_1_0.ttf) format("truetype");
}

@font-face {
  font-family: 'Proxima Nova';
  font-weight: 500;
  src: url("//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/proxima_2_0.eot");
  src: url('//f.hubspotusercontent30.net/hubfs/3382381/Beaver%20Hardwood%20April2021/fonts/proxima_2_0.eot?#iefix') format("embedded-opentype"),
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/proxima_2_0.woff) format("woff"), 
    url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/fonts/proxima_2_0.ttf) format("truetype");
}

html { 

}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #666666;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  background: #232323;
}

.body-wrapper {
  background: #fff;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* Anchor Links */
a {
  color: #0270E0;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Raleway', serif;
  color: #333333;
  word-break: break-word;
}

h1 {
  font-size: 32px;
  line-height: 0.978em;;
}

h2 {
  font-size: 26px;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  line-height: 1.3em;
}

h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.845em;
}

h5 {
  font-size: 16px;
  line-height: 1.5;
}

h6 {
  font-size: 14px;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul li,
ol li {

}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 0;
  margin-bottom: 0;
}

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

/* Horizontal Rules */
hr {
  background-color: #eee;
  background-color: rgba(0,0,0,0.13);
  border: 0pt none!important;
  color: #eee;
  color: rgb(0 0 0 / 13%);
  height: 1px;
  margin: 0 auto;
  text-align: center
}

/* 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;
  outline-color: green;
}

.disable-focus-styles :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,
.hs_cos_wrapper_type_password_prompt,
.hs_cos_wrapper_type_email_simple_subscription,
.hs_cos_wrapper_type_form,
.hs_cos_wrapper_type_blog_subscribe,
.widget-type-google_search,
#comment-form,
.section.post-footer,
.hs-search-field,
.hs_cos_wrapper_type_member_login,
.hs_cos_wrapper_type_password_reset,
.hs_cos_wrapper_type_password_reset_request,
.hs_cos_wrapper_type_member_register {
  max-width: 767px;
  font-family: 'Open Sans', sans-serif;
}

.hs-button {
  margin: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  position: relative;
  text-align: center;
  transition: all 0.15s linear;
  background-color: #2a92e5;
  border-color: #2a92e5;
  color: #fff;
  border-radius: 2px;
  border-style:solid;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: normal;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  
  text-decoration: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 0px;
  margin-top: 15px
}

.hs-search-module a {
  margin-top: 30px;
}

.hs-button:hover, .hs-button:focus {
  background-color: #026abd;
  border-color: #026abd;
  
  color: #fff;
}

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


.hs-form label {
  font-size: 16px;
  color: #666666;
  display: block;
  float: none;
  width: auto;
  font-weight: normal;
  text-align: left;
  line-height: 1.2;
  padding-top: 0;
  margin-bottom: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
}

.hs-error-msgs label {
  margin-top: .5rem;
  color: #ff0000!important;
}

.hs-input,
.hs-input,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="file"],
textarea,
select{
  display: inline-block;
  width: 100%;
  padding: 9px 10px;
  font-size: 16px;
  font-weight: normal;
  line-height: 22px;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #D1D6DC;
  box-sizing: border-box;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.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: #666666;
}

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

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.hs-input:focus {
  outline: none;
  border-color: rgba(82, 168, 236, 0.8);
}

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

.actions {
  padding: 0;
}

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

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

.field {
  margin-bottom: 18px;
}

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

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

.hs-richtext {
  margin-bottom: 3px;
  line-height: 1.2;
  font-size: 16px;
  color: #666666;
}
.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;
}


body .grecaptcha-badge {
  margin: 0;
}

@media(max-width:767px){
  fieldset .input {
    margin-right: 0 !important;
  }
  fieldset{
    max-width: 100%!important;
  }
  .field {
    width: 100% !important;
}

}
/* ******************************************************************************
*********************************************************************************
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-bottom: 0;
  list-style: none;
}

.hs-menu-item a {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.hs-menu-item:hover a,
.hs-menu-item:focus a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.7);
}

.hs-menu-item.active a {
  color: rgba(0, 0, 0, 0.9);
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
.dnd-section[class*="full-width-section"]>.row-fluid {
  padding: 0 !important;
  max-width: 100% !important;
}
.banner-section .row-fluid .span12 {
  min-height: 0;
}

.hs-button.custom-request-btn{
  margin-bottom: 16px;
  margin-top: 10px;
}


.custom-des-cons-row5 h5 {
  font-size: 24px;
  font-style: italic;
  text-align: center;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}

.custom-des-cons-row5 a {
  margin-bottom: 35px;
  margin-top: 8px;
}


.custom-des-cons-row5  p {
  font-size: 24px;
  color: #fff;
  line-height: 1.5;
  font-style: italic;
}


.custom-des-cons-row2 h2 {
  padding-bottom: 15px;
  color: #ffffff;
  font-family: 'Raleway', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.978em;
  margin-top: 49px;
}

.custom-des-cons-row2 p {
  color: #ffffff;
  margin-top: 22px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}


.custom-des-cons-row2 h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

.custom-des-cons-row2 .span6 p {
  line-height: 1.5;
  margin-top: 24px;
  padding-bottom: 5px;
  font-size: 16px;;
}

.custom-des-cons-row2 .span6 p span {
  line-height: 1.335;
  font-size: 16px;
}

.custom-des-cons-row2 a.hs-button {
  background: #a1a1a1;
  color: white !important;
  border: 2px solid #a1a1a1;
  margin-bottom: 41px;
}

.custom-des-cons-row2 a.hs-button:hover {
  background: transparent;
  color: #a1a1a1 !important;
}

.custom-des-cons-row5 h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 24px;
  margin-top: 7px;
}
.custom-des-cons-row1 .span6+.span6 {
  padding-left: 27px;
  margin-left: 0;
  padding-right: 0px;
}

.custom-des-cons-row5 h1 {
  color: #FFFFFF;
  margin-bottom: 30px;
  margin-top: 10px;
}

.custom-des-cons-row5 h3 {
  color: #fff;
  font-style: italic;
  margin-bottom: 25px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.custom-des-cons-row2 {
  background-color: #1f5cea;
}
.custom-des-cons-row5 {
  background-color: #333333;
}

.custom-design-row1 .dnd-section {
  background-color: rgba(25, 4, 0, 1);
}
.custom-design-row1 .dnd-section * {
  color: #fff;
}
.custom-design-row1 .dnd-section .hs-button {
  color: rgba(42,146,229,1.0);
}
.custom-design-row1 .dnd-section .hs-button:hover {
  color:#fff;
}




/* ==============Desgin layout css========== */
.custom-design-row1 h2 {
  color: #fff;
  text-align: center;
  line-height: 1.2em;
  padding-bottom: 15px;
  margin-bottom: 23px;
  font-size: 26px;
}
.custom-design-row1 h2 span{
  font-size: xxx-large;
  padding-bottom: 15px;
  margin-bottom: 31px;
}
.custom-design-row1 .row-fluid .span12{
  min-height: 22px;
}
.custom-design-row1 h4 {
  color: #FFFFFF;
  line-height: 1.5em;
  margin-bottom: 20px;
  margin-top: 12px;
  font-family: 'Open Sans', sans-serif;
}
.custom-design-row1 h5 {
  color: #fff;
  line-height: 33.2px;
  margin-bottom: 0px;
  padding-right: 0px;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 400;
}
.custom-design-row1 .span6+.span6 {
  padding-left: 27px;
  margin-left: 0;
  padding-right: 0px;
}
.custom-design-row1 .span6{
  margin-top: 14px;
}
.custom-design-row1 h3,.custom-design-row1 p{
  color:#ffffff;
  font-weight:400;
  font-family: 'Raleway', serif;
}
.custom-design-row1 h3{
  margin-bottom: 33px;
}
.custom-design-row1 p{
  line-height: 34px;
  line-height: 2.13em;
}
.custom-design-row1 .span6+.span6 {
  margin-left: 13px;
  padding-left: 26px;
}
.custom-design-row1 .span6 {
  padding-right: 2px;
}
.custom-design-row1 .design-btn {
  margin-top: 23px;
}
/* .custom-design-row1 h5 {
font-size: 18px;
color: #FFFFFF;
margin-top: 12px;
margin-bottom: 20px;
font-family: 'Open Sans', sans-serif;
} */

/* =============== live-edge slab table css =============*/
.body-container__website .social-icons {
  margin-top: 10px;
}
.body-container__website .span12 {
  min-height: 20px;
}
.body-container__website h2 {
  color: #333333;
  font-family: 'Raleway', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2em;
}
.body-container__website blockquote {
  font-size: 18px;
  line-height: 29px;
  color: #666;
  padding: 16px;
  margin: 32px 0;
  border-left: 0;
  font-family: 'Raleway',serif;
  font-weight: 400;
  font-style: italic;
  text-align: center;
}
.body-container__website .custom-live-edge-btn {
  padding: 8px 16px;
  white-space: normal;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
  margin-top: 10px;
}
.body-container__website .span12 h6 {
  font-size: x-small;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  line-height: 1.5em;
  line-height: 33.2px;
  margin-bottom: 0;
  padding-top: 5px;
  margin-bottom: -5px;
  margin-top: -1px;
}
.custom-design-row1 .dnd-section {
  background-color: rgba(25, 4, 0, 1);
}

/* ============= live-edge slab table css end  ======================*/
.body-container__website .secondary-header {
  color: #333333;
  font-family: 'Raleway', serif;
  font-weight: 400;
  line-height: 2.125em;
  margin-bottom: 13px;
}
.body-container__website .page-header h1 {
  margin-top: -1px;
  margin-bottom: 3px;
  line-height: 1.064em;
}
.body-container__website .span6 .custom-about-btn {
  margin-top: 10px;
  margin-bottom: 56px;
}




/*================Home=====================  */
.custom-home-row1 h3 {
  margin-left: -6px;
  margin-top: 1px;
}
.custom-home-row2 img.hs-image-widget {
  padding-top: 13px;
  padding-bottom: 10px;
}
.custom-home-row2 h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 36px;
}
.custom-home-row2 h1 {
  margin-bottom: 28px;
}
.custom-home-row2 h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 36px;
  margin-left: 0;
  margin-bottom: 20px;
}

.testimonial_slider_wrap ul.StarRating>li {
  background-image:url("//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/images/Rating-star.png")
    }
.body-container-wrapper-home .cta_button.hs-button {
  padding: 12px 24px;
  margin-top: 15px;
  font-size: 15px;
}
.body-container-wrapper-home .hs-button {
  font-size: 13px;
  padding: 8px 16px;
  margin-top: 12px;
}

.custom-home-row7 .dnd-section {
  padding: 0;
}

.custom-home-row7 .dnd-section {
  padding: 0;
}

.custom-home-row7 h6 {
  padding: 0;
  margin-bottom: 0;
  font-family: 'Open Sans',sans-serif;
  font-size: 10px;
  line-height: 32px;
  margin: 4px 0 -4px 0;
  color: #2a2a2a;
}

.custom-home-row7 .dnd-section>.row-fluid {
  padding: 0;
}

.custom-home-row7 {
  background: #000;
}
.custom-home-row4 .span6+.span6 {
  padding-left: 27px;
  margin-left: 0;
  padding-right: 0px;
}

.custom-home-row4 h2 {
  padding-bottom: 15px;
  color: #ffffff;
  font-family: 'Raleway', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 0.978em;
  margin-top: 49px;
}

.custom-home-row4 p {
  color: #ffffff;
  margin-top: 22px;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}


.custom-home-row4 h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

.custom-home-row4 .span6 p {
  line-height: 1.5;
  margin-top: 24px;
  padding-bottom: 5px;
  font-size: 16px;;
}

.custom-home-row4 .span6 p span {
  line-height: 1.335;
  font-size: 16px;
}

.custom-home-row4 a.hs-button {
  background: #a1a1a1;
  color: white !important;
  border: 2px solid #a1a1a1;
  margin-bottom: 41px;
}

.custom-home-row4 a.hs-button:hover {
  background: transparent;
  color: #a1a1a1 !important;
}
.custom-home-row4 {
  background-color: #1f5cea;
}
.custom-home-row3 .dnd-section {
  padding-bottom: 0;
}

.custom-home-row4 h3 {
  margin-left: 0;
  margin-top: 0px;
}
.custom-home-row4 .span6+.span6 {
  margin-top: -23px;
}
.row-number-6.dnd-row .hs-button.cta_button {
  margin-top: 55px;
  margin-bottom: 51px;
}
.banner-section .custom_banner .dnd-section>.row-fluid{
  padding-left:0px;
  padding-right: 0px;
}
.banner-section .home_banner.custom_banner .dnd-section>.row-fluid{
  padding-left: 0px;
  padding-right: 0px;
}


.custom_des_cons_banner_wrap .home_banner.custom_banner .banner-btn_wrap.page-center {
  text-align: center;
  padding: 10px 0 15px;
  margin-bottom: 0;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .custom_banner_background {
  min-height: 493px;
  background-position: 50% 50%;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content h2 span {
  font-size: 48px;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content p {
  padding: 0 0 10px;
  color: #FFFFFF;
  opacity: 1;
  font-family: 'Raleway', serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 80px;
  margin: 0;
  padding-bottom: 0;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content p span {
  font-size: 18px;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content h2 {
  color: #fff;
  opacity: 1;
  font-family: 'Raleway', serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 80px;
  padding: 0;
  color: #FFFFFF;
  opacity: 1;
  font-family: 'Raleway', serif;
  font-weight: 400;
  line-height: 80px;
  margin: 2px 0 -2px;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .banner-btn_wrap.page-center {
  text-align: center;
  padding: 10px 0 15px;
  margin-bottom: 0;
  margin-top: -1px;
}
.custom_des_cons_banner_wrap .home_banner.custom_banner .page-center {
  padding: 0;
  padding-top: 50px;
  margin-top: 0px;
}
.custom-home-row1 .social_icon_wrapper {
  text-align: right;
  margin-top: 30px;
  margin-bottom: 14px;
}
.body-container__website .social_icon_wrapper {
  text-align: right;
  /*     margin-top: 10px; */
}	
.body-container__website .span6 .social_icon_wrapper {
  text-align: left;
  margin-bottom: 4px;
}
.body-container-wrapper-des-cons .custom-des-cons-row1 .social_icon_wrapper {
  text-align: right;
}

.custom-home-row6 h1 {
  margin-bottom: 56px;
}

.custom-home-row6 h5 {
  font-weight: 400;
  font-family: 'Raleway', serif;
  font-size: 18px;
  margin-bottom: 18px;
}
.custom-home-row6 h3 {
  font-weight: 300;
  font-family: 'open sans',serif;
  font-size: 24px;
  font-style: italic;
  color: #666;
  margin-bottom: 41px;
  margin-top: 54px;
  margin-left: 0;
}
.custom-home-row6 .span4 h5 {
  margin-bottom: 17px;
}
.custom-home-row6 .span4 p {
  margin-bottom: 18px;
}
.body-container-wrapper-home .custom-home-row6 .cta_button.hs-button {
  font-size: 13px;
  padding: 8px 16px;
  margin-top: 12px;
}

body .fancybox-overlay {
  background: url(//f.hubspotusercontent30.net/hubfs/3382381/raw_assets/public/Beaver_Hardwood_April2021/images/fancybox_overlay.png);
}
body .fancybox-close:before, .fancybox-next span:before, .fancybox-prev span:before {
  color: white !important;
  font-family: 'Open Sans', sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 0.75em;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
body .fancybox-next span:before {
  position: relative;
  right: -10px;
  content: '\3009';
}
body .fancybox-close:hover:before, .fancybox-next:hover span:before, .fancybox-prev:hover span:before {
  color: #2A92E5 !important;
}
body .fancybox-prev span:before {
  position: relative;
  left: -10px;
  content: '\3008';
}
body .fancybox-close:before {
  content: '\00D7';
}
body .fancybox-close, body .fancybox-next span, body .fancybox-prev span {
  background: none !important;
  width: auto;
  height: auto;
}
body .fancybox-close {
  top: 20px;
  right: 20px;
}

.custom-home-row5 .dnd-section {
  padding-top: 0;
  padding-bottom: 0;

}

.custom-home-row5 .dnd-section>.row-fluid{
  padding-left:15px;
  padding-right:15px;
}

.custom-home-row5 .span4     {
  width: 28.877486085916%;
  padding: 0px 10px;
  padding-left: 9px;
}
.custom_home_banner_wrap .home_banner.custom_banner .banner-content h2 {
  margin-bottom: 9px;
}
.custom-home-row1 .iframe_wrapper {
  padding-top: 31px;
  margin-left: -1px;
  margin-top: 1px;
  margin-bottom: -7px;
}
.custom_home_banner_wrap .home_banner.custom_banner.custom_banner_section {}

.custom_home_banner_wrap .home_banner.custom_banner .banner-content h1 {
  padding-top: 8px;
}

.custom-home-row5 .span4+.span4 {
  margin-left: 0;
  width: 37.142891054127%;
  padding: 0 10px;
}

.custom-home-row5 .span4+.span4+.span4 {
  width: 33.979622859957%;
  padding: 0 10px;
}

.custom-home-row5 .span4 img {
  padding-bottom: 10px;
  padding-top: 10px;
  vertical-align: initial;
}
.custom-home-row5 h1 {
  margin-top: -15px;
  padding-left: 10px;
  margin-bottom: 28px;
}
.custom-design-row1 .home_banner.custom_banner.custom_banner_section {
  background: rgba(35,35,35,0.95);
  padding-top: 86px;
}
.custom-design-row1 .home_banner.custom_banner.custom_banner_section .custom_banner_background {
  background-repeat: no-repeat;
  background-position: 50.00% 83.38%;
  background-size: 100%;
  background-color: transparent;
  background-size: cover;
  min-height: 400px;
  /* display: block; */
  background-attachment: scroll;
  align-items: flex-end;
}
.custom-design-row1 .home_banner.custom_banner.custom_banner_section .banner-content_wrap.page-center {
  padding: 50px 25px;
}
.custom-design-row1 .home_banner.custom_banner.custom_banner_section .custom_banner_background:before {
  display: none;
}
.custom-design-row1 .home_banner.custom_banner.custom_banner_section .custom_banner_background .banner-btn_wrap>a {
  display: inline-block;
  height: auto;
  padding: 12px 24px;
  background: #A1A1A1;
  color: white !important;
  border: 2px solid #A1A1A1;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: normal;
  font-family: ‘Open Sans’, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  background: transparent;
  color: #2A92E5 !important;
  border: 2px solid #2A92E5;
}
.custom-design-row1 .home_banner.custom_banner.custom_banner_section .custom_banner_background .banner-btn_wrap>a:hover {
  background: #2A92E5;
  color: white !important;
}
.custom-home-row2 .span5 .span8 {
  padding-left: 21px;
  padding-bottom: 3px;
}

body .fancybox-skin {
  background-color: transparent;
}

body .fancybox-opened .fancybox-skin {
  box-shadow: none;
}
.custom-des-cons-row5 p {
  font-family: 'Open Sans', sans-serif;
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body .home_banner.custom_banner .custom_banner_background {
    height: 630px;
    justify-content:flex-start;
  }
}

@media(max-width:992px){
  .custom-design-row1 .span6+.span6 {
    margin-left: 1.4%;
    padding-left: 26px;
  }
  .custom-home-row5 .dnd-section>.row-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  .custom-home-row5 h1 {
    margin-top: 6px;
  }
  .custom-des-cons-row2 h2 {
    margin-top: 29px;
  }
  .custom-home-row4 h2 {
    margin-top: 29px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner.page-center {
    padding: 100px 25px 50px;
  }
  .custom-home-row1 .content_with_image_wrap .col_right {
    padding-bottom: 28px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .custom_banner_background {
    min-height: 390px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content_wrap.page-center {
    padding: 100px 25px 51px;
    margin: 0;
  }
  .custom_home_banner_wrap .home_banner.custom_banner .banner-content h1 {
    padding-top: 20px;
    padding-bottom: 3px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content.page-center {
    padding-top: 50px;
    margin-top: 0;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content h2 {
    line-height: 60px;
    margin: 0px 0 -2px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content p {
    line-height: 60px;
    margin-top: -6px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-btn_wrap.page-center {
    margin-top: -1px;
  }
  .custom_home_banner_wrap .home_banner.custom_banner .page-center {
    margin-top: 12px;
  }
  .custom-home-row4 h2 {
    margin-top: 47px;
  }
}

@media(min-width:768px){
  .custom-des-cons-row2 .span6:first-child,
  .custom-home-row4 .span6:first-child{
    padding-right: 10px;
  }
  .custom-home-row2 .span5 {
    margin-left: 0;
    padding-left: 19px;
  }
}

@media(max-width:767px){
  .custom-design-row1 .span6+.span6 {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 7px;
    margin-top: -7px;
  }
  .custom_banner .banner-content h3 {
    color: #fff;
    opacity: 1;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-family: 'Raleway', serif;
    font-size: 2.5em;
    font-weight: 400;
    line-height: 1.25em;
  }
  .body-container__website .span6 .custom-about-btn {
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .custom-des-cons-row2 h2 {
    margin-top: 19px;
  }
  .custom-des-cons-row1 .span6+.span6 {
    padding-left: 0;
  }

  .custom-des-cons-row2 .span6 p {
    padding-bottom: 0;
  }

  .custom-des-cons-row1 .span6+.span6 {
    padding-bottom: 5px;
  }

  .custom-des-cons-row5 h3 {
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .custom-des-cons-row5 h1 {
    margin-top: 10px;
    margin-bottom: 28px;
  }

  .custom-des-cons-row5 a {
    margin-top: 10px;
  }
  .custom-home-row4 .span6+.span6 {
    padding-left: 0;
    margin-top: 0px;
  }

  .custom-home-row4 .span6+.span6 {
    padding-bottom: 5px;
  }
  .custom-home-row4 h2 {
    margin-top: 19px;
  }
  .custom-home-row4 .span6 p {
    padding-bottom: 0;
  }
  .custom_testimonial_wrap .testimonial_heading h2 {
    float: none;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content h2 {
    line-height: 41.5px;
    padding-bottom: 28px;
    padding-top: 5px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content p {
    line-height: 44.6px;
    padding-bottom: 22px;
    margin-top: -16px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-content_wrap.page-center {
    padding: 100px 25px 51px;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-btn_wrap.page-center>a {
    margin-top: 0;
  }
  .custom_des_cons_banner_wrap .home_banner.custom_banner .banner-btn_wrap.page-center {
    margin-top: 0px;
  }
  .body-container-wrapper-des-cons .social_icon_wrapper {
    margin-top: 3px;
  }
  .custom-design-row1 .home_banner.custom_banner.custom_banner_section {
    background: rgba(35,35,35,0.95);
    padding-top: 59px;
  }
  .custom-design-row1 .home_banner.custom_banner.custom_banner_section .banner-content_wrap.page-center {
    padding: 30px 20px;
  }
  .custom-design-row1 .home_banner.custom_banner.custom_banner_section .custom_banner_background {
    background-repeat: no-repeat;
    background-position: 50.00% 83.38%;
    background-size: 100%;
    background-color: transparent;
    background-size: cover;
    /* min-height: 400px !important; */
    /* display: block; */
    background-attachment: scroll;
    align-items: flex-end;
    padding-top: 70px;
  }
  .custom-home-row2 .span5 .span8 {
    padding-left: 0;
    padding-bottom: 3px;
    padding-top: 5px;
  }
  .custom-home-row1 .content_with_image_wrap .col_left {
    padding-bottom: 50px;
  }
  .custom-home-row1 h3 {
    margin-left: 0;
  }
  .custom-home-row1 .oembed_container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 401px;
    display: block;
  }
  .custom-home-row1 .iframe_wrapper {
    padding-top: 31px;
    margin-left: 0;
    margin-top: 1px;
    margin-bottom: 0;
    /* max-width: 401px; */
    /* width: 100%; */
    /* margin-left: auto; */
    /* margin-right: auto; */
  }
  .custom_home_banner_wrap .home_banner.custom_banner .page-center {
    margin-top: 0;
  }
  .custom_home_banner_wrap .home_banner.custom_banner .banner-content h2 {
    margin-bottom: 15px;
    line-height: 59px;
  }
  .custom-home-row5 .span4 {
    width: 100% !important;
    padding: 0;
    padding-left: 0;
  }
  .custom_home_banner_wrap .home_banner.custom_banner .banner-content h1 {
    padding-top: 0;
    padding-bottom: 3px;
    line-height: 54px;
    margin-top: -2px;
  }
  .custom-home-row6 .span4:last-child .hs-button {
    margin-bottom: 0;
  }
  .custom_home_banner_wrap .home_banner.custom_banner .page-center {
    margin-top: 0;
    margin-bottom: 3px;
  }
  .custom-home-row4 h2 {
    margin-top: 47px;
  }
  .custom-home-row6 .span4 .hs-button {
    margin-bottom: 20px;
  }
  .custom-home-row2 img.hs-image-widget {
    margin: 0 auto;
    display: block;
  }
  .custom-home-row2 .span7 .dnd-module,
  .custom-home-row2 .span5 .dnd-module {
    display: block !important;
  }
}



@media(max-width:479px){
  .custom-design-row1 h2 span {
    font-size: 33px;
  }
  .custom-home-row4 h2 {
    margin-top: 46px;
    line-height: 34.2px;
    padding-bottom: 13px;
  }
  .custom-home-row1 h1 a {
    font-size: 30px;
}
}
/* ******************************************************************************
*********************************************************************************
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: #F8FAFC;
}

.header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1010px;
  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: #666666;
  border: 1.79px solid #D1D6DC;
  border-radius: 6px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 22px;
  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', sans-serif;
  font-size: 22px;
}

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

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







/*================Custom Styling=====================  */
header.header {
  padding: 10px 30px;
  position: fixed;
  z-index: 12;
  width: 100%;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.with-banner header.header {
  background-color: transparent;
  padding: 20px 30px;
}


.header-container {
  /* display: flex; */
  /* width: 100%; */
  /* vertical-align: middle; */
}

.logo {
  float: left;
  -webkit-transition: all 1000ms ease-in;
  -moz-transition: all 1000ms ease-in;
  -ms-transition: all 1000ms ease-in;
  -o-transition: all 1000ms ease-in;
  transition: all 1000ms ease-in;
  opacity: 1;
}

.custom-menu-primary.desktop-nav {
  float: right;
  vertical-align: middle;
  margin-top: 10px;
}

.logo a {
  display: block;
  margin-right: 30px;
  margin-left: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.logo a>img {
  display: block;
  overflow: hidden;
  max-width: 100%;
  max-height: 40px;
  max-height: 60px;
  width: 157.8px!important;
}

.scroll-body header.header {
  position: fixed;
  top: 0;
  background: rgba(35,35,35,0.95);
  padding: 10px 30px;
}

.header_wrapper {
  min-height: 60px;
}

.with-banner .header_wrapper {
  min-height: auto;
}
/*================Responsive styling================  */
@media(min-width:993px){
  label.hamburger{
    display:none;
  }
  .mobile_nav_wrap{
    display:none;
  }
}



@media(max-width:992px){
  .with-banner .header_wrapper {
    min-height: auto;
  }
  .header_wrapper {
    min-height: 60px;
  }
  .width-banner header.header {
    padding: 5px 20px;
  }

  .scroll-body header.header {
    padding: 5px 20px;
  }
  .with-banner header.header {
    padding: 5px 20px;
    background: rgba(35,35,35,0.95);
  }
  .custom-menu-primary.desktop-nav {
    display: none;
  }

  header.header {
    padding: 10px 20px;
    min-height: 50px;
    background: rgba(35,35,35,0.95);
  }

  .logo a>img {
    width: 105.19px !important;
  }

  .logo a {
    margin: 0;
  }

  label.hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    display: flex;
    vertical-align: middle;
    width: 30px;
    height: 30px;
  }

  label.hamburger>span {
    top: 4px;
    left: 4px;
    margin: 5px 0;
    position: relative;
    display: block;
    width: 22px;
    cursor: pointer;
    height: 2px;
    background: #ffffff;
    content: '';
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }

  label.hamburger>span:after,label.hamburger>span:before {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    content: '';
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }

  label.hamburger>span:after {
    top: -10px;
  }

  label.hamburger>span:before {
    bottom: -8px;
  }

  .header-container.clearfix {
    position: relative;
  }
  .mobile_nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 12;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    max-height: 0;
    padding: 0;
    background: rgba(35,35,35,0.95);
    box-sizing: border-box;
    -webkit-transition: all 300ms cubic-bezier(0,0.085,0.68,0.53);
    -moz-transition: all 300ms cubic-bezier(0,0.085,0.68,0.53);
    -ms-transition: all 300ms cubic-bezier(0,0.085,0.68,0.53);
    -o-transition: all 300ms cubic-bezier(0,0.085,0.68,0.53);
    transition: all 300ms cubic-bezier(0,0.085,0.68,0.53);
    vertical-align: middle;
  }

  .mobile_open .mobile_nav_wrap {
    padding: 50px 0;
    max-height: 100vh;
  }

  label.close_hamburger {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 30px;
    height: 30px;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  label.close_hamburger>span {
    background: transparent;
    top: 9px;
    left: 4px;
    margin: 5px 0;
    /* position: relative; */
  }

  label.close_hamburger>span:before, label.close_hamburger>span:after {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    content: '';
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -ms-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
  }

  label.close_hamburger>span:before {
    top: 1px;
    -webkit-transform: rotate( 45deg );
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate( 45deg );
  }

  label.close_hamburger>span:after {
    top: -1px;
    -webkit-transform: rotate( 135deg );
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate( 135deg );
    bottom: -6px;
  }

  .mobile_nav_wrap>div>ul {
    overflow: hidden;
    max-width: 1115px;
    float: none;
    /* width: 100%; */
    display: block;
    margin: 0;
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1 {
    position: relative;
    display: block !important;
    margin: 0;
    border: none;
    text-align: center;
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1>a {
    position: relative;
    padding: 10px 0;
    border-radius: 2px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    display: block;
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1>a:hover,
  .mobile_nav_wrap>div ul>li.active>a{
    background: rgba(0,0,0,0.95);
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1>a.active-item {
    background: rgba(0,0,0,0.95);
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1>ul.hs-menu-children-wrapper {
    flex-direction: column;
    display:none;
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1>ul.hs-menu-children-wrapper>li {
  }

  .mobile_nav_wrap>div>ul>li.hs-menu-depth-1>ul.hs-menu-children-wrapper>li>a {
    display: block;
    position: relative;
    padding: 10px 0;
    border: none;
    color: #a1a1a1;
    text-transform: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }

  span.child-trigger.icon-caret {
    position: absolute;
    top: -3px;
    right: 10px;
    display: block;
    width: 30px;
    height: 36px;
    padding: 10px 20px;
    cursor: pointer;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }

  span.child-trigger.icon-caret:before {
    position: relative;
    display: block;
    color: white;
    font-size: 24px;
    content: '\203A';
    -webkit-transform: rotate( 90deg );
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate( 90deg );
  }
  .scroll-body label.hamburger>span {
    top: 4px;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */


.footer-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 30px 0 20px;
    box-sizing: border-box;
}

.paragraph {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 30px;
    color: #999999;
    word-wrap: break-word;
}
.paragraph p{
    margin:0;
}
.paragraph a {
    color: #2a92e5;
    text-decoration: none;
}
.paragraph a:hover {
    color: #2180cc;
}
@media screen and (max-width: 992px){
.footer-container {
    width: 100%;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
}
/* ******************************************************************************
*********************************************************************************
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
*********************************************************************************
****************************************************************************** */


.main-wrap {
  padding-top: 60px;
  width: 100%;
  background: #ffffff;
}
.blog-container {
  max-width: 1010px;
  margin: 0 auto;
  padding: 50px 25px;
}
.blog-header {
  padding-top: 80px;
  padding: 80px 15px 20px;
}

body .comment-date {
  padding-bottom: 10px;
}
.comment-body p {
  margin: 0;
}

p.blog-category-list {
    margin-top: -16px;
}

.blog-archive-list span.filter-link-count {
  display: none;
}
body .comment-date, body .comment-from {
  display: block;
}
div#comments-listing {
  margin: 30px 0;
}
.custom-not-footer {
  text-align: left;
  display: flex;
}
.td-top {
  width: calc(100% - 217px);
  width: 76.932%;
  padding: 1px;
}
.custom-not-footer {
  margin: 2px 0 0 2px;
}
.hs-blog-listing .blog-post-content {
  margin: 0 0 38px 0;
}

.blog-post-content {
  margin: 0 0 20px 0;
}

.cm-blog-sidebar {
  width: 217px;
  padding:1px;
}
.columnlist-blog {
  width: 200px;
}
.blog-title {
  color: #333333;
  font-family: 'Raleway', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.blog-notice-comments-closed {
    margin: 0 0 14px 0;
    padding: 10px;
    background: #E6F0F9;
    border: 1px solid #A7C3D9;
    color: #696562;
}

.blog-comment-area {
    border-top: solid 1px #dadada;
    padding-top: 40px;
    margin-top: 40px;
}

.blog-title a {
  color: #333333;
}
.blog-date {
  font-size: 13px;
  color: #666666;
  line-height: 1;
  margin: 0;
  padding: 0;
  padding-bottom: 4px;
}
.date-text {
  cursor: pointer;
  margin: 0 8px 0 0;
  padding: 0 0 4px 0;
}
.blog-separator {
  clear: both;
  border-bottom: 1px solid #ddd;
  padding-top: 2px;
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 2px;
  height: 5px;
}

.blog-content {
  text-align: justify;
  clear: both;
  margin-bottom: 15px;
}

.paragraph-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto 20px;
  color: #666666;
  padding: 0;
  font-weight: 300;
}
.column-blog {
  margin: 0;
  padding: 0;
}
.blog-sidebar-separator {
  padding-left: 27px;
  padding-right:8px;
}
.blog-author-title, .blog-archive-list h3, .blog-category-list h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333333;
  font-family: 'Raleway', serif;
  font-weight: 400;
  line-height: 1.2em;
}
.blog-archive-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}
.blog-feed-link {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto 20px;
  color: #2a92e5;
  text-decoration: none;
}
.blog-feed-link a {
  color: #2a92e5;
}
.blog-feed-link a:hover {
  color: #2180cc;
}
p.blog-feed-link img {
  border: none;
  margin: 2px 5px 0 0;
  vertical-align: baseline;
}

.blog-social   .hs-blog-social-share .hs-blog-social-share-list {
  margin: 0px 0 10px;
  line-height: 1;
}

.blog-content ul,.blog-post__body.paragraph-text ul {
  padding-left: 3em;
  margin: 5px 0;
}

.blog-content ul li,.blog-post__body.paragraph-text ul li {
  padding-left: 5px;
  margin: 3px 0 0;
}
.table{
  margin:0 -15px;
}
.blog-post__body table,
.blog-content table{
  position: relative;
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  margin: 0;
  margin-top: 20px;
  border: 0;
  padding: 0;
}

.blog-post__body table td,
.blog-content table td{
  vertical-align: top;
  margin: 0;
  border: 0;
  padding: 0 15px!important;
  margin: 0 0;
  width: 33.3%;
}

.blog-post__body table td p,
.blog-content table td p{
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto 20px;
  color: #666;
  padding: 0;
  font-weight: 300;
}
.blog-post__body table tr,
.blog-content table tr{
  margin: 0 -15px;
  display: block;
}

/* post css                  */
.blog-post__body.paragraph-text {
  text-align: justify;
  clear: both;
  margin-bottom: 20px;
}
.post-container .blog-comments form {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 40px;
}
.blog-title-link:hover{
  color:#333;
}




@media(max-width:992px){
  .blog-container {
    padding: 30px 20px;
  }
}
@media(max-width:767px){
  .td-top {
    width: 100%;
  }
  .cm-blog-sidebar{
    width:100%;
    margin: -1px 0 0 1px;
  }
  .custom-not-footer {
    flex-wrap:wrap;
  }
  .custom-not-footer{
    margin: 1px 0 0 1px;
  }
  .blog-post__body table td,
  .blog-content table td{
    width: 100% !important;
    display: block;
  }.blog-sidebar-separator {
    padding-left: 0;
    padding-right: 0;
  }
  .blog-archive-list ul,.blog-feed-link{
    margin-bottom:0;
  }
  .author-name{
    margin-bottom:0
  }
}

@media(max-width:375px){
  .hs-blog-social-share .hs-blog-social-share-item{
    margin-bottom:15px;
  }
}






/* TODO: Find a better place for this */
.content-wrapper {
  max-width: 1240px;
  /*   padding: 0 20px; */
  margin: 0 auto;
}
.hs-blog-listing .header_wrapper, .hs-blog-post .header_wrapper {
  min-height: 0;
} 
.blog-header {
  background-color: transparent;
  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: 24px;
}
.blog-index__post-content p {
  font-family: 'Open Sans', sans-serif;
}
.blog-index__post-content a {
  color: #666666;
}
.blog-index__post img {
  max-width: 100%;
  height: auto;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 3.3rem;
}
.blog-pagination__link {
  display: inline-flex;
  padding: .25rem .4rem;
  margin: 0 .1rem;
  color: #666666;
  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: #666666;
  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: #666666;
}
.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: #666666;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: 'Open Sans', sans-serif;
  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: transparent;
  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: #666666;
  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 #2a92e5;
  color: #2a92e5;
}
.blog-comments .hs-button:hover {
  background-color: #2a92e5;
  color: #fff;
}
.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #2a92e5;
}

/*             Blog Listing with Sidebar            */

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

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

/*             Blog Grid Listing            */

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

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

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

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

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

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

.blog-index__post-content--small h2 {
  font-size: 18px;
  line-height: 26px;
}

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

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

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

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

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

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

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

/*             Blog Grid Listing with Sidebar            */

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

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

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

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

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

.blog-sidebar h3 {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 600;
  line-height: 37px;
}

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

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

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

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

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

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

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

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

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

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

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

/* Mobile Blog Sidebar */

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

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

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

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

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

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

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

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

/* Blog Subscription Section */

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

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

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

/*             Blog Post Layout          */

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

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

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

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

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

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

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

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

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

/* Blog Comments */

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

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

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

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

/* Related Articles */

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

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

.blog-recent-posts .blog-post__meta-section {
  justify-content: flex-end;
}
/* ******************************************************************************
*********************************************************************************
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: #ddd;
  z-index: -1;
}
.systems-page input#hs-pwd-widget-password {
  height: 44px !important;
}
@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;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: .75rem .75rem;
}
.hs-search-results {
  margin-top: 2rem;
}
ul.hs-search-results__listing li {
  margin-bottom: 2rem;
}
.systems-page button, .systems-page .hs-button {
  margin: 15px 0;
}
.hs-search-results__title {
  font-family: 'Raleway', serif;
  font-size: 1.25rem;
  color: #666666;
  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: #666666;
}
.email-prefs .item.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.email-prefs .item.disabled input:disabled {
  cursor: not-allowed;
}
#hs_cos_wrapper_subscription_preferences_email_subscriptions form#email-prefs-form {
  max-width: 100%;
}
p.header {
  position: static !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}
ul.no-list.hs-error-msgs {
  padding-left: 2px ;
}
.systems-page form {
  max-width: 767px;
}
.systems-page .hs-form-field {
  margin-bottom: 18px;
}
div#hs_cos_wrapper_backup_unsubscribe input.email-edit.hs-input {
  width: 100% !important;
  padding: 9px 10px!important;
}

.warning-container {
  padding: 38px 40px;
  padding-bottom: 0;
  box-sizing: border-box;
  text-align: center;
  background-color: white;
  border: 1px solid #D4D4D4;
  min-height: 335px;
  max-width: 484px;
  width:100%;
  margin: 0 auto;
  margin-top: 10%;
  -webkit-box-shadow: 0px 0px 41px -8px rgb(237 234 237);
  -moz-box-shadow: 0px 0px 41px -8px rgba(237,234,237,1);
  box-shadow: 0px 0px 41px -8px rgb(237 234 237);
}


.warning-container h2.header {
  margin: 26px 0 7px 0;
  color: #363B3E;
  font-size: 45px;
  font-weight: 500;
  background: transparent;
}
.warning-container p.error {
  margin: 0 0 0 0;
  color: #9BA0A3;
  margin-bottom: 35px;
  font-weight: normal;
}
.warning-container hr {
  border: 1px solid #E7E7E7;
  border-top: 0;
}

.check-url {
  margin-top: 0;
  font-weight: 500;
}
.check-url, .otherwise {
  color: #666C70;
}
.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.warning-container .bottom-content p.otherwise {
  font-weight: normal;
  margin:0;
}

.warning-container .bottom-content {
  display: inline-block;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.warning-container .bottom-content p {
  color: #666C70;
  margin-top: 0;
  font-weight: 500;
  margin: 0 0 16px;
  font-family: 'Proxima Nova';
  font-size: 16px;
}

.warning-container * {
  line-height: normal;
  font-family: 'Proxima Nova';
}

@media (max-width: 767px) {
  div#hs_cos_wrapper_backup_unsubscribe input.email-edit.hs-input {
    width: 100% !important;
  }
  .systems-page form {
    max-width: 100%;
  }
  .systems-page h1{
    font-size: 26px;
  }
  .systems-page h2, .systems-page h3{
    font-size: 22px;
  }
}