@charset "UTF-8";
/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************

Stylesheet: Main Stylesheet
Calls every scss file in correct order.

******************************************************************/
/******************************************************************

Stylesheet: CSS Variables

Here is where we declare all our css variables.
These variables can be changed within media queries.

******************************************************************/
:root {
  --header-height: 86px;
  --admin-bar-height: 46px;
  --sp-font-smallest-size: 12px;
  --sp-font-small-size: 14px;
  --sp-font-base-size: 16px;
  --sp-font-medium-size: 18px;
  --sp-font-large-size: 22px;
  --sp-font-huge-size: 27px;
  --sp-font-xxl-size: 32px;
  --sp-font-xxxl-size: 36px;
}
@media (min-width: 783px) {
  :root {
    --admin-bar-height: 32px;
  }
}
@media (min-width: 768px) {
  :root {
    --header-height: 110px;
    --sp-font-smallest-size: 15px;
    --sp-font-small-size: 17px;
    --sp-font-base-size: 19px;
    --sp-font-medium-size: 24px;
    --sp-font-large-size: 26px;
    --sp-font-huge-size: 42px;
    --sp-font-xxl-size: 50px;
    --sp-font-xxxl-size: 60px;
  }
}
@media (min-width: 1100px) {
  :root {
    --header-height: 145px;
    --sp-font-smallest-size: 16px;
    --sp-font-small-size: 18px;
    --sp-font-base-size: 20px;
    --sp-font-medium-size: 25px;
    --sp-font-large-size: 35px;
    --sp-font-huge-size: 42px;
    --sp-font-xxl-size: 53px;
    --sp-font-xxxl-size: 66px;
  }
}
@media (min-width: 1440px) {
  :root {
    --sp-font-medium-size: 28px;
    --sp-font-large-size: 36px;
    --sp-font-huge-size: 45px;
    --sp-font-xxl-size: 58px;
    --sp-font-xxxl-size: 72px;
  }
}

/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
	 HTML5 display definitions
	 ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
footer,
section,
article,
nav,
canvas,
aside,
figcaption,
figure,
hgroup,
menuitem,
summary,
time,
mark,
audio,
video {
  border: 0;
  outline: 0;
  background: transparent;
}

/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* ==========================================================================
	 Base
	 ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
  font-size: 62.5%;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5em;
}

/* ==========================================================================
	 Links
	 ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
	 Typography
	 ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  margin: 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: 700;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: none;
  -epub-hyphens: manual;
  hyphens: manual;
}

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
  quotes: "“" "”" "‘" "’";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: "";
  content: none;
}

small,
.small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
	Lists
========================================================================== */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
	Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
	 Figures
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

/* ==========================================================================
	 Forms
	 ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */ /* 2 */
  box-sizing: border-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* ==========================================================================
	 Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix,
.cf {
  zoom: 1;
}
.clearfix:before, .clearfix:after,
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.clearfix:after,
.cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
  font-style: italic;
}

/******************************************************************

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
WRAPS
*********************/
/*********************
COLORS
*********************/
/*********************
FONT FAMILY
*********************/
/*********************
FONT SIZES
*********************/
/*********************
PADDINGS
*********************/
/*********************
TRANSITIONS
*********************/
/******************************************************************

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid.

******************************************************************/
/*********************
FONT RULES (IN YOUR FACE)
*********************/
h1,
.h1,
h2,
.h2 h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--wp--preset--font-family--mencken), serif, sans-serif;
}

.text-small {
  font-size: var(--wp--preset--font-size--sp-small);
}

.text-base {
  font-size: var(--sp-font-base-size);
}

.text-big {
  font-size: var(--wp--preset--font-size--sp-large);
}

@media (max-width: 1099px) {
  .has-small-font-size,
  .has-smallest-font-size {
    font-size: var(--sp-font-base-size) !important;
  }
}

/******************************************************************

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*********************
PSEUDO
*********************/
/* @include pseudo; */
/*********************
CSS TRIANGLE
*********************/
/* @include css-triangle(black, up, 6px false); */
/*********************
TEXT MARGINS
*********************/
/* @include text-margins(); */
/******************************************************************

Stylesheet: Grid Stylesheet

Still using this pretty basic grid, but it's customized a bit to
feel more like Bootstrap.
Wrap grid columns in grid-skin wrappers.

******************************************************************/
.with-padding {
  padding: 0 8px;
}

.with-padding-large {
  padding: 0 32px;
}

.grid-skin {
  position: relative;
  margin: 0 -8px;
}

.grid-skin-large {
  position: relative;
  margin: 0 -32px;
}

