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

Stylesheet: Main Stylesheet

Calls every scss file in correct order.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* 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 {
  margin: 0;
  padding: 0;
  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 {
  font-size: 2em;
  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: 400;
}

/**
 * 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
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 10px 0;
}

dd {
  margin: 0;
}

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

ol,
ul {
  padding: 0;
  list-style-type: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
}

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

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

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

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

Stylesheet: Variables

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

******************************************************************/
/*********************
WRAPS
*********************/
/*********************
COLORS
*********************/
/*********************
FONT SIZES
*********************/
/*********************
PADDINGS
*********************/
/*********************
HEADER
*********************/
/******************************************************************

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 FACE (IN YOUR FACE)
*********************/
.text-small {
  font-size: 1.4rem;
}

.text-big {
  font-size: 2.4rem;
}

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

Stylesheet: Sass Functions

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

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

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

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

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

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

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

Stylesheet: Mixins Stylesheet

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

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

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

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

Stylesheet: Grid Stylesheet

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

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

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

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

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

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

Stylesheet: Animations

******************************************************************/
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.has-black-color {
  color: #000;
}

.has-black-background-color {
  background-color: #000;
}

.has-white-color {
  color: #ffffff;
}

.has-white-background-color {
  background-color: #ffffff;
}

.has-light-gray-color {
  color: #eff6f8;
}

.has-light-gray-background-color {
  background-color: #eff6f8;
}

.has-gray-color {
  color: #bdc5c6;
}

.has-gray-background-color {
  background-color: #bdc5c6;
}

.has-orange-color {
  color: #e55200;
}

.has-orange-background-color {
  background-color: #e55200;
}

.has-blue-color {
  color: #022f36;
}

.has-blue-background-color {
  background-color: #022f36;
}

.has-light-blue-color {
  color: #68a2b9;
}

.has-light-blue-background-color {
  background-color: #68a2b9;
}

.wp-block-button.is-style-arrow-right .wp-block-button__link {
  position: relative;
}
.wp-block-button.is-style-arrow-right .wp-block-button__link:after {
  opacity: 0;
  display: inline-block;
  content: "\f30b";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(17px);
  right: 26px;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-arrow-right .wp-block-button__link:hover, .wp-block-button.is-style-arrow-right .wp-block-button__link:focus {
  padding-right: 70px;
}
.wp-block-button.is-style-arrow-right .wp-block-button__link:hover:after, .wp-block-button.is-style-arrow-right .wp-block-button__link:focus:after {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
}
.wp-block-button.is-style-simple .wp-block-button__link {
  color: #e55200;
  padding: 5px 30px 5px 0;
  position: relative;
  font-weight: 300;
  box-shadow: none;
  background: transparent !important;
}
.wp-block-button.is-style-simple .wp-block-button__link:after {
  display: inline-block;
  content: "\f30b";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 24px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}
.wp-block-button.is-style-simple .wp-block-button__link:hover, .wp-block-button.is-style-simple .wp-block-button__link:focus {
  color: #000;
}
.wp-block-button.is-style-simple .wp-block-button__link:hover:after, .wp-block-button.is-style-simple .wp-block-button__link:focus:after {
  transform: translateY(-50%) translateX(10px);
}

.wp-block-button__link:hover {
  text-decoration: none;
}
.wp-block-button__link:not(.has-text-color) {
  color: white;
}
.wp-block-button__link:not(.has-text-color):hover {
  color: white;
}
.wp-block-button__link:not(.has-background) {
  background-color: #000;
}
.wp-block-button__link:not(.has-background):hover, .wp-block-button__link:not(.has-background):focus {
  background-color: black;
}
.wp-block-button__link.has-black-color:hover, .wp-block-button__link.has-black-color:focus {
  color: #000;
}
.wp-block-button__link.has-black-background-color:hover, .wp-block-button__link.has-black-background-color:focus {
  background-color: black;
}
.wp-block-button__link.has-white-color:hover, .wp-block-button__link.has-white-color:focus {
  color: #ffffff;
}
.wp-block-button__link.has-white-background-color:hover, .wp-block-button__link.has-white-background-color:focus {
  background-color: rgb(239.7, 239.7, 239.7);
}
.wp-block-button__link.has-light-gray-color:hover, .wp-block-button__link.has-light-gray-color:focus {
  color: #eff6f8;
}
.wp-block-button__link.has-light-gray-background-color:hover, .wp-block-button__link.has-light-gray-background-color:focus {
  background-color: rgb(217.7130434783, 234.0260869565, 238.6869565217);
}
.wp-block-button__link.has-gray-color:hover, .wp-block-button__link.has-gray-color:focus {
  color: #bdc5c6;
}
.wp-block-button__link.has-gray-background-color:hover, .wp-block-button__link.has-gray-background-color:focus {
  background-color: rgb(172.5804878049, 182.5707317073, 183.8195121951);
}
.wp-block-button__link.has-orange-color:hover, .wp-block-button__link.has-orange-color:focus {
  color: #e55200;
}
.wp-block-button__link.has-orange-background-color:hover, .wp-block-button__link.has-orange-background-color:focus {
  background-color: rgb(198.4, 71.0427947598, 0);
}
.wp-block-button__link.has-blue-color:hover, .wp-block-button__link.has-blue-color:focus {
  color: #022f36;
}
.wp-block-button__link.has-blue-background-color:hover, .wp-block-button__link.has-blue-background-color:focus {
  background-color: rgb(0.9071428571, 21.3178571429, 24.4928571429);
}
.wp-block-button__link.has-light-blue-color:hover, .wp-block-button__link.has-light-blue-color:focus {
  color: #68a2b9;
}
.wp-block-button__link.has-light-blue-background-color:hover, .wp-block-button__link.has-light-blue-background-color:focus {
  background-color: rgb(83.0923076923, 149.1230769231, 175.3076923077);
}

.wp-block-media-text figure {
  border-radius: 2px;
  overflow: hidden;
}
.wp-block-media-text figure > a {
  display: block;
}
.wp-block-media-text .wp-block-media-text__content {
  padding-top: 2rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 601px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .wp-block-media-text {
    grid-row-gap: 32px;
  }
}
.wp-block-group .wp-block-group__inner-container {
  width: 100%;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.wp-block-group.has-background {
  padding: 64px 0;
}
.wp-block-group.has-padding {
  padding: 64px 0;
}
.wp-block-group.has-extra-padding {
  padding: 128px 0;
}

@media (min-width: 768px) {
  .wp-block-group .wp-block-group__inner-container {
    max-width: 990px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1030px) {
  .wp-block-group .wp-block-group__inner-container {
    max-width: 1100px;
  }
}
.wp-block-columns > * {
  margin-bottom: 32px;
}
.wp-block-columns > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .wp-block-column {
    margin-bottom: 0;
  }
}
.wp-block-gallery .blocks-gallery-grid {
  margin-bottom: -16px;
}

.alignwide .inner-wrap,
.alignfull .inner-wrap {
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .alignwide .inner-wrap,
  .alignfull .inner-wrap {
    max-width: 990px;
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 1030px) {
  .alignwide .inner-wrap,
  .alignfull .inner-wrap {
    max-width: 1100px;
  }
}
.alignwide .inner-wrap-big,
.alignfull .inner-wrap-big {
  width: 100%;
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 768px) {
  .alignwide .inner-wrap-big,
  .alignfull .inner-wrap-big {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Change Columns breakpoint to 500px */
@media (max-width: 1029px) {
  .entry-content .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
  .wp-block-columns {
    flex-wrap: wrap !important;
  }
}
@media (min-width: 1030px) {
  .entry-content .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0 !important;
    flex-grow: 1 !important;
  }
  .wp-block-columns {
    flex-wrap: no-wrap !important;
  }
}
@media (max-width: 1029px) {
  .stack-first {
    order: -1;
  }
}
/*********************
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, .wp-block-button .wp-block-button__link,
button, .btn,
.facetwp-load-more, .wp-block-button__link {
  border: none;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 16px 30px;
  border-radius: 2px;
  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,
button:hover, .btn:hover,
.facetwp-load-more:hover, .wp-block-button__link:hover, .wp-block-file__button:focus,
button:focus, .btn:focus,
.facetwp-load-more:focus, .wp-block-button__link:focus {
  text-decoration: none;
  outline: none;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2);
}

/*
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.
*/
.btn,
.facetwp-load-more {
  background: #022f36;
  color: #fff;
}
.btn:hover, .btn:focus,
.facetwp-load-more:hover,
.facetwp-load-more:focus {
  background: rgb(0.9071428571, 21.3178571429, 24.4928571429);
  color: #fff;
}

.btn-icon-right i {
  margin-left: 0;
  color: #fff;
}
* + .wp-block-file__button {
  margin-left: 0.75em;
}

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

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

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=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
input[type=phone],
select,
textarea,
.field {
  display: inline-block;
  height: auto;
  line-height: normal;
  padding: 10px 14px;
  font-size: 18px;
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 1px solid #022f36;
  border-radius: 2px;
  background: transparent;
  color: #000;
  width: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 1080px;
  font-family: "Poppins", sans-serif;
  transition: background-color 0.24s ease-in-out;
}
input[type=text]:focus, input[type=text]: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,
input[type=phone]:focus,
input[type=phone]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
  border-color: #e55200;
}
input[type=text].error, input[type=text].is-invalid,
input[type=password].error,
input[type=password].is-invalid,
input[type=datetime].error,
input[type=datetime].is-invalid,
input[type=datetime-local].error,
input[type=datetime-local].is-invalid,
input[type=date].error,
input[type=date].is-invalid,
input[type=month].error,
input[type=month].is-invalid,
input[type=time].error,
input[type=time].is-invalid,
input[type=week].error,
input[type=week].is-invalid,
input[type=number].error,
input[type=number].is-invalid,
input[type=email].error,
input[type=email].is-invalid,
input[type=url].error,
input[type=url].is-invalid,
input[type=search].error,
input[type=search].is-invalid,
input[type=tel].error,
input[type=tel].is-invalid,
input[type=color].error,
input[type=color].is-invalid,
input[type=phone].error,
input[type=phone].is-invalid,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  color: #fbe3e4;
  border-color: #fbe3e4;
  border-color: #fbe3e4;
}
input[type=text].success, input[type=text].is-valid,
input[type=password].success,
input[type=password].is-valid,
input[type=datetime].success,
input[type=datetime].is-valid,
input[type=datetime-local].success,
input[type=datetime-local].is-valid,
input[type=date].success,
input[type=date].is-valid,
input[type=month].success,
input[type=month].is-valid,
input[type=time].success,
input[type=time].is-valid,
input[type=week].success,
input[type=week].is-valid,
input[type=number].success,
input[type=number].is-valid,
input[type=email].success,
input[type=email].is-valid,
input[type=url].success,
input[type=url].is-valid,
input[type=search].success,
input[type=search].is-valid,
input[type=tel].success,
input[type=tel].is-valid,
input[type=color].success,
input[type=color].is-valid,
input[type=phone].success,
input[type=phone].is-valid,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  color: #e6efc2;
  border-color: #e6efc2;
  border-color: #e6efc2;
}
input[type=text][disabled], input[type=text].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,
input[type=phone][disabled],
input[type=phone].is-disabled,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: #ebebf0;
  opacity: 0.6;
}

input[type=password] {
  letter-spacing: 0.3em;
}

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

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../images/arrow-down-black.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  background-size: 20px;
  padding: 11px 14px;
}

