@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: 70px;
  --admin-bar-height: 46px;
  --sp-font-smallest-size: 14px;
  --sp-font-small-size: 14px;
  --sp-font-base-size: 15px;
  --sp-font-medium-size: 18px;
  --sp-font-large-size: 22px;
  --sp-font-huge-size: 27px;
  --sp-font-xxl-size: 32px;
  --sp-font-xxxl-size: 42px;
}
@media (min-width: 783px) {
  :root {
    --admin-bar-height: 32px;
  }
}
@media (min-width: 768px) {
  :root {
    --header-height: 98px;
    --sp-font-smallest-size: 15px;
    --sp-font-small-size: 17px;
    --sp-font-base-size: 18px;
    --sp-font-medium-size: 24px;
    --sp-font-large-size: 26px;
    --sp-font-huge-size: 32px;
    --sp-font-xxl-size: 48px;
    --sp-font-xxxl-size: 55px;
  }
}

/* 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
*********************/
/*********************
MEDIA QUERIES
*********************/
/*********************
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--barlow), sans-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 var(--wp--preset--spacing--8);
}

.with-padding-large {
  padding: 0 var(--wp--preset--spacing--32);
}

.grid-skin {
  position: relative;
  margin: 0 -var(--wp--preset--spacing--8);
}

.grid-skin-large {
  position: relative;
  margin: 0 -var(--wp--preset--spacing--32);
}

/* 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: var(--wp--preset--spacing--32);
  }
}
.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 var(--wp--preset--color--black-olive);
  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;
}
.entry-content .wp-block-media-text.has-background {
  border-radius: 0.3em;
  overflow: hidden;
}
.entry-content .wp-block-media-text.has-background figure {
  border-radius: 0.3em 0 0 0.3em;
}
.entry-content .wp-block-media-text.has-background .wp-block-media-text__content {
  padding-top: var(--wp--preset--spacing--32);
  padding-bottom: var(--wp--preset--spacing--32);
}
.entry-content .wp-block-media-text.is-style-greentech {
  position: relative;
  overflow: visible;
}
.entry-content .wp-block-media-text.is-style-greentech:before {
  content: "";
  position: absolute;
  top: -30px;
  right: 0;
  width: 186px;
  height: 22px;
  background-image: url("../images/accon-greentech-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
}
@media (max-width: 600px) {
  .entry-content .wp-block-media-text {
    grid-row-gap: var(--wp--preset--spacing--32);
  }
  .entry-content .wp-block-media-text.has-background {
    padding-bottom: var(--wp--preset--spacing--32);
  }
  .entry-content .wp-block-media-text.has-background figure {
    border-radius: 0;
  }
  .entry-content .wp-block-media-text.has-background.alignwide {
    margin-right: calc(var(--wp--style--root--padding-right) * -1);
    margin-left: calc(var(--wp--style--root--padding-left) * -1);
    border-radius: 0;
  }
  .entry-content .wp-block-media-text.is-style-greentech:before {
    right: var(--wp--style--root--padding-right);
  }
}
@media (max-width: 1099px) {
  .entry-content .text-image + .wp-block-group.has-background, .entry-content .text-image + .wp-block-group.has-padding {
    margin-top: -var(--wp--preset--spacing--64);
  }
}
.entry-content .wp-block-column.has-background, .entry-content .wp-block-column.has-padding {
  padding: var(--wp--preset--spacing--32);
}
@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: var(--wp--preset--spacing--32);
  }
}
.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: var(--wp--preset--spacing--32);
}
.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: var(--wp--preset--spacing--16);
  font-size: var(--wp--preset--font-size--sp-small);
  font-style: italic;
  opacity: 0.6;
  max-width: calc(100% - var(--wp--preset--spacing--64));
  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 .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: var(--wp--preset--spacing--16) !important;
}
.entry-content .has-spacing-base {
  margin-bottom: var(--wp--preset--spacing--32) !important;
}
.entry-content .has-spacing-double {
  margin-bottom: var(--wp--preset--spacing--64) !important;
}
.entry-content .has-spacing-triple {
  margin-bottom: var(--wp--preset--spacing--96) !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(var(--wp--preset--spacing--96) + var(--wp--preset--spacing--96)) !important;
  }
}
.entry-content .wp-block-cover .wp-block-cover__inner-container.has-global-padding:where(:not(.alignfull.is-layout-flow) > .has-global-padding:not(.wp-block-block, .alignfull)) {
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
}

@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;
  }
}

@media (max-width: 782px) {
  .text-align-center-mobile {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .quote-image-max-width-mobile {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
}

.border-radius {
  border-radius: 5px;
}

/*********************
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(--wp--preset--font-size--sp-smallest);
  color: var(--wp--preset--color--white);
  font-weight: 400;
  line-height: 1;
  padding: 0.8em 1.4em 0.85em;
  border-radius: 5px;
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.25s ease-in-out;
}
.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 {
  background-color: transparent !important;
  border-color: currentColor;
  border: 1px solid;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color {
  border-color: var(--wp--preset--color--white) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-white-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--white) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-light-background-color {
  border-color: var(--wp--preset--color--gray-light) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-gray-light-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-gray-light-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--gray-light) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-black-olive-background-color {
  border-color: var(--wp--preset--color--black-olive) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-black-olive-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-black-olive-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--black-olive) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-accon-blue-background-color {
  border-color: var(--wp--preset--color--accon-blue) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-accon-blue-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-accon-blue-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--accon-blue) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-celestial-blue-background-color {
  border-color: var(--wp--preset--color--celestial-blue) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-celestial-blue-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-celestial-blue-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--celestial-blue) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-prussian-blue-background-color {
  border-color: var(--wp--preset--color--prussian-blue) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-prussian-blue-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-prussian-blue-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--prussian-blue) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-orange-background-color {
  border-color: var(--wp--preset--color--orange) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-orange-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-orange-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--orange) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-shamrock-green-background-color {
  border-color: var(--wp--preset--color--shamrock-green) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-shamrock-green-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-shamrock-green-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--shamrock-green) 10%, transparent) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-light-blue-background-color {
  color: var(--wp--preset--color--black-olive) !important;
  border-color: var(--wp--preset--color--light-blue) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-light-blue-background-color:hover, .wp-block-button.is-style-outline .wp-block-button__link.has-light-blue-background-color:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--light-blue) 10%, transparent) !important;
}

.btn.has-white-background-color:hover, .btn.has-white-background-color:focus,
button.has-white-background-color:hover,
button.has-white-background-color:focus,
.wp-block-button .wp-block-button__link.has-white-background-color:hover,
.wp-block-button .wp-block-button__link.has-white-background-color:focus {
  background-color: var(--wp--preset--color--gray-light) !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: #ededed !important;
}
.btn.has-black-olive-background-color:hover, .btn.has-black-olive-background-color:focus,
button.has-black-olive-background-color:hover,
button.has-black-olive-background-color:focus,
.wp-block-button .wp-block-button__link.has-black-olive-background-color:hover,
.wp-block-button .wp-block-button__link.has-black-olive-background-color:focus {
  background-color: #000000 !important;
}
.btn.has-accon-blue-background-color:hover, .btn.has-accon-blue-background-color:focus,
button.has-accon-blue-background-color:hover,
button.has-accon-blue-background-color:focus,
.wp-block-button .wp-block-button__link.has-accon-blue-background-color:hover,
.wp-block-button .wp-block-button__link.has-accon-blue-background-color:focus {
  background-color: var(--wp--preset--color--prussian-blue) !important;
}
.btn.has-celestial-blue-background-color:hover, .btn.has-celestial-blue-background-color:focus,
button.has-celestial-blue-background-color:hover,
button.has-celestial-blue-background-color:focus,
.wp-block-button .wp-block-button__link.has-celestial-blue-background-color:hover,
.wp-block-button .wp-block-button__link.has-celestial-blue-background-color:focus {
  background-color: var(--wp--preset--color--accon-blue) !important;
}
.btn.has-prussian-blue-background-color:hover, .btn.has-prussian-blue-background-color:focus,
button.has-prussian-blue-background-color:hover,
button.has-prussian-blue-background-color:focus,
.wp-block-button .wp-block-button__link.has-prussian-blue-background-color:hover,
.wp-block-button .wp-block-button__link.has-prussian-blue-background-color:focus {
  background-color: #000 !important;
}
.btn.has-orange-background-color:hover, .btn.has-orange-background-color:focus,
button.has-orange-background-color:hover,
button.has-orange-background-color:focus,
.wp-block-button .wp-block-button__link.has-orange-background-color:hover,
.wp-block-button .wp-block-button__link.has-orange-background-color:focus {
  background-color: #cc6e00 !important;
}
.btn.has-shamrock-green-background-color:hover, .btn.has-shamrock-green-background-color:focus,
button.has-shamrock-green-background-color:hover,
button.has-shamrock-green-background-color:focus,
.wp-block-button .wp-block-button__link.has-shamrock-green-background-color:hover,
.wp-block-button .wp-block-button__link.has-shamrock-green-background-color:focus {
  background-color: #2b8339 !important;
}
.btn.has-light-blue-background-color:hover, .btn.has-light-blue-background-color:focus,
button.has-light-blue-background-color:hover,
button.has-light-blue-background-color:focus,
.wp-block-button .wp-block-button__link.has-light-blue-background-color:hover,
.wp-block-button .wp-block-button__link.has-light-blue-background-color:focus {
  background-color: var(--wp--preset--color--celestial-blue) !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: 26px;
  vertical-align: middle;
  box-shadow: none;
  border: 0px solid var(--wp--preset--color--black-olive);
  background: var(--wp--preset--color--gray-light);
  color: var(--wp--preset--color--black-olive);
  width: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 1080px;
  font-family: var(--wp--preset--font-family--barlow), sans-serif;
  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: var(--wp--preset--color--black-olive);
}
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: var(--wp--preset--color--prussian-blue);
  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: var(--wp--preset--color--black-olive) !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: var(--wp--preset--color--black-olive) !important;
}

label {
  font-weight: 500;
}
label.checkbox {
  line-height: 22px;
}
label input[type=checkbox] {
  background-color: var(--wp--preset--color--white);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid var(--wp--preset--color--accon-blue);
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  top: 5px;
  margin-right: var(--wp--preset--spacing--8);
}
label input[type=checkbox]:checked {
  background-color: var(--wp--preset--color--accon-blue);
  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 var(--wp--preset--color--black-olive);
}

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

select {
  height: auto;
  width: inherit;
  max-width: 1080px;
  padding: 0.8em 2.8em 0.85em 1.4em;
  font-size: var(--wp--preset--font-size--sp-smallest);
  font-weight: 400;
  line-height: 1;
  vertical-align: middle;
  color: var(--wp--preset--color--black-olive);
  background-color: transparent !important;
  background-image: url(../images/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5em) center;
  background-size: 10px;
  border: 1px solid;
  border-color: var(--wp--preset--color--accon-blue) !important;
  border-radius: 5px;
  box-shadow: none;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  cursor: pointer;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.25s ease-in-out;
}

/*********************
MAIN HEADER STYLING
*********************/
.header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  line-height: 0;
  z-index: 7;
}
.header #inner-header .wrap-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--wp--preset--spacing--32);
  height: var(--header-height);
  transition: all 0.25s ease-in-out;
}
.sp-page-overlay-header .header {
  position: absolute;
  background: transparent;
}
.sp-page-dark-header .header {
  background-color: var(--wp--preset--color--accon-blue);
}
.sp-page-dark-header .header .sp-action-section .nav-toggle {
  color: var(--wp--preset--color--white);
}
.sp-page-dark-header .header .sp-action-section .nav-toggle .nav-icon span {
  background: var(--wp--preset--color--white);
}