/* Mobile Grid Styles */
@media (max-width: 767px) {
  .m-all {
    float: left;
    width: 100%;
  }
  .m-1of2 {
    float: left;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    width: 33.3333333333%;
  }
  .m-2of3 {
    float: left;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    width: 75%;
  }
  .grid-m-all {
    grid-template-columns: 1fr;
  }
  .grid-m-1of2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-m-1of3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* Large Mobile to Tablet Grid Styles */
@media (min-width: 480px) and (max-width: 767px) {
  .mt-all {
    float: left;
    width: 100%;
  }
  .mt-1of2 {
    float: left;
    width: 50%;
  }
  .mt-1of3 {
    float: left;
    width: 33.33%;
  }
  .mt-2of3 {
    float: left;
    width: 66.66%;
  }
  .mt-1of4 {
    float: left;
    width: 25%;
  }
  .mt-3of4 {
    float: left;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    width: 100%;
  }
  .t-1of2 {
    float: left;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    width: 33.3333333333%;
  }
  .t-2of3 {
    float: left;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    width: 80%;
  }
  .grid-t-all {
    grid-template-columns: 1fr;
  }
  .grid-t-1of2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-t-1of3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-t-1of4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
/* Landscape to small desktop */
@media (min-width: 1100px) {
  .d-all {
    float: left;
    width: 100%;
  }
  .d-1of2 {
    float: left;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    width: 33.3333333333%;
  }
  .d-2of3 {
    float: left;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    width: 8.33%;
  }
  .grid-d-all {
    grid-template-columns: 1fr;
  }
  .grid-d-1of2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-d-1of3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid-d-1of4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .grid-space-right {
    padding-right: 32px;
  }
}
.row-align-center {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/******************************************************************

Stylesheet: Animations

******************************************************************/
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bob {
  0% {
    transform: translateY(0);
  }
  75% {
    transform: rotate(4px);
  }
  100% {
    transform: rotate(0);
  }
}
.sp-loader {
  display: block;
  position: relative;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  animation-delay: -0.5s;
}
.sp-loader div {
  position: absolute;
  border: 4px solid #1a1718;
  opacity: 1;
  border-radius: 50%;
  animation: sp-loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.sp-loader div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes sp-loader {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.entry-content .wp-block-media-text figure {
  overflow: hidden;
}
@media (max-width: 600px) {
  .entry-content .wp-block-media-text {
    grid-row-gap: 32px;
  }
}
.entry-content .wp-block-group.is-layout-constrained:where(:not(.alignleft):not(.alignright)) > * {
  max-width: var(--wp--custom--size--wide-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .entry-content .wp-block-group.is-layout-constrained:where(:not(.alignleft):not(.alignright)) > * {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.entry-content .wp-block-group.has-background, .entry-content .wp-block-group.has-padding {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 1100px) {
  .entry-content .wp-block-group.has-background, .entry-content .wp-block-group.has-padding {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
.entry-content .wp-block-group.has-extra-padding {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 1099px) {
  .entry-content .wp-block-group.alignwide {
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    width: auto;
    max-width: 1000%;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .entry-content .wp-block-group.alignwide {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
}
.entry-content .wp-block-group .wp-block-group:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1099px) {
  .entry-content .text-image + .wp-block-group.has-background, .entry-content .text-image + .wp-block-group.has-padding {
    margin-top: -64px;
  }
}
.entry-content .wp-block-column.has-background, .entry-content .wp-block-column.has-padding {
  padding: 32px;
}
@media (min-width: 768px) {
  .entry-content .wp-block-column.has-background, .entry-content .wp-block-column.has-padding {
    padding: 22px;
  }
}
@media (min-width: 1100px) {
  .entry-content .wp-block-column.has-background, .entry-content .wp-block-column.has-padding {
    padding: 32px;
  }
}
.entry-content .wp-block-column > figure + h1, .entry-content .wp-block-column > figure + h2, .entry-content .wp-block-column > figure + h3, .entry-content .wp-block-column > figure + h4 {
  margin-top: 32px;
}
.entry-content .wp-block-quote {
  border-radius: 45px 45px 45px 0;
}
.entry-content .wp-block-gallery .blocks-gallery-grid {
  margin-bottom: -16px;
}
.entry-content .wp-block-image {
  line-height: 0;
}
.entry-content .wp-block-image figcaption {
  line-height: 1.45;
  margin-top: 16px;
  font-size: var(--wp--preset--font-size--sp-small);
  font-style: italic;
  opacity: 0.6;
  max-width: calc(100% - 64px);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .entry-content .wp-block-image figcaption {
    max-width: var(--wp--custom--size--content-size);
  }
}
@media (min-width: 1100px) {
  .entry-content .wp-block-image figcaption {
    max-width: 834px;
  }
}
.entry-content .wp-block-cover,
.entry-content .wp-block-cover-image {
  padding: 64px 32px;
}
@media (min-width: 1100px) {
  .entry-content .wp-block-cover,
  .entry-content .wp-block-cover-image {
    padding: 96px 32px;
  }
}
@media (max-width: 1099px) {
  .entry-content .wp-block-cover,
  .entry-content .wp-block-cover-image {
    min-height: 50vh !important;
  }
}
.entry-content .wp-block-cover.has-custom-content-position .wp-block-cover__inner-container {
  max-width: calc(var(--wp--custom--size--wide-size) - 64px - 64px);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1099px) {
  .entry-content .wp-block-cover.has-custom-content-position .wp-block-cover__inner-container .has-small-font-size {
    font-size: 20px !important;
  }
}
@media (min-width: 1100px) {
  .entry-content .wp-block-cover.has-custom-content-position .wp-block-cover__inner-container {
    max-width: calc(var(--wp--custom--size--wide-size) - 96px - 96px);
  }
}
.entry-content .wp-block-cover.has-custom-content-position .wp-block-cover__inner-container > * {
  margin-right: auto;
  margin-left: auto;
  max-width: 300px;
}
@media (min-width: 1100px) {
  .entry-content .wp-block-cover.has-custom-content-position .wp-block-cover__inner-container > * {
    max-width: 370px;
  }
}
@media (min-width: 1100px) {
  .entry-content .wp-block-cover.has-custom-content-position.is-position-bottom-right .wp-block-cover__inner-container > *, .entry-content .wp-block-cover.has-custom-content-position.is-position-center-right .wp-block-cover__inner-container > *, .entry-content .wp-block-cover.has-custom-content-position.is-position-top-right .wp-block-cover__inner-container > * {
    margin-left: auto;
    margin-right: initial;
  }
}
@media (min-width: 1100px) {
  .entry-content .wp-block-cover.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container > *, .entry-content .wp-block-cover.has-custom-content-position.is-position-center-left .wp-block-cover__inner-container > *, .entry-content .wp-block-cover.has-custom-content-position.is-position-top-left .wp-block-cover__inner-container > * {
    margin-right: auto;
    margin-left: initial;
  }
}
.entry-content ul.wp-block-list li {
  list-style: none;
}
.entry-content ul.wp-block-list li:before {
  content: "-";
  text-indent: -1em;
  display: inline-block;
}
.entry-content .alignwide .inner-wrap,
.entry-content .alignfull .inner-wrap {
  width: 100%;
  max-width: var(--wp--custom--size--wide-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .entry-content .alignwide .inner-wrap,
  .entry-content .alignfull .inner-wrap {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.entry-content .alignwide .inner-wrap-big,
.entry-content .alignfull .inner-wrap-big {
  width: 100%;
  max-width: var(--wp--custom--size--full-size);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .entry-content .alignwide .inner-wrap-big,
  .entry-content .alignfull .inner-wrap-big {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.entry-content .inner-block-wrap {
  width: 100%;
  max-width: calc(var(--wp--custom--size--full-size) + 64px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .entry-content .inner-block-wrap {
    max-width: calc(var(--wp--custom--size--full-size) + 64px + 64px);
    padding-left: 64px;
    padding-right: 64px;
  }
}
.entry-content .wp-block-buttons {
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.entry-content .has-spacing-none {
  margin-bottom: 0 !important;
}
.entry-content .has-spacing-small {
  margin-bottom: 4px !important;
}
.entry-content .has-spacing-smaller {
  margin-bottom: 8px !important;
}
.entry-content .has-spacing-half {
  margin-bottom: 16px !important;
}
.entry-content .has-spacing-base {
  margin-bottom: 32px !important;
}
.entry-content .has-spacing-double {
  margin-bottom: 64px !important;
}
.entry-content .has-spacing-triple {
  margin-bottom: 96px !important;
}
.entry-content .has-no-padding {
  padding: 0 !important;
}
.entry-content .has-no-padding-top {
  padding-top: 0 !important;
}
.entry-content .has-no-padding-bottom {
  padding-bottom: 0 !important;
}
@media (min-width: 1100px) {
  .entry-content .byggemodul.has-padding-bottom-huge {
    padding-bottom: calc(96px + 96px) !important;
  }
}

@media (max-width: 781px) {
  .accordion-columns {
    gap: 0 !important;
  }
  .accordion-columns .wp-block-column:first-of-type .lightweight-accordion:last-of-type details {
    border-bottom: 0;
  }
}

.lightweight-accordion {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  margin-bottom: 0 !important;
}
.lightweight-accordion:last-of-type details {
  border-bottom: 2px solid #1a1718;
}
.lightweight-accordion details {
  border-top: 2px solid #1a1718;
}
.lightweight-accordion details summary.lightweight-accordion-title {
  display: block;
  cursor: pointer;
  background: transparent;
  padding: 1em 0;
  position: relative;
}
.lightweight-accordion details summary.lightweight-accordion-title::-webkit-details-marker {
  display: none;
}
.lightweight-accordion details summary.lightweight-accordion-title > * {
  padding-right: 32px;
}
.lightweight-accordion details summary.lightweight-accordion-title h1,
.lightweight-accordion details summary.lightweight-accordion-title h2,
.lightweight-accordion details summary.lightweight-accordion-title h3,
.lightweight-accordion details summary.lightweight-accordion-title h4 {
  font-weight: 300;
}
.lightweight-accordion details summary.lightweight-accordion-title h1 {
  font-size: var(--wp--preset--font-size--sp-xxxl);
}
.lightweight-accordion details summary.lightweight-accordion-title h2 {
  font-size: var(--wp--preset--font-size--sp-huge);
}
.lightweight-accordion details summary.lightweight-accordion-title h3 {
  font-size: var(--wp--preset--font-size--sp-large);
}
.lightweight-accordion details summary.lightweight-accordion-title h4 {
  font-size: var(--wp--preset--font-size--sp-medium);
}
.lightweight-accordion details summary.lightweight-accordion-title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: bold;
  width: 32px;
  height: 32px;
  background-image: url("../icons/plus.svg");
  background-size: 32px 32px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .lightweight-accordion details summary.lightweight-accordion-title:after {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
  }
}
.lightweight-accordion details[open] summary.lightweight-accordion-title:after {
  background-image: url("../icons/minus.svg");
}
.lightweight-accordion details .lightweight-accordion-body {
  padding: 0 0 32px;
  max-width: calc(100% - 44px);
}
@media (min-width: 768px) {
  .lightweight-accordion details .lightweight-accordion-body {
    max-width: calc(100% - 64px);
  }
}
.lightweight-accordion details .lightweight-accordion-body > *:first-child {
  margin-top: 0;
}
.lightweight-accordion details .lightweight-accordion-body > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .nf-form-cont {
    max-width: 80%;
  }
}
@media (min-width: 1240px) {
  .nf-form-cont {
    max-width: 92%;
  }
}
@media (min-width: 1440px) {
  .nf-form-cont {
    max-width: 94%;
  }
}
@media (min-width: 1600px) {
  .nf-form-cont {
    max-width: 92%;
  }
}
@media (min-width: 1700px) {
  .nf-form-cont {
    max-width: 740px;
  }
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.wp-block-file__button, .btn-small, .btn,
button,
.wp-block-button .wp-block-button__link {
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: var(--sp-font-base-size);
  color: #fff;
  font-weight: bold;
  line-height: 1;
  padding: 17px 32px 16px;
  border-radius: 0;
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  -webkit-appearance: none;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 1100px) {
  .wp-block-file__button, .btn-small, .btn,
  button,
  .wp-block-button .wp-block-button__link {
    padding: 21px 46px 19px;
  }
}
.wp-block-file__button:hover, .btn-small:hover, .btn:hover,
button:hover,
.wp-block-button .wp-block-button__link:hover, .wp-block-file__button:focus, .btn-small:focus, .btn:focus,
button:focus,
.wp-block-button .wp-block-button__link:focus {
  text-decoration: none;
  outline: none;
}
.wp-block-file__button:focus, .btn-small:focus, .btn:focus,
button:focus,
.wp-block-button .wp-block-button__link:focus {
  outline: dotted thin;
}
.full-width.wp-block-file__button, .full-width.btn-small, .full-width.btn,
button.full-width,
.wp-block-button .full-width.wp-block-button__link {
  width: 100%;
}
[disabled=disabled].wp-block-file__button, [disabled=disabled].btn-small, [disabled=disabled].btn,
button[disabled=disabled],
.wp-block-button [disabled=disabled].wp-block-button__link {
  opacity: 0.5;
}

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
* + .wp-block-file__button {
  margin-left: 0.75em;
}

.wp-block-file__button {
  font-size: 13px;
  padding: 0.5em 1em;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  border-color: currentColor;
  border: 2px solid;
}

.btn.has-brown-background-color:hover, .btn.has-brown-background-color:focus,
button.has-brown-background-color:hover,
button.has-brown-background-color:focus,
.wp-block-button .wp-block-button__link.has-brown-background-color:hover,
.wp-block-button .wp-block-button__link.has-brown-background-color:focus {
  background-color: rgb(145.8149606299, 92.937007874, 57.6850393701) !important;
}
.btn.has-beige-background-color:hover, .btn.has-beige-background-color:focus,
button.has-beige-background-color:hover,
button.has-beige-background-color:focus,
.wp-block-button .wp-block-button__link.has-beige-background-color:hover,
.wp-block-button .wp-block-button__link.has-beige-background-color:focus {
  background-color: rgb(200.597826087, 178.8369565217, 166.402173913) !important;
}
.btn.has-skin-background-color:hover, .btn.has-skin-background-color:focus,
button.has-skin-background-color:hover,
button.has-skin-background-color:focus,
.wp-block-button .wp-block-button__link.has-skin-background-color:hover,
.wp-block-button .wp-block-button__link.has-skin-background-color:focus {
  background-color: rgb(215.3846153846, 201.5192307692, 191.6153846154) !important;
}
.btn.has-gray-light-background-color:hover, .btn.has-gray-light-background-color:focus,
button.has-gray-light-background-color:hover,
button.has-gray-light-background-color:focus,
.wp-block-button .wp-block-button__link.has-gray-light-background-color:hover,
.wp-block-button .wp-block-button__link.has-gray-light-background-color:focus {
  background-color: rgb(223.2580645161, 212.6774193548, 204.7419354839) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link.has-black-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-black-color:focus {
  color: rgb(66.5918367347, 58.9081632653, 61.4693877551) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-brown-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-brown-color:focus {
  color: rgb(145.8149606299, 92.937007874, 57.6850393701) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-beige-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-beige-color:focus {
  color: rgb(200.597826087, 178.8369565217, 166.402173913) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-skin-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-skin-color:focus {
  color: rgb(215.3846153846, 201.5192307692, 191.6153846154) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-light-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-light-color:focus {
  color: rgb(223.2580645161, 212.6774193548, 204.7419354839) !important;
}

.sp-simple-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  color: inherit;
  background: transparent;
  position: relative;
  font-weight: 500;
}
.sp-simple-button::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background-image: url(../icons/download.svg);
  background-size: 1.2em 1.2em;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.sp-simple-button:hover, .sp-simple-button:focus {
  text-decoration: underline;
}
.sp-simple-button:hover:after, .sp-simple-button:focus:after {
  transform: translateX(0.2em);
}

/******************************************************************

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=email],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: inline-block;
  height: auto;
  line-height: normal;
  padding: 0.6em 1.5em;
  font-size: var(--sp-font-base-size);
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 0px solid #1a1718;
  background: #ebe4df;
  color: #1a1718;
  width: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 1080px;
  font-family: var(--wp--custom--font--family);
  transition: all 0.25s ease-in-out;
}
input[type=text]:focus, input[type=text]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:focus,
input[type=color]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
  border-color: #1a1718;
}
input[type=text][disabled], input[type=text].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=password][disabled],
input[type=password].is-disabled,
input[type=datetime][disabled],
input[type=datetime].is-disabled,
input[type=datetime-local][disabled],
input[type=datetime-local].is-disabled,
input[type=date][disabled],
input[type=date].is-disabled,
input[type=month][disabled],
input[type=month].is-disabled,
input[type=time][disabled],
input[type=time].is-disabled,
input[type=week][disabled],
input[type=week].is-disabled,
input[type=number][disabled],
input[type=number].is-disabled,
input[type=email][disabled],
input[type=email].is-disabled,
input[type=url][disabled],
input[type=url].is-disabled,
input[type=search][disabled],
input[type=search].is-disabled,
input[type=tel][disabled],
input[type=tel].is-disabled,
input[type=color][disabled],
input[type=color].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #405951;
  opacity: 0.6;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder, .field::-moz-placeholder {
  color: #1a1718 !important;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder,
select::placeholder,
textarea::placeholder,
.field::placeholder {
  color: #1a1718 !important;
}

label {
  font-weight: 500;
}
label.checkbox {
  line-height: 22px;
}
label input[type=checkbox] {
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #637562;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  top: 5px;
  margin-right: 8px;
}
label input[type=checkbox]:checked {
  background-color: #637562;
  background-image: url("../images/checkbox-checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}
label input[type=checkbox]:focus {
  outline: 1px dashed #1a1718;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

select {
  height: auto;
  line-height: normal;
  padding: 0.6em 1.5em;
  font-size: var(--sp-font-base-size);
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 0px solid #1a1718;
  width: inherit;
  -webkit-appearance: none;
  max-width: 1080px;
  -moz-appearance: none;
       appearance: none;
  background: #ebe4df;
  background-image: url("../icons/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5em) center;
  background-size: 18px;
  color: #1a1718;
}
select::-moz-placeholder {
  color: #1a1718 !important;
}
select::placeholder {
  color: #1a1718 !important;
}

/*********************
MAIN HEADER STYLING
*********************/
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  line-height: 0;
  z-index: 7;
}
.header #inner-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease-in-out;
}
.sp-page-overlay-header .header {
  position: absolute;
  background: transparent;
}
.sp-page-overlay-header .header .sp-action-section {
  filter: invert(1);
}

/*********************
HEADER ELEMENTS
*********************/
.custom-logo-link {
  display: inline-block;
  height: auto;
  width: 100%;
  max-width: 156px;
  line-height: 0;
  position: relative;
  transition: all 0.25s ease-in-out;
  margin: 32px 0;
}
@media (min-width: 768px) {
  .custom-logo-link {
    max-width: 200px;
  }
}
@media (min-width: 1100px) {
  .custom-logo-link {
    margin: 43px 0;
    max-width: 260px;
  }
}
@media (min-width: 1440px) {
  .custom-logo-link {
    max-width: 297px;
  }
}
.custom-logo-link .custom-logo {
  height: auto;
  width: 100%;
}
.nav-active .custom-logo-link {
  box-shadow: 0 0 0 0 rgba(26, 23, 24, 0.05);
}
@media (max-width: 767px) {
  body.invert-header-colors .custom-logo-link img, body.nav-active .custom-logo-link img {
    filter: invert(1);
  }
}

.sp-action-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
}
.sp-action-section > * {
  margin-left: 32px;
}
.sp-action-section > *:first-child {
  margin-left: 0;
}
@media (min-width: 1100px) {
  .sp-action-section > * {
    margin-left: 64px;
  }
  .sp-action-section > *:first-child {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  body.invert-header-colors .sp-action-section, body.nav-active .sp-action-section {
    filter: invert(1);
  }
}

ul.sp-custom-lang-switcher {
  line-height: 1;
  display: inline-flex;
  flex-direction: row;
  width: auto;
  margin-left: 32px;
  padding: 0;
}
@media (min-width: 1100px) {
  ul.sp-custom-lang-switcher {
    margin-left: 64px;
  }
}
ul.sp-custom-lang-switcher li {
  margin-right: 8px;
  position: relative;
}
ul.sp-custom-lang-switcher li a {
  color: #1a1718;
}
ul.sp-custom-lang-switcher li.current {
  font-weight: bold;
}
ul.sp-custom-lang-switcher li:hover a, ul.sp-custom-lang-switcher li:focus a, ul.sp-custom-lang-switcher li:active a {
  color: #637562;
  text-decoration: none;
}
ul.sp-custom-lang-switcher li:after {
  content: "|";
  display: inline-block;
  margin-left: 8px;
}
ul.sp-custom-lang-switcher li:last-of-type {
  margin-right: 0;
}
ul.sp-custom-lang-switcher li:last-of-type:after {
  content: none;
}

.nav-toggle {
  color: #1a1718;
  line-height: 1;
  z-index: 4;
  pointer-events: all;
  text-decoration: none;
}
.nav-toggle .nav-icon {
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
}
@media (min-width: 1100px) {
  .nav-toggle .nav-icon {
    height: 25px;
  }
}
.nav-toggle .nav-icon span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1a1718;
  transition: all 0.315s ease-in-out;
}
@media (min-width: 1100px) {
  .nav-toggle .nav-icon span {
    height: 3px;
  }
}
.nav-toggle .nav-icon span:nth-of-type(1) {
  top: 0;
  right: 0;
}
.nav-toggle .nav-icon span:nth-of-type(2) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.nav-toggle .nav-icon span:nth-of-type(3) {
  bottom: 0;
  right: 0;
}
.nav-toggle.nav-active .nav-icon span:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 11px;
}
.nav-toggle.nav-active .nav-icon span:nth-of-type(2) {
  transform: translateX(10%);
  background: transparent;
}
.nav-toggle.nav-active .nav-icon span:nth-of-type(3) {
  transform: rotate(45deg);
  bottom: 11px;
}
.nav-toggle:focus {
  outline: none;
}
.nav-toggle:focus .nav-text {
  outline: 1px dotted #1a1718;
}

.search-container {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: relative;
  display: none;
}
.search-container #searchform {
  display: flex;
}
.search-container #searchform input#s {
  border: none;
  outline: none;
  background: #dccec6;
  color: #1a1718;
  font-size: var(--sp-font-base-size);
  width: 100%;
  padding: 16px 26px;
  min-width: 300px;
  max-width: 812px;
  border-radius: 0;
}
@media (min-width: 1100px) {
  .search-container #searchform input#s {
    padding: 21px 26px;
    min-width: 420px;
  }
}
@media (min-width: 1240px) {
  .search-container #searchform input#s {
    min-width: 530px;
  }
}
.search-container #searchform input#s:hover, .search-container #searchform input#s:focus {
  border: none;
  outline: none;
  color: #1a1718;
}
.search-container #searchform button#searchsubmit {
  background: transparent;
  padding: 2px;
  line-height: 51px;
  height: 51px;
  width: 66px;
  text-align: center;
  border: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (min-width: 1100px) {
  .search-container #searchform button#searchsubmit {
    line-height: 64px;
    height: 64px;
    width: 74px;
  }
}
.search-container #searchform button#searchsubmit img {
  display: block;
  margin: 0 auto;
  width: 23px;
  height: 23px;
}
.search-container #searchform button#searchsubmit:hover, .search-container #searchform button#searchsubmit:focus {
  background: transparent;
  border: none;
}
@media (min-width: 768px) {
  .search-container {
    display: block;
  }
}
.nav-active .search-container {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.background-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 23, 24, 0.6);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}
.background-overlay.nav-active {
  cursor: url(../images/cursor-cross.png), auto;
  cursor: -webkit-image-set(url(../images/cursor-cross.png) 1x, url(../images/cursor-cross-hi.png) 2x), auto;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .background-overlay {
    display: block;
  }
}

/*********************
WP ADMIN BAR
*********************/
/* @media (max-width: 782px) {
	#wpadminbar {
		top: -46px;
	}
}
 */
@media (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
/******************************************************************

Stylesheet: Footer

******************************************************************/
.footer {
  background: #3c4e4a;
  clear: both;
  position: relative;
  padding: 0;
  color: #f3efec;
}
.footer #inner-footer {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}
.footer #footer-nav {
  border-top: 1px solid #f3efec;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: var(--wp--preset--font-size--small);
  color: #f3efec;
  text-align: center;
}
@media (min-width: 1100px) {
  .footer #footer-nav {
    font-size: 1.5rem;
  }
}
.footer #footer-nav p {
  margin: 0;
}
.footer #footer-nav a {
  color: #fff;
}
.footer #footer-nav a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .footer #footer-nav .hide-on-mobile {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .footer #footer-nav .hide-on-desktop {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.footer #footer-nav .footer-nav-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 8px;
}
@media (min-width: 768px) {
  .footer #footer-nav .footer-nav-col {
    gap: 0 32px;
  }
}
.footer #footer-nav .middle-info {
  width: 170px;
  margin: 0 auto;
}
.footer #footer-nav .middle-info img {
  width: 100%;
}
.footer #footer-nav .right-info {
  justify-content: flex-end;
  text-align: right;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 16px;
}
@media (min-width: 768px) {
  .footer-widgets {
    grid-template-columns: 0.5fr repeat(3, minmax(0, 1fr));
    grid-gap: 64px 32px;
    text-align: left;
  }
}
@media (min-width: 1240px) {
  .footer-widgets {
    grid-template-columns: 0.5fr 0.7fr repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1240px) {
  .footer-widgets {
    grid-gap: 64px;
  }
}
.footer-widgets .left-widgets {
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .footer-widgets .middle-widgets,
  .footer-widgets .right-widgets {
    display: none;
  }
}
.footer-widgets .left-widgets > *,
.footer-widgets .middle-widgets > *,
.footer-widgets .right-widgets > * {
  max-width: 400px;
  margin-bottom: 32px;
}
.footer-widgets .left-widgets > *:last-child,
.footer-widgets .middle-widgets > *:last-child,
.footer-widgets .right-widgets > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer-widgets .footer-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-47px);
    opacity: 0.3;
  }
}
@media (min-width: 768px) {
  .footer-widgets .footer-logo {
    width: 100%;
    max-width: 166px;
  }
}