#choice_1_5_1 {
  transform: scale(1.4);
  margin: 0 3px;
}

/********************************
HIDE AND DISPLAY CORRECT ELEMENTS
ON DIFFERENT BREAKPOINTS
********************************/
.desktop-navigation {
  display: none;
}

#nav-toggle {
  display: inline-block;
}

#search-toggle-mobile {
  display: inline-block;
  padding: 0;
  border-radius: 50%;
  margin-left: 0;
  width: 36px;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (min-width: 345px) {
  #search-toggle-mobile {
    margin-left: 16px;
  }
}

@media only screen and (min-width: 1030px) {
  .mobile-nav {
    display: none;
  }
  #nav-toggle {
    display: none;
  }
  #search-toggle-mobile {
    display: none;
  }
  .desktop-navigation {
    display: inline-block;
  }
}
/*********************
MAIN HEADER STYLING
*********************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #022f36;
  padding: 0;
  line-height: 0;
  z-index: 999;
}
@media screen and (min-width: 1030px) {
  .header {
    position: relative;
  }
}
.header #inner-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 91px;
}

@media only screen and (min-width: 1030px) {
  .mobile-nav {
    display: none !important;
  }
}
/*********************
HEADER ELEMENTS
*********************/
.custom-logo-link {
  display: inline-block;
  height: auto;
  width: 100%;
  max-width: 174px;
  line-height: 0;
  margin-right: auto;
  position: relative;
}
.custom-logo-link .custom-logo {
  height: auto;
  width: 100%;
}

#nav-toggle {
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 16px;
  text-align: right;
  z-index: 4;
  pointer-events: all;
  text-decoration: none;
  text-transform: uppercase;
  padding: 7px 20px 11px;
  background: #68a2b9;
  white-space: nowrap;
}
@media screen and (min-width: 450px) {
  #nav-toggle {
    padding: 7px 20px 11px;
  }
}
#nav-toggle i {
  display: inline-block;
  font-size: 1.6rem;
  position: relative;
  top: 2px;
}
#nav-toggle:hover {
  outline: none;
  cursor: pointer;
  background: rgb(75.3846153846, 137.8461538462, 162.6153846154);
}