/*********************
HEADER ELEMENTS
*********************/
.custom-logo-link {
  display: inline-block;
  height: auto;
  width: 100%;
  max-width: 95px;
  line-height: 0;
  position: relative;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .custom-logo-link {
    max-width: 142px;
  }
}
.custom-logo-link .custom-logo {
  height: auto;
  width: 100%;
}
.nav-active .custom-logo-link {
  box-shadow: 0 0 0 0 rgba(var(--wp--preset--color--black-olive), 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;
}
.sp-action-section > * {
  margin-left: var(--wp--preset--spacing--32);
}
.sp-action-section > *:first-child {
  margin-left: 0;
}
@media (max-width: 1029px) {
  body.invert-header-colors .sp-action-section .nav-toggle, body.nav-active .sp-action-section .nav-toggle {
    color: var(--wp--preset--color--white);
  }
  body.invert-header-colors .sp-action-section .nav-toggle .nav-icon span, body.nav-active .sp-action-section .nav-toggle .nav-icon span {
    background: var(--wp--preset--color--white);
  }
}

.sp-search-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
  background: transparent;
  color: var(--wp--preset--color--black-olive);
  position: relative;
  border: none;
  cursor: pointer;
}
.sp-search-toggle:hover, .sp-search-toggle:focus {
  color: var(--wp--preset--color--accon-blue);
}
.sp-page-dark-header .sp-search-toggle {
  color: var(--wp--preset--color--white);
}
.sp-page-dark-header .sp-search-toggle img {
  filter: invert(1);
}
@media (max-width: 480px) {
  .sp-search-toggle {
    display: none;
  }
}

.language-choice-wrapper .language-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background: #0077bc;
  color: var(--wp--preset--color--white);
  padding-right: 4.4rem;
  padding-left: 1em;
  position: relative;
}
.language-choice-wrapper .language-toggle img {
  position: absolute;
  right: 0.9em;
}
.language-choice-wrapper .language-toggle:hover, .language-choice-wrapper .language-toggle:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--accon-blue) 30%, var(--wp--preset--color--celestial-blue)) !important;
}
.sp-page-light-header .language-choice-wrapper .language-toggle {
  background: var(--wp--preset--color--gray-light);
  color: var(--wp--preset--color--black-olive);
}
.sp-page-light-header .language-choice-wrapper .language-toggle img {
  filter: invert(0.7);
}
.sp-page-light-header .language-choice-wrapper .language-toggle:hover, .sp-page-light-header .language-choice-wrapper .language-toggle:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--gray) 30%, var(--wp--preset--color--gray-light)) !important;
}
.language-choice-wrapper .language-container {
  display: none;
  position: absolute;
  padding: 1em;
  background: #fff;
  border-radius: 5px;
  line-height: 1;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin-top: 1em;
}
.language-choice-wrapper .language-container .dropdown-heading {
  margin: 0 0 1em;
  font-weight: bold;
}
.language-choice-wrapper .language-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.language-choice-wrapper .language-container ul li {
  list-style: none;
  margin: 0;
}
.language-choice-wrapper .language-container ul li a {
  padding: 0.3em 0;
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6em;
}
.language-choice-wrapper .language-container ul li a img {
  width: 20px !important;
  height: auto !important;
}
.language-choice-wrapper .language-container ul li a span {
  margin-left: 0;
}
.language-choice-wrapper .language-container ul li a:hover, .language-choice-wrapper .language-container ul li a:focus, .language-choice-wrapper .language-container ul li a[aria-current=true] {
  color: var(--wp--preset--color--accon-blue);
}
.language-choice-wrapper .language-container.is-open {
  display: block;
}

.nav-toggle {
  color: var(--wp--preset--color--black-olive);
  line-height: 1;
  z-index: 4;
  pointer-events: all;
  text-decoration: none;
}
@media (min-width: 1030px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle .nav-icon {
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
}
.nav-toggle .nav-icon span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--wp--preset--color--black-olive);
  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 var(--wp--preset--color--black-olive);
}

.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: var(--wp--preset--color--light-blue);
  color: var(--wp--preset--color--black-olive);
  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: var(--wp--preset--color--black-olive);
}
.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(var(--wp--preset--color--black-olive), 0.6);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}
.background-overlay.nav-active {
  cursor: pointer;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .background-overlay {
    display: block;
  }
}

.header-cta {
  background: var(--wp--preset--color--orange);
  color: var(--wp--preset--color--white);
}
.header-cta:hover, .header-cta:focus {
  background-color: rgb(213.3, 119.7, 9.9);
  color: var(--wp--preset--color--white);
}
@media (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

/*********************
WP ADMIN BAR
*********************/
/* @media (max-width: 782px) {
	#wpadminbar {
		top: -46px;
	}
}
 */
@media (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
/*********************
BREADCRUMBS
*********************/
.breadcrumbs-wrap {
  background: var(--wp--preset--color--light-blue);
  padding: 0.6em 1em;
}
@media (min-width: 768px) {
  .breadcrumbs-wrap {
    width: calc(100% - var(--wp--preset--spacing--96)) !important;
    border-radius: 5px;
  }
}

#breadcrumbs {
  margin: 0;
  font-size: var(--wp--preset--font-size--sp-smallest);
  color: #7b7b7b;
  max-width: calc(var(--wp--custom--size--content-size));
  margin-left: auto;
  margin-right: auto;
}
#breadcrumbs a {
  color: #7b7b7b;
}
#breadcrumbs a:hover, #breadcrumbs a:focus {
  color: var(--wp--preset--color--black-olive);
}
#breadcrumbs .breadcrumbs-separator {
  margin: 0 0.5em;
}

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

