/* ******************************************************************************
*********************************************************************************
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;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/* ******************************************************************************
*********************************************************************************
The intention of this file is to makes browsers render all elements more
consistently and in line with modern standards.
It precisely targets only the styles that need normalizing.
*********************************************************************************
****************************************************************************** */


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: hidden;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
Drag and Drop (DND) sections look when editing content in the page editor.
*********************************************************************************
****************************************************************************** */

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

.banner-area .dnd-section > .row-fluid {
  width:100%;
  padding:0;
}

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


@media only screen and (max-width: 900px){
.dnd-section > .row-fluid {
    padding: 15px 20px;
}
}

.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;
  }
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
fonts apppear throughout your site.
*********************************************************************************
****************************************************************************** */

@font-face {
  font-family: 'Relevant-Normal';
  font-display: swap;
  src: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/fonts/Relevant-Normal.woff') format('woff');
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Relevant-Bold';
  font-display: swap;
  src: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/fonts/Relevant-Bold.woff') format('woff');
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Relevant-Italic';
  font-display: swap;
  src: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/fonts/Relevant-Italic.woff') format('woff');
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Relevant-BoldItalic';
  font-display: swap;
  src: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/fonts/Relevant-BoldItalic.woff') format('woff');
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Relevant-Medium';
  font-display: swap;
  src: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/fonts/Relevant-Medium.woff') format('woff'),
    url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/fonts/Relevant-Medium.ttf') format('truetype');
  font-style: normal;
  font-weight: 400
}

::selection {
  background: #04a4cc;
  color: #fff;
  text-shadow: none;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 1550px){
  html {
    font-size: 49%;
  }
}

@media only screen and (max-width: 1265px) and (min-width: 900px){
  html {
    font-size: 41%;
  }
}

@media only screen and (max-width: 900px){
  html {
    font-size: 80%;
  }
}

body.secondary-open,
body.primary-open {
  overflow: hidden;
}

body {
  line-height: 1.4;
  overflow-x:hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

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

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1;
  word-break: break-word;
}

strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

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

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

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

/* 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;
}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your forms looks
throughout your site. Styles for form fields, buttons, inputs, etc.
*********************************************************************************
****************************************************************************** */

form {
  max-width: 100%;
  font-family: Lato, sans-serif;
}
.blog-comments form,
.systems-page form,
.hs_cos_wrapper_type_form form,
.hs_cos_wrapper_type_blog_subscribe  form,
.hs_cos_wrapper_type_google_search  form,
.widget-type-email_simple_subscription form,
.widget-type-password_prompt form,
.hs-search-field form{
  padding:30px 20px;
  display: inline-block;
  width:100%;
  margin:15px 0;
}



.hs-button {
  font-size: 2rem;
  border: 0;
  font-family: 'Relevant-Medium',sans-serif;
  display: inline-block;
  text-align: center;
  white-space: normal;
  margin-top: 15px;
  border-style:solid;
  font-weight:400;
  line-height: normal;
  outline: none !important;
  cursor: pointer;
}


.hs-form label {
  display: block;
  float: none;
  margin-bottom:5px;
  font-size: 2rem;
  line-height: 2.3rem;
}

ul.no-list.hs-error-msgs.inputs-list label {
  margin: 10px 0 0;
  padding: .2em 1em;
  border: 2px solid #ffb900;
  font: 300 14px/1.4 'Relevant-Normal','Arial',sans-serif;
}

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

.hs_error_rollup label {
  margin: 0 !important;
}

ul.no-list.hs-error-msgs {
  padding: 0;
  color: red;
}

input[type=text],
input[type=password],
form select,
form textarea,
.hs-input {
  background: #fff;
  border: 0;
  font-family: 'Relevant-Medium',sans-serif;
  font-size: 2.3rem;
  width: 100% !important;
  height:auto !important;
  margin:0 !important;
  border:1px solid;
  outline: none !important;
  color: #444;
  padding: 7px 4px;
  line-height: normal;
}

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

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

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

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

.hs-input input,
.hs-input textarea {
  transition: border 0.2s linear;
}
.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: #c87872;
}
input.hs-input.error:focus,
div.field.error input:focus,
div.field.error textarea:focus,
div.field.error .chzn-choices:focus,
textarea.hs-input.error:focus,
select.hs-input.error:focus {
  border-color: #b9554d;
}

