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

.banner-section .row-fluid [class*="span"] {
  min-height: 0;
}

.dnd-section > .row-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.dnd-section .widget-type-cell {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .dnd-section .widget-type-cell {
    padding-left: 0px;
    padding-right: 0px;
  }
}


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

  .dnd-section > .row-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: "FFMarkWeb";
  src: url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_11_0.eot") format("embedded-opentype"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_11_0.woff2") format("woff2"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_11_0.woff") format("woff"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_11_0.ttf") format("truetype");
}

@font-face {
  font-family: "FFMarkWebBold";
  src: url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_6_0.eot") format("embedded-opentype"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_6_0.woff2") format("woff2"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_6_0.woff") format("woff"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_6_0.ttf") format("truetype");
}

@font-face {
  font-family: "FFMarkWebBook";
  src: url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_7_0.eot") format("embedded-opentype"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_7_0.woff2") format("woff2"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_7_0.woff") format("woff"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_7_0.ttf") format("truetype");
}

@font-face {
  font-family: "FFMarkWebMedium";
  src: url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_F_0.eot") format("embedded-opentype"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_F_0.woff2") format("woff2"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_F_0.woff") format("woff"),
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/32D827_F_0.ttf") format("truetype");
}

@font-face {
  font-family: freight-sans-pro;
  src: url("https://use.typekit.net/af/442215/000000000000000000010b5a/27/l?subset_id=2&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/442215/000000000000000000010b5a/27/d?subset_id=2&fvd=n4&v=3") format("woff"),
    url("https://use.typekit.net/af/442215/000000000000000000010b5a/27/a?subset_id=2&fvd=n4&v=3") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: auto;
}

@font-face {
  font-family: "squarespace-ui-font";
  src: url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/squarespace-ui-font.eot") format("embedded-opentype"), 
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/squarespace-ui-font.woff") format("woff"), 
    url("https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/BiblioCommons_December2020/fonts/squarespace-ui-font.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}



html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Lato, serif;
  font-size: 1rem;
  color: #545559;
  line-height: 1.5em;
}

::-moz-selection {
  background-color: #000;
  color: #fff;
}

::selection {
  background-color: #000;
  color: #fff;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

a:hover {
  text-decoration: underline;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: Merriweather, serif;
  color: #494a52;
  word-break: break-word;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.3;
}

h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.5;
}

h4 {
  font-family: Lato, sans-serif;
  font-weight: normal;
  font-size: 1.175rem;
  line-height: 1.5;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
}

h6 {
  font-size: .9rem;
  line-height: 1.5;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 21px;
}

ul li,
ol li {}

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

blockquote {
  line-height: 1.5em;
  border-left: 2px solid #A9A9A9;
  margin: 0;
  padding: .5em 2.5em;
  font-style: italic;
}

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

.disable-focus-styles :focus {
  outline: none;
}
 */
@media (max-width: 767px) {
  html { }
}

@media (max-width: 480px) {
  html { }
}
.hs-input {
  height: auto;
  min-height: 2.75rem;
  background-color: #fff;
  border: 1px solid #eaebeb;
  border-radius: 20rem;
  margin-bottom: 0;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
}

.hs-form label {
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: inherit;
  text-decoration: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  display: inline-block;
}

textarea.hs-input {
  height: auto;
  min-height: 11.25rem;
  border-radius: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  overflow: auto;
}

.hs-form-field {
  margin-bottom: 18px;
}

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

.hs-input[type=checkbox], .hs-input[type=radio] {
  width: auto;
  display: inline-block;
  margin-right: 4px;
}

.hs-input[type=checkbox]+ span, .hs-input[type=radio]+ span {
  display: inline-block;
  vertical-align: middle;
}


.hs-input[type=checkbox] {
  appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  min-width: 1.125rem;
  cursor: pointer;
  border: 1px solid #d5d6d7;
  border-radius: 0;
  margin-top: 0;
  margin-right: 0.5rem;
  transition: all .2s;
  padding: 0;
  line-height: normal;
  font-family: inherit;
  float: left;
  position: absolute;
  left: 0;
  top: 3px;
}

li.hs-form-booleancheckbox {
  padding: 0;
}
.input{
margin:0 !important;
}
ul.inputs-list {
  padding: 0;
}

label.hs-form-booleancheckbox-display,label.hs-form-checkbox-display {
  position: relative;
  padding-left: 24px;
}

ul.inputs-list.multi-container li.hs-form-checkbox {
  padding: 0;
}

label.hs-form-checkbox-display {}

.hs-input[type=checkbox]:checked {
  background-image: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/images/custom-checkbox-checkmark.589d534424.svg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #55565A;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

ul.inputs-list.multi-container li {
  padding: 0;
}

li.hs-form-radio {}

.hs-input[type=radio] {
  width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  min-width: 1.125rem;
  cursor: pointer;
  border: 1px solid #c1c2c2;
  border-radius: 100px;
  margin-top: 0;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
  appearance: none;
  padding: 0;
  top: 3px;
}

label.hs-form-radio-display {
  position: relative;
  padding-left: 24px;
}

.hs-input[type=radio]:checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #55565A;
}

.actions {
  margin: 0;
}

.hs-button {
  color: #fff;
  text-align: center;
  background-color: #5251a2;
  border: 1px solid #5251a2;
  border-radius: 2rem;
  padding: 0.75rem 3rem;
  font-weight: 400;
  transition: all .2s;
  line-height: inherit;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  margin: 0;
}

.hs-button:hover {
  color: #5251a2;
  text-decoration: none;
  background-color: #fff;
}
.hs-input {
  width: 100%;
}
fieldset {
  max-width: 100% !important;
}

.hs-input:not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}