Stylesheet: Footer

******************************************************************/
.footer {
  background: var(--wp--preset--gradient--prussian-blue-to-accon-blue) !important;
  clear: both;
  position: relative;
  padding: 0;
  color: var(--wp--preset--color--gray-light);
}
.footer #inner-footer {
  padding-top: var(--wp--preset--spacing--128);
  padding-bottom: var(--wp--preset--spacing--128);
  position: relative;
}

/*********************
DESKTOP NAVIGATION STYLES
*********************/
.sp-desktop-menu {
  display: none;
}
@media (min-width: 1030px) {
  .sp-desktop-menu {
    display: flex;
  }
}

ul.sp-desktop-menu {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  line-height: 1.45;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: var(--wp--preset--spacing--32);
}
ul.sp-desktop-menu li {
  list-style: none;
  display: inline-block;
}
ul.sp-desktop-menu li a {
  color: var(--wp--preset--color--black-olive);
}
.sp-page-dark-header ul.sp-desktop-menu li a {
  color: var(--wp--preset--color--white);
}
ul.sp-desktop-menu > li.menu-item-has-children ul.sub-menu li {
  display: block;
  padding: 0;
}
ul.sp-desktop-menu > li.menu-item-has-children > ul.sub-menu {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wp--preset--color--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  max-width: var(--wp--custom--size--content-size);
  width: 100%;
  z-index: 10;
  margin-top: 47px;
  padding: var(--wp--preset--spacing--96);
  width: calc(100% - var(--wp--preset--spacing--32) - var(--wp--preset--spacing--32));
}
ul.sp-desktop-menu > li.menu-item-has-children > ul.sub-menu:before {
  display: block;
  content: "";
  position: absolute;
  top: -47px;
  height: 47px;
  width: 100%;
  opacity: 0;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}
ul.sp-desktop-menu > li.menu-item-has-children:hover > ul.sub-menu, ul.sp-desktop-menu > li.menu-item-has-children:focus > ul.sub-menu {
  pointer-events: all;
  opacity: 1;
}
ul.sp-desktop-menu > li.menu-item-has-children:hover > ul.sub-menu li a, ul.sp-desktop-menu > li.menu-item-has-children:focus > ul.sub-menu li a {
  color: var(--wp--preset--color--black-olive);
}

ul.sp-mega {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.sp-mega > li.sp-mega__wrap {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.sp-mega > li.sp-mega__wrap > .sp-mega__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: var(--wp--preset--spacing--64);
  align-items: start;
}
ul.sp-mega .sp-mega__main {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.sp-mega .sp-mega__main .sp-mega__main-item {
  margin: 0;
  padding: 0;
}
ul.sp-mega .sp-mega__main .sp-mega__main-item > a.sp-mega__main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 6px;
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
  position: relative;
}
ul.sp-mega .sp-mega__main .sp-mega__main-item > a.sp-mega__main-link:after {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-image: url("../images/chevron-right.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: var(--wp--preset--spacing--16);
  transform: translateY(-50%);
}
ul.sp-mega .sp-mega__main .sp-mega__main-item.is-active > a.sp-mega__main-link {
  background: var(--wp--preset--color--light-blue);
}
ul.sp-mega .sp-mega__panels {
  position: relative;
  min-width: 0;
}
ul.sp-mega .sp-mega__panel {
  display: none;
}
ul.sp-mega .sp-mega__panel.is-active {
  display: block;
}
ul.sp-mega .sp-mega__panel.is-empty {
  display: none;
}
ul.sp-mega .sp-mega__panel .sp-mega__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.sp-mega .sp-mega__panel .sp-mega__sub > li {
  margin: 0;
}
ul.sp-mega .sp-mega__panel .sp-mega__sub > li > a {
  display: block;
  padding: 8px 0;
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
}
ul.sp-mega .sp-mega__panel .sp-mega__sub > li:hover a, ul.sp-mega .sp-mega__panel .sp-mega__sub > li.current-menu-item a {
  color: var(--wp--preset--color--accon-blue) !important;
}

.sp-mega__left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wp--preset--spacing--32);
}

.sp-mega__intro .sp-mega-intro__inner > *:first-child {
  margin-top: 0;
}
.sp-mega__intro .sp-mega-intro__inner p {
  margin-bottom: 0;
}
.sp-mega__intro .sp-mega-intro__inner h2 {
  margin: var(--wp--preset--spacing--8) 0 var(--wp--preset--spacing--16);
}

/*********************
MOBILE NAVIGATION STYLES
*********************/
.mobile-nav-toggle-wrap {
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  top: 0;
  height: var(--header-height);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body.admin-bar .mobile-nav-toggle-wrap {
  top: var(--admin-bar-height);
}
.mobile-nav-toggle-wrap .custom-logo-link {
  filter: invert(0) !important;
}
.mobile-nav-toggle-wrap .custom-logo-link img {
  filter: invert(0) !important;
}
.mobile-nav-toggle-wrap .nav-toggle {
  pointer-events: none !important;
}
.mobile-nav-toggle-wrap .nav-toggle .nav-icon span {
  background-color: var(--wp--preset--color--white);
}
.mobile-nav-toggle-wrap .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.nav-active .mobile-nav-toggle-wrap {
  display: flex;
  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: var(--wp--preset--color--prussian-blue);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--wp--preset--spacing--64);
  transform: translate3d(32px, 0, 0);
  overflow: hidden;
  overflow-y: auto;
  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;
    height: 100vh;
    max-height: 100vh;
    bottom: initial;
  }
}
@media (min-width: 1030px) {
  .mobile-nav {
    display: none;
  }
}
@media (min-width: 1100px) {
  .mobile-nav {
    padding: 3.8em;
    justify-content: space-between;
    gap: var(--wp--preset--spacing--64);
  }
}
.mobile-nav a {
  color: var(--wp--preset--color--accon-blue);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--wp--preset--color--light-blue);
}
.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: var(--wp--preset--color--white);
}
body.admin-bar .mobile-nav {
  top: var(--admin-bar-height);
}
.mobile-nav .widget {
  color: var(--wp--preset--color--black-olive);
}
.mobile-nav .widget a {
  color: var(--wp--preset--color--black-olive);
}
.mobile-nav .widget a:hover {
  color: var(--wp--preset--color--light-blue);
}

.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: var(--wp--preset--color--white);
  font-weight: 700;
  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 {
  color: var(--wp--preset--color--light-blue);
}

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

.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(var(--wp--preset--color--black-olive), 0.1);
}
@media (min-width: 1100px) {
  .searchwp-live-search-results,
  .searchwp-live-search-results-showing {
    left: 50% !important;
    transform: translateX(-50%);
    width: calc(100vw - var(--wp--preset--spacing--64)) !important;
    max-width: calc(var(--wp--custom--size--wide-size) - var(--wp--preset--spacing--64));
  }
}
@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: var(--wp--preset--color--gray-light);
}
.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: var(--wp--preset--color--gray-light);
  color: var(--wp--preset--color--black-olive);
}
.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: var(--wp--preset--color--white);
  line-height: 1.5;
}
.widget > * {
  margin-bottom: var(--wp--preset--spacing--16);
}
.widget > *:last-child {
  margin-bottom: 0;
}
.widget > *:first-child {
  margin-top: 0;
}
.widget .widgettitle {
  font-family: var(--wp--preset--font-family--barlow), sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: var(--wp--preset--spacing--16);
  text-transform: uppercase;
}
.widget a {
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
}
.widget a:hover, .widget a:focus {
  color: var(--wp--preset--color--black-olive);
}
.widget .wp-block-group {
  padding: 0;
}
.widget .wp-block-group > * {
  margin-bottom: var(--wp--preset--spacing--16);
}
.widget .wp-block-group > *:last-child {
  margin-bottom: 0;
}
.widget ul,
.widget ul.menu {
  margin: 0;
}
.widget ul > *,
.widget ul.menu > * {
  margin-bottom: var(--wp--preset--spacing--16);
}
.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: var(--wp--preset--spacing--8);
  height: 12px;
  width: 12px;
  background-size: contain;
  background-image: url("../images/external-link.svg");
  background-repeat: no-repeat;
}

.no-widgets {
  background-color: var(--wp--preset--color--white);
  padding: var(--wp--preset--spacing--8);
  text-align: center;
  border: 1px solid var(--wp--preset--color--prussian-blue);
  margin-bottom: var(--wp--preset--spacing--8);
}