.actions {
  padding: 0;
}

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

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

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

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

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

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

.grecaptcha-badge {
  margin: 0 auto;
}

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

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

.hs-default-font-element,
.hs-main-font-element {
  font-family: Lato, serif;
}


@media only screen and (max-width: 900px){
  .hs-form label {
    font-size: 1.6rem;
  }
  
  
input[type=text],
input[type=password],
form select,
form textarea,
.hs-input {
    font-size: 1.6rem;
  }
  .hs-button {
    font-size: 1.6rem;
  }
}
/* ******************************************************************************
*********************************************************************************
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;
}

thead th {
  vertical-align: bottom;
    font-weight: 300;
    text-align: left;
}

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

.header__container {
  margin: 0 auto;
  width:95%;
}

header.header {
  min-height: 168px;
}

.header-wrap {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  top: 0;
}

.logo-wrapper img {
  height: 128px;
  display: block;
  width: 334px !important;
  padding: 15px 25px;
}

.custom-menu-primary nav>ul>li>.mega-menu {
  background: #f57f20;
  display: none;
  position: absolute;
  width: auto;
  z-index: 3;
  content: "";
  text-align:center;
  width:100%;
  left:0;
  min-height: 40px;
}

.mega-menu>ul {
  max-width: 1440px;
  margin: 0px auto !important;
  width: 90%;
}

.custom-menu-primary ul ul li a {
  padding:0px 10px 0px 10px!important;
  margin: 0 10px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  outline: none;
  position: relative;
}


.custom-menu-primary ul ul li a:hover{
  color: #fff;
}

.custom-menu-primary ul ul li {
  position: relative;
  border: 0;
  border-left: 2px solid #fff;
  margin: 10px 0;
  line-height: 20px;
}

.custom-menu-primary ul ul li:first-child {
  border-left: 0;
}
.custom-menu-primary nav>ul>li.open>a {
  background: #f57f20 !important;
}


.custom-menu-primary nav>ul>li:hover>a {
  background: #f57f20;
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.custom-menu-primary nav>ul>li:first-child>div {
  left: 0 !important;
  transform: none;
}

.custom-menu-primary nav>ul>li:nth-child(2)>.mega-menu,
.custom-menu-primary nav>ul>li:nth-child(2):hover>a,
.custom-menu-primary nav>ul>li:nth-child(2).open>a,
.custom-menu-primary nav>ul>li:nth-child(2):before,
.custom-menu-primary nav>ul>li:nth-child(2)>a:before {
  background: #faa41a !important;
}

.custom-menu-primary nav>ul>li:nth-child(3)>.mega-menu,
.custom-menu-primary nav>ul>li:nth-child(3):hover>a,
.custom-menu-primary nav>ul>li:nth-child(3):before,
.custom-menu-primary nav>ul>li:nth-child(3).open>a,
.custom-menu-primary nav>ul>li:nth-child(3)>a:before {
  background: #6b6d9f !important;
}

.custom-menu-primary nav>ul>li:nth-child(4)>.mega-menu,
.custom-menu-primary nav>ul>li:nth-child(4):hover>a,
.custom-menu-primary nav>ul>li:nth-child(4):before,
.custom-menu-primary nav>ul>li:nth-child(4).open>a,
.custom-menu-primary nav>ul>li:nth-child(4)>a:before {
  background: #ffc40d !important;
}

.custom-menu-primary nav>ul>li:nth-child(5)>.mega-menu,
.custom-menu-primary nav>ul>li:nth-child(5):hover>a,
.custom-menu-primary nav>ul>li:nth-child(5):before,
.custom-menu-primary nav>ul>li:nth-child(5).open>a,
.custom-menu-primary nav>ul>li:nth-child(5)>a:before {
  background: #6da1b9 !important;
}

.custom-menu-primary nav>ul>li:nth-child(6)>.mega-menu,
.custom-menu-primary nav>ul>li:nth-child(6):hover>a,
.custom-menu-primary nav>ul>li:nth-child(6).open>a,
.custom-menu-primary nav>ul>li:nth-child(6):before,
.custom-menu-primary nav>ul>li:nth-child(6)>a:before {
  background: #b6c727 !important;
}

.custom-menu-primary nav>ul>li:nth-child(7)>.mega-menu,
.custom-menu-primary nav>ul>li:nth-child(7):hover>a,
.custom-menu-primary nav>ul>li:nth-child(7):before,
.custom-menu-primary nav>ul>li:nth-child(7).open>a,
.custom-menu-primary nav>ul>li:nth-child(7)>a:before {
  background:#006d83 !important;
}

.custom-menu-primary .no-submenu>a:before,
.custom-menu-primary .no-submenu>a:after,
.custom-menu-primary .no-submenu:before,
.custom-menu-primary .no-submenu:after {
  display:none !important;
}

.custom-menu-primary nav>ul>li:hover:before,
.custom-menu-primary nav>ul>li:hover>a:before {
  width: 15px;
  height: 15px;
  content: "";
  margin-left: -5px;
  bottom: 0;
  position: absolute;
  display: block;   
  right: -15px;
  background: #f57f20;
}

.custom-menu-primary nav>ul>li.has-submenu:hover:before{
  right: auto !important;
}

.custom-menu-primary nav>ul>li:hover>a:after,
.custom-menu-primary nav>ul>li:hover:after{
  width: 15px;
  height: 15px;
  display: block;
  content: "";
  margin-left: -5px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  border-bottom-right-radius: 15px;
}


.custom-menu-primary nav>ul>li.has-submenu:hover>a:after{
  right: -15px;
  border-radius: 0;
  border-bottom-left-radius: 15px;
}

.custom-menu-primary nav>ul>li.has-submenu:hover:after{
  border-bottom-right-radius: 15px;
}

.custom-menu-primary nav>ul>li.has-submenu>a {
  position: relative;
}

.header-top>div {
  display: flex;
  justify-content: space-between;
}

.primary-menu {
  float: right;
  font-size: 2.2rem;
  font-family: 'Relevant-Bold',sans-serif;
  vertical-align: top;
}

.primary-menu ul ul {
  display: block;
  visibility: hidden;
  height: 0;
  margin: 0;
  width: auto;
  float: none;
  vertical-align: top;
}

.primary-menu li {
  display: inline-block;
  text-align: center;
  min-width: 6.2em;
  vertical-align: top;
  padding-bottom:10px;
}


.primary-menu nav>ul>li>a {
  display:inline-block;
  padding:0px 5px;
}

.custom-menu-primary nav>ul>li:last-child>a {
  border-radius: 15px;
  line-height: 10px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  margin-right: 0;
}

.header-bottom {
  list-style: none;
  padding: 0 5px 0 30px;
  margin: 0 auto;
  min-height: 40px;
  font-size: 2rem;
  font-family: 'Relevant-Bold',sans-serif;
  position: relative;
}

.primary-menu nav>ul {
  list-style: none;
  padding: 0;
  margin: 85px 0 0 !important;
  float: right;
  text-align: right;
  vertical-align: top;
}

.primary-menu ul ul li a {
  font-size: 1.8rem;
  white-space: normal;
  text-align: center;
  padding: 0px 10px;
  width:100%;
  display: inline-block;
}

.primary-menu ul ul li {
  float: none;
  display: block;
  margin: 0;
  width: 100%;
  font-size: 1.8rem;
  padding:0;
  white-space: nowrap;
  text-align: center;
}

.header-bottom {
  text-align: center;
  margin: auto;
}

.custom-menu-primary ul li a {
  padding: 10px 9px;
  margin: 0 10px;
  white-space: nowrap;
  outline: none;
  font-size: 2rem;
  font-family: 'Relevant-Bold',sans-serif;
}

.custom-menu-primary nav>ul>li:last-child>a {
  border-radius: 15px;
  line-height: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.custom-menu-primary ul li {
  display: inline-block;
  line-height: 40px;
  margin: 0;
}

@media only screen and (max-width: 1550px){
  .header-bottom {
    padding-left: 0;
    padding-right: 40px;
    text-align: right;
  }

  .custom-menu-primary nav>ul>li:last-child>a {
    padding: 5px 14px 5px !important;
  }

  .custom-menu-primary ul li a {
    padding: 13px 10px 13px 10px!important;
  }

}



@media only screen and (max-width: 1265px) and (min-width: 900px){

  .header-bottom {
    padding-right: 30px;
  }

}


@media only screen and (max-width:1100px){
  .primary-menu li {
    min-width: auto;
    padding: 0px 4px 10px;
  }

  .logo-wrapper img {
    width:301px !important;
  }
}

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

  .header-bottom {
    padding: 0px 10px;
  }

  .custom-menu-primary ul li.no-submenu>a {
    padding: 12px 10px !important;
  }

  .custom-menu-primary nav>ul>li:hover>a:after, .custom-menu-primary nav>ul>li:hover:after{
    margin-left:-10px;
  }

  .custom-menu-primary nav>ul>li:last-child>a {
    margin: 0;
  }

  .custom-menu-primary ul li a {
    padding: 13px 7px 13px 7px !important;
    margin: 0px 5px;
  }

}

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

  .header-button{
    display:none;
  }


  .primary-menu nav>ul>li.has-submenu:hover>ul {
    display: block;
    visibility: visible;
    height: 100%;
  }

  .primary-menu nav>ul>li:last-child>a {
    border-radius: 20px;
    padding: 7px 13px 4px;
    display: inline;
  }

  .primary-menu nav>ul>li:nth-last-child(2)>a {
    border-radius: 20px;
    padding: 7px 13px 4px;
    display: inline;
  }

  .menu-trigger{
    display:none;
  }

  .custom-menu-primary nav>ul>li.has-submenu:hover>div {
    display: block !important;
  }

}

@media only screen and (max-width:900px){
  .logo-wrapper img {
    width: 100% !important;
    height: 100%;
    display: block;
    text-align: left;
    padding: 10px;
  }

  .logo-wrapper {
    width: 55%;
    max-height: 100%;
    height: 100px;
    position: relative;
  }

  .header-top>div {
    width: 100%;
  }

  .header-button {
    width: Calc(32% + 37px);
    text-align: right;
  }

  .primary-menu {
    display: none;
  }

  .logo-wrapper a {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .custom-menu-primary {
    display: none;
  }

  .menu-trigger span {
    display: block;
    color: #404041;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.9rem;
    padding: 20px 0;
    font-family: 'Relevant-Bold',sans-serif;
    z-index: 3;
    width: 100%;
    background: #e8e3df;
    cursor: pointer;
  }

  .primary-open .primary-menu {
    display: block;
  }

  .menu-trigger {
    display: flex;
  }

  .menu-trigger span:last-child {
    background: #d9d1ca;
  }

  .header-bottom {
    padding: 0;
  }
  .custom-menu-primary {
    display: none;
  }

  .menu-trigger span {
    display: block;
    color: #404041;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.9rem;
    padding: 20px 0;
    font-family: 'Relevant-Bold',sans-serif;
    z-index: 3;
    width: 100%;
    background: #e8e3df;
    cursor: pointer;
  }

  .menu-trigger {
    display: flex;
  }

  .menu-trigger span:last-child {
    background: #d9d1ca;
  }

  .header-bottom {
    padding: 0;
  }

  .primary-menu {
    width: 100%;
    position: absolute;
    bottom: auto;
    top: 100%;
  }

  .header-wrap {
    position: relative;
  }

  .primary-menu nav>ul {
    margin: 0 !important;
    text-align: left;
    float:none;
  }

  .primary-menu li {
    text-align: left;
    background: #fff;
    width: 50% !important;
    border-top: 2px solid #eeeae7;
    padding: 0;
  }

  .primary-menu nav>ul>li>a {
    width: 100%;
    padding: 25px 10px;
    white-space:normal;
    display: block;
    color: #404041 !important;
    line-height: 1.9rem;
    font-size: 1.9rem;
    text-align: center;
  }

  .primary-menu li:first-child {
    border: none;
  }
  .primary-menu ul ul {
    left: 100%;
    height: auto;
    display: none;
    width: 100%;
    position: absolute;
    bottom: auto;
    top: 0;
  }

  .custom-menu-primary {
    width: 100%;
    position: absolute;
    bottom: auto;
    top: 100%;
  }


  .secondary-open .custom-menu-primary {
    display:block;
  }

  .custom-menu-primary nav>ul>li.menu-item>a{
    display: block;
    width: 100%;
    color: #444 !important;
    border: 0;
    border-top: 2px solid #d9d1ca;
    font-size: 1.9rem;
    padding: 25px 10px !important;
    visibility: visible;
    margin: 0;
    border-radius: 0 !important;
    text-align: center;
    line-height: 1.9rem;
    white-space: normal;
  }

  .custom-menu-primary nav>ul>li:nth-child(3) ul li.menu-item a {
    background: #e1e2eb!important;
  }

  .custom-menu-primary nav>ul>li:nth-child(4) ul li.menu-item a {
    background: #fff3d6!important;
  }

  .custom-menu-primary nav>ul>li:nth-child(5) ul li.menu-item a {
    background: #e2ecf0!important;
  }


  .custom-menu-primary nav>ul>li:nth-child(6) ul li.menu-item a {
    background: #f1f4d7!important;
  }

  .custom-menu-primary ul li {
    width: 50%;
    background: #fff;
  }

  .custom-menu-primary nav>ul>li>.mega-menu {
    position: static;
    display: none !important;
  }

  .custom-menu-primary nav>ul>li.open>.mega-menu {
    display: block !important;
  }

  .mega-menu>ul {
    width: 100% !important;
    padding: 0 !important;
  }

  .custom-menu-primary ul ul li.menu-item a {
    display: block;
    width: 100%;
    border: 0;
    font-size: 1.9rem;
    padding: 25px 10px !important;
    visibility: visible;
    border-top: 2px solid #d9d1ca;
    margin: 0;
    white-space:normal;
    text-align: center;
    color:#444 !important;
    background: #feedd6!important;
  }

  .custom-menu-primary nav>ul>li:first-child>a {
    border: 0;
  }

  .custom-menu-primary ul ul li {
    width: 100%;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
  }


  .custom-menu-primary nav>ul>li:last-child>a {
    line-height: 10px;
    padding: 35px 0 25px!important;
  }

  .custom-menu-primary nav>ul>li:last-child {
    border-radius: 15px !important;
    -webkit-border-top-left-radius: 0 !important;
    -webkit-border-top-right-radius: 0 !important;
    -moz-border-radius-topleft: 0 !important;
    -moz-border-radius-topright: 0 !important;
    overflow:hidden;
  }

  .custom-menu-primary ul li:first-child>a {
    border: none;
  }

  .primary-menu ul ul li a {
    font-size: 1.9rem;
    padding: 25px 0;
    line-height: 1.9rem; 
    color: #888787 !important;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
    top: 0;
  }

  .primary-menu li {
    position: relative;
  }

  .primary-menu ul ul li {
    width:100% !important;
    background: #f4f1ef !important;
    border-top: 2px solid #f4f1ef !important;
  }

  .secondary-open header.header,
  .primary-open header.header {
    height: 100vh;
    overflow: auto;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    background: rgba(217,209,202,.75);
  }

  .custom-menu-primary .has-submenu>a:before,
  .custom-menu-primary .has-submenu>a:after,
  .custom-menu-primary .has-submenu:before,
  .custom-menu-primary .has-submenu:after {
    display:none !important;
  }

  .primary-menu nav>ul>li:hover>a {
    background: #f4f1ef !important;
  }

  .primary-menu li.open>ul {
    display: block !important;
    visibility: visible;
    height: 100%;
  }
  .primary-menu nav>ul>li:hover>a:hover {
    background: #f4f1ef !important;
  }

  header.header {
    min-height: 164px;
  }
}

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

  header.header {
    min-height: 144px;
  }
  .header-button {
    width: 40%;
    padding-top: 5px;
  }

  .header-button a {
    margin-left: 5px !important;
    margin-right: 5px !important;
    font-size:13px !important;
  }

  .menu-trigger span {
    font-size: 17px;
  }

  .primary-menu nav>ul>li>a {
    font-size: 15px;
    padding: 15px 10px;
  }

  .menu-trigger span {
    padding: 10px 0px;
  }

  .primary-menu ul ul li a {
    font-size: 15px;
    padding: 15px 10px;
  }

  .custom-menu-primary nav>ul>li.menu-item>a {
    font-size: 15px !important;
    padding: 15px 10px !important;
  }

  .custom-menu-primary ul ul li.menu-item a {
    font-size: 15px;
    padding: 15px 10px !important;
  }


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


.footer__container {
  margin: 0 auto;
  width: 95%;
}

.left-column {
  display: flex;
}


footer.footer {
  width: 100%;
  position: relative;
  bottom: 0;
  min-height: 105px;
  z-index: 1;
  overflow: hidden;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  min-height:65px;
}

ul.footer-social img {
  height: 35px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

ul.footer-social li {
  height: 35px;
  margin: 0;
  padding: 0 8px 0 0;
  min-width: 0;
  display: inline-block;
}

ul.footer-social {
  height: 50px;
  margin: 10px 21px 5px 0;
  list-style: none;
  float: left;
  display: flex;
  flex-wrap: nowrap;
}

.acknowledge{
  text-align: center;
  display: block;
  width: 100%;
  padding: 0;
  font-size: 1.4rem;
  vertical-align: middle;
  clear: both;
}

.copyright {
  display: inline-block;
  padding: 8px 10px;
  vertical-align: middle;
  font-size: 1.3rem;
}

.copyright-links ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.copyright-links li:not(:last-child) {
  margin-right: 3px;
}

.copyright-links a {
  font-size: 1.4rem;
  margin: 0;
  display:block;
  padding: 0 10px;
}

.acknowledge p {
  margin: 0 0 10px;
}


.copyright-links li:first-child{
  border:none;
}

.copyright-links li {
  display: inline-block;
  border: 0;
  border-left: 1px solid;
  margin: 0;
  padding: 0;
}

footer.footer .right-column {
  min-width: 46%;
}


ul.footer-social li:last-child {
  padding-right: 1px;
}

.footer-logo img {
  height: 35px;
  width: 128px !important;
}

.footer-logo {
  margin: 10px 20px 10px 0;
  display: inline-block;
}

.copyright-links {
  display: inline-block;
  vertical-align: middle;
  margin: 0 52px 0 0;
  min-height: 42px;
}

@media(max-width:1550px){

  ul.footer-social img {
    height: 40px!important;
    margin-left: 5px!important;
  }

  ul.footer-social li:last-child {
    padding-right: 1px;
  }

}


@media only screen and (max-width: 1550px){
  .copyright {
    font-size: 11px;
  }

  .copyright-links a {
    font-size: 11px;
  }

  .acknowledge {
    font-size: 11px;
  }
}

@media(max-width:1024px){
  .copyright {
    width: auto;
  }

  ul.footer-social {
    padding: 0;
    margin-right: 0;
  }

  .copyright-links {
    margin-right: 10px;
  }


  footer.footer .right-column {
    width: auto;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 900px){

  .acknowledge p {
    text-align: center;
    display: block;
    width: 100%;
    padding: 0 20px;
    font-size: 1rem;
    vertical-align: middle;
  }

  .copyright-links {
    width: 100%;
    margin: 0;
  }

  ul.footer-social {
    display: none;
  }

  .copyright {
    width:100%
  }

  .footer-row {
    flex-direction: column;
  }

  .footer-row>div {
    width: 100%;
  }

  footer.footer .right-column {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  footer.footer {
    min-height: 155px;
    padding-bottom: 17px;
  }

  .copyright-links a {
    padding: 0 5px;
  }

  .copyright-links ul {
    justify-content: center;
  }

  footer.footer {
    text-align: center;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles for your blog. The styles included
are for the listing and post templates, featured images and pagination.
Also for the post meta infromation like tags, author and published date
*********************************************************************************
****************************************************************************** */