/*********************
MOBILE NAVIGATION STYLES
*********************/
.mobile-nav-toggle-wrap {
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  top: 47px;
  filter: invert(1);
}
body.admin-bar .mobile-nav-toggle-wrap {
  top: calc(47px + var(--admin-bar-height));
}
@media (min-width: 768px) {
  .mobile-nav-toggle-wrap {
    top: 54px;
  }
  body.admin-bar .mobile-nav-toggle-wrap {
    top: calc(54px + var(--admin-bar-height));
  }
}
@media (min-width: 1100px) {
  .mobile-nav-toggle-wrap {
    top: 76px;
  }
  body.admin-bar .mobile-nav-toggle-wrap {
    top: calc(76px + var(--admin-bar-height));
  }
}
.mobile-nav-toggle-wrap .nav-toggle {
  pointer-events: none !important;
}
.mobile-nav-toggle-wrap .big-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.nav-active .mobile-nav-toggle-wrap {
  display: block;
  opacity: 1;
}
.nav-active .mobile-nav-toggle-wrap .nav-toggle {
  pointer-events: all !important;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 3em 2em;
  z-index: 999;
  background: #637562;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  transform: translate3d(32px, 0, 0);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
  visibility: hidden;
}
.mobile-nav.nav-active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
@media (min-width: 768px) {
  .mobile-nav {
    padding: 2.9em;
    max-width: 620px;
    width: 33vw;
    min-width: 480px;
    min-height: calc(100vh - 64px);
    max-height: 100vh;
    height: auto;
    bottom: initial;
  }
}
@media (min-width: 1100px) {
  .mobile-nav {
    padding: 3.8em;
    justify-content: space-between;
    gap: 64px;
  }
}
.mobile-nav a {
  color: #fff;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
}
.mobile-nav .nav-toggle {
  position: absolute;
  display: none;
}
@media (min-width: 768px) {
  .mobile-nav .nav-toggle {
    display: block;
    top: 52px;
    right: 64px;
    padding: 0;
  }
}
@media (min-width: 1100px) {
  .mobile-nav .nav-toggle {
    top: 126px;
  }
}
.mobile-nav .nav-toggle span span {
  background-color: #fff;
}
.mobile-nav .logo-symbol {
  width: 54px;
  height: auto;
}
@media (min-width: 768px) {
  .mobile-nav .logo-symbol {
    display: none;
  }
}
body.admin-bar .mobile-nav {
  top: var(--admin-bar-height);
}

.mobile-menu {
  width: 100%;
  border-bottom: 0;
  margin: 0;
  font-size: 26px;
  padding: 0;
  margin: auto 0;
}
.mobile-menu li {
  display: block;
}
.mobile-menu li a {
  display: block;
  color: #f3efec;
  font-weight: 300;
  text-decoration: none;
  padding: 9px 0;
  position: relative;
  line-height: 1;
  transition: transform 0.15s cubic-bezier(0.4, 0.195, 0.26, 1.085);
  transition-delay: 0.1s;
}
.mobile-menu li:last-child a {
  border-bottom: 0;
}
.mobile-menu li ul {
  margin: 0;
}
.mobile-menu li.current-menu-item > a {
  font-weight: bold;
}