/*********************
SEARCH OVERLAY
*********************/
.sp-search-overlay {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 41, 65, 0.9);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: all 0.3s ease;
  display: none;
}
.sp-search-overlay.sp-search-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  display: block;
}

.sp-search-overlay__inner {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  cursor: pointer;
}

.sp-search-overlay__content {
  padding-top: 2em;
}

.sp-search-container {
  background: var(--wp--preset--color--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(var(--wp--preset--color--black-olive), 0.15);
}
@media (min-width: 768px) {
  .sp-search-container {
    padding: 3rem;
  }
}
.sp-search-container > * {
  max-width: 846px;
  margin-left: auto;
  margin-right: auto;
}

.sp-search-form {
  position: relative;
  background: var(--wp--preset--color--light-blue);
  border-radius: 5px;
  overflow: hidden;
}
.sp-search-form input[type=search] {
  width: 100%;
  padding: 0.6em 1em;
  border: none;
  font-size: var(--wp--preset--font-size--sp-smallest);
  color: var(--wp--preset--color--black-olive);
  background: transparent;
  outline: none;
}
.sp-search-form input[type=search]::-moz-placeholder {
  color: var(--wp--preset--color--gray);
}
.sp-search-form input[type=search]::placeholder {
  color: var(--wp--preset--color--gray);
}
.sp-search-form .sp-search-submit {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  border: none;
  color: var(--wp--preset--color--black-olive);
  padding: 0 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
}

.relevanssi-live-search-results {
  box-shadow: none;
}
.relevanssi-live-search-results.relevanssi-live-search-results-showing {
  margin-top: 1em !important;
}

/*********************
LIVE SEARCH RESULTS
*********************/
.relevanssi-live-search-results {
  display: none;
  max-height: none;
}
.relevanssi-live-search-results.relevanssi-live-search-results-showing {
  display: block;
}

.sp-live-search-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-live-search-item {
  display: flex;
  align-items: center;
  gap: 1.5em;
  padding: 1em;
  text-decoration: none;
  color: inherit;
  border-radius: 5px;
  transition: all 0.25s ease-in-out;
}
.sp-live-search-item:hover, .sp-live-search-item:focus {
  background-color: var(--wp--preset--color--gray-light);
  text-decoration: none;
}

.sp-live-search-item__image {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid var(--wp--preset--color--gray-light);
  background: var(--wp--preset--color--white);
}
@media (min-width: 768px) {
  .sp-live-search-item__image {
    width: 120px;
    height: 120px;
  }
}
.sp-live-search-item__image a {
  display: block;
  height: 100%;
}
.sp-live-search-item__image img {
  padding: 0.5em;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp-live-search-item__content {
  flex: 1;
}

.sp-live-search-item__type {
  display: inline-block;
  font-size: var(--wp--preset--font-size--sp-smallest);
  font-weight: 300;
  color: var(--wp--preset--color--accon-blue);
}

.sp-live-search-item__title {
  margin: 0 0 0.2em -2px;
  font-size: var(--wp--preset--font-size--sp-huge);
  line-height: 1.2;
  color: var(--wp--preset--color--black-olive);
  transition: all 0.25s ease-in-out;
}

.sp-live-search-item__excerpt {
  font-size: var(--wp--preset--font-size--sp-small);
  color: #7b7b7b;
}

.sp-live-search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wp--preset--color--gray-light);
  flex-wrap: wrap;
  gap: 1rem;
}

.sp-live-search-count {
  margin: 0;
  color: #7b7b7b;
  font-size: var(--wp--preset--font-size--sp-small);
}

.sp-live-search-all {
  background: var(--wp--preset--color--accon-blue);
  color: var(--wp--preset--color--white);
}
.sp-live-search-all:hover, .sp-live-search-all:focus {
  background-color: var(--wp--preset--color--celestial-blue);
}

.sp-live-search-no-results {
  padding: 2rem;
  text-align: center;
}
.sp-live-search-no-results p {
  color: #7b7b7b;
  margin: 0;
}

/*********************
SEARCH RESULTS PAGE
*********************/
.sp-search-header {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .sp-search-header {
    margin-bottom: 3rem;
  }
}

.sp-search-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .sp-search-title {
    font-size: 2.5rem;
  }
}
.sp-search-title .sp-search-keyword {
  color: var(--wp--preset--color--accon-blue);
}

.sp-search-bar-wrapper {
  max-width: 600px;
}

.sp-search-bar {
  position: relative;
  background: var(--wp--preset--color--light-blue);
  border-radius: 4px;
  overflow: hidden;
}
.sp-search-bar input[type=search] {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1rem;
  border: none;
  font-size: var(--sp-font-base-size);
  color: var(--wp--preset--color--black-olive);
  background: transparent;
  outline: none;
}
.sp-search-bar input[type=search]::-moz-placeholder {
  color: var(--wp--preset--color--gray);
}
.sp-search-bar input[type=search]::placeholder {
  color: var(--wp--preset--color--gray);
}
.sp-search-bar button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent;
  border: none;
  color: var(--wp--preset--color--black-olive);
  padding: 0 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
}
.sp-search-bar button:hover, .sp-search-bar button:focus {
  color: var(--wp--preset--color--accon-blue);
}

.sp-search-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sp-search-controls {
    margin-bottom: 3rem;
  }
}

.sp-search-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sp-search-filter {
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: var(--wp--preset--font-size--sp-smallest);
  color: var(--wp--preset--color--black-olive);
  font-weight: 400;
  line-height: 1;
  padding: 0.8em 1.4em 0.85em;
  border-radius: 5px;
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.25s ease-in-out;
  background: transparent;
  border: 1px solid;
  border-color: var(--wp--preset--color--accon-blue) !important;
}
.sp-search-filter:hover, .sp-search-filter:focus {
  text-decoration: none;
  outline: none;
}
.sp-search-filter:focus {
  outline: dotted thin;
}
.sp-search-filter.full-width {
  width: 100%;
}
.sp-search-filter[disabled=disabled] {
  opacity: 0.5;
}
.sp-search-filter.active, .sp-search-filter:hover, .sp-search-filter:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--accon-blue) 10%, transparent) !important;
}

.sp-search-count {
  font-size: var(--wp--preset--font-size--sp-small);
  color: #7b7b7b;
  white-space: nowrap;
}

.sp-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .sp-search-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .sp-search-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sp-search-card {
  background: var(--wp--preset--color--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 8px rgba(var(--wp--preset--color--black-olive), 0.05);
}
.sp-search-card:hover {
  box-shadow: 0 4px 16px rgba(var(--wp--preset--color--black-olive), 0.1);
}

.sp-search-card__image {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.sp-search-card__image a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sp-search-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.25s ease-in-out;
}
.sp-search-card:hover .sp-search-card__image img {
  transform: scale(1.05);
}

.sp-search-card__content {
  padding: 1.5rem;
}

.sp-search-card__meta {
  margin-bottom: 0.5rem;
}

.sp-search-card__type {
  display: inline-block;
  font-size: var(--wp--preset--font-size--sp-smallest);
  color: var(--wp--preset--color--accon-blue);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.sp-search-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  line-height: 1.4;
}
.sp-search-card__title a {
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transition: all 0.25s ease-in-out;
}
.sp-search-card__title a:hover, .sp-search-card__title a:focus {
  color: var(--wp--preset--color--accon-blue);
}
.sp-search-card__title a svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: all 0.25s ease-in-out;
}
.sp-search-card__title a:hover svg {
  transform: translateX(4px);
}

.sp-search-card__excerpt {
  font-size: var(--wp--preset--font-size--sp-small);
  color: #7b7b7b;
  line-height: 1.6;
}

.sp-search-no-results {
  text-align: center;
  padding: 4rem 2rem;
}
.sp-search-no-results h2 {
  margin-bottom: 1rem;
}
.sp-search-no-results p {
  color: #7b7b7b;
}

.sp-search-pagination {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .sp-search-pagination {
    margin-top: 4rem;
  }
}
.sp-search-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-search-pagination li {
  margin: 0;
}
.sp-search-pagination a,
.sp-search-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0.5rem 1rem;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease-in-out;
  border: 1px solid var(--wp--preset--color--gray-light);
}
.sp-search-pagination a:hover,
.sp-search-pagination a:focus {
  background: var(--wp--preset--color--accon-blue);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--accon-blue);
}
.sp-search-pagination .current {
  background: var(--wp--preset--color--accon-blue);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--accon-blue);
}

/*********************
AJAX LOADING STATES
*********************/
.sp-search-results {
  position: relative;
  min-height: 200px;
}