/* TODO: Find a better place for this */
.content-wrapper {
  margin: 0 auto;
  width: 95%;
  padding: 30px 110px 60px 130px;
}

.content-wrapper.post_footer {
  padding-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}

.content-wrapper.post_footer p {
  font-size: 2rem;
  margin: .5rem 0 1rem;
  float: left;
}

.hs-blog-post .post-item {
  padding: 0 !important;
}

.content-wrapper.post_footer .share a {
  display: inline-block;
  font-size: 1.7rem;
  padding: 2rem 8rem 2rem 0;
  color: #444 !important;
  text-decoration: none;
  background: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/images/fb-share.jpg') center right no-repeat;
    font-family: 'Relevant-Medium',sans-serif;
    }

.content-wrapper.post {
  padding-bottom: 0;
  padding-top:10rem;
}

.hs-blog-post .post-item:after {
  background: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/images/horizontal-line.jpg') bottom right no-repeat;
    width: 100%;
    height: 5px;
    padding: 5rem 130px 0;
    display: block;
    content: "";
    position: relative;
    }

.post-item {
  padding: 0;
}

.hs-blog-post .blog-index {
  margin-bottom: 0;
  margin:0;
}

.hs-blog-post .post-item .image {
  width: 27%;
  margin: 0;
  margin-right: 3%;
}