/* end .nav */
.searchwp-live-search-results {
  max-height: calc(100vh - 98px);
}
@media (min-width: 1100px) {
  .searchwp-live-search-results {
    padding: 32px;
  }
}

.searchwp-live-search-results-showing {
  position: fixed !important;
}

.searchwp-live-search-results,
.searchwp-live-search-results-showing {
  border-radius: 0;
  box-shadow: 0 0 15px 0 rgba(26, 23, 24, 0.1);
}
@media (min-width: 1100px) {
  .searchwp-live-search-results,
  .searchwp-live-search-results-showing {
    left: 50% !important;
    transform: translateX(-50%);
    width: calc(100vw - 64px) !important;
    max-width: calc(var(--wp--custom--size--full-size) - 64px);
  }
}
@media (max-width: 1029px) {
  .searchwp-live-search-results,
  .searchwp-live-search-results-showing {
    left: 0 !important;
    width: 290px !important;
    max-height: calc(100vh - 133px);
  }
}

.searchwp-live-search-result:nth-of-type(even) {
  background: #f3efec;
}
.searchwp-live-search-result > a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  line-height: 0;
  white-space: normal;
}
.searchwp-live-search-result > a:hover, .searchwp-live-search-result > a:focus {
  text-decoration: none;
  background: #f3efec;
  color: #1a1718;
}
.searchwp-live-search-result .search-thumb {
  display: inline-block;
  line-height: 0;
  height: 73px;
}
.searchwp-live-search-result .search-thumb img {
  height: 100%;
  width: auto;
}
@media (min-width: 1100px) {
  .searchwp-live-search-result .search-thumb {
    height: 100px;
  }
}
.searchwp-live-search-result:last-child {
  border-bottom: none;
}

/******************************************************************

Stylesheet: Widgets

******************************************************************/
.widget {
  font-size: var(--wp--preset--font-size--sp-small);
  color: #fff;
  line-height: 1.5;
}
.widget > * {
  margin-bottom: 16px;
}
.widget > *:last-child {
  margin-bottom: 0;
}
.widget > *:first-child {
  margin-top: 0;
}
.widget .widgettitle {
  font-family: var(--wp--custom--font--family);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.widget a {
  color: #fff;
  text-decoration: none;
}
.widget a:hover, .widget a:focus {
  text-decoration: underline;
  color: #fff;
}
.widget .wp-block-group {
  padding: 0;
}
.widget .wp-block-group > * {
  margin-bottom: 16px;
}
.widget .wp-block-group > *:last-child {
  margin-bottom: 0;
}
.widget ul,
.widget ul.menu {
  margin: 0;
}
.widget ul > *,
.widget ul.menu > * {
  margin-bottom: 16px;
}
.widget ul > *:last-child,
.widget ul.menu > *:last-child {
  margin-bottom: 0;
}
.widget ul li a,
.widget ul.menu li a {
  text-decoration: none;
}
.widget ul li a[target=_blank]:before,
.widget ul.menu li a[target=_blank]:before {
  display: inline-block;
  content: "";
  margin-right: 8px;
  height: 12px;
  width: 12px;
  background-size: contain;
  background-image: url("../images/external-link.svg");
  background-repeat: no-repeat;
}
.widget .nf-form-cont {
  max-width: 100%;
}
.widget .nf-form-cont .nf-form-content .nf-field-element input[type=email] {
  background: #637562;
  color: #ebe4df;
}
.widget .nf-form-cont .nf-form-content .nf-field-element input[type=email]::-moz-placeholder {
  color: #ebe4df !important;
}
.widget .nf-form-cont .nf-form-content .nf-field-element input[type=email]::placeholder {
  color: #ebe4df !important;
}
.widget .nf-form-cont .submit-container .submit-wrap .nf-field-element {
  justify-content: flex-start;
}
.widget .nf-form-cont .submit-container .submit-wrap .nf-field-element input[type=submit]:hover, .widget .nf-form-cont .submit-container .submit-wrap .nf-field-element input[type=submit]:focus {
  background: #ebe4df;
  color: #637562;
}

.sp-follow > a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #dccec6;
  color: #1a1718;
  margin-right: 16px;
}
.sp-follow > a:last-of-type {
  margin-right: 0;
}
.sp-follow > a i {
  position: relative;
  top: 1px;
}
.sp-follow > a:hover, .sp-follow > a:focus {
  background: rgb(200.597826087, 178.8369565217, 166.402173913);
  color: #1a1718;
}