/*********************
MOBILE NAVIGATION STYLES
*********************/
.mobile-nav {
  position: fixed;
  top: 91px;
  width: 100%;
  right: 16px;
  padding: 32px;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.3, 0.195, 0.26, 1.085);
}
.mobile-nav.nav-active {
  transform: translateX(-50%);
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 1030px) {
  .mobile-nav.nav-active {
    position: fixed;
    top: 91px;
    right: 0;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    transform: translateX(-100px);
    max-width: 420px;
    bottom: initial;
    top: 91px;
    left: auto;
    right: 32px;
    border-radius: 0 0 3px 3px;
    transition: all 0.315s ease-in-out;
  }
  .mobile-nav.nav-active {
    transform: translateX(0);
  }
}
.mobile-menu {
  width: 100%;
  border-bottom: 0;
  margin: 0;
  /* end .menu li */
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu {
  transition: all 0.4s cubic-bezier(0.3, 0.195, 0.26, 1.085);
}
.mobile-menu > li.menu-item-has-children > a {
  position: relative;
}
.mobile-menu > li.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-image: url(../images/icons/arrow-right-purple.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.mobile-menu > li.menu-item-has-children > a:focus {
  outline: none;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: auto;
  width: 100%;
  z-index: 2;
  overflow: auto;
  background: #eff6f8;
  padding: 32px;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0) translateX(100%);
  transition: transform 0.4s cubic-bezier(0.3, 0.195, 0.26, 1.085);
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > a.menu-go-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
  position: relative;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > a.sub-menu-parent {
  margin: 32px 0;
  font-weight: 400;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children {
  position: relative;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children > a {
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 400;
  position: relative;
  line-height: 1.3;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children ul.sub-menu {
  margin-bottom: 16px;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > li.menu-item-has-children ul.sub-menu li:last-child {
  margin-bottom: 0;
}
.mobile-menu > li.menu-item-has-children.selected > ul.sub-menu {
  left: 0;
  transform: translateZ(0) translateX(0);
}
.mobile-menu li {
  display: block;
}
.mobile-menu li a {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 0;
  font-size: 2;
  position: relative;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0.195, 0.26, 1.085);
  transition-delay: 0.1s;
}
.mobile-menu li img.menu-item-icon {
  display: none;
}
.mobile-menu li ul {
  margin: 0;
}
.mobile-menu li.search-toggle-list-item {
  display: none;
}
.mobile-menu.level-down > li > a {
  transform: translateX(-100%);
}

/* end .nav */
/************************
DESKTOP NAVIGATION STYLES
************************/
@media only screen and (min-width: 1030px) {
  .desktop-navigation {
    /* end .menu ul li */
  }
  .desktop-navigation > ul > li > a {
    padding: 36px 0;
  }
  .desktop-navigation ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .desktop-navigation li {
    display: inline-block;
    line-height: 1em;
    margin-right: 20px;
  }
  .desktop-navigation li a {
    font-size: 1.5rem;
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 5px 0;
  }
  /* end .nav */
}
@media only screen and (min-width: 1030px) and (min-width: 1240px) {
  .desktop-navigation li a {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1030px) {
  .desktop-navigation li:first-of-type {
    border: none;
  }
  .desktop-navigation li:last-of-type {
    margin-right: 0;
  }
  .desktop-navigation li.menu-item-has-icon > a {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .desktop-navigation li.menu-item-has-icon > a i {
    font-size: 46px;
    color: #e55200;
  }
  .desktop-navigation li.menu-item-has-icon > a .menu-item-content {
    width: calc(100% - 46px - 16px);
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .desktop-navigation li.menu-item-has-icon > a:hover, .desktop-navigation li.menu-item-has-icon > a:focus {
    text-decoration: none !important;
  }
  .desktop-navigation li.menu-item-has-icon > a:hover .item-title, .desktop-navigation li.menu-item-has-icon > a:focus .item-title {
    text-decoration: underline !important;
  }
  .desktop-navigation li.menu-item-has-icon:not(.menu-item-has-description) .item-title {
    font-weight: 500;
  }
  .desktop-navigation li.menu-item-has-description > a {
    align-items: flex-start;
  }
  .desktop-navigation li.menu-item-has-description .item-title {
    font-weight: 500;
    margin-bottom: 8px;
  }
  .desktop-navigation li.menu-item-has-description .item-description {
    line-height: 1.5;
  }
  .desktop-navigation li.menu-item-mega-menu > ul.sub-menu {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    grid-template-rows: auto;
    grid-gap: 32px;
  }
  .desktop-navigation li.menu-item-mega-menu > ul.sub-menu > li {
    margin: 0;
    min-width: 320px;
  }
  .desktop-navigation li:hover a {
    color: #fff;
  }
  .desktop-navigation > ul > li {
    position: relative;
  }
  .desktop-navigation > ul > li > a:before {
    content: "";
    display: block;
    position: absolute;
    background: #e55200;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 25px;
    transition: all 0.3s ease-in-out;
  }
  .desktop-navigation > ul > li > ul.sub-menu {
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -10px);
    display: flex;
    position: absolute;
    left: 50%;
    background: #fff;
    flex-direction: column;
    padding: calc(32px + 16px);
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3px 3px;
    transition: 0.3s ease-in-out;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li {
    margin-bottom: 8px;
    transform: translateY(-5px);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:last-child {
    margin-bottom: 0;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li.menu-item-has-children > a {
    font-weight: 400;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(1) {
    transition-delay: 0.2s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(2) {
    transition-delay: 0.25s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(3) {
    transition-delay: 0.3s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(4) {
    transition-delay: 0.35s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(6) {
    transition-delay: 0.45s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(7) {
    transition-delay: 0.5s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(8) {
    transition-delay: 0.55s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(9) {
    transition-delay: 0.6s;
  }
  .desktop-navigation > ul > li > ul.sub-menu > li:nth-of-type(10) {
    transition-delay: 0.65s;
  }
  .desktop-navigation > ul > li > ul.sub-menu a {
    text-transform: none;
    padding: 9px 0;
    color: #000;
  }
  .desktop-navigation > ul > li > ul.sub-menu a:hover {
    text-decoration: underline;
  }
  .desktop-navigation > ul > li > ul.sub-menu ul.sub-menu {
    display: flex;
    flex-direction: column;
  }
  .desktop-navigation > ul > li > ul.sub-menu.current-menu-item a {
    text-decoration: underline;
  }
  .desktop-navigation > ul > li:hover > a:before, .desktop-navigation > ul > li:focus-within > a:before {
    width: 100%;
  }
  .desktop-navigation > ul > li:hover > ul.sub-menu, .desktop-navigation > ul > li:focus-within > ul.sub-menu {
    display: flex;
    pointer-events: all;
    opacity: 1;
    transform: translate(-50%, 0);
  }
  .desktop-navigation > ul > li:hover > ul.sub-menu > li, .desktop-navigation > ul > li:focus-within > ul.sub-menu > li {
    transform: translateY(0);
    opacity: 1;
  }
  .desktop-navigation > ul > li.current-menu-item > a:before, .desktop-navigation > ul > li.current-menu-parent > a:before {
    width: 100%;
  }
  .desktop-navigation > ul > li.wpml-ls-item {
    margin-left: 16px;
  }
  .desktop-navigation > ul > li.wpml-ls-item > a {
    padding-left: 30px;
    position: relative;
  }
  .desktop-navigation > ul > li.wpml-ls-item > a:after {
    position: absolute;
    left: 0;
    top: 36px;
    display: inline-block;
    content: "\f0ac";
    font-family: "Line Awesome Free";
    font-weight: 900;
    font-size: 24px;
  }
  .desktop-navigation > ul > li.wpml-ls-item > ul.sub-menu {
    padding: 16px;
  }
  .desktop-navigation > ul > li.search-toggle-list-item > button {
    padding-left: 16px;
    padding-right: 16px;
    padding: 10px;
    margin-top: 22px;
    border-radius: 50%;
  }
  .desktop-navigation > ul > li.search-toggle-list-item > button i {
    font-size: 24px;
  }
  .desktop-navigation > ul > li.search-toggle-list-item > button:before {
    content: none !important;
  }
  .desktop-navigation a.header-btn {
    display: none;
  }
}
@media only screen and (min-width: 1160px) {
  .desktop-navigation a.header-btn {
    display: inline-block;
    background: #68a2b9;
    align-self: center;
    margin-left: 16px;
    padding: 14px 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 1160px) and (min-width: 1240px) {
  .desktop-navigation a.header-btn {
    padding: 14px 24px;
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 1160px) {
  .desktop-navigation a.header-btn:hover, .desktop-navigation a.header-btn:focus {
    background: rgb(59.2307692308, 108.3076923077, 127.7692307692);
    color: #fff;
  }
}
/***********************************
EXTRA ELEMENTS RELATED TO NAVIGATION
***********************************/
.background-overlay {
  position: fixed;
  top: 91px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 91px);
  background: rgba(2, 47, 54, 0.8);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}
.background-overlay.nav-active {
  cursor: url(../images/cursor-cross.png), auto;
  cursor: -webkit-image-set(url(../images/cursor-cross.png) 1x, url(../images/cursor-cross-hi.png) 2x), auto;
  opacity: 1;
  pointer-events: all;
}

#search-popover {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s, box-shadow 0.5s;
  transition-behavior: allow-discrete;
  background: #eff6f8;
  padding: 16px;
  border-radius: 2px;
  max-width: calc(100% - 32px);
  width: 420px;
  line-height: 1.4;
  position: fixed;
  top: 114px;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2);
}
@starting-style {
  #search-popover {
    transform: translateY(20px);
    opacity: 0;
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 480px) {
  #search-popover {
    padding: 32px;
  }
}
#search-popover::backdrop {
  background-color: rgba(2, 47, 54, 0.4);
  transition: transform 0.5s, opacity 0.5s, box-shadow 0.5s;
  transition-behavior: allow-discrete;
}
#search-popover h3 {
  margin: 0 0 16px;
}
#search-popover form.search-form {
  position: relative;
}
#search-popover form.search-form label {
  display: block;
  margin: 0;
}
#search-popover form.search-form label input.search-field {
  width: 100%;
  padding: 10px 52px 10px 14px;
  background-color: #fff;
  border: 1px solid #022f36;
  border-radius: 2px;
  line-height: 1.4;
}
#search-popover form.search-form input.search-submit {
  position: absolute;
  top: 50%;
  right: 1px;
  transform: translateY(-50%);
  background-image: url(../images/icons/search.svg);
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -999px;
  width: 52px;
  height: calc(100% - 1px);
  border: none;
  background-color: transparent;
  outline: none;
  border-radius: 2px;
}
#search-popover form.search-form input.search-submit:hover, #search-popover form.search-form input.search-submit:focus {
  background-color: #bdc5c6;
}

#btn-try-for-free {
  font-size: 1.2rem;
  line-height: 1;
  padding: 11px 12px;
  border-radius: 1px;
  margin-left: 1rem;
  background: #e55200;
  white-space: nowrap;
  color: white;
}
@media screen and (min-width: 450px) {
  #btn-try-for-free {
    padding: 11px 20px;
  }
}
@media screen and (min-width: 1030px) {
  #btn-try-for-free {
    display: none;
  }
}

/********************************
DISPLAY CORRECT MARGINS WHEN
ADMIN BAR IS DISPLAYED
********************************/
/* body.admin-bar {
	.header {
		top: 46px;
	}
}

@media only screen and (min-width: 783px) {
	body.admin-bar {
		.header {
			top: 32px;
		}
	}
} */
/********************************
MOBILE MENU
********************************/
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100px);
  max-width: 400px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.3, 0.195, 0.26, 1.085);
}
.mobile-nav.nav-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.menu-go-back {
  position: relative;
  font-size: 15px;
  padding-left: 34px !important;
  line-height: 24px;
  position: relative;
}
.menu-go-back:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 100%;
  background-image: url(../images/back.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.mobile-menu {
  width: 100%;
  border-bottom: 0;
  margin: 0;
}
.mobile-menu a.btn {
  margin-top: 16px;
}
.mobile-menu a:focus {
  outline: none;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  overflow: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  transform: translateZ(0) translateX(100%);
  transition: transform 0.4s cubic-bezier(0.3, 0.195, 0.26, 1.085);
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu > a.sub-menu-parent {
  padding-bottom: 24px;
  border-bottom: 1px solid #bdc5c6;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu .sub-menu {
  display: none;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu li a {
  font-size: 18px;
  position: relative;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu li.active > a {
  border-bottom: 1px solid #bdc5c6;
  padding-bottom: 24px;
  margin-bottom: 16px;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu li.active ul {
  display: block;
}
.mobile-menu > li.menu-item-has-children > ul.sub-menu li li a {
  font-size: 1.8rem;
}
.mobile-menu > li.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 13px;
  background: url(../images/arrow-down.svg) no-repeat center center;
  transform: rotate(-90deg);
}
.mobile-menu > li.menu-item-has-children.selected > ul.sub-menu {
  left: 0;
  transform: translateZ(0) translateX(0);
}
.mobile-menu > li > a {
  font-size: 25px;
}
.mobile-menu li {
  display: block;
  margin-bottom: 16px;
}
.mobile-menu li a {
  display: block;
  text-decoration: none;
  padding: 4px 0;
  position: relative;
  transition-delay: 0.1s;
  color: #022f36;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.4, 0.195, 0.26, 1.085);
}
.mobile-menu li img.menu-item-icon {
  display: none;
}
.mobile-menu li ul {
  margin: 0;
}
.mobile-menu li.hidden {
  display: none;
}
.mobile-menu li.menu-item-has-icon > a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu li.menu-item-has-icon > a i {
  font-size: 46px;
  color: #e55200;
}
.mobile-menu li.menu-item-has-icon > a .menu-item-content {
  width: calc(100% - 46px - 16px);
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu li.menu-item-has-icon > a:hover, .mobile-menu li.menu-item-has-icon > a:focus {
  text-decoration: none !important;
}
.mobile-menu li.menu-item-has-icon > a:hover .item-title, .mobile-menu li.menu-item-has-icon > a:focus .item-title {
  text-decoration: underline !important;
}
.mobile-menu li.menu-item-has-icon:not(.menu-item-has-description) .item-title {
  font-weight: 500;
}
.mobile-menu li.menu-item-has-description > a {
  align-items: flex-start;
}
.mobile-menu li.menu-item-has-description .item-title {
  font-weight: 500;
  margin-bottom: 8px;
}
.mobile-menu li.menu-item-has-description .item-description {
  line-height: 1.5;
}
.mobile-menu.level-down > li > a {
  transform: translateX(-100%);
}

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

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

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

.searchwp-live-search-result:nth-of-type(even) {
  background: #bdc5c6;
}
.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: #bdc5c6;
  color: #000;
}
.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: 1030px) {
  .searchwp-live-search-result .search-thumb {
    height: 100px;
  }
}
.searchwp-live-search-result .search-product-info {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  line-height: 1.4;
  padding: 16px;
  max-width: calc(100% - 73px - 16px);
  width: 100%;
}
.searchwp-live-search-result .search-product-info .search-title {
  font-weight: 500;
  color: #000;
}
.searchwp-live-search-result .search-product-info .search-price {
  color: #e55200;
  font-size: 1.4rem;
}
@media (min-width: 1030px) {
  .searchwp-live-search-result .search-product-info {
    max-width: calc(100% - 100px - 16px);
  }
}
.searchwp-live-search-result:last-child {
  border-bottom: none;
}

.sp-cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.15) !important;
}
.sp-cards .wp-block-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/*********************
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
*********************/
body {
  overflow-x: hidden;
}

body {
  position: relative;
  margin-top: 91px;
  font-family: "Poppins", sans-serif;
  font-size: 100%;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.52;
  color: #000;
  background-color: #fff;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 1030px) {
  body {
    position: relative;
    margin-top: unset;
  }
}
body:before {
  left: 0;
}
body:after {
  right: 0;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap,
.big-wrap {
  width: 100%;
  margin: 0 auto;
}

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

.wrap {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 740px;
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}
/*********************
LINK STYLES
*********************/
a {
  color: #000;
  text-decoration: none;
  /* on hover */
  /* mobile tap color */
}
a:hover, a:focus {
  color: #e55200;
  text-decoration: underline;
}
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-weight: 500;
  line-height: 1.3;
  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 .underline,
.h1 .underline,
h2 .underline,
.h2 .underline,
h3 .underline,
.h3 .underline,
h4 .underline,
.h4 .underline,
h5 .underline,
.h5 .underline {
  position: relative;
  display: inline-block;
}
h1 .underline:after,
.h1 .underline:after,
h2 .underline:after,
.h2 .underline:after,
h3 .underline:after,
.h3 .underline:after,
h4 .underline:after,
.h4 .underline:after,
h5 .underline:after,
.h5 .underline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e55200;
}

h1,
.h1 {
  font-size: 3.2rem;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 2.4rem;
}

h3,
.h3 {
  font-size: 2.4rem;
}

h4,
.h4 {
  font-size: 1.6rem;
}

h5,
.h5 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.hentry footer p {
  margin: 0;
}

/* end .hentry */
.article-header,
.entry-header {
  margin: 0 0 32px;
}
.article-header .byline,
.entry-header .byline {
  margin-top: 16px;
}

.single-title,
.page-title,
.entry-title,
.blog-header {
  margin: 32px 0 0;
}
.single-title.title-align-left,
.page-title.title-align-left,
.entry-title.title-align-left,
.blog-header.title-align-left {
  text-align: left;
}
.single-title.title-align-center,
.page-title.title-align-center,
.entry-title.title-align-center,
.blog-header.title-align-center {
  text-align: center;
}
.single-title.title-align-right,
.page-title.title-align-right,
.entry-title.title-align-right,
.blog-header.title-align-right {
  text-align: right;
}

/* post meta */
.byline,
cite {
  font-size: 1.2rem;
  display: block;
}

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

/* entry content */
.entry-content > *,
.wp-block-media-text__content > *,
.wp-block-group__inner-container > *,
.wp-block-cover__inner-container > *,
.wp-block-column > * {
  margin-bottom: 32px;
}
.entry-content > *:first-child,
.wp-block-media-text__content > *:first-child,
.wp-block-group__inner-container > *:first-child,
.wp-block-cover__inner-container > *:first-child,
.wp-block-column > *:first-child {
  margin-top: 0;
}
.entry-content > *:last-child,
.wp-block-media-text__content > *:last-child,
.wp-block-group__inner-container > *:last-child,
.wp-block-cover__inner-container > *:last-child,
.wp-block-column > *:last-child {
  margin-bottom: 0;
}
.single-post .entry-content > *, .page-template-page-narrow .entry-content > *,
.single-post .wp-block-media-text__content > *,
.page-template-page-narrow .wp-block-media-text__content > *,
.single-post .wp-block-group__inner-container > *,
.page-template-page-narrow .wp-block-group__inner-container > *,
.single-post .wp-block-cover__inner-container > *,
.page-template-page-narrow .wp-block-cover__inner-container > *,
.single-post .wp-block-column > *,
.page-template-page-narrow .wp-block-column > * {
  margin-bottom: 32px;
}
.single-post .entry-content > *:first-child, .page-template-page-narrow .entry-content > *:first-child,
.single-post .wp-block-media-text__content > *:first-child,
.page-template-page-narrow .wp-block-media-text__content > *:first-child,
.single-post .wp-block-group__inner-container > *:first-child,
.page-template-page-narrow .wp-block-group__inner-container > *:first-child,
.single-post .wp-block-cover__inner-container > *:first-child,
.page-template-page-narrow .wp-block-cover__inner-container > *:first-child,
.single-post .wp-block-column > *:first-child,
.page-template-page-narrow .wp-block-column > *:first-child {
  margin-top: 0;
}
.single-post .entry-content > *:last-child, .page-template-page-narrow .entry-content > *:last-child,
.single-post .wp-block-media-text__content > *:last-child,
.page-template-page-narrow .wp-block-media-text__content > *:last-child,
.single-post .wp-block-group__inner-container > *:last-child,
.page-template-page-narrow .wp-block-group__inner-container > *:last-child,
.single-post .wp-block-cover__inner-container > *:last-child,
.page-template-page-narrow .wp-block-cover__inner-container > *:last-child,
.single-post .wp-block-column > *:last-child,
.page-template-page-narrow .wp-block-column > *:last-child {
  margin-bottom: 0;
}
.entry-content > h2,
.entry-content > h3,
.entry-content > h4,
.wp-block-media-text__content > h2,
.wp-block-media-text__content > h3,
.wp-block-media-text__content > h4,
.wp-block-group__inner-container > h2,
.wp-block-group__inner-container > h3,
.wp-block-group__inner-container > h4,
.wp-block-cover__inner-container > h2,
.wp-block-cover__inner-container > h3,
.wp-block-cover__inner-container > h4,
.wp-block-column > h2,
.wp-block-column > h3,
.wp-block-column > h4 {
  margin-top: 64px;
}
.entry-content > h2.no-margin-top,
.entry-content > h3.no-margin-top,
.entry-content > h4.no-margin-top,
.wp-block-media-text__content > h2.no-margin-top,
.wp-block-media-text__content > h3.no-margin-top,
.wp-block-media-text__content > h4.no-margin-top,
.wp-block-group__inner-container > h2.no-margin-top,
.wp-block-group__inner-container > h3.no-margin-top,
.wp-block-group__inner-container > h4.no-margin-top,
.wp-block-cover__inner-container > h2.no-margin-top,
.wp-block-cover__inner-container > h3.no-margin-top,
.wp-block-cover__inner-container > h4.no-margin-top,
.wp-block-column > h2.no-margin-top,
.wp-block-column > h3.no-margin-top,
.wp-block-column > h4.no-margin-top {
  margin-top: 0;
}
.entry-content a,
.wp-block-media-text__content a,
.wp-block-group__inner-container a,
.wp-block-cover__inner-container a,
.wp-block-column a {
  text-decoration: underline;
}
.entry-content ul,
.entry-content ol,
.wp-block-media-text__content ul,
.wp-block-media-text__content ol,
.wp-block-group__inner-container ul,
.wp-block-group__inner-container ol,
.wp-block-cover__inner-container ul,
.wp-block-cover__inner-container ol,
.wp-block-column ul,
.wp-block-column ol {
  margin-top: 0;
  padding: 0;
}
.entry-content ul li,
.entry-content ol li,
.wp-block-media-text__content ul li,
.wp-block-media-text__content ol li,
.wp-block-group__inner-container ul li,
.wp-block-group__inner-container ol li,
.wp-block-cover__inner-container ul li,
.wp-block-cover__inner-container ol li,
.wp-block-column ul li,
.wp-block-column ol li {
  list-style: initial;
  margin-left: 20px;
}
.entry-content ul li a,
.entry-content ol li a,
.wp-block-media-text__content ul li a,
.wp-block-media-text__content ol li a,
.wp-block-group__inner-container ul li a,
.wp-block-group__inner-container ol li a,
.wp-block-cover__inner-container ul li a,
.wp-block-cover__inner-container ol li a,
.wp-block-column ul li a,
.wp-block-column ol li a {
  display: inline;
}
.entry-content ol li,
.wp-block-media-text__content ol li,
.wp-block-group__inner-container ol li,
.wp-block-cover__inner-container ol li,
.wp-block-column ol li {
  list-style-type: decimal;
}
.entry-content .small-width,
.wp-block-media-text__content .small-width,
.wp-block-group__inner-container .small-width,
.wp-block-cover__inner-container .small-width,
.wp-block-column .small-width {
  max-width: 340px;
}
.entry-content .medium-width,
.wp-block-media-text__content .medium-width,
.wp-block-group__inner-container .medium-width,
.wp-block-cover__inner-container .medium-width,
.wp-block-column .medium-width {
  max-width: 520px;
}
.entry-content .small-wrap,
.wp-block-media-text__content .small-wrap,
.wp-block-group__inner-container .small-wrap,
.wp-block-cover__inner-container .small-wrap,
.wp-block-column .small-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.entry-content .center,
.wp-block-media-text__content .center,
.wp-block-group__inner-container .center,
.wp-block-cover__inner-container .center,
.wp-block-column .center {
  margin-left: auto;
  margin-right: auto;
}
.entry-content .block-small-wrap .wp-block-group__inner-container,
.wp-block-media-text__content .block-small-wrap .wp-block-group__inner-container,
.wp-block-group__inner-container .block-small-wrap .wp-block-group__inner-container,
.wp-block-cover__inner-container .block-small-wrap .wp-block-group__inner-container,
.wp-block-column .block-small-wrap .wp-block-group__inner-container {
  max-width: 1100px;
}
.entry-content .seperator,
.wp-block-media-text__content .seperator,
.wp-block-group__inner-container .seperator,
.wp-block-cover__inner-container .seperator,
.wp-block-column .seperator {
  position: relative;
}
.entry-content .seperator:before,
.wp-block-media-text__content .seperator:before,
.wp-block-group__inner-container .seperator:before,
.wp-block-cover__inner-container .seperator:before,
.wp-block-column .seperator:before {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 70px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}
.entry-content figcaption,
.wp-block-media-text__content figcaption,
.wp-block-group__inner-container figcaption,
.wp-block-cover__inner-container figcaption,
.wp-block-column figcaption {
  margin: 8px auto 0;
  font-style: italic;
  text-align: center;
  max-width: 800px;
}
.entry-content table,
.wp-block-media-text__content table,
.wp-block-group__inner-container table,
.wp-block-cover__inner-container table,
.wp-block-column table {
  width: 100%;
  border: 1px solid rgb(203.5217391304, 226.0434782609, 232.4782608696);
}
.entry-content table caption,
.wp-block-media-text__content table caption,
.wp-block-group__inner-container table caption,
.wp-block-cover__inner-container table caption,
.wp-block-column table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  color: #bdc5c6;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content tr,
.wp-block-media-text__content tr,
.wp-block-group__inner-container tr,
.wp-block-cover__inner-container tr,
.wp-block-column tr {
  border-bottom: 1px solid rgb(203.5217391304, 226.0434782609, 232.4782608696);
}
.entry-content tr:nth-child(even),
.wp-block-media-text__content tr:nth-child(even),
.wp-block-group__inner-container tr:nth-child(even),
.wp-block-cover__inner-container tr:nth-child(even),
.wp-block-column tr:nth-child(even) {
  background-color: #eff6f8;
}
.entry-content tr:nth-child(odd),
.wp-block-media-text__content tr:nth-child(odd),
.wp-block-group__inner-container tr:nth-child(odd),
.wp-block-cover__inner-container tr:nth-child(odd),
.wp-block-column tr:nth-child(odd) {
  background-color: #fff !important;
}
.entry-content td,
.wp-block-media-text__content td,
.wp-block-group__inner-container td,
.wp-block-cover__inner-container td,
.wp-block-column td {
  padding: 7px;
  border-right: 1px solid #eff6f8;
}
.entry-content td:last-child,
.wp-block-media-text__content td:last-child,
.wp-block-group__inner-container td:last-child,
.wp-block-cover__inner-container td:last-child,
.wp-block-column td:last-child {
  border-right: 0;
}
.entry-content th,
.wp-block-media-text__content th,
.wp-block-group__inner-container th,
.wp-block-cover__inner-container th,
.wp-block-column th {
  background-color: #eff6f8;
  border-bottom: 1px solid #eff6f8;
  border-right: 1px solid #eff6f8;
}
.entry-content th:last-child,
.wp-block-media-text__content th:last-child,
.wp-block-group__inner-container th:last-child,
.wp-block-cover__inner-container th:last-child,
.wp-block-column th:last-child {
  border-right: 0;
}
.entry-content blockquote,
.wp-block-media-text__content blockquote,
.wp-block-group__inner-container blockquote,
.wp-block-cover__inner-container blockquote,
.wp-block-column blockquote {
  padding: 0 0 0 32px;
  border-left: 4px solid #000;
}
.entry-content blockquote > *,
.wp-block-media-text__content blockquote > *,
.wp-block-group__inner-container blockquote > *,
.wp-block-cover__inner-container blockquote > *,
.wp-block-column blockquote > * {
  margin-bottom: 32px;
}
.entry-content blockquote:last-child,
.wp-block-media-text__content blockquote:last-child,
.wp-block-group__inner-container blockquote:last-child,
.wp-block-cover__inner-container blockquote:last-child,
.wp-block-column blockquote:last-child {
  margin-bottom: 0;
}
.entry-content blockquote.wp-block-pullquote,
.wp-block-media-text__content blockquote.wp-block-pullquote,
.wp-block-group__inner-container blockquote.wp-block-pullquote,
.wp-block-cover__inner-container blockquote.wp-block-pullquote,
.wp-block-column blockquote.wp-block-pullquote {
  padding: 32px 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  border-left: none;
}
.entry-content dd,
.wp-block-media-text__content dd,
.wp-block-group__inner-container dd,
.wp-block-cover__inner-container dd,
.wp-block-column dd {
  margin-left: 0;
  font-size: 0.9em;
  color: #787878;
  margin-bottom: 8px;
}
.entry-content img,
.wp-block-media-text__content img,
.wp-block-group__inner-container img,
.wp-block-cover__inner-container img,
.wp-block-column img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail,
.wp-block-media-text__content .size-auto,
.wp-block-media-text__content .size-full,
.wp-block-media-text__content .size-large,
.wp-block-media-text__content .size-medium,
.wp-block-media-text__content .size-thumbnail,
.wp-block-group__inner-container .size-auto,
.wp-block-group__inner-container .size-full,
.wp-block-group__inner-container .size-large,
.wp-block-group__inner-container .size-medium,
.wp-block-group__inner-container .size-thumbnail,
.wp-block-cover__inner-container .size-auto,
.wp-block-cover__inner-container .size-full,
.wp-block-cover__inner-container .size-large,
.wp-block-cover__inner-container .size-medium,
.wp-block-cover__inner-container .size-thumbnail,
.wp-block-column .size-auto,
.wp-block-column .size-full,
.wp-block-column .size-large,
.wp-block-column .size-medium,
.wp-block-column .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content .alignfull,
.wp-block-media-text__content .alignfull,
.wp-block-group__inner-container .alignfull,
.wp-block-cover__inner-container .alignfull,
.wp-block-column .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  max-width: 1000%;
}
.entry-content .alignwide,
.wp-block-media-text__content .alignwide,
.wp-block-group__inner-container .alignwide,
.wp-block-cover__inner-container .alignwide,
.wp-block-column .alignwide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
  width: auto;
  max-width: 1000%;
}
.entry-content .alignfull img,
.entry-content .alignwide img,
.wp-block-media-text__content .alignfull img,
.wp-block-media-text__content .alignwide img,
.wp-block-group__inner-container .alignfull img,
.wp-block-group__inner-container .alignwide img,
.wp-block-cover__inner-container .alignfull img,
.wp-block-cover__inner-container .alignwide img,
.wp-block-column .alignfull img,
.wp-block-column .alignwide img {
  display: block;
  margin: 0 auto;
}
.has-sidebar .entry-content .alignfull,
.has-sidebar .entry-content .alignwide,
.has-sidebar .wp-block-media-text__content .alignfull,
.has-sidebar .wp-block-media-text__content .alignwide,
.has-sidebar .wp-block-group__inner-container .alignfull,
.has-sidebar .wp-block-group__inner-container .alignwide,
.has-sidebar .wp-block-cover__inner-container .alignfull,
.has-sidebar .wp-block-cover__inner-container .alignwide,
.has-sidebar .wp-block-column .alignfull,
.has-sidebar .wp-block-column .alignwide {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}
.entry-content pre,
.entry-content .wp-block-code,
.entry-content .wp-block-file,
.wp-block-media-text__content pre,
.wp-block-media-text__content .wp-block-code,
.wp-block-media-text__content .wp-block-file,
.wp-block-group__inner-container pre,
.wp-block-group__inner-container .wp-block-code,
.wp-block-group__inner-container .wp-block-file,
.wp-block-cover__inner-container pre,
.wp-block-cover__inner-container .wp-block-code,
.wp-block-cover__inner-container .wp-block-file,
.wp-block-column pre,
.wp-block-column .wp-block-code,
.wp-block-column .wp-block-file {
  border: 1px solid #bdc5c6;
  box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, 0.1);
  padding: 32px;
}
.entry-content .gallery,
.wp-block-media-text__content .gallery,
.wp-block-group__inner-container .gallery,
.wp-block-cover__inner-container .gallery,
.wp-block-column .gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -16px;
}
.entry-content .gallery .gallery-item,
.wp-block-media-text__content .gallery .gallery-item,
.wp-block-group__inner-container .gallery .gallery-item,
.wp-block-cover__inner-container .gallery .gallery-item,
.wp-block-column .gallery .gallery-item {
  padding: 0 16px;
}
.entry-content .gallery .gallery-item a,
.wp-block-media-text__content .gallery .gallery-item a,
.wp-block-group__inner-container .gallery .gallery-item a,
.wp-block-cover__inner-container .gallery .gallery-item a,
.wp-block-column .gallery .gallery-item a {
  display: block;
  line-height: 0;
}
.entry-content .gallery .gallery-item img,
.wp-block-media-text__content .gallery .gallery-item img,
.wp-block-group__inner-container .gallery .gallery-item img,
.wp-block-cover__inner-container .gallery .gallery-item img,
.wp-block-column .gallery .gallery-item img {
  margin: 0;
}
.entry-content .gallery.gallery-columns-2 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-2 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-2 .gallery-item,
.wp-block-cover__inner-container .gallery.gallery-columns-2 .gallery-item,
.wp-block-column .gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.entry-content .gallery.gallery-columns-3 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-3 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-3 .gallery-item,
.wp-block-cover__inner-container .gallery.gallery-columns-3 .gallery-item,
.wp-block-column .gallery.gallery-columns-3 .gallery-item {
  width: 33.333333%;
}
.entry-content .gallery.gallery-columns-4 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-4 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-4 .gallery-item,
.wp-block-cover__inner-container .gallery.gallery-columns-4 .gallery-item,
.wp-block-column .gallery.gallery-columns-4 .gallery-item {
  width: 25%;
}
.entry-content .gallery.gallery-columns-5 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-5 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-5 .gallery-item,
.wp-block-cover__inner-container .gallery.gallery-columns-5 .gallery-item,
.wp-block-column .gallery.gallery-columns-5 .gallery-item {
  width: 20%;
}
.entry-content .gallery.gallery-columns-6 .gallery-item,
.wp-block-media-text__content .gallery.gallery-columns-6 .gallery-item,
.wp-block-group__inner-container .gallery.gallery-columns-6 .gallery-item,
.wp-block-cover__inner-container .gallery.gallery-columns-6 .gallery-item,
.wp-block-column .gallery.gallery-columns-6 .gallery-item {
  width: 16.666666667%;
}
.entry-content .wp-block-pb-accordion-item,
.wp-block-media-text__content .wp-block-pb-accordion-item,
.wp-block-group__inner-container .wp-block-pb-accordion-item,
.wp-block-cover__inner-container .wp-block-pb-accordion-item,
.wp-block-column .wp-block-pb-accordion-item {
  padding: 16px;
  background: #eff6f8;
  margin-bottom: 16px;
}
.entry-content .wp-block-pb-accordion-item > .c-accordion__content,
.wp-block-media-text__content .wp-block-pb-accordion-item > .c-accordion__content,
.wp-block-group__inner-container .wp-block-pb-accordion-item > .c-accordion__content,
.wp-block-cover__inner-container .wp-block-pb-accordion-item > .c-accordion__content,
.wp-block-column .wp-block-pb-accordion-item > .c-accordion__content {
  margin-top: 16px;
}

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