.hs-blog-post .post-item .content {
  width: calc(70% - 20px);
  padding: 0 0 2.5rem 3rem;
}

.hs-blog-post .post-item p {
  font-size: 2rem;
  margin: .5rem 0 1rem;
}

.content-wrapper.post_footer .back {
  float: right;
}

.content-wrapper.post_footer .back a {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: #a59b94;
  border-radius: 5px;
  padding: .8rem 5rem;
  right: 0;
  font-size: 1.7rem;
  text-decoration: none;
  clear: both;
  position: relative;
  margin: 1rem 0;
  display: inline-block;
}

.all-tags ul li a span.filter-link-count {
  display: none;
}

.all-tags ul li.active {
  color: #f57f20;
}

.all-tags ul li.active a {
  color: #f57f20 !important;
}

.post-item {
  background: url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/images/horizontal-line.jpg') top right no-repeat;
    padding-top: 5rem;
    margin-top: 0;
    position: relative;
    }

.blog-index {
  font-size: 2rem;
  margin: .5rem 0 3rem;
}

.post-item:first-child {
  background: none !important;
}

.post-item .image {
  display: inline-block;
  margin: 2.2rem 20px 0 0;
  border-radius: 5px;
  overflow: hidden;
  width: 23%;
  margin-bottom: 6rem!important;
  position: relative;
  vertical-align: top;
}