.sp-search-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--wp--preset--color--white), 0.9);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.sp-search-loading.is-visible {
  opacity: 1;
  visibility: visible;
}

.sp-search-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--wp--preset--color--gray-light);
  border-top-color: var(--wp--preset--color--accon-blue);
  border-radius: 50%;
  animation: sp-spin 0.8s linear infinite;
}

@keyframes sp-spin {
  to {
    transform: rotate(360deg);
  }
}
.sp-search-results-content {
  transition: opacity 0.2s ease;
}
.sp-search-results-content.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

/*********************
BODY LOCK WHEN SEARCH OPEN
*********************/
body.sp-search-open {
  overflow: hidden;
}

.sp-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: var(--wp--preset--spacing--64) var(--wp--preset--spacing--32);
}
@media (min-width: 481px) {
  .sp-blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .sp-blog-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sp-card {
  container-type: inline-size;
  container-name: spcard;
}
.sp-card.sp-card-product .sp-card-image, .sp-card.sp-card-sp_product .sp-card-image {
  padding: 2em;
}
.sp-card.sp-card-product .sp-card-image img, .sp-card.sp-card-sp_product .sp-card-image img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.sp-card.sp-card-product.sp-image-style-cover .sp-card-image, .sp-card.sp-card-sp_product.sp-image-style-cover .sp-card-image {
  padding: 0;
}
.sp-card.sp-card-product.sp-image-style-cover .sp-card-image img, .sp-card.sp-card-sp_product.sp-image-style-cover .sp-card-image img {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.sp-card.sp-card-product, .sp-card.sp-card-sp_product, .sp-card.sp-card-page, .sp-card.sp-card-post, .sp-card.sp-card-product-category {
  color: var(--wp--preset--color--black-olive);
}
.sp-card.sp-card-product .sp-card-image, .sp-card.sp-card-sp_product .sp-card-image, .sp-card.sp-card-page .sp-card-image, .sp-card.sp-card-post .sp-card-image, .sp-card.sp-card-product-category .sp-card-image {
  display: block;
  background-color: var(--wp--preset--color--white);
  aspect-ratio: 4/3;
  border-radius: 5px;
  border: 1px solid var(--wp--preset--color--gray);
  background-color: var(--wp--preset--color--white);
  transition: all 0.3s ease;
}
.sp-card.sp-card-product .sp-card-image img, .sp-card.sp-card-sp_product .sp-card-image img, .sp-card.sp-card-page .sp-card-image img, .sp-card.sp-card-post .sp-card-image img, .sp-card.sp-card-product-category .sp-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sp-card.sp-card-product .sp-card-image .sp-card-placeholder, .sp-card.sp-card-sp_product .sp-card-image .sp-card-placeholder, .sp-card.sp-card-page .sp-card-image .sp-card-placeholder, .sp-card.sp-card-post .sp-card-image .sp-card-placeholder, .sp-card.sp-card-product-category .sp-card-image .sp-card-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}
.sp-card.sp-card-product .sp-card-content, .sp-card.sp-card-sp_product .sp-card-content, .sp-card.sp-card-page .sp-card-content, .sp-card.sp-card-post .sp-card-content, .sp-card.sp-card-product-category .sp-card-content {
  padding: var(--wp--preset--spacing--32) 0 0 0;
}
.sp-card.sp-card-product .sp-card-category,
.sp-card.sp-card-product .sp-card-type, .sp-card.sp-card-sp_product .sp-card-category,
.sp-card.sp-card-sp_product .sp-card-type, .sp-card.sp-card-page .sp-card-category,
.sp-card.sp-card-page .sp-card-type, .sp-card.sp-card-post .sp-card-category,
.sp-card.sp-card-post .sp-card-type, .sp-card.sp-card-product-category .sp-card-category,
.sp-card.sp-card-product-category .sp-card-type {
  display: block;
  margin-bottom: var(--wp--preset--spacing--8);
  color: inherit;
  font-weight: bold;
  font-size: var(--wp--preset--font-size--sp-smallest);
  transition: all 0.3s ease;
  transition-delay: 0.2s;
}
.sp-card.sp-card-product .sp-card-category:hover, .sp-card.sp-card-product .sp-card-category:focus,
.sp-card.sp-card-product .sp-card-type:hover,
.sp-card.sp-card-product .sp-card-type:focus, .sp-card.sp-card-sp_product .sp-card-category:hover, .sp-card.sp-card-sp_product .sp-card-category:focus,
.sp-card.sp-card-sp_product .sp-card-type:hover,
.sp-card.sp-card-sp_product .sp-card-type:focus, .sp-card.sp-card-page .sp-card-category:hover, .sp-card.sp-card-page .sp-card-category:focus,
.sp-card.sp-card-page .sp-card-type:hover,
.sp-card.sp-card-page .sp-card-type:focus, .sp-card.sp-card-post .sp-card-category:hover, .sp-card.sp-card-post .sp-card-category:focus,
.sp-card.sp-card-post .sp-card-type:hover,
.sp-card.sp-card-post .sp-card-type:focus, .sp-card.sp-card-product-category .sp-card-category:hover, .sp-card.sp-card-product-category .sp-card-category:focus,
.sp-card.sp-card-product-category .sp-card-type:hover,
.sp-card.sp-card-product-category .sp-card-type:focus {
  color: var(--wp--preset--color--accon-blue) !important;
}
.sp-card.sp-card-product .sp-card-type, .sp-card.sp-card-sp_product .sp-card-type, .sp-card.sp-card-page .sp-card-type, .sp-card.sp-card-post .sp-card-type, .sp-card.sp-card-product-category .sp-card-type {
  color: var(--wp--preset--color--accon-blue);
  font-weight: normal;
}
.sp-card.sp-card-product .sp-card-link, .sp-card.sp-card-sp_product .sp-card-link, .sp-card.sp-card-page .sp-card-link, .sp-card.sp-card-post .sp-card-link, .sp-card.sp-card-product-category .sp-card-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.sp-card.sp-card-product .sp-card-title, .sp-card.sp-card-sp_product .sp-card-title, .sp-card.sp-card-page .sp-card-title, .sp-card.sp-card-post .sp-card-title, .sp-card.sp-card-product-category .sp-card-title {
  position: relative;
  padding-right: 1.5em;
  margin-left: -1px;
  margin-top: 0;
  transition: all 0.3s ease;
  transition-delay: 0.25s;
}
.sp-card.sp-card-product .sp-card-excerpt, .sp-card.sp-card-sp_product .sp-card-excerpt, .sp-card.sp-card-page .sp-card-excerpt, .sp-card.sp-card-post .sp-card-excerpt, .sp-card.sp-card-product-category .sp-card-excerpt {
  transition: all 0.3s ease;
  transition-delay: 0.3s;
}
.sp-card.sp-card-product:hover .sp-card-category,
.sp-card.sp-card-product:hover .sp-card-title,
.sp-card.sp-card-product:hover .sp-card-excerpt,
.sp-card.sp-card-product:hover .sp-card-type, .sp-card.sp-card-product:focus .sp-card-category,
.sp-card.sp-card-product:focus .sp-card-title,
.sp-card.sp-card-product:focus .sp-card-excerpt,
.sp-card.sp-card-product:focus .sp-card-type, .sp-card.sp-card-sp_product:hover .sp-card-category,
.sp-card.sp-card-sp_product:hover .sp-card-title,
.sp-card.sp-card-sp_product:hover .sp-card-excerpt,
.sp-card.sp-card-sp_product:hover .sp-card-type, .sp-card.sp-card-sp_product:focus .sp-card-category,
.sp-card.sp-card-sp_product:focus .sp-card-title,
.sp-card.sp-card-sp_product:focus .sp-card-excerpt,
.sp-card.sp-card-sp_product:focus .sp-card-type, .sp-card.sp-card-page:hover .sp-card-category,
.sp-card.sp-card-page:hover .sp-card-title,
.sp-card.sp-card-page:hover .sp-card-excerpt,
.sp-card.sp-card-page:hover .sp-card-type, .sp-card.sp-card-page:focus .sp-card-category,
.sp-card.sp-card-page:focus .sp-card-title,
.sp-card.sp-card-page:focus .sp-card-excerpt,
.sp-card.sp-card-page:focus .sp-card-type, .sp-card.sp-card-post:hover .sp-card-category,
.sp-card.sp-card-post:hover .sp-card-title,
.sp-card.sp-card-post:hover .sp-card-excerpt,
.sp-card.sp-card-post:hover .sp-card-type, .sp-card.sp-card-post:focus .sp-card-category,
.sp-card.sp-card-post:focus .sp-card-title,
.sp-card.sp-card-post:focus .sp-card-excerpt,
.sp-card.sp-card-post:focus .sp-card-type, .sp-card.sp-card-product-category:hover .sp-card-category,
.sp-card.sp-card-product-category:hover .sp-card-title,
.sp-card.sp-card-product-category:hover .sp-card-excerpt,
.sp-card.sp-card-product-category:hover .sp-card-type, .sp-card.sp-card-product-category:focus .sp-card-category,
.sp-card.sp-card-product-category:focus .sp-card-title,
.sp-card.sp-card-product-category:focus .sp-card-excerpt,
.sp-card.sp-card-product-category:focus .sp-card-type {
  transform: translateY(0.2em);
}
.sp-card.sp-card-product:hover .sp-card-image, .sp-card.sp-card-product:focus .sp-card-image, .sp-card.sp-card-sp_product:hover .sp-card-image, .sp-card.sp-card-sp_product:focus .sp-card-image, .sp-card.sp-card-page:hover .sp-card-image, .sp-card.sp-card-page:focus .sp-card-image, .sp-card.sp-card-post:hover .sp-card-image, .sp-card.sp-card-post:focus .sp-card-image, .sp-card.sp-card-product-category:hover .sp-card-image, .sp-card.sp-card-product-category:focus .sp-card-image {
  filter: brightness(0.9);
}
.sp-card.sp-card-product:hover .sp-card-title, .sp-card.sp-card-product:focus .sp-card-title, .sp-card.sp-card-sp_product:hover .sp-card-title, .sp-card.sp-card-sp_product:focus .sp-card-title, .sp-card.sp-card-page:hover .sp-card-title, .sp-card.sp-card-page:focus .sp-card-title, .sp-card.sp-card-post:hover .sp-card-title, .sp-card.sp-card-post:focus .sp-card-title, .sp-card.sp-card-product-category:hover .sp-card-title, .sp-card.sp-card-product-category:focus .sp-card-title {
  color: var(--wp--preset--color--accon-blue);
}

@container spcard (min-width: 300px) {
  .sp-card.sp-card-product .sp-card-content {
    padding: var(--wp--preset--spacing--32);
  }
}
.sp-category {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  align-items: flex-start;
}
.sp-category__popover[popover]:popover-open {
  display: block;
}
.sp-category__popover[popover][data-open="1"] {
  display: block;
}
.sp-category__btn {
  color: var(--wp--preset--color--black-olive);
  background-color: transparent !important;
  border-color: currentColor;
  border: 1px solid;
  border-color: var(--wp--preset--color--accon-blue) !important;
}
.sp-category__btn:hover, .sp-category__btn:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--accon-blue) 10%, transparent) !important;
}
.sp-category__popover[popover] {
  inset: auto;
  margin-top: var(--wp--preset--spacing--8);
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  height: auto;
  width: 320px !important;
  font-size: var(--wp--preset--font-size--sp-small);
  color: inherit;
}
.sp-category__viewport {
  border: 1px solid var(--wp--preset--color--gray);
  border-radius: 5px;
  background: var(--wp--preset--color--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: height 260ms ease;
  display: block;
  overflow: hidden;
}
.sp-category__track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 280ms ease;
  will-change: transform;
  align-items: flex-start;
}
.sp-category__panel {
  width: 100%;
  flex: 0 0 100%;
  padding: 0.5em;
  display: block;
}
.sp-category__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sp-category__toplink {
  color: var(--wp--preset--color--black-olive);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.8em 0.8em 0.85em;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}