/*********************
PAGE TEMPLATE DEMO STYLES
*********************/
.sp-prov-systemet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}
.sp-prov-systemet .sp-prov-systemet-kolonne {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  width: 100%;
  padding: 64px 32px;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form {
  background: #eff6f8;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form header {
  background: #eff6f8;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form header > * {
  margin-bottom: 32px;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form header > *:last-child {
  margin-bottom: 0;
}
.sp-prov-systemet .sp-prov-systemet-kolonne .kontaktskjema {
  padding-top: 64px;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-trusted-by {
  background: #fff;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-trusted-by > * {
  margin-bottom: 32px;
}
.sp-prov-systemet .sp-prov-systemet-kolonne.sp-trusted-by > *:last-child {
  margin-bottom: 0;
}

.kontaktskjema {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 16px;
  text-align: left;
}
.kontaktskjema input[type=text],
.kontaktskjema input[type=email],
.kontaktskjema input[type=phone] {
  width: 100%;
  background: #fff;
}
.kontaktskjema .gfield_checkbox li {
  list-style: none;
  margin: 0;
}
.kontaktskjema .gfield_checkbox label {
  font-size: 1.6rem;
}
.kontaktskjema .gfield_checkbox label a {
  text-decoration: underline;
}
.kontaktskjema input[type=submit] {
  background: #e55200;
  width: 100%;
}

.kontaktskjema input.error::-moz-placeholder {
  color: red;
}

.kontaktskjema input.error::placeholder {
  color: red;
}

.sp-contact-us > *,
.sp-contact-us-partner > * {
  margin-bottom: 32px;
}
.sp-contact-us > *:last-child,
.sp-contact-us-partner > *:last-child {
  margin-bottom: 0;
}

.sp-contact-us-partner {
  margin-bottom: 64px !important;
}

.sp-address {
  background: #eff6f8;
  padding: 32px;
}
.sp-address > * {
  margin-bottom: 16px;
}
.sp-address > *:last-child {
  margin-bottom: 0;
}
.sp-address p {
  margin-bottom: 8px;
}

.sp-logoer {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
}
.sp-logoer .sp-logo {
  height: 80px;
  padding: 10px;
  margin-bottom: 20px;
}
.sp-logoer .sp-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 150px;
  height: 100%;
}

/*********************
ARCHIVE STYLES
*********************/
body.blog .blog-header {
  margin-bottom: 32px;
}
body.blog .blog-header > * {
  margin-bottom: 16px;
}
body.blog .blog-header > *:last-child {
  margin-bottom: 0;
}
body.blog #inner-content {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
body.blog #blog-sidebar {
  order: 1;
  margin-bottom: 32px;
}
body.blog #main {
  order: 2;
}
body.blog .facetwp-type-pager {
  text-align: center;
}
body.blog .facetwp-type-pager button {
  margin-top: 64px;
}
body.blog .facetwp-header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
body.blog .facetwp-header input,
body.blog .facetwp-header select {
  width: 100%;
}
body.blog .facetwp-header .facetwp-facet {
  width: calc(50% - 16px);
}
body.blog .facetwp-header .facetwp-facet .facetwp-input-wrap {
  width: 100%;
}
body.blog .facetwp-header .facetwp-facet .facetwp-icon {
  border: 1px solid #000;
  border-left: 0;
}
body.blog .facetwp-header .facetwp-facet .facetwp-icon:before {
  width: 47px;
  background-position: calc(100% - 14px) 50%;
}
body.blog .facetwp-header .facetwp-search {
  min-width: 1px;
  padding-right: 40px;
}