.post-item .content {
  position: relative;
  min-height: 29rem;
  display: inline-block;
  width: calc(76% - 20px);
  padding: 2.5rem 0 2.5rem 3rem;
}

.post-item h2 {
  margin: .5rem 0 1.5rem;
  font-size: 3.3rem;
  line-height: 3.3rem;
  color: #f57f20;
  font-family: 'Relevant-Medium',sans-serif;
  font-weight: 400;
}

.post-item h2 a {
  color: inherit;
}

.post-item p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin: .5rem 0 3rem;
}

.post-item .meta {
  font-size: 1.7rem;
  line-height: 2.7rem;
  color: #f57f20;
  text-decoration: none;
  display: block;
  margin-bottom: 3rem;
}

.post-item .read-more {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background: #a59b94;
  border-radius: 5px;
  display: inline-block;
  padding: .8rem 5rem;
  margin: 0;
  right: 0;
  font-size: 1.7rem;
  text-decoration: none;
  clear: both;
  position: relative;
}

.post-item .meta a {
  font-size: 1.7rem;
  line-height: 2.7rem;
  color: #f57f20;
  text-decoration: none;
  display: inline-block;
}

.blog-banner {
  height: 100%;
  background: #d4d4d4 url('https://8672002.fs1.hubspotusercontent-ap1.net/hubfs/8672002/raw_assets/public/LutheranServices_December_2020/images/homepage-bg.jpg') center center repeat-x;
    position: relative;
    }