fieldset.form-columns-2 .field {
  width: Calc(50% - 7.5px)!important
}

fieldset.form-columns-2 {
  display: flex;
  flex-wrap:wrap;

  justify-content: space-between
}

fieldset.form-columns-3 .field {
  width: Calc(33.3337% - 10px)!important;
}

fieldset.form-columns-3 {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between
}
.hs-error-msgs  label {
  color: red!important;
  margin-top: 8px;
}

ul.no-list.hs-error-msgs.inputs-list,ul.no-list.hs-error-msgs.inputs-list li {
  margin: 0;
  padding: 0;
}

select.hs-input{
  appearance: none;
  background-image: url('data:image/png;base64,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');
  background-size: 33px;
  background-repeat: no-repeat;
  background-position: 99% 50%;
}

@media(max-width:767px){
  fieldset.form-columns-3 .field,
  fieldset.form-columns-2 .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 {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
tables look throughout your site.
*********************************************************************************
****************************************************************************** */

table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}

/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your landing pages
look if there is anything specific to your landing pages.
*********************************************************************************
****************************************************************************** */
/* ******************************************************************************
*********************************************************************************
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 headers look
when it comes to the logo, search field, language switcher and navigation.
You will also find the mobile menu styles below.
*********************************************************************************
****************************************************************************** */

.custom-header {
  padding: 0 20px;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1em;
  background-color: #fff;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  position: relative;
}

.header__container {
  margin: 0 auto;
  max-width: 100% !important;
}

.lp-spacer {
  height: 76px;
}

.header-inner {
  padding: 20px 0;
  display: table;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: header-anim 1s ease-in-out;
  animation: header-anim 1s ease-in-out;
}

.custom-logo h1 {
  font-family: FFMarkWebBold,sofia-pro,helvetica,ui-sans-serif;
  margin: 0;
  font-size: 0;
  font-weight: 500;
  font-style: normal;
  max-width: 100%;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1em;
  text-rendering: optimizeLegibility;
}

.custom-logo a {
  display: block;
}

.custom-logo img {
  height: auto;
  max-height: 100px;
  width: auto;
  max-width: 100%;
}

.mobile-nav-toggle {
  display: none;
}

.custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: none;
  text-decoration: none;
  line-height: 1em;
}



.header-contact .hs-button {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  border-width: 2px;
  border-style: solid;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-family: freight-sans-pro;
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  font-style: normal;
  letter-spacing: 0px;
  text-transform: none;
  text-decoration: none;
  margin-left: 1em;
  padding: 1em 1.5em;
  display: block;
  margin: .75em 1em;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
  -moz-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
  -ms-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
  -o-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
  transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
}

.header-contact .hs-button:hover {
  text-decoration: none;
}