.no-widgets {
  background-color: #fff;
  padding: 8px;
  text-align: center;
  border: 1px solid #405951;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-page-sidebar-columns {
    display: grid;
    grid-template-columns: 2fr minmax(180px, 1fr);
    grid-gap: 32px;
  }
}
@media (min-width: 980px) {
  body.page-template-page-sidebar .sp-page-sidebar-columns {
    grid-template-columns: 2fr minmax(240px, 1fr);
  }
}
@media (min-width: 1100px) {
  body.page-template-page-sidebar .sp-page-sidebar-columns {
    grid-gap: 64px;
    grid-template-columns: 1fr 360px;
  }
}
@media (min-width: 1240px) {
  body.page-template-page-sidebar .sp-page-sidebar-columns {
    grid-template-columns: 1fr 415px;
  }
}
@media (min-width: 1440px) {
  body.page-template-page-sidebar .sp-page-sidebar-columns {
    grid-template-columns: 1fr 436px;
  }
}
@media (min-width: 1768px) {
  body.page-template-page-sidebar .sp-page-sidebar-columns {
    grid-template-columns: 1fr 536px;
  }
}
body.page-template-page-sidebar .hentry > * {
  max-width: 1060px;
}
body.page-template-page-sidebar .sp-page-mobile-sidebar.display-in-left-column {
  display: flex !important;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-page-mobile-sidebar.display-in-left-column {
    margin-bottom: 64px;
  }
}
body.page-template-page-sidebar .sp-page-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 64px;
}
@media (max-width: 767px) {
  body.page-template-page-sidebar .sp-page-sidebar {
    margin-top: 64px;
  }
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-page-sidebar {
    margin-bottom: 64px;
  }
}
body.page-template-page-sidebar .sp-page-sidebar.display-in-left-column {
  margin-top: clamp(40px, 6.5vw, 96px);
}
body.page-template-page-sidebar .sp-page-sidebar.display-in-left-column .sp-widget-image.image-style--stil_2 {
  display: none;
}
@media (max-width: 767px) {
  body.page-template-page-sidebar .sp-page-sidebar.add-background-on-mobile {
    padding: 32px 32px 58px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
}
body.page-template-page-sidebar .sp-widget .widget-title {
  font-family: var(--wp--custom--font--family);
  font-size: var(--wp--preset--font-size--sp-medium);
  font-weight: 300;
  margin-bottom: 22px;
  line-height: var(--wp--custom--font--line-height);
  margin-top: 0;
  text-wrap: balance;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget .widget-title {
    margin-top: -0.28em;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image {
  position: relative;
  width: 100%;
  max-width: 134px;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image {
    width: 100%;
    max-width: initial;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image .sp-main-widget-img-container {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image .sp-main-widget-img-container {
    margin-bottom: 21%;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image .sp-main-widget-img-container img.sp-main-widget-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body.page-template-page-sidebar .sp-widget.sp-widget-image img.sp-transparent-symbol {
  position: absolute;
  top: 70%;
  right: 10px;
  width: 30%;
  pointer-events: none;
  opacity: 0.7;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image img.sp-transparent-symbol {
    top: 60.5%;
    right: 8%;
    width: 29%;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_2 {
  width: 100%;
  max-width: 134px;
  margin-left: 10px;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_2 {
    margin-left: 58px;
    width: calc(100% - 58px);
    max-width: 536px;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_2 .sp-main-widget-img-container {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_2 .sp-main-widget-img-container {
    margin-bottom: 0;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_2 img.sp-transparent-symbol {
  top: 25%;
  right: auto;
  left: -10px;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_2 img.sp-transparent-symbol {
    left: -10.7%;
    top: clamp(32px, 6.5vw, 96px);
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
  pointer-events: none;
  position: absolute;
  top: -12px;
  right: -19.6%;
  width: 345px;
  max-width: 75vw;
}
body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 .sp-main-widget-img-container {
  margin-bottom: 32px;
}
@media (min-width: 480px) and (max-width: 767px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 .sp-main-widget-img-container {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 .sp-main-widget-img-container {
    margin-bottom: 21%;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 img.sp-transparent-symbol {
  display: none;
}
@media (min-width: 480px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    right: -110px;
  }
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    top: 127px;
    right: -4%;
    width: 370px;
    max-width: none;
  }
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 img.sp-transparent-symbol {
    display: block;
    top: 53.2%;
    left: -28px;
    width: 18%;
    right: auto;
  }
}
@media (min-width: 940px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    top: 42px;
    right: -11.8%;
    width: 502px;
  }
}
@media (min-width: 1100px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    top: 51px;
    right: -6%;
    width: 564px;
  }
}
@media (min-width: 1240px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    top: 13px;
    right: -7%;
    width: 624px;
  }
}
@media (min-width: 1440px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    top: 33.5px;
    right: -8%;
    width: 624px;
  }
}
@media (min-width: 1700px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-image.image-style--stil_3 {
    top: -17.5px;
    width: clamp(236px, 48%, 703px);
    right: calc((100vw - 1840px) / 2);
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-skjema .nf-form-cont {
  margin-top: 32px;
}
body.page-template-page-sidebar .sp-widget.sp-widget-text.border-style--stil_1, body.page-template-page-sidebar .sp-widget.sp-widget-skjema.border-style--stil_1 {
  position: relative;
  padding-top: 32px;
}
body.page-template-page-sidebar .sp-widget.sp-widget-text.border-style--stil_1:before, body.page-template-page-sidebar .sp-widget.sp-widget-skjema.border-style--stil_1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 138px;
  height: 6px;
  background-color: #405951;
}
body.page-template-page-sidebar .sp-widget.sp-widget-text.border-style--stil_1 .widget-title, body.page-template-page-sidebar .sp-widget.sp-widget-skjema.border-style--stil_1 .widget-title {
  font-size: var(--sp-font-base-size);
  font-weight: 600;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-widget.sp-widget-text.border-style--stil_2, body.page-template-page-sidebar .sp-widget.sp-widget-skjema.border-style--stil_2 {
    position: relative;
    padding-left: 23px;
  }
  body.page-template-page-sidebar .sp-widget.sp-widget-text.border-style--stil_2:before, body.page-template-page-sidebar .sp-widget.sp-widget-skjema.border-style--stil_2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 170px;
    width: 6px;
    background-color: #405951;
  }
}
body.page-template-page-sidebar .sp-widget.sp-widget-text {
  font-size: var(--wp--preset--font-size--sp-small);
  line-height: 1.45;
  max-width: 360px;
}
body.page-template-page-sidebar .sp-widget .widget-content > * {
  margin-top: 0;
  margin-bottom: 26px;
}
body.page-template-page-sidebar .sp-widget .widget-content > *:last-child {
  margin-bottom: 0;
}
body.page-template-page-sidebar .sp-page-footer-text {
  display: none;
}
@media (min-width: 768px) {
  body.page-template-page-sidebar .sp-page-footer-text {
    display: block;
    font-size: 0.8em;
  }
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************

Stylesheet: Base Mobile Stylesheet

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html,
body {
  overflow-x: hidden;
}

body {
  font-family: var(--wp--custom--font--family);
  font-size: 100%;
  font-size: var(--sp-font-base-size);
  font-weight: 300;
  line-height: var(--wp--custom--font--line-height);
  word-break: break-word;
  color: #1a1718;
  background-color: #fff;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
body:before {
  left: 0;
}
body:after {
  right: 0;
}
body.single-post {
  background-color: #fff;
}

/*********************
SKIP LINK / WCAG
*********************/
.skip-link {
  position: absolute;
  top: 16px;
  left: -9999px;
  position: absolute;
  text-align: center;
  white-space: normal;
  padding: 7px 8px 7px 8px;
  background-color: #fff;
  line-height: 1.2;
  border: 1px dashed #637562;
  outline: none !important;
  border-radius: 3px;
  opacity: 0;
}
.skip-link:focus {
  left: 16px;
  opacity: 1;
  z-index: 500;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wow {
  visibility: hidden;
}

.wrap,
.big-wrap,
.small-wrap {
  width: 100%;
  margin: 0 auto;
}

.big-wrap {
  padding-left: 32px;
  padding-right: 32px;
}

.wrap {
  padding-left: 32px;
  padding-right: 32px;
  max-width: var(--wp--custom--size--wide-size);
}

.small-wrap {
  padding-left: 32px;
  padding-right: 32px;
  max-width: var(--wp--custom--size--content-size);
}

.hide-on-mobile {
  display: none;
}

/*********************
LINK STYLES
*********************/
a {
  color: #637562;
  text-decoration: none;
  /* on hover */
  /* mobile tap color */
}
a:hover, a:focus {
  color: #1a1718;
}
a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*********************
H1, H2, H3, H4, H5 STYLES
*********************/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-family: var(--wp--preset--font-family--mencken), serif;
  font-weight: 400;
  position: relative;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}
h1 strong,
h1 b,
.h1 strong,
.h1 b,
h2 strong,
h2 b,
.h2 strong,
.h2 b,
h3 strong,
h3 b,
.h3 strong,
.h3 b,
h4 strong,
h4 b,
.h4 strong,
.h4 b,
h5 strong,
h5 b,
.h5 strong,
.h5 b {
  font-weight: 700;
}

h1 {
  position: relative;
  left: -2px;
}
@media (min-width: 1100px) {
  h1 {
    left: -4px;
  }
}
h1.has-small-font-size {
  left: 0;
}

.h1 {
  font-size: var(--wp--preset--font-size--sp-xxxl);
}

.h2 {
  font-size: var(--wp--preset--font-size--sp-huge);
}

.h3 {
  font-size: var(--wp--preset--font-size--sp-large);
}

.h4 {
  font-size: var(--wp--preset--font-size--sp-medium);
}

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  margin-top: 0;
  margin-bottom: 64px;
}
.no-header-margin #content {
  margin-top: calc(0px - var(--header-height));
}
.hide-page-title #content {
  margin-top: 0;
}
.last-block-no-spacing #content {
  margin-bottom: 0;
}
.single-post #content, .search-results #content {
  margin-top: 0;
}

.hentry footer p {
  margin: 0;
}

/* end .hentry */
.article-header,
.entry-header {
  margin: 0 0 32px;
}
@media (min-width: 768px) {
  .article-header,
  .entry-header {
    margin: 0 0 48px;
  }
}
.article-header .byline,
.entry-header .byline {
  margin-top: 16px;
}

.single-title,
.page-title,
.entry-title {
  margin: 0;
  max-width: 600px;
}
.single-title.title-align-left,
.page-title.title-align-left,
.entry-title.title-align-left {
  text-align: left;
}
.single-title.title-align-center,
.page-title.title-align-center,
.entry-title.title-align-center {
  text-align: center;
}
.single-title.title-align-right,
.page-title.title-align-right,
.entry-title.title-align-right {
  text-align: right;
}
body.page-template-page-narrow .single-title, body.single-post .single-title,
body.page-template-page-narrow .page-title,
body.single-post .page-title,
body.page-template-page-narrow .entry-title,
body.single-post .entry-title {
  font-size: var(--wp--preset--font-size--sp-huge);
}

/* post meta */
.byline,
cite {
  color: rgb(53.0612244898, 46.9387755102, 48.9795918367);
  display: block;
}

hr,
.wp-block-separator {
  border: none;
  height: 1px;
  margin: 1.65em auto;
  background: #f3efec;
}

/* entry content */
.entry-content > *,
.entry-content .wp-block-media-text__content > *,
.entry-content .wp-block-group > *,
.entry-content .wp-block-column > *,
.text-content > * {
  margin-bottom: 16px;
}
.entry-content > *.byggemodul, .entry-content > *.wp-block-group, .entry-content > *.wp-block-columns,
.entry-content .wp-block-media-text__content > *.byggemodul,
.entry-content .wp-block-media-text__content > *.wp-block-group,
.entry-content .wp-block-media-text__content > *.wp-block-columns,
.entry-content .wp-block-group > *.byggemodul,
.entry-content .wp-block-group > *.wp-block-group,
.entry-content .wp-block-group > *.wp-block-columns,
.entry-content .wp-block-column > *.byggemodul,
.entry-content .wp-block-column > *.wp-block-group,
.entry-content .wp-block-column > *.wp-block-columns,
.text-content > *.byggemodul,
.text-content > *.wp-block-group,
.text-content > *.wp-block-columns {
  margin-bottom: 32px;
}
.entry-content > *:first-child,
.entry-content .wp-block-media-text__content > *:first-child,
.entry-content .wp-block-group > *:first-child,
.entry-content .wp-block-column > *:first-child,
.text-content > *:first-child {
  margin-top: 0;
}
.entry-content > *:last-child,
.entry-content .wp-block-media-text__content > *:last-child,
.entry-content .wp-block-group > *:last-child,
.entry-content .wp-block-column > *:last-child,
.text-content > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 1100px) {
  .entry-content > *,
  .entry-content .wp-block-media-text__content > *,
  .entry-content .wp-block-group > *,
  .entry-content .wp-block-column > *,
  .text-content > * {
    margin-bottom: 32px;
  }
  .entry-content > *.byggemodul, .entry-content > *.wp-block-group, .entry-content > *.wp-block-columns,
  .entry-content .wp-block-media-text__content > *.byggemodul,
  .entry-content .wp-block-media-text__content > *.wp-block-group,
  .entry-content .wp-block-media-text__content > *.wp-block-columns,
  .entry-content .wp-block-group > *.byggemodul,
  .entry-content .wp-block-group > *.wp-block-group,
  .entry-content .wp-block-group > *.wp-block-columns,
  .entry-content .wp-block-column > *.byggemodul,
  .entry-content .wp-block-column > *.wp-block-group,
  .entry-content .wp-block-column > *.wp-block-columns,
  .text-content > *.byggemodul,
  .text-content > *.wp-block-group,
  .text-content > *.wp-block-columns {
    margin-bottom: 64px;
  }
  .entry-content > *:first-child,
  .entry-content .wp-block-media-text__content > *:first-child,
  .entry-content .wp-block-group > *:first-child,
  .entry-content .wp-block-column > *:first-child,
  .text-content > *:first-child {
    margin-top: 0;
  }
  .entry-content > *:last-child,
  .entry-content .wp-block-media-text__content > *:last-child,
  .entry-content .wp-block-group > *:last-child,
  .entry-content .wp-block-column > *:last-child,
  .text-content > *:last-child {
    margin-bottom: 0;
  }
}
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.entry-content .heading,
.entry-content .wp-block-media-text__content > h2,
.entry-content .wp-block-media-text__content > h3,
.entry-content .wp-block-media-text__content > h4,
.entry-content .wp-block-media-text__content .heading,
.entry-content .wp-block-group > h2,
.entry-content .wp-block-group > h3,
.entry-content .wp-block-group > h4,
.entry-content .wp-block-group .heading,
.entry-content .wp-block-column > h2,
.entry-content .wp-block-column > h3,
.entry-content .wp-block-column > h4,
.entry-content .wp-block-column .heading,
.text-content > h2,
.text-content > h3,
.text-content > h4,
.text-content .heading {
  margin-top: 32px;
  margin-bottom: 8px;
}
.entry-content > h2:first-child,
.entry-content > h3:first-child,
.entry-content > h4:first-child,
.entry-content .heading:first-child,
.entry-content .wp-block-media-text__content > h2:first-child,
.entry-content .wp-block-media-text__content > h3:first-child,
.entry-content .wp-block-media-text__content > h4:first-child,
.entry-content .wp-block-media-text__content .heading:first-child,
.entry-content .wp-block-group > h2:first-child,
.entry-content .wp-block-group > h3:first-child,
.entry-content .wp-block-group > h4:first-child,
.entry-content .wp-block-group .heading:first-child,
.entry-content .wp-block-column > h2:first-child,
.entry-content .wp-block-column > h3:first-child,
.entry-content .wp-block-column > h4:first-child,
.entry-content .wp-block-column .heading:first-child,
.text-content > h2:first-child,
.text-content > h3:first-child,
.text-content > h4:first-child,
.text-content .heading:first-child {
  margin-top: 0;
}
@media (min-width: 1100px) {
  .entry-content > h2,
  .entry-content > h3,
  .entry-content > h4,
  .entry-content .heading,
  .entry-content .wp-block-media-text__content > h2,
  .entry-content .wp-block-media-text__content > h3,
  .entry-content .wp-block-media-text__content > h4,
  .entry-content .wp-block-media-text__content .heading,
  .entry-content .wp-block-group > h2,
  .entry-content .wp-block-group > h3,
  .entry-content .wp-block-group > h4,
  .entry-content .wp-block-group .heading,
  .entry-content .wp-block-column > h2,
  .entry-content .wp-block-column > h3,
  .entry-content .wp-block-column > h4,
  .entry-content .wp-block-column .heading,
  .text-content > h2,
  .text-content > h3,
  .text-content > h4,
  .text-content .heading {
    margin-top: 64px;
    margin-bottom: 16px;
  }
}
.entry-content a.btn, .entry-content a.button, .entry-content a.wp-block-button__link,
.entry-content .wp-block-media-text__content a.btn,
.entry-content .wp-block-media-text__content a.button,
.entry-content .wp-block-media-text__content a.wp-block-button__link,
.entry-content .wp-block-group a.btn,
.entry-content .wp-block-group a.button,
.entry-content .wp-block-group a.wp-block-button__link,
.entry-content .wp-block-column a.btn,
.entry-content .wp-block-column a.button,
.entry-content .wp-block-column a.wp-block-button__link,
.text-content a.btn,
.text-content a.button,
.text-content a.wp-block-button__link {
  color: #fff;
  text-decoration: none;
}
.entry-content ul.wp-block-list,
.entry-content ol.wp-block-list,
.entry-content .wp-block-media-text__content ul.wp-block-list,
.entry-content .wp-block-media-text__content ol.wp-block-list,
.entry-content .wp-block-group ul.wp-block-list,
.entry-content .wp-block-group ol.wp-block-list,
.entry-content .wp-block-column ul.wp-block-list,
.entry-content .wp-block-column ol.wp-block-list,
.text-content ul.wp-block-list,
.text-content ol.wp-block-list {
  padding-left: 1em;
}
.entry-content fieldset,
.entry-content .wp-block-media-text__content fieldset,
.entry-content .wp-block-group fieldset,
.entry-content .wp-block-column fieldset,
.text-content fieldset {
  border: none;
  margin: 0;
  padding: 8px 16px;
  background: #f3efec;
}
.entry-content fieldset ul,
.entry-content .wp-block-media-text__content fieldset ul,
.entry-content .wp-block-group fieldset ul,
.entry-content .wp-block-column fieldset ul,
.text-content fieldset ul {
  margin-bottom: 0;
}
.entry-content fieldset ul li,
.entry-content .wp-block-media-text__content fieldset ul li,
.entry-content .wp-block-group fieldset ul li,
.entry-content .wp-block-column fieldset ul li,
.text-content fieldset ul li {
  margin-left: 0;
  list-style: none;
}
.entry-content .small-width,
.entry-content .wp-block-media-text__content .small-width,
.entry-content .wp-block-group .small-width,
.entry-content .wp-block-column .small-width,
.text-content .small-width {
  max-width: 670px;
}
.entry-content .medium-width,
.entry-content .wp-block-media-text__content .medium-width,
.entry-content .wp-block-group .medium-width,
.entry-content .wp-block-column .medium-width,
.text-content .medium-width {
  max-width: 780px;
}
.entry-content .content-small-width > *,
.entry-content .wp-block-media-text__content .content-small-width > *,
.entry-content .wp-block-group .content-small-width > *,
.entry-content .wp-block-column .content-small-width > *,
.text-content .content-small-width > * {
  max-width: 670px;
}
.entry-content .content-medium-width > *,
.entry-content .wp-block-media-text__content .content-medium-width > *,
.entry-content .wp-block-group .content-medium-width > *,
.entry-content .wp-block-column .content-medium-width > *,
.text-content .content-medium-width > * {
  max-width: 780px;
}
.entry-content .small-wrap,
.entry-content .wp-block-media-text__content .small-wrap,
.entry-content .wp-block-group .small-wrap,
.entry-content .wp-block-column .small-wrap,
.text-content .small-wrap {
  max-width: var(--wp--custom--size--wide-size);
  margin-left: auto;
  margin-right: auto;
}
.entry-content .center,
.entry-content .wp-block-media-text__content .center,
.entry-content .wp-block-group .center,
.entry-content .wp-block-column .center,
.text-content .center {
  margin-left: auto;
  margin-right: auto;
}
.entry-content .block-small-wrap .wp-block-group__inner-container,
.entry-content .wp-block-media-text__content .block-small-wrap .wp-block-group__inner-container,
.entry-content .wp-block-group .block-small-wrap .wp-block-group__inner-container,
.entry-content .wp-block-column .block-small-wrap .wp-block-group__inner-container,
.text-content .block-small-wrap .wp-block-group__inner-container {
  max-width: var(--wp--custom--size--wide-size);
}
.entry-content .seperator,
.entry-content .wp-block-media-text__content .seperator,
.entry-content .wp-block-group .seperator,
.entry-content .wp-block-column .seperator,
.text-content .seperator {
  position: relative;
}
.entry-content .seperator:before,
.entry-content .wp-block-media-text__content .seperator:before,
.entry-content .wp-block-group .seperator:before,
.entry-content .wp-block-column .seperator:before,
.text-content .seperator:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 70px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}
.entry-content blockquote,
.entry-content .wp-block-media-text__content blockquote,
.entry-content .wp-block-group blockquote,
.entry-content .wp-block-column blockquote,
.text-content blockquote {
  line-height: 1.45;
}
.entry-content blockquote > *,
.entry-content .wp-block-media-text__content blockquote > *,
.entry-content .wp-block-group blockquote > *,
.entry-content .wp-block-column blockquote > *,
.text-content blockquote > * {
  margin-bottom: 16px;
}
.entry-content blockquote > *:last-child,
.entry-content .wp-block-media-text__content blockquote > *:last-child,
.entry-content .wp-block-group blockquote > *:last-child,
.entry-content .wp-block-column blockquote > *:last-child,
.text-content blockquote > *:last-child {
  margin-bottom: 0;
}
.entry-content blockquote.wp-block-pullquote,
.entry-content .wp-block-media-text__content blockquote.wp-block-pullquote,
.entry-content .wp-block-group blockquote.wp-block-pullquote,
.entry-content .wp-block-column blockquote.wp-block-pullquote,
.text-content blockquote.wp-block-pullquote {
  padding: 32px 0;
}
.entry-content dd,
.entry-content .wp-block-media-text__content dd,
.entry-content .wp-block-group dd,
.entry-content .wp-block-column dd,
.text-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 8px;
}
.entry-content img,
.entry-content .wp-block-media-text__content img,
.entry-content .wp-block-group img,
.entry-content .wp-block-column img,
.text-content img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
.entry-content .wp-block-media-text__content .size-auto,
.entry-content .wp-block-media-text__content .size-full,
.entry-content .wp-block-media-text__content .size-large,
.entry-content .wp-block-media-text__content .size-medium,
.entry-content .wp-block-media-text__content .size-thumbnail,
.entry-content .wp-block-group .size-auto,
.entry-content .wp-block-group .size-full,
.entry-content .wp-block-group .size-large,
.entry-content .wp-block-group .size-medium,
.entry-content .wp-block-group .size-thumbnail,
.entry-content .wp-block-column .size-auto,
.entry-content .wp-block-column .size-full,
.entry-content .wp-block-column .size-large,
.entry-content .wp-block-column .size-medium,
.entry-content .wp-block-column .size-thumbnail,
.text-content .size-auto,
.text-content .size-full,
.text-content .size-large,
.text-content .size-medium,
.text-content .size-thumbnail {
  height: auto;
}
.entry-content .size-full,
.entry-content .wp-block-media-text__content .size-full,
.entry-content .wp-block-group .size-full,
.entry-content .wp-block-column .size-full,
.text-content .size-full {
  width: 100%;
}
.entry-content .size-full img,
.entry-content .wp-block-media-text__content .size-full img,
.entry-content .wp-block-group .size-full img,
.entry-content .wp-block-column .size-full img,
.text-content .size-full img {
  width: 100%;
}
.entry-content .alignfull,
.entry-content .wp-block-media-text__content .alignfull,
.entry-content .wp-block-group .alignfull,
.entry-content .wp-block-column .alignfull,
.text-content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  max-width: 1000%;
}
.entry-content .alignfull img,
.entry-content .alignwide img,
.entry-content .wp-block-media-text__content .alignfull img,
.entry-content .wp-block-media-text__content .alignwide img,
.entry-content .wp-block-group .alignfull img,
.entry-content .wp-block-group .alignwide img,
.entry-content .wp-block-column .alignfull img,
.entry-content .wp-block-column .alignwide img,
.text-content .alignfull img,
.text-content .alignwide img {
  display: block;
  margin: 0 auto;
}
.has-sidebar .entry-content .alignfull,
.has-sidebar .entry-content .alignwide,
.has-sidebar .entry-content .wp-block-media-text__content .alignfull,
.has-sidebar .entry-content .wp-block-media-text__content .alignwide,
.has-sidebar .entry-content .wp-block-group .alignfull,
.has-sidebar .entry-content .wp-block-group .alignwide,
.has-sidebar .entry-content .wp-block-column .alignfull,
.has-sidebar .entry-content .wp-block-column .alignwide,
.has-sidebar .text-content .alignfull,
.has-sidebar .text-content .alignwide {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.entry-content pre,
.entry-content .wp-block-code,
.entry-content .wp-block-file,
.entry-content .wp-block-media-text__content pre,
.entry-content .wp-block-media-text__content .wp-block-code,
.entry-content .wp-block-media-text__content .wp-block-file,
.entry-content .wp-block-group pre,
.entry-content .wp-block-group .wp-block-code,
.entry-content .wp-block-group .wp-block-file,
.entry-content .wp-block-column pre,
.entry-content .wp-block-column .wp-block-code,
.entry-content .wp-block-column .wp-block-file,
.text-content pre,
.text-content .wp-block-code,
.text-content .wp-block-file {
  border: 1px solid #405951;
  box-shadow: inset 0 0 16px 0 rgba(26, 23, 24, 0.1);
  padding: 32px;
}
.entry-content .gallery,
.entry-content .wp-block-media-text__content .gallery,
.entry-content .wp-block-group .gallery,
.entry-content .wp-block-column .gallery,
.text-content .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.entry-content .gallery .gallery-item,
.entry-content .wp-block-media-text__content .gallery .gallery-item,
.entry-content .wp-block-group .gallery .gallery-item,
.entry-content .wp-block-column .gallery .gallery-item,
.text-content .gallery .gallery-item {
  padding: 0 16px;
}
.entry-content .gallery .gallery-item a,
.entry-content .wp-block-media-text__content .gallery .gallery-item a,
.entry-content .wp-block-group .gallery .gallery-item a,
.entry-content .wp-block-column .gallery .gallery-item a,
.text-content .gallery .gallery-item a {
  display: block;
  line-height: 0;
}
.entry-content .gallery .gallery-item img,
.entry-content .wp-block-media-text__content .gallery .gallery-item img,
.entry-content .wp-block-group .gallery .gallery-item img,
.entry-content .wp-block-column .gallery .gallery-item img,
.text-content .gallery .gallery-item img {
  margin: 0;
}
.entry-content .gallery.gallery-columns-2 .gallery-item,
.entry-content .wp-block-media-text__content .gallery.gallery-columns-2 .gallery-item,
.entry-content .wp-block-group .gallery.gallery-columns-2 .gallery-item,
.entry-content .wp-block-column .gallery.gallery-columns-2 .gallery-item,
.text-content .gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.entry-content .gallery.gallery-columns-3 .gallery-item,
.entry-content .wp-block-media-text__content .gallery.gallery-columns-3 .gallery-item,
.entry-content .wp-block-group .gallery.gallery-columns-3 .gallery-item,
.entry-content .wp-block-column .gallery.gallery-columns-3 .gallery-item,
.text-content .gallery.gallery-columns-3 .gallery-item {
  width: 33.333333%;
}
.entry-content .gallery.gallery-columns-4 .gallery-item,
.entry-content .wp-block-media-text__content .gallery.gallery-columns-4 .gallery-item,
.entry-content .wp-block-group .gallery.gallery-columns-4 .gallery-item,
.entry-content .wp-block-column .gallery.gallery-columns-4 .gallery-item,
.text-content .gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.entry-content .gallery.gallery-columns-5 .gallery-item,
.entry-content .wp-block-media-text__content .gallery.gallery-columns-5 .gallery-item,
.entry-content .wp-block-group .gallery.gallery-columns-5 .gallery-item,
.entry-content .wp-block-column .gallery.gallery-columns-5 .gallery-item,
.text-content .gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
.entry-content .gallery.gallery-columns-6 .gallery-item,
.entry-content .wp-block-media-text__content .gallery.gallery-columns-6 .gallery-item,
.entry-content .wp-block-group .gallery.gallery-columns-6 .gallery-item,
.entry-content .wp-block-column .gallery.gallery-columns-6 .gallery-item,
.text-content .gallery.gallery-columns-6 .gallery-item {
  width: 16.666666667%;
}
.entry-content .wp-block-embed .video-container,
.entry-content .wp-block-media-text__content .wp-block-embed .video-container,
.entry-content .wp-block-group .wp-block-embed .video-container,
.entry-content .wp-block-column .wp-block-embed .video-container,
.text-content .wp-block-embed .video-container {
  position: static;
  padding-bottom: 0;
  /* 16:9 */
  height: auto;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}

/* end .wp-caption */
.tags {
  margin: 0;
}

/*********************
ARCHIVE STYLES
*********************/
.blog-header {
  margin: 32px 0;
}
.blog-header > * {
  margin-bottom: 32px;
}
.blog-header > *:last-child {
  margin-bottom: 0;
}
.blog-header > * {
  max-width: 680px;
}

ul.sp-parent-tax-terms {
  margin: 0;
  padding: 0;
  position: relative;
  top: 1px;
}
ul.sp-parent-tax-terms li {
  display: inline-block;
  margin-right: 32px;
}
ul.sp-parent-tax-terms li:last-of-type {
  margin-right: 0;
}
ul.sp-parent-tax-terms li a {
  color: #1a1718;
}
ul.sp-parent-tax-terms li a:hover, ul.sp-parent-tax-terms li a:focus, ul.sp-parent-tax-terms li a.selected {
  color: #1a1718;
}

.blog-header-full {
  margin-top: 64px;
  margin-bottom: 32px;
}
.blog-header-full .blog-header-content > * {
  max-width: 450px;
}
.blog-header-full .blog-header-content > * {
  margin-bottom: 32px;
}
.blog-header-full .blog-header-content > *:last-child {
  margin-bottom: 0;
}
.blog-header-full.is-banner {
  margin-top: calc(0px - var(--header-height));
  padding: calc(var(--header-height) + 64px) 0 64px;
  position: relative;
}
.blog-header-full.is-banner .blog-header-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog-header-full.is-banner .wrap {
  position: relative;
  z-index: 3;
}
.blog-header-full.is-banner .blog-header-content {
  color: #fff;
}
.blog-header-full.is-banner:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(103deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 2;
}

body.blog #main,
body.category #main {
  margin: 32px 0 64px;
}

body.blog #inner-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
body.blog #blog-sidebar {
  order: 1;
  margin-bottom: 32px;
}
body.blog #main {
  order: 2;
}
body.blog .facetwp-type-pager {
  order: 3;
}

/*********************
SEARCH PAGE
*********************/
body.search-results h1 {
  margin: 0;
}
body.search-results h1 .keyword {
  color: #637562;
}

/*********************
SINGLE POST
*********************/
.sp-single-post-byline {
  margin-top: 64px;
}

.sp-single-post-byline-info {
  margin-bottom: 32px;
}

.sp-share-buttons {
  display: inline-grid;
  grid-template-columns: 40px 40px 40px;
  align-items: center;
  grid-gap: 16px;
  justify-content: center;
}
.sp-share-buttons .share-button {
  height: 40px;
  width: 100%;
  line-height: 40px;
  text-align: center;
  background: #dccec6;
  color: #1a1718;
}
.sp-share-buttons .share-button.facebook i, .sp-share-buttons .share-button.linkedin i {
  position: relative;
  top: 1px;
}
.sp-share-buttons .share-button:hover, .sp-share-buttons .share-button:focus {
  background: rgb(200.597826087, 178.8369565217, 166.402173913);
}

.sp-author-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: 32px;
  padding-bottom: 16px;
}
.sp-author-box .sp-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 16px;
}
.sp-author-box .sp-author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-author-box .sp-author-content {
  max-width: calc(100% - 52px - 16px);
  text-align: left;
  position: relative;
}
.sp-author-box .sp-author-content p {
  margin: 2px 0;
  font-size: var(--wp--preset--font-size--sp-small);
}
.sp-author-box .sp-author-content p.sp-author-name {
  font-size: var(--sp-font-base-size);
}
.sp-author-box .sp-author-content p.byline {
  color: rgb(53.0612244898, 46.9387755102, 48.9795918367);
}
.sp-author-box .sp-author-content p:first-child {
  margin-top: 0;
}
.sp-author-box .sp-author-content p:last-child {
  margin-bottom: 0;
}