.sp-blog-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 32px;
}

.sp-blog-card a.sp-blog-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 0;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
  overflow: hidden;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-header {
  position: relative;
  left: 0;
  line-height: 0;
  width: 100%;
  padding-bottom: 70%;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-header img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-header:hover:after, .sp-blog-card a.sp-blog-card-container .sp-blog-card-header:focus:after {
  opacity: 1;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-content {
  background: #eff6f8;
  padding: 32px;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-content h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 0;
}
.sp-blog-card a.sp-blog-card-container .sp-blog-card-content .byline {
  font-size: 1.6rem;
  margin-top: 16px;
}
.sp-blog-card a.sp-blog-card-container:hover, .sp-blog-card a.sp-blog-card-container:focus {
  text-decoration: none;
  color: #000;
}
.sp-blog-card a.sp-blog-card-container:hover .sp-blog-card-content, .sp-blog-card a.sp-blog-card-container:focus .sp-blog-card-content {
  background: #bdc5c6;
}

/*********************
SEARCH PAGE
*********************/
body.search-results h1.archive-title {
  text-align: center;
  margin-bottom: 32px;
}

/*********************
SINGLE POST
*********************/
body.single-post .hentry,
body.single-referanse .hentry,
body.single-usp .hentry,
body.single-partner .hentry,
body.single-bransje .hentry,
body.page-template-page-narrow .hentry,
body.page .hentry,
body.post-type-archive-partner .hentry {
  display: flex;
  flex-direction: column;
}
body.single-post .feature-header,
body.single-referanse .feature-header,
body.single-usp .feature-header,
body.single-partner .feature-header,
body.single-bransje .feature-header,
body.page-template-page-narrow .feature-header,
body.page .feature-header,
body.post-type-archive-partner .feature-header {
  background: #eff6f8;
  text-align: center;
  margin-bottom: 32px;
}
body.single-post .feature-header .inner-wrap > *,
body.single-referanse .feature-header .inner-wrap > *,
body.single-usp .feature-header .inner-wrap > *,
body.single-partner .feature-header .inner-wrap > *,
body.single-bransje .feature-header .inner-wrap > *,
body.page-template-page-narrow .feature-header .inner-wrap > *,
body.page .feature-header .inner-wrap > *,
body.post-type-archive-partner .feature-header .inner-wrap > * {
  max-width: 480px;
}
body.single-post .feature-header.alignfull,
body.single-referanse .feature-header.alignfull,
body.single-usp .feature-header.alignfull,
body.single-partner .feature-header.alignfull,
body.single-bransje .feature-header.alignfull,
body.page-template-page-narrow .feature-header.alignfull,
body.page .feature-header.alignfull,
body.post-type-archive-partner .feature-header.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: auto;
  max-width: 1000%;
  padding-top: 32px;
  padding-bottom: 32px;
}
body.single-post .feature-header.alignfull h1,
body.single-referanse .feature-header.alignfull h1,
body.single-usp .feature-header.alignfull h1,
body.single-partner .feature-header.alignfull h1,
body.single-bransje .feature-header.alignfull h1,
body.page-template-page-narrow .feature-header.alignfull h1,
body.page .feature-header.alignfull h1,
body.post-type-archive-partner .feature-header.alignfull h1 {
  margin-top: 0;
}
body.single-post .feature-header.split,
body.single-referanse .feature-header.split,
body.single-usp .feature-header.split,
body.single-partner .feature-header.split,
body.single-bransje .feature-header.split,
body.page-template-page-narrow .feature-header.split,
body.page .feature-header.split,
body.post-type-archive-partner .feature-header.split {
  padding: 0;
  background: transparent;
  margin-top: 0;
}
body.single-post .feature-split,
body.single-referanse .feature-split,
body.single-usp .feature-split,
body.single-partner .feature-split,
body.single-bransje .feature-split,
body.page-template-page-narrow .feature-split,
body.page .feature-split,
body.post-type-archive-partner .feature-split {
  text-align: left;
  display: flex;
  flex-direction: column;
  background: #eff6f8;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
}
@media screen and (min-width: 769px) {
  body.single-post .feature-split,
  body.single-referanse .feature-split,
  body.single-usp .feature-split,
  body.single-partner .feature-split,
  body.single-bransje .feature-split,
  body.page-template-page-narrow .feature-split,
  body.page .feature-split,
  body.post-type-archive-partner .feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
body.single-post .feature-split .feature-image,
body.single-referanse .feature-split .feature-image,
body.single-usp .feature-split .feature-image,
body.single-partner .feature-split .feature-image,
body.single-bransje .feature-split .feature-image,
body.page-template-page-narrow .feature-split .feature-image,
body.page .feature-split .feature-image,
body.post-type-archive-partner .feature-split .feature-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60%;
  height: 0;
}
@media screen and (min-width: 769px) {
  body.single-post .feature-split .feature-image,
  body.single-referanse .feature-split .feature-image,
  body.single-usp .feature-split .feature-image,
  body.single-partner .feature-split .feature-image,
  body.single-bransje .feature-split .feature-image,
  body.page-template-page-narrow .feature-split .feature-image,
  body.page .feature-split .feature-image,
  body.post-type-archive-partner .feature-split .feature-image {
    padding-bottom: 0;
    max-width: 50vw;
  }
}
body.single-post .feature-split .feature-content,
body.single-referanse .feature-split .feature-content,
body.single-usp .feature-split .feature-content,
body.single-partner .feature-split .feature-content,
body.single-bransje .feature-split .feature-content,
body.page-template-page-narrow .feature-split .feature-content,
body.page .feature-split .feature-content,
body.post-type-archive-partner .feature-split .feature-content {
  padding-top: 32px;
  padding-bottom: 32px;
}
body.single-post .feature-split .feature-content > *,
body.single-referanse .feature-split .feature-content > *,
body.single-usp .feature-split .feature-content > *,
body.single-partner .feature-split .feature-content > *,
body.single-bransje .feature-split .feature-content > *,
body.page-template-page-narrow .feature-split .feature-content > *,
body.page .feature-split .feature-content > *,
body.post-type-archive-partner .feature-split .feature-content > * {
  margin-bottom: 16px;
}
body.single-post .feature-split .feature-content > *:last-child,
body.single-referanse .feature-split .feature-content > *:last-child,
body.single-usp .feature-split .feature-content > *:last-child,
body.single-partner .feature-split .feature-content > *:last-child,
body.single-bransje .feature-split .feature-content > *:last-child,
body.page-template-page-narrow .feature-split .feature-content > *:last-child,
body.page .feature-split .feature-content > *:last-child,
body.post-type-archive-partner .feature-split .feature-content > *:last-child {
  margin-bottom: 0;
}
body.single-post .feature-split .feature-content h1,
body.single-referanse .feature-split .feature-content h1,
body.single-usp .feature-split .feature-content h1,
body.single-partner .feature-split .feature-content h1,
body.single-bransje .feature-split .feature-content h1,
body.page-template-page-narrow .feature-split .feature-content h1,
body.page .feature-split .feature-content h1,
body.post-type-archive-partner .feature-split .feature-content h1 {
  margin-top: 0;
}
body.single-post .article-header,
body.single-referanse .article-header,
body.single-usp .article-header,
body.single-partner .article-header,
body.single-bransje .article-header,
body.page-template-page-narrow .article-header,
body.page .article-header,
body.post-type-archive-partner .article-header {
  margin: 32px 0 32px;
}

body.post-type-archive-partner .feature-header {
  margin-bottom: 0;
}

.sp-partner-linje {
  background: #fff;
  padding: 32px 0;
}
.sp-partner-linje:nth-of-type(even) {
  background: #eff6f8;
}
.sp-partner-linje .sp-partner-linje-container > * {
  margin-bottom: 16px;
}
.sp-partner-linje .sp-partner-linje-container > *:last-child {
  margin-bottom: 0;
}
.sp-partner-linje .sp-partner-linje-content > * {
  margin-bottom: 16px;
}
.sp-partner-linje .sp-partner-linje-content > *:last-child {
  margin-bottom: 0;
}

/*********************
NAVIGATION
*********************/
.nextprevious-nav {
  margin-top: 32px;
  padding: 32px 0;
  position: relative;
  position: relative;
}
.nextprevious-nav .wrap {
  position: relative;
}
.nextprevious-nav .nav-item {
  display: block;
  text-decoration: none;
  margin-bottom: 32px;
}
.nextprevious-nav .nav-item h4 {
  font-size: 2rem;
}
.nextprevious-nav .nav-item p {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #bdc5c6;
  margin-bottom: 8px;
}
.nextprevious-nav .nav-item:last-of-type {
  margin-bottom: 0;
}
.nextprevious-nav .nav-item:hover h4, .nextprevious-nav .nav-item:focus h4 {
  text-decoration: underline;
}

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

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

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/* end .wp-prev-next */
/*********************
404
*********************/
#post-not-found {
  text-align: center;
  margin-bottom: 64px;
}
#post-not-found .illustration {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 32px;
}