.sp-category__toplink:hover, .sp-category__toplink:focus-visible {
  background: var(--wp--preset--color--gray-light);
  outline: none;
}
.sp-category__toplink--seeall {
  color: var(--wp--preset--color--black-olive);
  cursor: pointer;
  text-align: left;
  padding: 0.8em 0.8em 0.85em;
  border-radius: 5px;
  font-size: var(--wp--preset--font-size--sp-small);
}
.sp-category__toplink--seeall.is-active {
  font-weight: bold;
}
.sp-category__toplink--seeall:hover, .sp-category__toplink--seeall:focus-visible {
  background: var(--wp--preset--color--gray-light);
  outline: none;
}
.sp-category__backIcon {
  width: 20px;
  height: 20px;
  background-image: url(../icons/chevron-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sp-category__toplinkText {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--wp--preset--font-size--sp-small);
}
.sp-category__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0.8em 0.8em 0.85em;
  text-decoration: none;
  color: var(--wp--preset--color--black-olive);
  border-radius: 5px;
}
.sp-category__item.is-active {
  font-weight: bold;
}
.sp-category__item:hover, .sp-category__item:focus-visible {
  background: var(--wp--preset--color--gray-light);
  outline: none;
}
.sp-category__itemText {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sp-category__chev {
  width: 20px;
  height: 20px;
  background-image: url(../icons/chevron-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.category-header,
.sp-search-header {
  padding: var(--wp--preset--spacing--96) 0;
}
.category-header .category-header-content > *,
.sp-search-header .category-header-content > * {
  max-width: 620px;
}
.category-header .category-parent-link,
.sp-search-header .category-parent-link {
  margin: 0 0 var(--wp--preset--spacing--8);
}
.category-header .category-parent-link a,
.sp-search-header .category-parent-link a {
  color: var(--wp--preset--color--black-olive);
  text-decoration: none;
  font-size: var(--wp--preset--font-size--sp-medium);
}
.category-header .category-parent-link a:hover, .category-header .category-parent-link a:focus,
.sp-search-header .category-parent-link a:hover,
.sp-search-header .category-parent-link a:focus {
  color: var(--wp--preset--color--accon-blue);
}
.category-header h1,
.sp-search-header h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: bold;
}
.category-header .facetwp-type-search,
.sp-search-header .facetwp-type-search {
  margin: var(--wp--preset--spacing--32) 0 0;
}
.category-header .facetwp-type-search .facetwp-input-wrap,
.sp-search-header .facetwp-type-search .facetwp-input-wrap {
  display: block;
  width: 100%;
  max-width: 440px;
}
.category-header .facetwp-type-search .facetwp-input-wrap input.facetwp-search,
.sp-search-header .facetwp-type-search .facetwp-input-wrap input.facetwp-search {
  background: var(--wp--preset--color--light-blue);
  border-radius: 5px;
  padding: 0.6em 1em;
  font-size: var(--wp--preset--font-size--sp-smallest);
}
.category-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon,
.sp-search-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon {
  padding: 0 0.5em;
}
.category-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:before,
.sp-search-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:before {
  background-image: url("../icons/search-fat.svg");
}
.category-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:hover, .category-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:focus,
.sp-search-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:hover,
.sp-search-header .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:focus {
  opacity: 1;
}

/*********************
FILTERS & FACETS
*********************/
.archive-facets {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: var(--wp--preset--spacing--16);
  align-items: center;
}
@media (min-width: 480px) {
  .archive-facets {
    grid-gap: var(--wp--preset--spacing--32);
  }
}
.archive-facets button.sp-filter-toggle {
  background: var(--wp--preset--color--accon-blue);
  color: var(--wp--preset--color--white);
}
.archive-facets button.sp-filter-toggle:hover, .archive-facets button.sp-filter-toggle:focus {
  background-color: var(--wp--preset--color--prussian-blue) !important;
}
.archive-facets .facetwp-facet {
  margin: 0;
}
.archive-facets .facetwp-facet.facetwp-facet-sort_by {
  margin-left: auto;
}
@media (max-width: 479px) {
  .archive-facets .facetwp-facet.facetwp-facet-sort_by {
    display: none;
  }
}

/*********************
FILTER SLIDEOUT
*********************/
.sp-filter-slideout {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
  transition: all 0.2s ease-in-out;
}
.sp-filter-slideout.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.sp-filter-slideout.is-active .sp-filter-slideout-sidebar {
  transform: translateX(0);
}
.sp-filter-slideout .sp-filter-slideout-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  width: 360px;
  max-width: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  margin: 0 !important;
  transform: translateX(-2em);
  transition: all 0.3s ease-in-out;
}
.sp-filter-slideout .sp-filter-slideout-bg {
  background-color: rgba(44, 51, 56, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  cursor: pointer;
}
.admin-bar .sp-filter-slideout {
  top: 46px;
}
@media (min-width: 783px) {
  .admin-bar .sp-filter-slideout {
    top: 32px;
  }
}
.sp-filter-slideout .sp-slideout-header {
  padding: var(--wp--preset--spacing--16) var(--wp--preset--spacing--32);
  border-bottom: 1px solid var(--wp--preset--color--gray-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sp-filter-slideout .sp-slideout-header .facetwp-facet {
  margin: 0;
}
.sp-filter-slideout .sp-slideout-header .facetwp-facet.facetwp-type-pager {
  font-size: var(--wp--preset--font-size--sp-smallest);
}
.sp-filter-slideout .sp-slideout-header .sp-close-filter-btn {
  display: inline-block;
  border-radius: 50%;
  padding: 0;
  width: 2em;
  height: 2em;
  line-height: 2em;
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--orange);
}
.sp-filter-slideout .sp-slideout-filters {
  padding: var(--wp--preset--spacing--32);
  display: grid;
  gap: var(--wp--preset--spacing--16);
}
.sp-filter-slideout .sp-slideout-filters .facetwp-facet {
  margin: 0;
}
.sp-filter-slideout .sp-slideout-filters .facetwp-reset {
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  font-size: var(--wp--preset--font-size--sp-smallest);
  color: var(--wp--preset--color--black-olive);
  font-weight: 400;
  line-height: 1;
  padding: 0.8em 1.4em 0.85em;
  border-radius: 5px;
  border: 1px solid var(--wp--preset--color--orange);
  text-align: center;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.25s ease-in-out;
}
.sp-filter-slideout .sp-slideout-filters .facetwp-reset:hover, .sp-filter-slideout .sp-slideout-filters .facetwp-reset:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--orange) 10%, transparent) !important;
}
.sp-filter-slideout .facet-item .facet-label {
  font-weight: bold;
  display: block;
  margin-bottom: var(--wp--preset--spacing--16);
  font-size: var(--wp--preset--font-size--sp-small);
}
.sp-filter-slideout .facetwp-type-search .facetwp-input-wrap {
  display: block;
  width: 100%;
}
.sp-filter-slideout .facetwp-type-search .facetwp-input-wrap input.facetwp-search {
  background: var(--wp--preset--color--light-blue);
  border-radius: 5px;
  padding: 0.6em 1em;
  font-size: var(--wp--preset--font-size--sp-smallest);
}
.sp-filter-slideout .facetwp-type-search .facetwp-input-wrap i.facetwp-icon {
  padding: 0 0.5em;
}
.sp-filter-slideout .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:before {
  background-image: url("../icons/search-fat.svg");
}
.sp-filter-slideout .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:hover, .sp-filter-slideout .facetwp-type-search .facetwp-input-wrap i.facetwp-icon:focus {
  opacity: 1;
}
.sp-filter-slideout .facetwp-type-checkboxes {
  display: grid;
  gap: 8px;
}
.sp-filter-slideout .facetwp-type-checkboxes div.facetwp-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 32px;
  background: #fff;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sp-filter-slideout .facetwp-type-checkboxes div.facetwp-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--wp--preset--color--gray);
  background: var(--wp--preset--color--white);
}
.sp-filter-slideout .facetwp-type-checkboxes div.facetwp-checkbox span.facetwp-display-value {
  font-size: var(--wp--preset--font-size--sp-smallest);
  font-weight: 500;
  color: var(--wp--preset--color--black-olive);
}
.sp-filter-slideout .facetwp-type-checkboxes div.facetwp-checkbox span.facetwp-counter {
  font-size: 12px;
  color: var(--wp--preset--color--gray);
}
.sp-filter-slideout .facetwp-type-checkboxes div.facetwp-checkbox.checked:before {
  background: var(--wp--preset--color--gray);
}
.sp-filter-slideout .facetwp-type-checkboxes div.facetwp-checkbox.checked:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-60%) rotate(-45deg);
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--wp--preset--color--black-olive);
  border-bottom: 2px solid var(--wp--preset--color--black-olive);
}