.blog-banner img {
  margin: 0 auto;
  max-width: 100%;
  display: block;
}

.blog-banner .image span {
  position: absolute;
  top: 40%;
  right: 0;
  font-size: 4.5rem;
  width: 50%;
  text-align: center;
  color: #f57f20;
  font-family: 'Relevant-Medium',sans-serif;
  font-weight: 400;
  padding: 0px 30px;
}

.all-tags {
  background: #f5f3f1;
}

.all-tags h3 {
  font-size: 3rem;
  line-height: 4rem;
  margin: 1rem 0 1.5rem;
}

.all-tags ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  -moz-column-count: 3;
  font-size: 2rem;
  margin: .5rem 0 1rem;
  -moz-column-gap: 20px;
  -webkit-column-count: 3;
  -webkit-column-gap: 20px;
  column-count: 3;
  column-gap: 20px;
  margin-top: 20px;
  margin-bottom: 3rem;
}

.all-tags ul li {
  margin-left: 30px;
  position: relative;
}

.all-tags ul li:before {
  content: "> ";
  padding-right: 5px;
  position: relative;
  margin-left: -30px;
}

.all-tags ul li a {
  text-decoration: none;
  font-family: 'Relevant-Bold',sans-serif;
  display: inline-block;
  color:#444 !important;
  width: 90%;
  vertical-align: top;
}
.blog-pagination {
  text-align: center;
  margin-bottom: auto;
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.blog-pagination a {
  padding: 0 .5rem;
  text-decoration: none;
  color: #444 !important;
}

.blog-pagination a.active{
  color: #f57f20 !important;
}

.blog-pagination a.disabled{
  display:none;
}

.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: #494a52;
}
.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: #494a52;
  text-decoration: underline;
}