@media only screen and (min-width: 641px) {

  .custom-header {
    width: 100%;
  }

  .custom-logo {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
    width: 160px;
  }

  .custom-logo h1 {
    width: 160px;
  }

  .custom-menu-primary.desktop {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper {
    position: relative;
    z-index: 1000;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li.hs-item-has-children {
    position: relative;
  }

  .header-contact {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li > a {
    font-family: FFMarkWeb,sofia-pro,helvetica,sans-serif;
    display: block;
    padding: .75em 1em;
    -webkit-transition: color .1s 0s ease-in-out;
    -moz-transition: color .1s 0s ease-in-out;
    -ms-transition: color .1s 0s ease-in-out;
    -o-transition: color .1s 0s ease-in-out;
    transition: color .1s 0s ease-in-out;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child > a {
    font-family: freight-sans-pro;
    font-weight: 400;
    border-width: 2px;
    padding: 4px;
    padding-left: 0px;
    padding-right: 0px;
    margin: .75em 1em;
    border-bottom: 2px solid #fff;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child.active-branch > a,
  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:first-child > a.active {
    border-bottom: 2px solid #55565a;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    padding: 1em 0;
    display: inline-block;
    position: absolute;
    top: 100%;
    left: -.5em;
    z-index: 1000;
    font-size: 16px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-transform: scale(1,0);
    -moz-transform: scale(1,0);
    -ms-transform: scale(1,0);
    -o-transform: scale(1,0);
    transform: scale(1,0);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: -webkit-transform .14s 0s ease-in-out;
    -moz-transition: -moz-transform .14s 0s ease-in-out;
    -ms-transition: -ms-transform .14s 0s ease-in-out;
    -o-transition: -o-transform .14s 0s ease-in-out;
    transition: transform .14s 0s ease-in-out;
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li:hover ul {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .custom-menu-primary.desktop .hs-menu-wrapper > ul > li ul li a {
    font-family: freight-sans-pro;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    line-height: 1em;
    color: #55565a;
    display: block;
    padding: .5em 1.5em;
    -webkit-transform: translatez(0);
    -moz-transform: translatez(0);
    -ms-transform: translatez(0);
    -o-transform: translatez(0);
    transform: translatez(0);
  }
}


@media only screen and (min-width: 856px) {

  .custom-menu-primary.mobile {
    display: none;
  }
}

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

  .custom-menu-primary.desktop {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 1002;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    padding: 0;
    vertical-align: middle;
    line-height: 16px;
    text-align: right;
    cursor: pointer;
    user-select: none;
    color: #55565a;
    width: 22px;
    height: 22px;
  }

  .mobile-nav-toggle .top-bar, .mobile-nav-toggle .middle-bar, .mobile-nav-toggle .bottom-bar {
    width: 22px;
    height: 2px;
    background-color: #55565a;
    -webkit-transition: -webkit-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
    -moz-transition: -moz-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
    -ms-transition: -ms-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
    -o-transition: -o-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
    transition: transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    position: absolute;
    top: 0;
    right: 0;
  }

  .mobile-nav-toggle .middle-bar {
    -webkit-transition: opacity 0s .15s linear;
    -moz-transition: opacity 0s .15s linear;
    -ms-transition: opacity 0s .15s linear;
    -o-transition: opacity 0s .15s linear;
    transition: opacity 0s .15s linear;
    top: 7px;
  }

  .mobile-nav-toggle .bottom-bar {
    top: 14px;
  }

  .mobile-open .mobile-nav-toggle .top-bar, .mobile-open .mobile-nav-toggle .bottom-bar {
    -webkit-transition: top .1s .1s ease-in-out,-webkit-transform .1s .2s ease-in-out;
    -moz-transition: top .1s .1s ease-in-out,-moz-transform .1s .2s ease-in-out;
    -ms-transition: top .1s .1s ease-in-out,-ms-transform .1s .2s ease-in-out;
    -o-transition: top .1s .1s ease-in-out,-o-transform .1s .2s ease-in-out;
    transition: top .1s .1s ease-in-out,transform .1s .2s ease-in-out;
  }

  .mobile-open .mobile-nav-toggle .top-bar {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
  }

  .mobile-open .mobile-nav-toggle .middle-bar {
    opacity: 0;
  }

  .mobile-open .mobile-nav-toggle .bottom-bar {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 7px;
  }

  .mobile-open .body-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    cursor: e-resize;
    -webkit-transform: translatex(-260px) translatez(0);
    -moz-transform: translatex(-260px) translatez(0);
    -ms-transform: translatex(-260px) translatez(0);
    -o-transform: translatex(-260px) translatez(0);
    transform: translatex(-260px) translatez(0);
  }


  .custom-menu-primary.mobile {
    position: fixed;
    width: 260px;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    line-height: 1em;
    text-align: left;
    overflow: auto;
    visibility: hidden;
    background-color: #fff;
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: height 0s .14s linear,visibility 0s .14s linear;
    -moz-transition: height 0s .14s linear,visibility 0s .14s linear;
    -ms-transition: height 0s .14s linear,visibility 0s .14s linear;
    -o-transition: height 0s .14s linear,visibility 0s .14s linear;
    transition: height 0s .14s linear,visibility 0s .14s linear;
  }

  .mobile-open .custom-menu-primary.mobile {
    height: 100%;
    visibility: visible;
    -webkit-transition: height 0s .14s linear,visibility 0s 0s linear;
    -moz-transition: height 0s .14s linear,visibility 0s 0s linear;
    -ms-transition: height 0s .14s linear,visibility 0s 0s linear;
    -o-transition: height 0s .14s linear,visibility 0s 0s linear;
    transition: height 0s .14s linear,visibility 0s 0s linear;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    padding: 24px 36px 72px;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li.hs-item-has-children {
    position: relative;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a {
    display: block;
    padding: .75em 0;
    font-weight: 400;
    font-style: normal;
    font-family: FFMarkWeb,sofia-pro,helvetica,sans-serif;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    line-height: 1em;
    color: #55565a;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:first-child > a {
    border-bottom: 2px solid #fff;
    padding: 4px;
    padding-left: 0px;
    padding-right: 0px;
    margin: .75em 1em;
    font-family: freight-sans-pro;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    line-height: 1em;
    color: #55565a;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:first-child.active-branch > a,
  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li:first-child > a.active {
    border-bottom: 2px solid #55565a;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li.hs-item-has-children > a:before {
    content: '+';
    padding-right: .25em;
    width: .75em;
    display: inline-block;
    width: 16px;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li.hs-item-has-children.clicked > a:before {
    content: '–';
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li > a:hover {
    color: #55565a;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li ul {
    list-style: none;
    margin: 0;
    height: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5em;
    font-size: 16px;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li.clicked ul { 
    height: auto;
    max-height: 999px;
    padding: 0 1em 1em;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li ul li {
    padding: .5em 0;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li ul li a {
    font-family: freight-sans-pro;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: none;
    line-height: 1em;
    color: #55565a;
    padding: 0 0 .5em;
    display: block;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li ul li a:hover {
    color: #55565a;
    text-decoration: none;
  }

  .custom-menu-primary.mobile .hs-menu-wrapper > ul > li ul li:last-child a {
    padding-bottom: 1em;
  }

  .header-contact .hs-button {
    background-color: transparent;
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: subpixel-antialiased;
    border: 2px solid #55565a;
    color: #55565a;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-family: freight-sans-pro;
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    font-style: normal;
    letter-spacing: 0px;
    text-transform: none;
    text-decoration: none;
    margin-left: 1em;
    padding: 1em 1.5em;
    display: block;
    margin: .75em 1em;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    -moz-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    -ms-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    -o-transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
    transition: background-color .1s 0s ease-in-out,color .1s 0s ease-in-out;
  }

  .header-contact .hs-button:hover {
    background-color: #55565a;
    color: #efefef;
    text-decoration: none;
  }

  .header-contact .hs-button {
    display: inline-block;
    margin: 1em 0 0 0;
    line-height: 1;
  }

  #site-wrapper {
    position: relative;
    background-color: #fff;
    width: 100%;
    -webkit-transition: -webkit-transform .2s ease-in-out;
    -moz-transition: -moz-transform .2s ease-in-out;
    -ms-transition: -ms-transform .2s ease-in-out;
    -o-transition: -o-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
  }

  .mobile-open #site-wrapper {
    position: fixed;
    -webkit-transform: translatex(-260px);
    -webkit-transform: translate3d(-260px,0,0);
    -moz-transform: translatex(-260px) translatez(0);
    -moz-transform: translate3d(-260px,0,0);
    -ms-transform: translatex(-260px) translatez(0);
    -ms-transform: translate3d(-260px,0,0);
    -o-transform: translatex(-260px) translatez(0);
    -o-transform: translate3d(-260px,0,0);
    transform: translatex(-260px) translatez(0);
    transform: translate3d(-260px,0,0);
  }
}

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

  .header-inner {
    padding: 20px 0;
    display: block;
  }

  .custom-logo {
    width: 160px;
    display: inline-block;
    vertical-align: middle;
    max-width: 240px;
    padding: 0;
  }

  .header-contact .hs-button {
    display: inline-block;
    margin: .75em 0 0 0;
    line-height: 1;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
footer looks when it comes to spacing and other general styles.
*********************************************************************************
****************************************************************************** */

.footer {
  background-color: transparent;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.footer__container {
  margin: 0 auto;
  max-width: 1020px !important;
}

.footer-inner {
  padding: 64px 32px;
}

.row {
  margin-left: -17px;
  margin-right: -17px;
}

.blog-post .row{
margin-left: 0px;
  margin-right: 0px;
}

.row:before, .row:after {
  content: "";
  display: table;
}

.row:after {
  clear: both;
}

.footer-inner-wrap {
  margin-top: 1.5em;
}

.footer-logo {
  float: left;
  width: 16.6667%;
}

.footer-logo-inner {
  padding: 17px;
  padding-top: 0;
}

.footer-logo-wrap > div {
  line-height: 0;
  text-align: center;
  position: relative;
  padding-bottom: 29.5154%;
  overflow: hidden;
}

.footer-logo img {
  left: -0.43295%;
  top: 0%;
  width: 100.866%;
  height: 100%;
  position: absolute;
  max-width: none;
  display: block;
}

.footer-bs {
  float: left;
  width: 8.3333%;
}

.footer-bs-inner {
  position: relative;
  height: auto;
  padding: 17px;
  padding-top: 0;
}

.sqs-block-content {
  height: 34px;
  visibility: hidden;
  overflow: hidden;
}
.blog-post__body .sqs-block-content {
    height: auto;
    visibility: visible;
    overflow: auto;
}
.about-menu {
  float: left;
  width: 25%;
}

.about-menu-inner {
  padding: 17px;
  padding-top: 0;
}

.about-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.about-menu .hs-menu-wrapper > ul > li {
  font-size: 14px;
}

.about-menu .hs-menu-wrapper > ul > li > a {
  font-family: FFMarkWebBook,sofia-pro,helvetica,sans-serif;
  text-decoration: none;
}

.about-menu .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}

.about-menu .hs-menu-wrapper > ul > li:not(:first-child) > a {
  padding-left: 15px;
}

.about-menu .hs-menu-wrapper > ul > li:nth-child(4) > a {
  padding-left: 0;
}

.footer-menu {
  float: left;
  width: 25%;
}

.footer-menu-inner {
  padding: 17px;
  padding-top: 0;
}

.footer-menu .hs-menu-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.footer-menu .hs-menu-wrapper > ul > li {
  font-size: 14px;
}

.footer-menu .hs-menu-wrapper > ul > li > a {
  font-family: FFMarkWebBook,sofia-pro,helvetica,sans-serif;
  text-decoration: none;
}

.footer-menu .hs-menu-wrapper > ul > li > a:hover {
  text-decoration: none;
}

.footer-text-wrapper {
  width: 25%;
  float: left;
}

.footer-text {
  padding: 17px;
  padding-top: 0;
}

.footer-text p {
  font-size: 14px;
  margin: 0;
}

.footer-text p:first-child {
  margin-bottom: 1em;
}

.footer-text p:last-child {
  margin-top: 1em;
  white-space: pre-wrap;
}

.footer-button {
  padding: 17px;
  text-align: center;
}

.footer-button a {
  font-family: FFMarkWebBook,sofia-pro,helvetica,sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  text-transform: none;
  letter-spacing: 0px;
  padding: 13px 26px;
  border-width: 2px;
  border-style: solid;
  display: inline-block;
  width: auto;
  height: auto;
  text-decoration: none;
  -webkit-transition: 0.1s background-color linear, 0.1s color linear;
  -moz-transition: 0.1s background-color linear, 0.1s color linear;
  -o-transition: 0.1s background-color linear, 0.1s color linear;
  transition: 0.1s background-color linear, 0.1s color linear;
}

.footer-button a:hover {
  text-decoration: none;
}


.footer-bs2 {
  padding: 17px;
  clear: both;
  position: relative;
}

.footer-bs2-inner {
  height: 34px;
}

.footer-social {
  position: relative;
  height: auto;
  padding: 17px;
}

.footer-social-links {
  text-align: center;
}

.footer-social-links a {
  width: 20px;
  height: 20px;
  margin: 0 6px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  text-decoration: none;
  -webkit-transition: background-color 170ms ease-in-out;
  -moz-transition: background-color 170ms ease-in-out;
  -ms-transition: background-color 170ms ease-in-out;
  -o-transition: background-color 170ms ease-in-out;
  transition: background-color 170ms ease-in-out;
  z-index: 0;
}

.footer-social-links a > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
  transform: scale(2);
}

.footer-social-links a svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #fff;
  -webkit-transition: fill 170ms ease-in-out;
  -moz-transition: fill 170ms ease-in-out;
  -ms-transition: fill 170ms ease-in-out;
  -o-transition: fill 170ms ease-in-out;
  transition: fill 170ms ease-in-out;
}

.footer-social-links:hover svg {
  fill: rgba(255,255,255,.4);
}

.footer-social-links:hover a:hover svg {
  fill: #fff;
}

.sqs-use--icon, .sqs-use--mask {
  fill: #fff;
  -webkit-transition: fill 170ms ease-in-out;
  -moz-transition: fill 170ms ease-in-out;
  -ms-transition: fill 170ms ease-in-out;
  -o-transition: fill 170ms ease-in-out;
  transition: fill 170ms ease-in-out;
}

.copyright {
  position: relative;
  height: auto;
  padding: 17px;
  padding-bottom: 0;
}

.copyright p {
  font-family: FFMarkWeb,sofia-pro,helvetica,sans-serif;
  font-size: 14px;
  text-align: center;
  margin: 0;
}


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

  .footer-inner {
    padding: 20px;
    text-align: center;
  }

  .footer-logo, .footer-bs, .about-menu, .footer-menu, .footer-text-wrapper {
    float: none;
    width: auto;
  }

  .footer-logo-wrap {
    max-width: 227.0px;
    margin: auto;
  }

  .footer-logo-inner {
    padding: 17px;
  }

  .about-menu-inner, .footer-text, .footer-menu-inner {
    padding: 17px;
  }

  .footer-bs, .footer-bs2 {
    display: none;
  }

  .copyright {
    padding: 17px;
  }
}
/* ******************************************************************************
*********************************************************************************
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
*********************************************************************************
****************************************************************************** */


.section.post-footer .actions {
  text-align: left;
}

.blog-comments .hs-submit {
  text-align: center;
  margin-top: 30px;
}

.hs_recaptcha.hs-recaptcha.field.hs-form-field {
  overflow: hidden;
  overflow-x: auto;
}

input[type="search"]::-webkit-search-cancel-button { 
  display:none; 
}

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

.grecaptcha-badge {
  margin-left: 0;
}


/* TODO: Find a better place for this */

.content-wrapper {
  max-width: 1020px;
  padding-left: 32px;
  padding-right: 32px;
  margin: 0 auto;
}


p.filter-heading {
  margin: 0 auto -32px;
  padding: 32px 32px 0;
  max-width: 700px;
  padding-left: 0;
  text-transform: capitalize;
}

.filter-heading a {
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #d12e90;
  text-decoration: none;
  padding: .5em 0 0;
  border-bottom: 2px solid #d12e90;
}

.filter-heading span:after {
  content: '\00D7';
  padding-left: 1em;
}

.blog-list-wrap, .post-wrapper {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
}

.blog-list-wrap .content-wrapper {
  width: auto;
  margin: auto;
  max-width: 1020px;
  padding: 96px 32px;
  padding-top: 35px;
}

.post-item + .post-item {
  margin-top: 128px;
}

.blog-index {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

.post-item .entry-header {
  margin-bottom: 36px;
}

.entry-morefrom {
  display: inline;
  text-transform: capitalize;
}


.post-item .entry-header h1 {
  font-weight: 500;
  color: #55565a;
  font-style: normal;
  font-size: 64px;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1em;
  margin: 12px 0;
}

.post-item:first-child .entry-header h1 {
  /*   margin-top: 0; */
}

.post-item .entry-header h1 a {
  font-weight: 500;
  color: #55565a;
  text-decoration: none;
}

.post-item .entry-header a, 
.post-item .entry-header a:hover {
  color: #545559;
  text-decoration: none;
}

.entry-content {
}

.entry-content .p-summary p {
  margin-top: 0;
  margin-bottom: 1em;
}

.entry-more-link {
  margin-top: 1em;
  margin-bottom: 0;
}

.entry-more-link a {
  display: block;
  min-width: 2em;
  min-height: 1em;
  color: #d12e90;
  text-decoration: none;
}

.entry-more-link a:hover {
  color: #d12e90;
  text-decoration: none;
}

.entry-more-link a:before {
  content: attr(data-read-more);
}

.entry-more-link a:after {
  content: " \279D";
  font: normal .9em sans-serif;
}


.blog-pagination {
  margin-top: 6em;
}

.blog-pagination > div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.blog-pagination .newer {
  padding-right: 1em;
}

.blog-pagination .older {
  padding-left: 1em;
  text-align: right;
}

.blog-pagination a {
  display: block;
  color: #d12e90;
  text-decoration: none;
}

.blog-pagination a:hover {
  color: #d12e90;
  text-decoration: none;
}


.post-wrapper .content-wrapper {
  width: auto;
  margin: auto;
  max-width: 1020px;
  padding: 96px 32px;
  padding-top: 35px;
}

.blog-post-wrap {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
  vertical-align: top;
}

.blog-post-wrap .entry-header {
  margin-bottom: 36px;
}

.blog-post-wrap .entry-header a, 
.blog-post-wrap .entry-header a:hover {
  color: #545559;
  text-decoration: none;
}

.blog-post__body p {
  white-space: pre-wrap;
}

.blog-post__body p:first-child {
  margin-top: 0;
}

/* .blog-post__body h2, .blog-post__body h3 {
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0px;
  text-transform: none;
  line-height: 1.2em;
  color: #55565a;
  margin: 1em 0 .5em;
  white-space: pre-wrap;
} 
 */
.entry-footer {
  margin-top: 2em;
  line-height: 1.25em;
}

.entry-footer .entry-tags {
  max-width: 30em;
  color: #545559;
  margin-top: 1em;
  margin-bottom: 1em;
}

.entry-footer .entry-tags a {
  color: #545559;
  text-transform: capitalize;
  text-decoration: none;
}

.entry-footer .entry-tags a:hover {
  color: #545559;
  text-decoration: none;
}

.ss-social-button:before {
  font-family: 'squarespace-ui-font';
  font-style: normal;
  speak: none;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  content: "\e02b";
  margin-right: .4em;
  font-size: .85em;
  width: auto;
  height: auto;
  line-height: inherit;
  text-align: left;
  vertical-align: initial;
  display: inline-block;
}

.squarespace-social-buttons {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.ss-social-list-wrapper {
  position: absolute;
  overflow: hidden;
  z-index: 10000;
  top: 0;
  top: 22px;
  left: 0;
  display: none;
}

.ss-social-button-list {
  padding: 14px;
  text-align: left;
  min-width: 108px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  background-color: rgba(254,254,254,.9);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(242,242,242,.05);
  border: 1px solid #ccc;
  border-radius: 5px;
}

.ss-social-button-list .hs-blog-social-share {
  height: auto;
}

.ss-social-button-list .hs-blog-social-share .hs-blog-social-share-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hs-blog-social-share .hs-blog-social-share-item {
  float: none;
  margin-right: 0;
  margin-bottom: 10px;
  min-height: 28px;
}

.hs-blog-social-share .hs-blog-social-share-item:last-child {
  margin-bottom: 0;
}


.post-pagination {
  margin-top: 6em;
}

.post-pagination > div {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

.post-pagination .newer {
  padding-right: 1em;
}

.post-pagination .older {
  padding-left: 1em;
  text-align: right;
}

.post-pagination a {
  display: block;
  color: #d12e90;
  text-decoration: none;
}

.post-pagination a:hover {
  color: #d12e90;
  text-decoration: none;
}

.blog-comments {
  margin: 20px 0;
  margin: 96px 0 0;
}

.blog-post .row{
  margin-left: 0px;
  margin-right: 0px;
}


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

  .blog-list-wrap .content-wrapper, .post-wrapper .content-wrapper {
    padding: 32px;
    padding-top: 35px;
  }
}


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

  .blog-list-wrap .content-wrapper, .post-wrapper .content-wrapper {
    padding: 40px 20px;
    padding-top: 35px;
  }

  .post-item+.post-item {
    margin-top: 80px;
  }

  .post-item .entry-header h1 {
    font-size: 26px;
  }

  .content-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-comments {
    margin: 40px 0 0;
  }

  .post-item .entry-header {
    margin-bottom: 12px;
  }

  p.filter-heading {
    margin: 0 auto;
    padding: 1em 1em 0;
  }
}


.hs-blog-post .color-overlay{
  display: none !important;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba3ed704d42aab612a1_FontFont%20-%20MarkOT-Medium.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba3f12c2e9e0f122cd7_FontFont%20-%20MarkOT-MediumItalic.woff2) format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba30b99d10ecc67a39f_FontFont%20-%20MarkOT-Black.woff2) format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba3f620cb6475f41dba_FontFont%20-%20MarkOT-Book.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba39892b582e95e8ca9_FontFont%20-%20MarkOT-Light.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba307513a63390539cf_FontFont%20-%20MarkOT-LightItalic.woff2) format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba3abd6cb4a8519bf2b_FontFont%20-%20MarkOT-BookItalic.woff2) format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba3f12c2e3bea122cdb_FontFont%20-%20MarkOT-BlackItalic.woff2) format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba4ad19a1d3705c3323_FontFont%20-%20MarkOT-Thin.woff2) format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FF Mark';
  src: url(https://8616836.fs1.hubspotusercontent-na1.net/hubfs/8616836/raw_assets/public/BiblioCommons_December2020/fonts/640e4ba339aaa201266e095e_FontFont%20-%20MarkOT-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'webflow-icons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype");
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"], [class*=" w-icon-"] {
  speak: none;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: 'webflow-icons' !important;
}
.w-icon-slider-right:before {
  content: "î˜€";
}

.w-icon-slider-left:before {
  content: "î˜";
}

.w-icon-nav-menu:before {
  content: "î˜‚";
}

.w-icon-arrow-down:before, .w-icon-dropdown-toggle:before {
  content: "";
}

.w-icon-file-upload-remove:before {
  content: "î¤€";
}

.w-icon-file-upload-icon:before {
  content: "î¤ƒ";
}
.screenreader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
body {
  line-height: 1.5;
  word-break: break-word;
}

h1 {
  letter-spacing: -1px;
  line-height: 1.2;
}

h2 {
  line-height: 1.2;

}

h3 {

  line-height: 1.2;

}

h4 {

  line-height: 1.3;
}

h5 {

  line-height: 1.4;

}

h6 {

  line-height: 1.4;
}
h1,h2,h3,h4,h5,h6{
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
}

a {
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

strong {
  font-weight: bold;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: normal;
}
blockquote p:last-child {
  margin:0;
}
figcaption {
  margin-top: .5rem;
}
figure{
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
  }
}
/* ******************************************************************************
*********************************************************************************
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.
*********************************************************************************
****************************************************************************** */

.systems-page .actions {
  margin: 5px 0;
}

label.hs-membership-global-error.hs-error-msg {
  display: none !important;
}

.error-page {
  padding: 10rem 0;
  text-align: center;
  position: relative;

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

.systems-page {
  padding: 3rem 20px;

  padding-left: 0;
  padding-right: 0;
}
.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #cde3cc;
  border: 1.5px solid #4f7d24;
  border-radius: 6px;
  font-size: .75rem;
  color: #4f7d24;
  padding: .1rem .75rem;
  max-width: 767px;
  width: 100%;
}

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

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





.form-input-validation-message ul.no-list {
  padding: 0;
}

.systems-page .hs-input[type=checkbox] {
  width: auto !important;
}

@media (max-width: 767px) {

  form#email-prefs-form h1,
  .systems-page h1 {
    font-size: 30px;
  }

  form#email-prefs-form h2,
  .systems-page h2 {
    font-size: 22px;
  }

  .systems-page h3 {
    font-size: 23px;
  }
}


@media (max-width: 479px) {

  .form-input-validation-message label.hs-error-msg, 
  ul.no-list.hs-error-msgs label { }

  .error-page_heading {
    font-size: 49px;
  }
}