.more-articles {
  padding-top: 64px;
  padding-bottom: 64px;
  background: #f3efec;
}

header.sp-header-section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
header.sp-header-section > * {
  margin: 0 0 8px;
}
header.sp-header-section .sp-section-small-title {
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--sp-small);
  font-weight: 700;
  color: #637562;
  margin-bottom: 8px;
}
header.sp-header-section .sp-section-title {
  font-size: var(--wp--preset--font-size--sp-huge);
  color: #1a1718;
  margin-right: auto;
}
header.sp-header-section a.sp-section-link {
  margin-left: auto;
  color: #1a1718;
}
header.sp-header-section a.sp-section-link:hover, header.sp-header-section a.sp-section-link:focus {
  color: #637562;
}

.pagination,
.wp-prev-next {
  margin: 8px 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: #fff;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
  border-right: 1px solid #405951;
}
.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: 8px;
  min-width: 1em;
  display: block;
  color: #637562;
}
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: #637562;
  color: #fff;
}
.pagination .current {
  cursor: default;
  color: #637562;
}
.pagination .current:hover, .pagination .current:focus {
  background-color: #fff;
  color: #637562;
}

/* end .wp-prev-next */
/*********************
404
*********************/
#post-not-found header.article-header > * {
  margin-bottom: 16px;
}
#post-not-found header.article-header > *:last-child {
  margin-bottom: 0;
}