/*********************
BREADCRUMBS
*********************/
.breadcrumbs {
  background: #fff;
}
.breadcrumbs .breadcrumbs-html {
  padding: 16px 0;
  border-top: 1px solid #bdc5c6;
  border-bottom: 1px solid #bdc5c6;
}
.breadcrumbs .sp-seperator {
  display: inline-block;
  background: url(../images/icons/seperator-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 6px;
  height: 10px;
  margin: 0 16px;
}

/*********************
BRANDS SLIDER
*********************/
.brands_slider .owl-stage {
  align-items: stretch !important;
  padding: 2px;
}
.brands_slider .owl-stage .owl-item > a.brand-link {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands_slider .owl-stage .owl-item > a.brand-link img {
  width: 100% !important;
  height: auto;
  transition: all 0.2s ease-in-out;
}
.brands_slider .owl-stage .owl-item > a.brand-link:hover img, .brands_slider .owl-stage .owl-item > a.brand-link:focus img {
  opacity: 0.5;
}

/*********************
SIDEBARS & ASIDES
*********************/
#blog-sidebar {
  padding-left: 32px;
  border-left: 2px solid #bdc5c6;
}
#blog-sidebar .widget {
  margin-bottom: 32px;
}
#blog-sidebar .widget .widgettitle {
  font-size: 3.2rem;
  margin-bottom: 32px;
}
#blog-sidebar .widget:last-of-type {
  margin-bottom: 0;
}

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