.blog-post__tags {
  font-family: Lato, 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: #F8FAFC;
  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: #494a52;
  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 !important;
  margin: 0 auto;
}
.blog-comments form {
  max-width: 100%;
}
.blog-comments .hs-submit {
  text-align: center;
}

.blog-comments .comment-reply-to {
  border: 0 none;
}
.blog-comments .comment-reply-to:hover {
  background-color: transparent;
  text-decoration: underline;
  color: #494A52;
}

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


@media only screen and (max-width: 1265px) and (min-width: 900px){
  .content-wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
}


@media only screen and (min-width:901px) {
  .mobile-title,
  .mobile-tags {
    display: none;
  }
}

@media only screen and (max-width:900px) {
  .content-wrapper{
    padding: 15px 20px;
  }

  .post-item h2 {
    font-size: 2rem;
    line-height: 3.5rem;
    margin: 1rem 0;
  }

  .post-item .meta a {
    font-size: 1.6rem;
    line-height: 2.6rem;
    margin-bottom: 0;
  }

  .post-item .meta {
    font-size: 1.6rem;
    line-height: 2.6rem;
    margin-bottom: 0;
  }

  .post-item p {
    font-size: 1.6rem;
    line-height: 2.6rem;
    margin-bottom: 2rem;
  }

  .post-item .read-more {
    font-size: 1.3rem;
    line-height: 2.3rem;
    padding: .5rem 1rem;
  }

  .post-item .image {
    width: 100% !important;
    margin: 1rem 0 0 0!important;
  }

  .hs-blog-post .post-item .image {
    margin-top: 0 !important;
  }

  .post-item {
    margin: 1rem 0 0 0!important;
  }

  .post-item .content {
    width: 100% !important;
    padding: 0 !important;
    min-height: 0 !important;
  }


  .blog-banner .image span {
    font-size: 1.5rem!important;
  }

  .desktop-tags {
    display: none;
  }

  .mobile-tags {
    font-size: 1.8rem;
    border: 0;
    border-top: 1px solid #c2b7af;
    border-bottom: 1px solid #c2b7af;
    padding: 10px 0;
    margin: 0 0 15px;
  }

  .mobile-tags h3 {
    text-decoration: underline;
    padding-right:9px;
    color: #404041;
    font-size: 1.8rem;
    display: inline-block;
    margin: 0;
    line-height: 1;
    font-family: 'Relevant-Normal','Arial',sans-serif;
  }

  .post-item {
    padding-top: 20px;
    margin-top: 10px;
  }

  .mobile-tags select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 0;
    display: inline-block;
    padding: 0;
    outline:none !important;
    white-space: nowrap;
    width: 50%;
    background: transparent !important;
    text-overflow: ellipsis;
  }

  .hs-blog-post .post-item p {
    font-size: 1.6rem;
    line-height: 2.6rem;
  }

  .content-wrapper.post_footer .back a {
    font-size: 1.3rem;
    line-height: 2.3rem;
    padding: .5rem 1rem;
    margin: 0;
  }

  .content-wrapper.post_footer p {
    margin: .5rem 0 1rem;
  }

  .content-wrapper.post_footer .share a {
    font-size: 1.3rem;
    line-height: 1.3rem;
    padding: 1rem 5rem 1rem 0;
  }

  .mobile-tags ul {
    display: none;
  }

  .blog-index {
    margin: .5rem 0 1rem;
  }

  .content-wrapper.post {
    padding-top: 5rem;
  }

  .blog-pagination {
    margin-bottom: 2rem;
  }

}
/* ******************************************************************************
*********************************************************************************
This file contains all the neccessary styles to control how your
system pages look. These pages include the error pages (404 and 500),
password protected content and search listing results.
*********************************************************************************
****************************************************************************** */

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

.systems-page {
  padding: 3rem 0px;
}


.systems-page form{
max-width:767px;
}


.systems-page .success {
  display: inline-block;
  margin: 2rem 0;
  background-color: #CDE3CC;
  border: 1.5px solid #4F7D24;
  border-radius: 6px;
  color: #4F7D24;
  padding: .1rem .75rem;
}

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

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


@media only screen and (max-width:900px) {
.systems-page h2 {
  font-size: 24px !important;
}
}