/*********************
NINJA FORMS
*********************/
.nf-form-cont {
  margin-bottom: 0 !important;
}
.nf-form-cont .nf-form-content {
  padding: 0;
}
.nf-form-cont .nf-form-content .ninja-forms-field {
  font-size: var(--sp-font-base-size);
}
.nf-form-cont .nf-form-content button,
.nf-form-cont .nf-form-content input[type=submit],
.nf-form-cont .nf-form-content input[type=button] {
  background: #637562;
  color: #ebe4df;
  font-weight: 400;
  height: auto;
  padding: 1em 1.5em;
  border: none;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .nf-form-cont .nf-form-content button,
  .nf-form-cont .nf-form-content input[type=submit],
  .nf-form-cont .nf-form-content input[type=button] {
    padding: 0.6em 1.5em;
  }
}
.nf-form-cont .nf-form-content button:hover, .nf-form-cont .nf-form-content button:focus,
.nf-form-cont .nf-form-content input[type=submit]:hover,
.nf-form-cont .nf-form-content input[type=submit]:focus,
.nf-form-cont .nf-form-content input[type=button]:hover,
.nf-form-cont .nf-form-content input[type=button]:focus {
  background: #3c4e4a;
  color: #ebe4df;
}
.sp-widget .nf-form-cont .nf-form-content button,
.sp-widget .nf-form-cont .nf-form-content input[type=submit],
.sp-widget .nf-form-cont .nf-form-content input[type=button] {
  background-color: #f3efec;
  color: #1a1718;
}
.sp-widget .nf-form-cont .nf-form-content button:hover, .sp-widget .nf-form-cont .nf-form-content button:focus,
.sp-widget .nf-form-cont .nf-form-content input[type=submit]:hover,
.sp-widget .nf-form-cont .nf-form-content input[type=submit]:focus,
.sp-widget .nf-form-cont .nf-form-content input[type=button]:hover,
.sp-widget .nf-form-cont .nf-form-content input[type=button]:focus {
  background: #637562;
  color: #ebe4df;
}
.nf-form-cont .nf-form-content .nf-field-label label {
  color: #1a1718;
  font-weight: normal;
  font-size: var(--sp-font-base-size);
}
.nf-form-cont .nf-form-content .nf-field-element input[type=text],
.nf-form-cont .nf-form-content .nf-field-element input[type=email],
.nf-form-cont .nf-form-content .nf-field-element input[type=tel],
.nf-form-cont .nf-form-content .nf-field-element textarea {
  background: #ebe4df;
  border: none;
  padding: 1em 1.5em;
  color: #1a1718;
}
.sp-widget .nf-form-cont .nf-form-content .nf-field-element input[type=text],
.sp-widget .nf-form-cont .nf-form-content .nf-field-element input[type=email],
.sp-widget .nf-form-cont .nf-form-content .nf-field-element input[type=tel],
.sp-widget .nf-form-cont .nf-form-content .nf-field-element textarea {
  background-color: #f3efec;
}
@media (min-width: 768px) {
  .nf-form-cont .nf-form-content .nf-field-element input[type=text],
  .nf-form-cont .nf-form-content .nf-field-element input[type=email],
  .nf-form-cont .nf-form-content .nf-field-element input[type=tel],
  .nf-form-cont .nf-form-content .nf-field-element textarea {
    padding: 0.6em 1.5em;
  }
}
.nf-form-cont .nf-form-content .nf-field-element input[type=text]::-moz-placeholder, .nf-form-cont .nf-form-content .nf-field-element input[type=email]::-moz-placeholder, .nf-form-cont .nf-form-content .nf-field-element input[type=tel]::-moz-placeholder, .nf-form-cont .nf-form-content .nf-field-element textarea::-moz-placeholder {
  color: #1a1718 !important;
}
.nf-form-cont .nf-form-content .nf-field-element input[type=text]::placeholder,
.nf-form-cont .nf-form-content .nf-field-element input[type=email]::placeholder,
.nf-form-cont .nf-form-content .nf-field-element input[type=tel]::placeholder,
.nf-form-cont .nf-form-content .nf-field-element textarea::placeholder {
  color: #1a1718 !important;
}
.nf-form-cont .nf-form-content .nf-field-container {
  margin-bottom: 0.7em;
}
.nf-form-cont .checkbox-wrap {
  flex-direction: column !important;
}
.nf-form-cont .checkbox-wrap .nf-field-label {
  margin-bottom: 16px !important;
}
.nf-form-cont .checkbox-wrap .nf-field-label label {
  display: inline-block;
  padding-top: 5px;
  padding-left: 6px;
  line-height: 1;
  font-size: 15px !important;
}
.nf-form-cont .checkbox-wrap .nf-field-label label:before {
  left: -27px;
  top: 2px;
  font-size: 20px;
}
.nf-form-cont .checkbox-wrap .nf-field-label label:after {
  width: 25px;
  height: 25px;
  left: -30px;
  border: none !important;
  background-color: #f3efec !important;
}
.nf-form-cont .html-container p {
  font-size: var(--sp-font-base-size);
  color: #1a1718;
  font-weight: 400;
}
.nf-form-cont .listradio-wrap .nf-field-label label,
.nf-form-cont .listcheckbox-wrap .nf-field-label label {
  font-weight: 400;
}
.nf-form-cont .listradio-wrap .nf-field-element label,
.nf-form-cont .listcheckbox-wrap .nf-field-element label {
  font-size: var(--sp-font-base-size);
  color: #637562;
}
.nf-form-cont .listradio-wrap .nf-field-element label:after,
.nf-form-cont .listcheckbox-wrap .nf-field-element label:after {
  background: transparent;
  border-width: 1px;
  border-color: #637562;
  border-radius: 50% 2px 50% 50%;
}
.nf-form-cont .listradio-wrap .nf-field-element label.nf-checked-label:before,
.nf-form-cont .listcheckbox-wrap .nf-field-element label.nf-checked-label:before {
  top: 5px;
  background: #637562;
}
.nf-form-cont .listradio-wrap .nf-field-element label.nf-checked-label:after,
.nf-form-cont .listcheckbox-wrap .nf-field-element label.nf-checked-label:after {
  border-color: #637562;
}
.nf-form-cont .listradio-wrap .nf-field-element li,
.nf-form-cont .listcheckbox-wrap .nf-field-element li {
  margin-bottom: 6px !important;
}
.nf-form-cont .nf-pass.field-wrap .nf-field-element:after,
.nf-form-cont .nf-error.field-wrap .nf-field-element:after {
  border-radius: 0 !important;
  height: 50px;
  top: 0;
  right: 0;
  line-height: 50px;
}
@media (min-width: 1100px) {
  .nf-form-cont .nf-pass.field-wrap .nf-field-element:after,
  .nf-form-cont .nf-error.field-wrap .nf-field-element:after {
    height: 64px;
    line-height: 64px;
  }
}
.nf-form-cont .nf-pass.field-wrap .nf-field-element:after {
  color: #637562;
  right: 10px;
}
.nf-form-cont .nf-pass .ninja-forms-field {
  color: #637562;
}
.nf-form-cont .nf-error.field-wrap .nf-field-element:after {
  background: #637562;
}
.nf-form-cont .nf-error .ninja-forms-field {
  border-color: #637562 !important;
}
.nf-form-cont .nf-error .nf-error-msg {
  color: #637562;
}
.nf-form-cont .nf-after-field {
  font-size: 14px;
}
.nf-form-cont .nf-after-field .nf-error {
  font-size: 14px;
}
.nf-form-cont .nf-error-msg,
.nf-form-cont .nf-form-fields-required {
  font-size: 14px;
  color: #637562;
}
.nf-form-cont .nf-form-fields-required {
  display: none !important;
}
.nf-form-cont .submit-container {
  margin-bottom: 0 !important;
}
.nf-form-cont .submit-container .submit-wrap .nf-field-element {
  display: flex;
  justify-content: flex-end;
}
.sp-widget .nf-form-cont .submit-container .submit-wrap .nf-field-element {
  justify-content: flex-start;
}
.nf-form-cont .nf-response-msg {
  background: #f3efec;
  padding: 32px;
}
.nf-form-cont .nf-response-msg > * {
  margin-bottom: 16px;
}
.nf-form-cont .nf-response-msg > *:last-child {
  margin-bottom: 0;
}
.nf-form-cont .nf-after-form-content {
  clear: both;
}