.facetwp-facet-pagination {
  margin: var(--wp--preset--spacing--64) 0;
  text-align: center;
}
.facetwp-facet-pagination .facetwp-pager {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--8);
}
.facetwp-facet-pagination .facetwp-page {
  border-radius: 5px;
  border: 1px solid var(--wp--preset--color--accon-blue);
  line-height: 1;
  padding: 0.8em 1.2em;
  color: var(--wp--preset--color--black-olive);
  font-weight: 300;
  font-size: var(--wp--preset--font-size--sp-smallest);
}
.facetwp-facet-pagination .facetwp-page:hover, .facetwp-facet-pagination .facetwp-page.active, .facetwp-facet-pagination .facetwp-page:focus {
  background-color: color-mix(in srgb, var(--wp--preset--color--accon-blue) 10%, transparent) !important;
  color: var(--wp--preset--color--black-olive);
  font-weight: 300;
}

/*********************
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--preset--font-family--barlow), sans-serif;
  font-size: 100%;
  font-size: var(--sp-font-base-size);
  font-weight: 400;
  line-height: var(--wp--custom--font--line-height);
  word-break: break-word;
  color: var(--wp--preset--color--black-olive);
  background-color: var(--wp--preset--color--white);
  position: relative;
  -webkit-font-smoothing: antialiased;
}
body:before {
  left: 0;
}
body:after {
  right: 0;
}
body.single-post {
  background-color: var(--wp--preset--color--white);
}

/*********************
SKIP LINK / WCAG
*********************/
.skip-link {
  position: absolute;
  top: var(--wp--preset--spacing--16);
  left: -9999px;
  position: absolute;
  text-align: center;
  white-space: normal;
  padding: 7px 8px 7px 8px;
  background-color: var(--wp--preset--color--white);
  line-height: 1.2;
  border: 1px dashed var(--wp--preset--color--accon-blue);
  outline: none !important;
  border-radius: 3px;
  opacity: 0;
}
.skip-link:focus {
  left: var(--wp--preset--spacing--16);
  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: var(--wp--preset--spacing--32);
  padding-right: var(--wp--preset--spacing--32);
}

.wrap {
  padding-left: var(--wp--preset--spacing--32);
  padding-right: var(--wp--preset--spacing--32);
}
.wrap .wrap-content {
  max-width: calc(var(--wp--custom--size--content-size));
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/*********************
LINK STYLES
*********************/
a {
  color: var(--wp--preset--color--accon-blue);
  text-decoration: none;
  /* on hover */
  /* mobile tap color */
}
a:hover, a:focus {
  color: var(--wp--preset--color--prussian-blue);
}
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--barlow), sans-serif;
  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 {
  position: relative;
  left: -1px;
}
@media (min-width: 1100px) {
  h1 {
    left: -2px;
  }
}
h1.has-small-font-size, h1.has-sp-normal-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: var(--wp--preset--spacing--64);
}
.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-top: var(--wp--preset--spacing--32);
  margin-bottom: var(--wp--preset--spacing--32);
}
@media (min-width: 768px) {
  .article-header,
  .entry-header {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.article-header .byline,
.entry-header .byline {
  margin-top: var(--wp--preset--spacing--16);
}
.title-margin--none .article-header,
.title-margin--none .entry-header {
  margin-bottom: 0;
}
.title-margin--small .article-header,
.title-margin--small .entry-header {
  margin-bottom: var(--wp--preset--spacing--16);
}
.article-header > *,
.entry-header > * {
  max-width: var(--wp--custom--size--content-size);
  margin-left: auto;
  margin-right: auto;
}

.single-title,
.page-title,
.entry-title {
  font-weight: 700;
}
.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: var(--wp--preset--color--white);
  display: block;
}

hr,
.wp-block-separator {
  border: none;
  height: 1px;
  margin: 1.65em auto;
  background: var(--wp--preset--color--gray-light);
}

/* entry content */
.entry-content > * {
  -webkit-margin-before: var(--wp--preset--spacing--32);
          margin-block-start: var(--wp--preset--spacing--32);
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.entry-content > *:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.entry-content > *:where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: var(--wp--custom--size--content-size);
  margin-left: auto;
  margin-right: auto;
}
.entry-content a.btn, .entry-content a.button, .entry-content a.wp-block-button__link {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}
.entry-content ul.wp-block-list,
.entry-content ol.wp-block-list {
  padding-left: 1em;
}
.entry-content fieldset {
  border: none;
  margin: 0;
  padding: var(--wp--preset--spacing--8) var(--wp--preset--spacing--16);
  background: var(--wp--preset--color--gray-light);
}
.entry-content fieldset ul {
  margin-bottom: 0;
}
.entry-content fieldset ul li {
  margin-left: 0;
  list-style: none;
}
.entry-content .small-width {
  max-width: 670px;
}
.entry-content .medium-width {
  max-width: 780px;
}
.entry-content .content-small-width > * {
  max-width: 670px;
}
.entry-content .content-medium-width > * {
  max-width: 780px;
}
.entry-content .small-wrap {
  max-width: var(--wp--custom--size--content-size);
  margin-left: auto;
  margin-right: auto;
}
.entry-content .center {
  margin-left: auto;
  margin-right: auto;
}
.entry-content .block-small-wrap .wp-block-group__inner-container {
  max-width: var(--wp--custom--size--content-size);
}
.entry-content .seperator {
  position: relative;
}
.entry-content .seperator:before {
  content: "";
  position: absolute;
  bottom: -var(--wp--preset--spacing--16);
  left: 50%;
  width: 70px;
  height: 1px;
  background: var(--wp--preset--color--white);
  transform: translateX(-50%);
}
.entry-content blockquote {
  line-height: 1.45;
}
.entry-content blockquote > * {
  margin-bottom: var(--wp--preset--spacing--16);
}
.entry-content blockquote > *:last-child {
  margin-bottom: 0;
}
.entry-content blockquote.wp-block-pullquote {
  padding: var(--wp--preset--spacing--32) 0;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: var(--wp--preset--spacing--8);
}
.entry-content img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.entry-content .alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--style--global--wide-size);
}
.entry-content pre,
.entry-content .wp-block-code,
.entry-content .wp-block-file {
  border: 1px solid var(--wp--preset--color--prussian-blue);
  box-shadow: inset 0 0 var(--wp--preset--spacing--16) 0 rgba(var(--wp--preset--color--black-olive), 0.1);
  padding: var(--wp--preset--spacing--32);
}
.entry-content .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -var(--wp--preset--spacing--16);
}
.entry-content .gallery .gallery-item {
  padding: 0 var(--wp--preset--spacing--16);
}
.entry-content .gallery .gallery-item a {
  display: block;
  line-height: 0;
}
.entry-content .gallery .gallery-item img {
  margin: 0;
}
.entry-content .gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.entry-content .gallery.gallery-columns-3 .gallery-item {
  width: 33.333333%;
}
.entry-content .gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.entry-content .gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
.entry-content .gallery.gallery-columns-6 .gallery-item {
  width: 16.666666667%;
}
.entry-content .wp-block-embed .video-container {
  position: static;
  padding-bottom: 0;
  /* 16:9 */
  height: auto;
}
.entry-content .yoast-breadcrumbs a {
  color: var(--wp--preset--color--black-olive);
}
.entry-content .yoast-breadcrumbs a:hover, .entry-content .yoast-breadcrumbs a:focus {
  color: var(--wp--preset--color--accon-blue);
}