/*********************
FOOTER STYLES
*********************/
.footer {
  background: #022f36;
  clear: both;
  position: relative;
  padding: 64px 0;
  font-size: 15px;
  line-height: 18px;
  font-weight: 1.6rem;
  overflow: hidden;
}
.footer #inner-footer {
  position: relative;
}

.footer-widgets {
  text-align: center;
}
.footer-widgets > * {
  margin-bottom: 32px;
}
.footer-widgets > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .widget {
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer-widgets .widget > * {
  margin-bottom: 8px;
}
.footer-widgets .widget > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .widget a {
  font-size: 1.6rem;
  color: white;
}
.footer-widgets .widget a:hover, .footer-widgets .widget a:focus {
  color: #e55200;
}
.footer-widgets .widget .widgettitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: white;
}
.footer-widgets .widget .textwidget {
  color: white;
}
.footer-widgets .widget .textwidget > * {
  margin-bottom: 16px;
}
.footer-widgets .widget .textwidget > *:last-child {
  margin-bottom: 0;
}
.footer-widgets .widget ul {
  margin: 0;
  padding: 0;
}
.footer-widgets .widget ul li {
  display: block;
  line-height: 1.5;
}
.footer-widgets .widget ul li a {
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .footer-widgets #text-2,
  .footer-widgets #nav_menu-2 {
    margin-top: 1rem;
  }
}

.sp-mailchimp-signup .nf-form-fields-required {
  display: none;
}
.sp-mailchimp-signup .nf-form-content {
  padding: 0;
  margin: 0;
}
.sp-mailchimp-signup .nf-form-content h3 {
  font-size: 16px;
  font-weight: 400;
}
.sp-mailchimp-signup .nf-form-content .nf-field-container {
  margin-bottom: 5px;
}
.sp-mailchimp-signup .nf-form-content input {
  display: block;
  width: 100%;
}
.sp-mailchimp-signup .nf-form-content input.ninja-forms-field {
  padding: 5px 10px;
  font-size: 14px;
  margin: 0;
}
.sp-mailchimp-signup .nf-form-content #nf-field-18 {
  background: none;
  color: white;
  border: 1px solid white;
}
.sp-mailchimp-signup .nf-form-content .checkbox-container.label-right label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.sp-mailchimp-signup .nf-form-content .checkbox-container.label-right label:before, .sp-mailchimp-signup .nf-form-content .checkbox-container.label-right label:after {
  top: 5px;
}
.sp-mailchimp-signup .nf-error.field-wrap .nf-field-element:after {
  height: 32px;
  width: 32px;
  line-height: 32px;
}
.sp-mailchimp-signup .nf-pass.field-wrap .nf-field-element:after {
  height: 32px;
  width: 32px;
  line-height: 32px;
  right: 0;
}