/*********************
BACK TO TOP
*********************/
.sp-back-to-top {
  position: fixed;
  margin: 0 auto;
  bottom: 32px;
  text-align: right;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.sp-back-to-top .sp-back-to-top-btn {
  pointer-events: all;
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #637562;
  pointer-events: none;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.215s ease-in-out;
}
.sp-back-to-top .sp-back-to-top-btn img {
  display: block;
  height: 14px;
  width: auto;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sp-back-to-top .sp-back-to-top-btn.display {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

#Coi-Renew:active {
  top: auto;
}

/* PAGE SIDEBAR */
body.page-template-page-sidebar .sp-widget .sp-widget-image {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
body.page-template-page-sidebar .sp-widget .sp-widget-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************

  Stylesheet: 481px and Up Stylesheet

  ******************************************************************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    clear: both;
  }
  /* end .entry-content */
  /*********************
  SINGLE POST / PAGE THEME
  NARROW TEMPLATES
  *********************/
  body.page-template-page-theme .sp-table-of-contents .sp-table-of-contents-container .sp-table-of-contents-bg,
  body.post-template-page-theme .sp-table-of-contents .sp-table-of-contents-container .sp-table-of-contents-bg {
    border-radius: 0 10px 20vw 0;
  }
}
/*********************
TABLET & SMALLER LAPTOPS (GUTEBERG)
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 600px) {
  /******************************************************************

  Stylesheet: Variables

  Here is where we declare all our variables like colors, fonts,
  base values, and defaults. We want to make sure this file ONLY
  contains variables that way our files don't get all messy.
  No one likes a mess.

  ******************************************************************/
  /*********************
  WRAPS
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet (GUTENBERG)

  ******************************************************************/
  .sp-single-post-byline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .sp-single-post-byline .sp-single-post-byline-info {
    margin-right: auto;
    margin-bottom: 0;
  }
  .sp-single-post-byline .sp-share-buttons {
    margin-left: auto;
  }
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + 64px + 32px);
  }
  .owl-prev,
  .owl-next {
    box-shadow: none;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************

  Stylesheet: Variables

  Here is where we declare all our variables like colors, fonts,
  base values, and defaults. We want to make sure this file ONLY
  contains variables that way our files don't get all messy.
  No one likes a mess.

  ******************************************************************/
  /*********************
  WRAPS
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 100%;
    padding-left: 64px;
    padding-right: 64px;
  }
  .big-wrap {
    width: 100%;
    max-width: var(--wp--custom--size--full-size);
    padding-left: 64px;
    padding-right: 64px;
  }
  .hide-on-mobile {
    display: initial;
  }
  .hide-on-desktop {
    display: none;
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  body.blog #inner-content {
    display: block;
  }
  body.blog #blog-sidebar {
    margin-bottom: 0;
  }
  /*********************
  ARCHIVE
  *********************/
  .archive-facets {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2.075fr);
    grid-gap: 32px;
    align-items: center;
  }
  .archive-facets .facetwp-facet {
    margin-bottom: 0;
  }
  .sp-blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sp-blog-card-grid.sp-blog-card-grid-smaller {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .facetwp-facet .facetwp-radio {
    margin-right: 32px;
  }
  .sp-card-injected {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }
  .sp-card-injected .btn {
    padding: 16px 26px;
    border-radius: 20px 20px 20px 2px;
  }
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* Entry Content */
  .entry-content .alignwide,
  .wp-block-media-text__content .alignwide,
  .wp-block-group__inner-container .alignwide,
  .wp-block-column .alignwide,
  .c-accordion__content .alignwide {
    margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
    width: auto;
    max-width: 1000%;
  }
  /*********************
  SINGLE POST / PAGE THEME
  *********************/
  body.single-post .hentry,
  body.page-template-page-narrow .hentry {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--wp--custom--size--content-size);
  }
  /*********************
  PAGE NARROW
  *********************/
  body.page-template-page-narrow .hentry {
    max-width: 620px;
  }
  /*********************
  404
  *********************/
  #post-not-found {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  #post-not-found > * {
    margin: 0;
  }
  #post-not-found .bubble-404 {
    order: 1;
    margin-right: 32px;
    margin-left: 0;
  }
  #post-not-found > header {
    max-width: 620px;
    order: 2;
    margin-right: 0;
    margin-left: auto;
  }
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + 32px);
  }
  /*********************
  BACK TO TOP
  *********************/
  .sp-back-to-top {
    bottom: 112px;
  }
}
/*********************
MEDIUM LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 900px) {
  /******************************************************************

  Stylesheet: Variables

  Here is where we declare all our variables like colors, fonts,
  base values, and defaults. We want to make sure this file ONLY
  contains variables that way our files don't get all messy.
  No one likes a mess.

  ******************************************************************/
  /*********************
  WRAPS
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet (GUTENBERG)

  ******************************************************************/
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + 64px + 32px);
  }
  .owl-prev,
  .owl-next {
    box-shadow: none;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1100px) {
  /******************************************************************

  Stylesheet: Variables

  Here is where we declare all our variables like colors, fonts,
  base values, and defaults. We want to make sure this file ONLY
  contains variables that way our files don't get all messy.
  No one likes a mess.

  ******************************************************************/
  /*********************
  WRAPS
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Desktop Stylsheet

  ******************************************************************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  #content {
    margin-bottom: 96px;
  }
  /* entry content */
  .entry-content > *,
  .wp-block-media-text__content > *,
  .wp-block-group__inner-container > *,
  .wp-block-group > *,
  .wp-block-column > * {
    margin-bottom: 32px;
  }
  .entry-content > *.byggemodul, .entry-content > *.wp-block-group, .entry-content > *.wp-block-columns,
  .wp-block-media-text__content > *.byggemodul,
  .wp-block-media-text__content > *.wp-block-group,
  .wp-block-media-text__content > *.wp-block-columns,
  .wp-block-group__inner-container > *.byggemodul,
  .wp-block-group__inner-container > *.wp-block-group,
  .wp-block-group__inner-container > *.wp-block-columns,
  .wp-block-group > *.byggemodul,
  .wp-block-group > *.wp-block-group,
  .wp-block-group > *.wp-block-columns,
  .wp-block-column > *.byggemodul,
  .wp-block-column > *.wp-block-group,
  .wp-block-column > *.wp-block-columns {
    margin-bottom: 96px;
  }
  .entry-content > *:first-child,
  .wp-block-media-text__content > *:first-child,
  .wp-block-group__inner-container > *:first-child,
  .wp-block-group > *:first-child,
  .wp-block-column > *:first-child {
    margin-top: 0;
  }
  .entry-content > *:last-child,
  .wp-block-media-text__content > *:last-child,
  .wp-block-group__inner-container > *:last-child,
  .wp-block-group > *:last-child,
  .wp-block-column > *:last-child {
    margin-bottom: 0;
  }
  /*********************
  SINGLE POST / PAGE THEME
  NARROW TEMPLATES
  *********************/
  body.single-post #content,
  body.page-template-page-narrow #content {
    margin-bottom: 96px;
  }
  body.single-post .hentry,
  body.page-template-page-narrow .hentry {
    display: block;
    width: 100%;
    max-width: 834px;
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  .facetwp-facet.facetwp-type-radio {
    white-space: normal;
    overflow-x: initial;
    -webkit-overflow-scrolling: auto;
  }
  .facetwp-facet.facetwp-type-radio .facetwp-radio {
    margin-bottom: 32px;
  }
  .facetwp-pager {
    padding: 17px 44px;
    border-radius: 25px 25px 25px 2px;
  }
  .sp-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  .blog-header {
    margin: 64px 0;
  }
  .sp-blog-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 64px 32px;
  }
  .sp-blog-card-grid.sp-blog-card-grid-smaller {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /*********************
  SEARCH PAGE
  *********************/
  body.search-results .blog-header svg.search-bubble {
    margin: 0 32px 0 0;
    max-width: 130px;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************

  Stylesheet: Super Large Monitor Stylesheet

  ******************************************************************/
}
@media only screen and (min-width: 1440px) {
  /******************************************************************

  Stylesheet: Variables

  Here is where we declare all our variables like colors, fonts,
  base values, and defaults. We want to make sure this file ONLY
  contains variables that way our files don't get all messy.
  No one likes a mess.

  ******************************************************************/
  /*********************
  WRAPS
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Super Large Monitor Stylesheet

  ******************************************************************/
  .sp-card-injected {
    padding: 64px;
  }
}
/*********************
TABLET & SMALLER LAPTOPS (GUTEBERG)
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (max-width: 600px) {
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet

  ******************************************************************/
  .wp-block-media-text {
    grid-row-gap: 32px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************

  Stylesheet: Retina Screens & Devices Stylesheet

  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.

  ******************************************************************/
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************

  Stylesheet: Print Stylesheet

  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.

  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