/* 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: var(--wp--preset--spacing--32) 0;
}
.blog-header > * {
  margin-bottom: var(--wp--preset--spacing--32);
}
.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: var(--wp--preset--spacing--32);
}
ul.sp-parent-tax-terms li:last-of-type {
  margin-right: 0;
}
ul.sp-parent-tax-terms li a {
  color: var(--wp--preset--color--black-olive);
}
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: var(--wp--preset--color--black-olive);
}

.blog-header-full {
  margin-top: var(--wp--preset--spacing--64);
  margin-bottom: var(--wp--preset--spacing--32);
}
.blog-header-full .blog-header-content > * {
  max-width: 450px;
}
.blog-header-full .blog-header-content > * {
  margin-bottom: var(--wp--preset--spacing--32);
}
.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: var(--wp--preset--color--white);
}
.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: var(--wp--preset--spacing--32) 0 var(--wp--preset--spacing--64);
}

body.blog #inner-content {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--wp--preset--spacing--32);
}
body.blog #blog-sidebar {
  order: 1;
  margin-bottom: var(--wp--preset--spacing--32);
}
body.blog #main {
  order: 2;
}
body.blog .facetwp-type-pager {
  order: 3;
}

/*********************
SEARCH PAGE
*********************/
body.search-results h1 .keyword {
  color: var(--wp--preset--color--accon-blue);
}

/*********************
SINGLE POST
*********************/
.sp-single-post-byline {
  margin-top: var(--wp--preset--spacing--64);
}

.sp-single-post-byline-info {
  margin-bottom: var(--wp--preset--spacing--32);
}

.sp-share-buttons {
  display: inline-grid;
  grid-template-columns: 40px 40px 40px;
  align-items: center;
  grid-gap: var(--wp--preset--spacing--16);
  justify-content: center;
}
.sp-share-buttons .share-button {
  height: 40px;
  width: 100%;
  line-height: 40px;
  text-align: center;
  background: var(--wp--preset--color--light-blue);
  color: var(--wp--preset--color--black-olive);
}
.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: var(--wp--preset--color--celestial-blue);
}

.sp-author-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-top: var(--wp--preset--spacing--32);
  padding-bottom: var(--wp--preset--spacing--16);
}
.sp-author-box .sp-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--wp--preset--spacing--16);
}
.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 - var(--wp--preset--spacing--16));
  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: var(--wp--preset--color--white);
}
.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: var(--wp--preset--spacing--64);
  padding-bottom: var(--wp--preset--spacing--64);
  background: var(--wp--preset--color--gray-light);
}

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

.pagination,
.wp-prev-next {
  margin: var(--wp--preset--spacing--8) 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  background-color: var(--wp--preset--color--white);
  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 var(--wp--preset--color--prussian-blue);
}
.pagination a,
.pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1em;
  font-size: 1em;
  font-weight: normal;
  padding: var(--wp--preset--spacing--8);
  min-width: 1em;
  display: block;
  color: var(--wp--preset--color--accon-blue);
}
.pagination a:hover, .pagination a:focus,
.pagination span:hover,
.pagination span:focus {
  background-color: var(--wp--preset--color--accon-blue);
  color: var(--wp--preset--color--white);
}
.pagination .current {
  cursor: default;
  color: var(--wp--preset--color--accon-blue);
}
.pagination .current:hover, .pagination .current:focus {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--accon-blue);
}

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

/*********************
BACK TO TOP
*********************/
.sp-back-to-top {
  position: fixed;
  margin: 0 auto;
  bottom: var(--wp--preset--spacing--32);
  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: var(--wp--preset--color--accon-blue);
  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
  *********************/
  /*********************
  MEDIA QUERIES
  *********************/
  /*********************
  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% + var(--wp--preset--spacing--64) + var(--wp--preset--spacing--32));
  }
  .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
  *********************/
  /*********************
  MEDIA QUERIES
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  .big-wrap {
    width: 100%;
    max-width: var(--wp--custom--size--wide-size);
    padding-left: var(--wp--preset--spacing--64);
    padding-right: var(--wp--preset--spacing--64);
  }
  .hide-on-desktop {
    display: none !important;
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  body.blog #inner-content {
    display: block;
  }
  body.blog #blog-sidebar {
    margin-bottom: 0;
  }
  /*********************
  ARCHIVE
  *********************/
  .facetwp-facet .facetwp-radio {
    margin-right: var(--wp--preset--spacing--32);
  }
  .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;
  }
  /*********************
  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: var(--wp--preset--spacing--32);
    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% + var(--wp--preset--spacing--32));
  }
  /*********************
  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
  *********************/
  /*********************
  MEDIA QUERIES
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet (GUTENBERG)

  ******************************************************************/
  /*********************
  OWL SLIDER
  *********************/
  .owl-nav {
    width: calc(100% + var(--wp--preset--spacing--64) + var(--wp--preset--spacing--32));
  }
  .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
  *********************/
  /*********************
  MEDIA QUERIES
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Desktop Stylsheet

  ******************************************************************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  #content {
    margin-bottom: var(--wp--preset--spacing--96);
  }
  /*********************
  SINGLE POST / PAGE THEME
  NARROW TEMPLATES
  *********************/
  body.single-post #content,
  body.page-template-page-narrow #content {
    margin-bottom: var(--wp--preset--spacing--96);
  }
  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: var(--wp--preset--spacing--32);
  }
  .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: var(--wp--preset--spacing--64) 0;
  }
  /*********************
  SEARCH PAGE
  *********************/
  body.search-results .blog-header svg.search-bubble {
    margin: 0 var(--wp--preset--spacing--32) 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
  *********************/
  /*********************
  MEDIA QUERIES
  *********************/
  /*********************
  COLORS
  *********************/
  /*********************
  FONT FAMILY
  *********************/
  /*********************
  FONT SIZES
  *********************/
  /*********************
  PADDINGS
  *********************/
  /*********************
  TRANSITIONS
  *********************/
  /******************************************************************

  Stylesheet: Super Large Monitor Stylesheet

  ******************************************************************/
  .sp-card-injected {
    padding: var(--wp--preset--spacing--64);
  }
}
/*********************
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;
  }
}

/*# sourceMappingURL=style.css.map */