.sp-social-icons {
  font-size: 40px;
  line-height: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .sp-social-icons {
    justify-content: flex-start;
  }
}
.sp-social-icons .sp-social-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 16px;
}
.sp-social-icons .sp-social-icon:last-of-type {
  margin-right: 0;
}
.sp-social-icons .sp-social-icon .custom-icon {
  display: block;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(1) grayscale(100%);
}
.sp-social-icons .sp-social-icon .custom-icon.facebook {
  background-image: url("../images/icons/facebook-icon-nextcom.svg");
}
.sp-social-icons .sp-social-icon .custom-icon.facebook:hover, .sp-social-icons .sp-social-icon .custom-icon.facebook:focus {
  background-image: url("../images/icons/facebook-icon-hover.svg");
}
.sp-social-icons .sp-social-icon .custom-icon.linkedin {
  background-image: url("../images/icons/linkedin-icon-nextcom.svg");
}
.sp-social-icons .sp-social-icon .custom-icon.linkedin:hover, .sp-social-icons .sp-social-icon .custom-icon.linkedin:focus {
  background-image: url("../images/icons/linkedin-icon-hover.svg");
}

.nf-form-wrap .nf-form-content {
  margin: 0 -10px;
}
.nf-form-wrap .nf-form-content input.ninja-forms-field {
  height: auto;
}

input[type=checkbox].error {
  outline: 2px solid red;
}

.kontaktskjema input.error::-moz-placeholder {
  color: red;
}

.kontaktskjema input.error::placeholder {
  color: red;
}

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

  ******************************************************************/
  /*********************
  ARCHIVE STYLES
  *********************/
  .sp-blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /*********************
  NAVIGATION
  *********************/
  .nextprevious-nav .wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  .nextprevious-nav .nav-item {
    width: 50%;
    margin-bottom: 0;
  }
  .nextprevious-nav .nav-item:nth-of-type(1) {
    margin-right: auto;
  }
  .nextprevious-nav .nav-item:nth-of-type(2) {
    text-align: right;
    margin-left: auto;
  }
  /*********************
  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 */
  /*********************
  PAGE TEMPLATE DEMO STYLES
  *********************/
  .sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form .kontaktskjema {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
  .sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form .kontaktskjema .gfield_checkbox,
  .sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form .kontaktskjema input[type=submit] {
    grid-column: 1/3;
  }
}
/*********************
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: 601px) {
  /******************************************************************

  Stylesheet: Tablet & Small Desktop Stylesheet (GUTENBERG)

  ******************************************************************/
  .entry-content .brand-thumbnails {
    grid-template-columns: repeat(5, 1fr);
  }
}
/*********************
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: Tablet & Small Desktop Stylesheet

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    width: 100%;
    max-width: 990px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .big-wrap {
    width: 100%;
    max-width: 1460px;
    padding-left: 32px;
    padding-right: 32px;
  }
  .hide-on-desktop {
    display: none;
  }
  /*********************
  H1, H2, H3, H4, H5 STYLES
  *********************/
  h1,
  .h1 {
    font-size: 4.8rem;
  }
  h2,
  .h2 {
    font-size: 3.2rem;
  }
  h3,
  .h3 {
    font-size: 2.4rem;
  }
  /*********************
  ARCHIVE STYLES
  *********************/
  body.blog #inner-content {
    display: block;
  }
  body.blog #blog-sidebar {
    margin-bottom: 0;
  }
  .sp-blog-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  /*********************
  ENTRY CONTENT
  *********************/
  /*********************
  SINGLE POST
  *********************/
  body.single-post .hentry,
  body.single-referanse .hentry,
  body.single-usp .hentry,
  body.single-partner .hentry,
  body.single-bransje .hentry,
  body.page-template-page-narrow .hentry,
  body.page .hentry,
  body.post-type-archive-partner .hentry {
    display: block;
  }
  body.single-post .feature-header,
  body.single-referanse .feature-header,
  body.single-usp .feature-header,
  body.single-partner .feature-header,
  body.single-bransje .feature-header,
  body.page-template-page-narrow .feature-header,
  body.page .feature-header,
  body.post-type-archive-partner .feature-header {
    text-align: left;
  }
  body.single-post .feature-split,
  body.single-referanse .feature-split,
  body.single-usp .feature-split,
  body.single-partner .feature-split,
  body.single-bransje .feature-split,
  body.page-template-page-narrow .feature-split,
  body.page .feature-split,
  body.post-type-archive-partner .feature-split {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    position: relative;
  }
  body.single-post .feature-split .feature-content,
  body.single-referanse .feature-split .feature-content,
  body.single-usp .feature-split .feature-content,
  body.single-partner .feature-split .feature-content,
  body.single-bransje .feature-split .feature-content,
  body.page-template-page-narrow .feature-split .feature-content,
  body.page .feature-split .feature-content,
  body.post-type-archive-partner .feature-split .feature-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    order: 1;
  }
  body.single-post .feature-split .feature-content .entry-content,
  body.single-referanse .feature-split .feature-content .entry-content,
  body.single-usp .feature-split .feature-content .entry-content,
  body.single-partner .feature-split .feature-content .entry-content,
  body.single-bransje .feature-split .feature-content .entry-content,
  body.page-template-page-narrow .feature-split .feature-content .entry-content,
  body.page .feature-split .feature-content .entry-content,
  body.post-type-archive-partner .feature-split .feature-content .entry-content {
    width: 34%;
  }
  body.single-post .feature-split .feature-content h1,
  body.single-referanse .feature-split .feature-content h1,
  body.single-usp .feature-split .feature-content h1,
  body.single-partner .feature-split .feature-content h1,
  body.single-bransje .feature-split .feature-content h1,
  body.page-template-page-narrow .feature-split .feature-content h1,
  body.page .feature-split .feature-content h1,
  body.post-type-archive-partner .feature-split .feature-content h1 {
    font-size: 3.2rem;
  }
  body.single-post .feature-split .feature-image,
  body.single-referanse .feature-split .feature-image,
  body.single-usp .feature-split .feature-image,
  body.single-partner .feature-split .feature-image,
  body.single-bransje .feature-split .feature-image,
  body.page-template-page-narrow .feature-split .feature-image,
  body.page .feature-split .feature-image,
  body.post-type-archive-partner .feature-split .feature-image {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 58%;
    order: 2;
    padding-bottom: 34%;
  }
  .sp-contact-us {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .sp-contact-us .sp-form {
    width: calc(65% - 16px);
    margin-right: 16px;
  }
  .sp-contact-us .sp-address {
    width: calc(35% - 16px);
    margin-left: 16px;
  }
  .entry-content .sp-contact-us-partner .sp-form .kontaktskjema {
    grid-template-columns: 1fr 1fr;
  }
  .entry-content .sp-contact-us-partner .sp-form .kontaktskjema textarea,
  .entry-content .sp-contact-us-partner .sp-form .kontaktskjema .gfield_checkbox,
  .entry-content .sp-contact-us-partner .sp-form .kontaktskjema input.btn {
    grid-column: 1/-1;
  }
  .sp-partner-linje {
    padding: 64px 0;
  }
  .sp-partner-linje .sp-partner-linje-container {
    display: grid;
    grid-template-columns: 4fr 8fr;
    grid-template-rows: 1fr;
    grid-gap: 32px;
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 0;
  }
  #blog-sidebar {
    position: sticky;
    top: 32px;
  }
  body.admin-bar #blog-sidebar {
    top: 64px;
  }
  /*********************
  FOOTER STYLES
  *********************/
  .footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, minmax(auto, 1fr));
    grid-template-rows: auto;
    grid-column-gap: 32px;
    text-align: left;
  }
  .footer-widgets .widget {
    margin-bottom: 0;
  }
  .footer-widgets .widget:first-of-type, .footer-widgets .widget:last-of-type {
    align-self: center;
  }
}
/*********************
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: 1030px) {
  /******************************************************************

  Stylesheet: Desktop Stylsheet

  ******************************************************************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    max-width: 1100px;
  }
  /*********************
  SINGLE POST
  *********************/
  body.single-post .hentry .feature-split .feature-content,
  body.page-template-page-narrow .hentry .feature-split .feature-content,
  body.page .hentry .feature-split .feature-content {
    padding: 64px;
  }
  body.single-post .hentry .feature-split .feature-content .inner-wrap-big,
  body.page-template-page-narrow .hentry .feature-split .feature-content .inner-wrap-big,
  body.page .hentry .feature-split .feature-content .inner-wrap-big {
    padding-left: 32px;
    padding-right: 32px;
  }
  body.single-post .hentry .feature-split .feature-content h1,
  body.page-template-page-narrow .hentry .feature-split .feature-content h1,
  body.page .hentry .feature-split .feature-content h1 {
    font-size: 4.8rem;
  }
  /*********************
  PAGE TEMPLATE DEMO STYLES
  *********************/
  .sp-prov-systemet {
    flex-direction: row;
    align-items: stretch;
  }
  .sp-prov-systemet .sp-prov-systemet-kolonne {
    width: 50%;
    padding: 64px;
  }
  .sp-prov-systemet .sp-prov-systemet-kolonne.sp-prov-systemet-form {
    order: 2;
  }
  /*********************
  FOOTER STYLES
  *********************/
  .footer-widgets {
    grid-column-gap: 64px;
  }
}
/*********************
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

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