@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet
Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

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

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* ==========================================================================
   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.67em 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: bold;
}

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

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

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

/*
 * 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: 1em 0;
}

dd {
  margin: 0;
}

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

ul {
  padding: 0;
}

ol {
  padding: 0;
}

/*
 * 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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-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;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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;
}

/******************************************************************
Site Name:
Author:

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.

******************************************************************/
/*********************
 You can highlight all the code and ask ai to do the following:
 "Please add css vars for each of these variables to the root element assigning the values as the sass variables."
*********************/
:root {
  --alert-yellow: #ebe16f;
  --alert-red: #fbe3e4;
  --alert-green: #e6efc2;
  --alert-blue: #d5edf8;
  --black: #323944;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #eaedf2;
  --dark-gray: #787878;
  --text-color: #171819;
  --meta-gray: #9fa6b4;
  --tan: #eceee5;
  --green: #7dd667;
  --bones-pink: #f01d4f;
  --blue: #2980b9;
  --link-color: #171819;
  --link-hover: #010101;
  --border-color: #ccc;
  --disabled-gray: #cfcfcf;
  --main-background-color: #ffffff;
  --main-content-width: 1200px;
}

/******************************************************************
Site Name:
Author:

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. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
 //ensure you ad your family here
*/
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:after, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:after, .top-nav li a:after, .add-fontello-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
}

/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p, .wp-block-list {
  font-size: 1.125rem;
  line-height: 1.6666;
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}
p.big-body, p.is-style-big-body, .wp-block-list.big-body, .wp-block-list.is-style-big-body {
  font-size: clamp(1.25rem, 1.111vw + 1.111rem, 1.375rem);
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: 0.44px;
}
p.is-style-quote-style, .wp-block-list.is-style-quote-style {
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6538;
  color: var(--wp--preset--color--primary);
}
p.is-style-eyebrow, .wp-block-list.is-style-eyebrow {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4545;
  text-transform: uppercase;
}

ul.wp-block-list, ol.wp-block-list {
  padding-left: 1rem;
  margin-top: 0;
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

h1, .h1 {
  line-height: normal;
  font-weight: 700;
  font-size: 2.5rem;
  font-size: clamp(2.5rem, 2.545vw + 1.842rem, 3.75rem);
  margin-block-end: 0.33em !important;
}

.has-large-font-size {
  font-weight: 700;
  line-height: normal !important;
}

h2, .h2, .wrap > h2:first-child {
  font-size: 2rem;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  line-height: normal;
  font-weight: 700;
  letter-spacing: 0.96px;
  margin-block-start: 0.81rem;
  margin-block-end: 1.25rem !important;
}

h3, .h3 {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.8rem + 0.25vw, 2rem);
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

h4, .h4 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.4625rem + 0.1875vw, 1.6875rem);
  font-weight: 700;
}

h5, .h5 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  font-weight: 700;
  text-transform: uppercase;
}

h6, .h6 {
  font-size: clamp(0.5922rem, 0.846vw, 0.846rem);
  line-height: 2.09em;
}

.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:after, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:after, .top-nav li a:after, .add-fontello-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  /* font-size: 120%; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:has(.is-style-heading-arrow-link) {
  text-decoration: none;
}
a:has(.is-style-heading-arrow-link) .is-style-heading-arrow-link {
  padding-right: 1em;
  position: relative;
}
a:has(.is-style-heading-arrow-link) .is-style-heading-arrow-link:after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 1em;
  color: inherit;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
}

.is-style-heading-arrow-link:has(a) {
  padding-right: 1em;
}
.is-style-heading-arrow-link:has(a) a {
  position: relative;
}
.is-style-heading-arrow-link:has(a) a:after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 1em;
  color: inherit;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
}

/******************************************************************
Site Name:
Author:

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%;
*********************/
/******************************************************************
Site Name:
Author:

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? */
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important;
}

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
}
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
}
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0;
  }
  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%;
  }
  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%;
  }
  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%;
  }
  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%;
  }
  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%;
  }
  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/*********************
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.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/******************************************************************
Site Name:
Author:

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.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-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

*********************/
.btn, .btn:visited {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: normal;
  padding: 0 1.5rem;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
}
.btn:hover, .btn:focus {
  color: #ffffff;
  text-decoration: none;
  outline: none;
}
.btn:active {
  top: 1px;
}

/*
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, .btn:visited {
  background-color: var(--blue, #2980b9);
}
.btn:hover, .btn:focus, .btn:visited:hover, .btn:visited:focus {
  background-color: #2574a8;
}
.btn:active, .btn:visited:active {
  background-color: #2472a4;
}

.wp-block-buttons {
  gap: 1.25rem;
  margin-block-start: 2.5rem;
}
.wp-block-buttons.reduce-gap {
  gap: 1.25rem;
}
.wp-block-buttons:has(.is-style-heavy-arrow) {
  padding-inline: 0;
}
.wp-block-buttons.remove-left-padding .wp-block-button {
  padding-left: 0 !important;
}

.wp-block-button .wp-block-button__link {
  width: fit-content;
}
.wp-block-button.with-arrow .wp-block-button__link {
  position: relative;
  padding-right: 2.2em;
}
.wp-block-button.with-arrow .wp-block-button__link::after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 1em;
  color: inherit;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}
.wp-block-button.with-arrow .wp-block-button__link:hover::after {
  display: none;
}
.wp-block-button.with-arrow.rotate .wp-block-button__link::after {
  transform: translateY(-50%) rotate(-45deg);
}
.wp-block-button.is-style-heavy-arrow .wp-block-button__link {
  background-color: transparent;
  border: none;
  position: relative;
  padding-right: 1em;
  color: var(--wp--preset--color--universal-black);
  text-align: left;
  padding-block: 0;
}
.wp-block-button.is-style-heavy-arrow .wp-block-button__link::after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 1em;
  color: inherit;
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
}
.wp-block-button.is-style-heavy-arrow .wp-block-button__link:hover {
  color: var(--wp--preset--color--primary);
}
.wp-block-button.is-style-heavy-arrow .wp-block-button__link:hover:after {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
}

.wp-block-button.is-style-long-outline .wp-block-button__link {
  background-color: transparent;
  text-align: left;
  color: var(--wp--preset--color--universal-black);
  position: relative;
  display: inline;
}
.wp-block-button.is-style-long-outline .wp-block-button__link::after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 1em;
  color: inherit;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-button.is-style-long-outline {
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 0;
  border-width: 2px;
  border-style: solid;
  color: var(--wp--preset--color--contrast);
  font-family: inherit;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  line-height: 0.875em;
  padding-top: 1.875rem;
  padding-right: 1.875rem;
  padding-bottom: 1.875rem;
  padding-left: 1.875rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.wp-block-button.is-style-long-outline:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background-color: var(--wp--preset--color--primary);
  clip-path: polygon(0 0, 100% 0%, calc(100% - 2rem) 100%, 0% 100%);
}
.wp-block-button.is-style-long-outline:hover:before {
  width: 120%;
  transition: width 1s ease-in-out;
}
.wp-block-button.is-style-long-outline:hover .wp-block-button__link {
  color: #fff;
  transition: color 1s ease-in-out;
}

@keyframes fontColorToWhiteBgToRed {
  0% {
    color: #000;
    background: transparent;
    background-size: 0% 100%;
    background-position: left;
  }
  50% {
    background-size: 50% 100%;
    background-position: left;
  }
  100% {
    color: #fff;
    background: linear-gradient(to right, red 100%, red 100%);
    background-size: 100% 100%;
    background-position: left;
  }
}
/******************************************************************
Site Name:
Author:

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.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
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],
select,
textarea,
.field {
  box-sizing: border-box;
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
}
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,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  outline: none;
}
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,
select.error,
select.is-invalid,
textarea.error,
textarea.is-invalid,
.field.error,
.field.is-invalid {
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
  outline-color: var(--alert-red, #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,
select.success,
select.is-valid,
textarea.success,
textarea.is-valid,
.field.success,
.field.is-valid {
  background-color: #ffffff;
  background-position: 99% center;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
  outline-color: var(--alert-green, #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,
select[disabled],
select.is-disabled,
textarea[disabled],
textarea.is-disabled,
.field[disabled],
.field.is-disabled {
  cursor: not-allowed;
  border-color: var(--disabled-gray, #cfcfcf);
  opacity: 0.6;
}
input[type=text][disabled]:focus, input[type=text][disabled]:active, input[type=text].is-disabled:focus, input[type=text].is-disabled:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:active,
input[type=password].is-disabled:focus,
input[type=password].is-disabled:active,
input[type=datetime][disabled]:focus,
input[type=datetime][disabled]:active,
input[type=datetime].is-disabled:focus,
input[type=datetime].is-disabled:active,
input[type=datetime-local][disabled]:focus,
input[type=datetime-local][disabled]:active,
input[type=datetime-local].is-disabled:focus,
input[type=datetime-local].is-disabled:active,
input[type=date][disabled]:focus,
input[type=date][disabled]:active,
input[type=date].is-disabled:focus,
input[type=date].is-disabled:active,
input[type=month][disabled]:focus,
input[type=month][disabled]:active,
input[type=month].is-disabled:focus,
input[type=month].is-disabled:active,
input[type=time][disabled]:focus,
input[type=time][disabled]:active,
input[type=time].is-disabled:focus,
input[type=time].is-disabled:active,
input[type=week][disabled]:focus,
input[type=week][disabled]:active,
input[type=week].is-disabled:focus,
input[type=week].is-disabled:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:active,
input[type=number].is-disabled:focus,
input[type=number].is-disabled:active,
input[type=email][disabled]:focus,
input[type=email][disabled]:active,
input[type=email].is-disabled:focus,
input[type=email].is-disabled:active,
input[type=url][disabled]:focus,
input[type=url][disabled]:active,
input[type=url].is-disabled:focus,
input[type=url].is-disabled:active,
input[type=search][disabled]:focus,
input[type=search][disabled]:active,
input[type=search].is-disabled:focus,
input[type=search].is-disabled:active,
input[type=tel][disabled]:focus,
input[type=tel][disabled]:active,
input[type=tel].is-disabled:focus,
input[type=tel].is-disabled:active,
input[type=color][disabled]:focus,
input[type=color][disabled]:active,
input[type=color].is-disabled:focus,
input[type=color].is-disabled:active,
select[disabled]:focus,
select[disabled]:active,
select.is-disabled:focus,
select.is-disabled:active,
textarea[disabled]:focus,
textarea[disabled]:active,
textarea.is-disabled:focus,
textarea.is-disabled:active,
.field[disabled]:focus,
.field[disabled]:active,
.field.is-disabled:focus,
.field.is-disabled:active {
  background-color: var(--alert-blue, #d5edf8);
}

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

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

select {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center;
}

.gform_body, .gform_footer {
  padding: 40px !important;
}

.gform_body {
  padding-bottom: 20px !important;
}

.gform_footer {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.remove-form-frame_wrapper {
  margin-top: 0 !important;
}
.remove-form-frame_wrapper .gform_footer, .remove-form-frame_wrapper .gform_body {
  padding-inline: 0 !important;
}

input[type=submit] {
  background-color: var(--wp--preset--color--primary);
  border-radius: 0;
  border-color: var(--wp--preset--color--transparent);
  border-width: 2px;
  border-style: solid;
  color: var(--wp--preset--color--contrast);
  font-family: inherit;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  line-height: 0.875em;
  padding-top: 1.3125rem;
  padding-right: 1.375rem;
  padding-bottom: 1.3125rem;
  padding-left: 1.375rem;
  text-decoration: none;
}
input[type=submit]:hover {
  background-color: var(--wp--preset--color--universal-black);
  border: 2px solid var(--wp--preset--color--universal-black);
  color: white;
}

.gform_confirmation_message {
  padding: 40px;
  font-size: 24px;
  font-weight: 600;
}

::placeholder {
  color: var(--wp--preset--color--text-color);
}

.main-header .wrap {
  display: flex;
  position: relative;
}
.main-header .wrap nav.main {
  flex: 1 0 auto;
  display: flex;
  justify-content: end;
}
@media only screen and (min-width: 996px) {
  .main-header .wrap nav.main {
    flex-direction: column;
  }
}
.main-header .wrap nav.main .mobile-menu {
  --mobile-menu-display:block;
}
@media only screen and (min-width: 996px) {
  .main-header .wrap nav.main .mobile-menu {
    --mobile-menu-display:none;
  }
}

.top-nav {
  border-bottom: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.5s ease-in-out;
}
@media only screen and (max-width: 766px) {
  .top-nav.open, .top-nav:focus-within {
    padding-bottom: 1rem;
    padding-left: 1rem;
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    z-index: 99999;
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.25);
  }
}
.top-nav li a {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 87.5% */
}
.top-nav li.button {
  width: fit-content;
  position: relative;
}
@media only screen and (min-width: 996px) {
  .top-nav li.button {
    padding-top: 0;
  }
}
.top-nav li.button a, .top-nav li.button a:visited {
  background: var(--wp--preset--color--primary, orange);
  position: relative;
  color: white !important;
  padding: 1.3125rem;
}
.top-nav li.button:after {
  display: none !important;
}
.top-nav li.button:hover a, .top-nav li.button:hover a:visited {
  background-color: #171819;
  color: white;
}
.top-nav li.search-in-nav {
  display: none;
}
@media only screen and (min-width: 996px) {
  .top-nav li.search-in-nav {
    display: flex;
    align-items: center;
  }
  .top-nav li.search-in-nav span.search {
    cursor: pointer;
  }
  .top-nav li.search-in-nav svg path {
    fill: #000;
  }
  .top-nav li.search-in-nav:hover:after {
    display: none !important;
  }
  .top-nav li.search-in-nav form {
    display: none;
  }
  .top-nav li.search-in-nav.active, .top-nav li.search-in-nav:focus-within {
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    width: calc(100% - 92px);
    height: 100%;
    z-index: 99;
    margin-left: 92px;
    padding-bottom: 0;
    gap: 35px;
  }
  .top-nav li.search-in-nav.active svg path, .top-nav li.search-in-nav:focus-within svg path {
    fill: var(--wp--preset--color--primary);
  }
  .top-nav li.search-in-nav.active form, .top-nav li.search-in-nav:focus-within form {
    width: 100%;
    display: flex;
  }
  .top-nav li.search-in-nav.active form > div, .top-nav li.search-in-nav:focus-within form > div {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .top-nav li.search-in-nav.active form > div input, .top-nav li.search-in-nav:focus-within form > div input {
    max-width: 100%;
  }
  .top-nav li.search-in-nav.active form > div input[type=search], .top-nav li.search-in-nav:focus-within form > div input[type=search] {
    border-bottom: 2px solid #989FA5;
    border-radius: 0;
    margin-right: 35px;
    margin-bottom: 0;
  }
  .top-nav li.search-in-nav.active form > div .clear-input, .top-nav li.search-in-nav:focus-within form > div .clear-input {
    width: 20px;
    height: 20px;
    position: relative;
    left: -55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
  }
  .top-nav li.search-in-nav.active form > div button[type=submit], .top-nav li.search-in-nav:focus-within form > div button[type=submit] {
    padding: 21px 22px;
    border: none;
    background-color: var(--wp--preset--color--primary);
    color: white;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
  }
  .top-nav li.search-in-nav.active form > div button[type=submit]:hover, .top-nav li.search-in-nav:focus-within form > div button[type=submit]:hover {
    background-color: var(--wp--preset--color--universal-black);
  }
  .top-nav li.search-in-nav.active form > div:after, .top-nav li.search-in-nav:focus-within form > div:after {
    display: none !important;
  }
}
@media only screen and (min-width: 996px) {
  .top-nav > li:not(.button):last-child a {
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 996px) {
  .top-nav {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    max-height: inherit;
    overflow: initial;
    overflow-y: initial;
    margin-left: initial;
  }
  .top-nav li a {
    line-height: 0.875;
  }
  .top-nav > li {
    padding-bottom: 1rem;
  }
  .top-nav > li:hover a, .top-nav > li:hover a:visited, .top-nav > li.current-menu-item a, .top-nav > li.current-menu-item a:visited {
    color: var(--wp--preset--color--primary);
  }
  .top-nav > li:hover:after, .top-nav > li.current-menu-item:after {
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    height: 4px;
    background: var(--wp--preset--color--primary, orange);
  }
}
.top-nav li a {
  display: inline-block;
  text-decoration: none;
  padding: 1.3125rem 0;
}
@media only screen and (min-width: 996px) {
  .top-nav li a {
    display: block;
  }
}
.top-nav li > .sub-menu {
  margin-top: 0;
  display: none;
}
.top-nav li > .sub-menu.open {
  display: block;
  padding-left: 1rem;
}
@media only screen and (min-width: 996px) {
  .top-nav li > .sub-menu {
    display: block;
    box-shadow: 5px 25px 20px 16px rgba(0, 0, 0, 0.02);
  }
}
.top-nav li ul.sub-menu li a,
.top-nav li ul.children li a {
  padding: 1.3125rem 0.75rem;
}
@media only screen and (max-width: 996px) {
  .top-nav li.menu-item-has-children > a {
    position: relative;
  }
  .top-nav li.menu-item-has-children > a:after {
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%);
    content: "\e804";
  }
}
@media only screen and (min-width: 996px) {
  .top-nav .sub-menu {
    padding-top: 2rem;
    width: 382px;
  }
  .top-nav .sub-menu > li {
    background-color: white;
    padding-inline: 25px 48px;
    width: 100%;
  }
  .top-nav .sub-menu > li a, .top-nav .sub-menu > li a:visited {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
  }
  .top-nav .sub-menu > li.heading {
    padding-top: 25px;
  }
  .top-nav .sub-menu > li.heading a {
    padding-block: 14px;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  .top-nav .sub-menu > li:hover > a {
    position: relative;
    color: var(--wp--preset--color--primary);
    text-shadow: 1px 0px 0px var(--wp--preset--color--primary);
  }
  .top-nav .sub-menu > li:hover > a::after {
    content: "\ea2a";
    font-family: "Lineicons";
    font-size: 1em;
    color: inherit;
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wp--preset--color--primary);
  }
  .top-nav .sub-menu > li:hover.heading a {
    text-shadow: none;
  }
  .top-nav .sub-menu > li:hover.heading a::after {
    color: white;
    background-color: var(--wp--preset--color--primary);
  }
}
@media only screen and (min-width: 996px) {
  .top-nav {
    border: 0;
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */
  }
  .top-nav ul {
    margin-top: 0;
  }
  .top-nav > li {
    position: relative;
  }
  .top-nav li {
    float: left;
    /*
    plan your menus and drop-downs wisely.
    */
    /* showing sub-menus */
  }
  .top-nav li a {
    border-bottom: 0;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .top-nav li ul.sub-menu,
  .top-nav li ul.children {
    margin-top: 0;
    border-top: 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    left: -1.5rem;
    /* highlight sub-menu current page */
  }
  .top-nav li ul.sub-menu li,
  .top-nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .top-nav li ul.sub-menu li a,
  .top-nav li ul.children li a {
    padding-left: 10px;
    border-right: 0;
    display: block;
    width: 180px;
    min-width: fit-content;
  }
}
@media only screen and (min-width: 996px) and (min-width: 996px) {
  .top-nav li ul.sub-menu li a,
  .top-nav li ul.children li a {
    width: fit-content;
  }
}
@media only screen and (min-width: 996px) {
  .top-nav li ul.sub-menu li:last-child a,
  .top-nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .top-nav li ul.sub-menu li ul,
  .top-nav li ul.children li ul {
    top: 0;
    left: 100%;
    padding-left: 0.625rem;
  }
  .top-nav li:hover > ul, .top-nav li:focus-within > ul {
    top: auto;
    visibility: visible;
  }
}

/*********************
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.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: var(--wp--preset--color--text-color, #171819);
  /* this is the main background color */
  /* you can change it to a different color */
  /* or use a variable */
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  scroll-margin-top: 2rem;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: min(calc(100vw - 3rem), var(--main-content-width));
  margin: 0 auto;
}

/*********************
LINK STYLES
*********************/
a, a:not(.wp-block-button__link):visited {
  color: var(--link-color, #171819);
  /* on hover */
  /* on click */
  /* mobile tap color */
}
a:hover, a:focus, a:not(.wp-block-button__link):visited:hover, a:not(.wp-block-button__link):visited:focus {
  color: var(--link-hover, #010101);
}
a:link, a:not(.wp-block-button__link):visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

a:not(.wp-block-button__link):visited {
  color: inherit;
}

/*********************
HEADER STYLES
*********************/
#logo {
  margin: 0.75em 0;
}
/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  overflow: hidden;
  position: relative;
}

.single-title,
.page-title,
.entry-title {
  margin: 0;
}

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  font-style: italic;
  margin: 0;
}
/* entry content */
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
}
.entry-content p {
  margin: 0 0 1rem;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content table {
  width: 100%;
  margin-bottom: 1.5em;
}
.entry-content table caption {
  margin: 0 0 7px;
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.entry-content td {
  padding: 7px;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  margin: 0 0 1.5em 0.75em;
  padding: 0 0 0 0.75em;
  font-style: italic;
}
.entry-content dd {
  margin-left: 0;
  font-size: 0.9em;
  margin-bottom: 1.5em;
}
.entry-content img {
  margin: 0;
  max-width: 100%;
  height: auto;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  font-size: 0.9em;
  padding: 1.5em;
  margin: 0 0 1.5em;
  border-radius: 3px;
}

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  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 */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0;
}

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0;
}

.pagination {
  text-align: center;
}
.pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border-radius: 3px;
}
.pagination li {
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
.pagination a, .pagination span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  padding: 0.4375em;
  min-width: 1em;
  display: block;
  color: var(--wp--preset--color--universal-black);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
}
.pagination a:hover, .pagination a:focus, .pagination a.current, .pagination span:hover, .pagination span:focus, .pagination span.current {
  background-color: #EAECED;
}
.pagination .current {
  cursor: default;
  color: var(--text-color, #171819);
}
.pagination .current:hover, .pagination .current:focus {
  color: var(--text-color, #171819);
}

/* 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 */
/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
.no-widgets {
  padding: 1.5em;
  text-align: center;
  border-radius: 2px;
  margin-bottom: 1.5em;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
/*********************
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) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: 481px and Up Stylesheet

  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.

  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.

  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content figure.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
  }
  .entry-content .alignright, .entry-content figure.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
  }
  .entry-content .aligncenter, .entry-content figure.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
  }
  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
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) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!

  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /*********************
  HEADER STYLES
  *********************/
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 2.2em;
  }
  .widgettitle {
    margin-bottom: 0.75em;
  }
  .widget {
    padding: 0 10px;
    margin: 2.2em 0;
  }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */
  }
  .widget ul li ul {
    margin-top: 0.75em;
    padding-left: 1em;
  }
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
  /* end .footer-links */
}
/*********************
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.
*********************/
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
/*********************
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) {
  /******************************************************************
  Site Name: 
  Author: 

  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.

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

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/*********************
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 {
  /******************************************************************
  Site Name:
  Author:

  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;
  }
}
.wp-block-group.is-style-full-width-column-cta > .wrap .wp-block-columns .wp-block-column:last-child {
  padding: 3rem 1.5rem !important;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.is-style-full-width-column-cta > .wrap .wp-block-columns .wp-block-column:last-child {
    padding: 6.25rem 3.75em !important;
  }
}
.wp-block-group.is-style-full-width-column-cta-form > .wrap .wp-block-columns .wp-block-column:last-child {
  padding: 40px !important;
}
.wp-block-group.is-style-full-width-column-cta-form > .wrap .wp-block-columns .gform-body {
  padding-top: 0 !important;
}
.wp-block-group.custom-row {
  padding-inline: 0;
}
.wp-block-group.custom-row > .wrap {
  padding-block: 50px;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.custom-row > .wrap {
    padding-block: 100px;
  }
}
.wp-block-group.custom-row > .wrap.remove-top-padding > h1, .wp-block-group.custom-row > .wrap.remove-top-padding h2, .wp-block-group.custom-row > .wrap.remove-top-padding h3, .wp-block-group.custom-row > .wrap.remove-top-padding h4, .wp-block-group.custom-row > .wrap.remove-top-padding h5, .wp-block-group.custom-row > .wrap.remove-top-padding h6 {
  margin-block-start: 0;
}
.wp-block-group.custom-row > .wrap > .wp-block-columns:not(:first-child) {
  margin-block-start: 50px;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.custom-row > .wrap > .wp-block-columns:not(:first-child) {
    margin-block-start: 100px;
  }
}
.wp-block-group.custom-row:has(> .wp-block-cover) {
  position: relative;
  clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%, 0 0);
}
.wp-block-group.custom-row:has(> .wp-block-cover) > .wp-block-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  z-index: -1;
}
.wp-block-group.custom-row:has(> .wp-block-cover) > .wrap {
  position: relative;
}
.wp-block-group .is-style-cta-card {
  padding: 0;
  position: relative;
}
.wp-block-group .is-style-cta-card > .wp-block-group {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding-inline: 0;
  padding: 30px;
  clip-path: polygon(0% 0%, calc(100% - 85px) 0%, 100% 85px, 100% 100%, 0% 100%);
  height: 100%;
}
.wp-block-group .is-style-cta-card > .wp-block-group > *:first-child {
  margin-block-start: 42.5px;
}
.wp-block-group .is-style-cta-card:after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 2.135rem;
  color: inherit;
  position: absolute;
  top: 0;
  right: 0;
  color: var(--wp--preset--color--primary);
  transform: rotate(-45deg);
}
.wp-block-group .is-style-mini-card {
  max-width: 420px;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .wp-block-group .is-style-mini-card {
    max-width: 590px;
  }
}
.wp-block-group .is-style-mini-card .wp-block-columns .wp-block-column:last-child {
  padding: 2rem;
}
@media only screen and (min-width: 768px) {
  .wp-block-group .is-style-mini-card .wp-block-columns .wp-block-column:last-child {
    padding: 30px 30px 30px 0;
  }
}
.wp-block-group .is-style-mini-card .wp-block-columns .wp-block-column figure {
  height: 100%;
  width: 100%;
}
.wp-block-group .is-style-mini-card .wp-block-columns .wp-block-column figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wp-block-group .is-style-mini-card.with-icon {
  padding: 30px;
}
.wp-block-group .is-style-mini-card.with-icon .wp-block-columns .wp-block-column:last-child {
  padding: 0;
}
.wp-block-group .is-style-mini-card.with-icon .wp-block-columns .wp-block-column figure {
  height: 100%;
  width: auto;
}
.wp-block-group .is-style-mini-card.with-icon .wp-block-columns .wp-block-column figure img {
  width: 100%;
  height: auto;
  object-fit: none;
}
.wp-block-group .is-style-mini-card.with-logo {
  padding: 20px;
  margin-block-start: 0;
}
.wp-block-group .is-style-mini-card.with-logo .wp-block-columns .wp-block-column .h5 {
  margin-bottom: 0;
}
.wp-block-group .is-style-mini-card.with-logo .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button .wp-block-button__link {
  font-size: 0px;
  padding-right: 22px;
}
.wp-block-group .is-style-mini-card.with-logo .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button .wp-block-button__link:after {
  font-size: 2rem;
  font-weight: 400;
  right: 0.5rem;
}
.wp-block-group .is-style-mini-card.with-logo .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button .wp-block-button__link:hover:after {
  display: block;
  color: var(--wp--preset--color--primary);
}
.wp-block-group .is-style-mini-card.with-logo .wp-block-columns .wp-block-column figure {
  height: 100%;
  width: auto;
  margin-top: 0;
}
.wp-block-group .is-style-mini-card.with-logo .wp-block-columns .wp-block-column figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.mini-card-grid:has(.is-style-mini-card) .is-style-mini-card {
    flex: 0 1 calc(50% - 10px);
    min-width: 360px;
    align-self: stretch;
  }
  .wp-block-group.mini-card-grid:has(.is-style-mini-card) .is-style-mini-card > .wp-block-columns {
    height: 100%;
  }
}
.wp-block-group.mini-card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 539px) {
  .wp-block-group.mini-card-grid-2 {
    grid-template-columns: 1fr;
  }
}
.wp-block-group.mini-card-grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.375rem;
  margin-top: 60px;
}
.wp-block-group.mini-card-grid-3 .is-style-mini-card {
  flex: 0 1 calc(33.333% - 1.375rem);
  max-width: calc(33.333% - 1.375rem);
}
@media only screen and (max-width: 1000px) {
  .wp-block-group.mini-card-grid-3 .is-style-mini-card {
    flex: 0 1 calc(50% - 1.375rem);
    max-width: calc(50% - 1.375rem);
  }
}
@media only screen and (max-width: 539px) {
  .wp-block-group.mini-card-grid-3 .is-style-mini-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
.wp-block-group.is-style-cta-card-simple, .wp-block-group.is-style-card {
  padding: 30px;
}
.wp-block-group.is-style-card-reduced-padding {
  padding: 20px;
}
.wp-block-group:has(.is-style-card) .is-style-card {
  height: 100%;
}
.wp-block-group.is-style-card-product-c {
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  padding: 40px;
}
.wp-block-group.is-style-card-feature-c {
  padding: 40px 25px;
}
.wp-block-group.is-style-card-d {
  aspect-ratio: 1/1.1;
}
.wp-block-group.is-style-card-d .wp-block-group {
  height: 100%;
}
.wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group {
  background-color: var(--wp--preset--color--primary) !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group img {
  display: none;
}
.wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group .h3, .wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group .h4, .wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group .h5, .wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group .h6, .wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group p, .wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group a {
  color: #fff;
}
.wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group h3 > a {
  display: block;
  position: relative;
  padding-right: 2rem;
}
.wp-block-group.is-style-card-d:hover:not(.block-editor-block-list__block) .wp-block-group h3 > a:after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 2.135rem;
  color: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: white;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.is-layout-grid .wp-block-group.span-2 {
    grid-column: span 2;
  }
}
.wp-block-group.is-style-content-width-corner-cutout {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.is-style-content-width-corner-cutout {
    clip-path: polygon(100% 0, 100% 76%, 89.5% 100%, 0 100%, 0 0);
  }
}
.wp-block-group.is-style-content-width-corner-cutout .wrap {
  position: static;
  padding-inline: 30px;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.is-style-content-width-corner-cutout .wrap {
    padding-inline: 60px;
  }
}
.wp-block-group.is-style-content-width-corner-cutout .wrap .wp-block-column:has(.is-style-float-right-block) {
  display: none;
}
@media only screen and (min-width: 780px) {
  .wp-block-group.is-style-content-width-corner-cutout .wrap .wp-block-column:has(.is-style-float-right-block) {
    display: block;
  }
  .wp-block-group.is-style-content-width-corner-cutout .wrap .wp-block-column:has(.is-style-float-right-block) img {
    width: calc(50% - 1.7rem);
  }
}
.wp-block-group.is-style-series-card {
  padding: 3.75rem 2.5rem;
  max-width: 600px;
  height: 100%;
}
.wp-block-group.is-style-series-card h2, .wp-block-group.is-style-series-card h3 {
  margin-bottom: 1.25rem;
}
.wp-block-group.is-style-full-product-card {
  padding-block: 1rem 40px;
  padding-inline: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wp-block-group.is-style-full-product-card figure + * {
  margin-top: 0;
}
.wp-block-group.is-style-full-product-card p:last-child:has(a) {
  display: flex;
  flex: 0 1 100%;
  align-items: end;
}
.wp-block-group.is-style-full-product-card p:last-child:has(a) a {
  text-decoration: none;
}
.wp-block-group:has(> .is-style-table-style) {
  padding: 3.75rem 2.5rem !important;
  border: 1px solid #989fa5;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.wp-block-group.is-style-resource-card {
  height: 100%;
  padding: 40px 30px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: background-color 1s ease;
  --hover-color: var(--wp--preset--color--primary);
  --hover-text-color: #ffffff;
  overflow: hidden;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block) h3, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block) h4, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block) h5, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block) h6, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block) p {
  transition: color 1s ease-in-out;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block) .wp-block-buttons {
  margin-top: 0;
  transition: height 0.5s ease-in;
  height: 0;
  overflow: hidden;
  transform-origin: bottom;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover {
  background-color: var(--wp--preset--color--primary) !important;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover .lpw-group-icon {
  height: 0 !important;
  overflow: hidden;
  padding: 0;
  background-color: transparent !important;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover .lpw-group-icon svg path {
  fill: transparent !important;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover h3, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover h4, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover h5, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover h6, .wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover p {
  color: white;
}
.wp-block-group.is-style-resource-card:not(.block-editor-block-list__block):hover .wp-block-buttons {
  height: 100px;
}

@media only screen and (min-width: 768px) {
  figure.is-style-float-right > img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
  }
  figure.is-style-float-right-block > img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 43vw;
    object-fit: cover;
  }
  figure.is-style-float-right-block.image-half > img {
    width: 50vw;
  }
  figure.is-style-float-left > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
  }
  figure.is-style-float-left-block > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 43vw;
    object-fit: cover;
  }
  figure.is-style-float-left-block.image-half > img {
    width: 50vw;
  }
}
figure.is-style-image-cutout-right {
  clip-path: polygon(100% 0, 100% 73%, 78% 100%, 0 100%, 0 0);
}
figure.is-style-image-cutout-right > .components-resizable-box__container {
  height: 100%;
}
figure.is-style-image-cutout-right-with-decoration {
  position: relative;
  clip-path: polygon(100% 0, 100% 73%, 78% 100%, 0 100%, 0 0);
}
figure.is-style-image-cutout-right-with-decoration.block-editor-block-list__block {
  padding-top: 2rem;
  padding-left: 2rem;
}
figure.is-style-image-cutout-right-with-decoration > img {
  margin-left: 2rem;
  margin-top: 2rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
}
figure.is-style-image-cutout-right-with-decoration:before {
  content: "";
  background-color: var(--wp--preset--color--primary);
  opacity: 0.2;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 82%;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: -1;
}
figure.is-style-image-cutout-left {
  clip-path: polygon(100% 0, 100% 100%, 22% 100%, 0 73%, 0 0);
}
figure.is-style-image-cutout-left > .components-resizable-box__container {
  height: 100%;
}
figure.is-style-image-cutout-left-with-decoration {
  clip-path: polygon(100% 0, 100% 100%, 22% 100%, 0 73%, 0 0);
  position: relative;
}
figure.is-style-image-cutout-left-with-decoration > img {
  margin-left: 2rem;
  margin-top: 2rem;
  width: calc(100% - 2rem);
  height: calc(100% - 2rem);
}
figure.is-style-image-cutout-left-with-decoration:before {
  content: "";
  background-color: var(--wp--preset--color--primary);
  opacity: 0.2;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 82%;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: -1;
}
figure.is-style-enlarge-left > img {
  transform-origin: top right;
  transform: scale(1.15);
}
figure.is-style-enlarge-right > img {
  transform-origin: top left;
  transform: scale(1.15);
}

@media only screen and (min-width: 768px) {
  .wp-block-group.is-style-corner-cutout {
    clip-path: polygon(100% 0, 100% 76%, 89.5% 100%, 0 100%, 0 0);
  }
}
.wp-block-group.align-wrap-center > .wrap {
  padding-top: 100px;
  padding-bottom: 100px;
}
.wp-block-group.top-banner figure {
  display: none;
}
@media only screen and (min-width: 768px) {
  .wp-block-group.top-banner figure {
    display: block;
  }
}
.wp-block-group.darken-background {
  background-blend-mode: darken;
}
.wp-block-group.is-style-right-side-full-image {
  position: relative;
}
.wp-block-group.is-style-right-side-full-image .wrap {
  position: static;
}
.wp-block-group.is-style-right-side-full-image .wrap .wp-block-column:has(.is-style-float-right-block) {
  display: none;
}
@media only screen and (min-width: 780px) {
  .wp-block-group.is-style-right-side-full-image .wrap .wp-block-column:has(.is-style-float-right-block) {
    display: block;
  }
}

.braftonium-contentlist.is-style-arrow-card .list-item {
  background: transparent;
  padding: 0;
  position: relative;
  flex-grow: 0;
}
.braftonium-contentlist.is-style-arrow-card .list-item:after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 2.135rem;
  color: inherit;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  transform: rotate(-45deg);
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content {
  padding: 84px 40px 30px;
  clip-path: polygon(79% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
  background-color: white;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .date {
  color: var(--wp-preset--color--slate-gray, #989FA5);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26.25px;
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .list-item-title, .braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .list-item-meta, .braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .list-item-excerpt {
  color: var(--wp--preset--color--straight-black);
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .list-item-title {
  font-weight: 700;
  line-height: 1.3em;
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .button-container {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: baseline;
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .button-container .list-item-btn {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26.25px;
  position: relative;
}
.braftonium-contentlist.is-style-arrow-card .list-item .list-item-content .button-container .list-item-btn:after {
  content: "\ea2a";
  font-family: "Lineicons";
  font-size: 1em;
  color: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.braftonium-contentlist.is-style-arrow-card .list-item:hover:after {
  color: var(--wp--preset--color--primary);
}
.braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content {
  background-color: var(--wp--preset--color--primary);
}
.braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-title, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-meta, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-excerpt, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .date, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-btn {
  color: white;
}
.braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-title a, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-meta a, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-excerpt a, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .date a, .braftonium-contentlist.is-style-arrow-card .list-item:hover .list-item-content .list-item-btn a {
  color: white;
}

.wp-block-lpw-group-tab-block,
.wp-block-tab-block {
  padding: 2px;
  --tab-hover-color: var(--wp--preset--color--secondary);
  position: relative;
}
.wp-block-lpw-group-tab-block .tab-list-items,
.wp-block-tab-block .tab-list-items {
  height: 4rem;
  overflow-x: auto;
  z-index: 99;
  width: 100%;
  transition: 0.5s height ease-in-out;
}
.wp-block-lpw-group-tab-block .tab-list-items.open,
.wp-block-tab-block .tab-list-items.open {
  height: fit-content;
  border-bottom: 3px rgba(0, 0, 0, 0.05) solid;
}
.wp-block-lpw-group-tab-block .tab-list-items.open:before,
.wp-block-tab-block .tab-list-items.open:before {
  transform: rotate(-90deg);
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block .tab-list-items,
  .wp-block-tab-block .tab-list-items {
    height: unset;
    overflow-x: auto;
    background-color: transparent;
    box-shadow: initial;
    position: relative;
  }
  .wp-block-lpw-group-tab-block .tab-list-items::-webkit-scrollbar,
  .wp-block-tab-block .tab-list-items::-webkit-scrollbar {
    width: 12px;
    height: 7px;
  }
  .wp-block-lpw-group-tab-block .tab-list-items::-webkit-scrollbar-track,
  .wp-block-tab-block .tab-list-items::-webkit-scrollbar-track {
    background: lightgray;
    border-radius: 10px;
    height: 7px;
  }
  .wp-block-lpw-group-tab-block .tab-list-items::-webkit-scrollbar-thumb,
  .wp-block-tab-block .tab-list-items::-webkit-scrollbar-thumb {
    background-color: #989FA5;
    border-radius: 10px;
    width: 100px;
    height: 7px;
  }
  .wp-block-lpw-group-tab-block .tab-list-items.open,
  .wp-block-tab-block .tab-list-items.open {
    height: unset;
    border-bottom: none;
  }
  .wp-block-lpw-group-tab-block .tab-list-items:before,
  .wp-block-tab-block .tab-list-items:before {
    display: none;
  }
}
.wp-block-lpw-group-tab-block .tab-list,
.wp-block-tab-block .tab-list {
  display: flex;
  width: 100%;
  position: relative;
  justify-content: flex-start;
  flex-direction: row;
  height: 70px;
  overflow-x: visible;
  padding-inline: 1rem;
  gap: 1rem;
  list-style: none;
  margin-bottom: 1rem;
}
.wp-block-lpw-group-tab-block .tab-list::-webkit-scrollbar,
.wp-block-tab-block .tab-list::-webkit-scrollbar {
  /* For Chrome, Safari, and Edge */
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block .tab-list,
  .wp-block-tab-block .tab-list {
    padding-top: 2rem;
    padding-inline: initial;
    height: calc(70px + 2rem);
  }
  .wp-block-lpw-group-tab-block .tab-list::-webkit-scrollbar,
  .wp-block-tab-block .tab-list::-webkit-scrollbar {
    /* For Chrome, Safari, and Edge */
  }
}
.wp-block-lpw-group-tab-block .tab-list button,
.wp-block-lpw-group-tab-block .tab-list li,
.wp-block-tab-block .tab-list button,
.wp-block-tab-block .tab-list li {
  flex: 0 1 calc(33.33% - 1rem);
  min-width: 157px;
  order: unset;
  height: unset;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  cursor: pointer;
  border: 0;
  background-color: transparent;
  text-align: center;
}
.wp-block-lpw-group-tab-block .tab-list button span,
.wp-block-lpw-group-tab-block .tab-list li span,
.wp-block-tab-block .tab-list button span,
.wp-block-tab-block .tab-list li span {
  line-height: 1.66666;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
}
.wp-block-lpw-group-tab-block .tab-list button span:after,
.wp-block-lpw-group-tab-block .tab-list li span:after,
.wp-block-tab-block .tab-list button span:after,
.wp-block-tab-block .tab-list li span:after {
  position: absolute;
  bottom: -4px;
  border-bottom: 4px solid var(--tab-hover-color);
  width: 0px;
  display: block;
  content: "";
  transition: 0.5s width ease-in-out;
}
.wp-block-lpw-group-tab-block .tab-list button .tab-filter-content,
.wp-block-lpw-group-tab-block .tab-list li .tab-filter-content,
.wp-block-tab-block .tab-list button .tab-filter-content,
.wp-block-tab-block .tab-list li .tab-filter-content {
  display: none;
}
@media (hover: hover) {
  .wp-block-lpw-group-tab-block .tab-list button:hover span, .wp-block-lpw-group-tab-block .tab-list button.active span,
  .wp-block-lpw-group-tab-block .tab-list li:hover span,
  .wp-block-lpw-group-tab-block .tab-list li.active span,
  .wp-block-tab-block .tab-list button:hover span,
  .wp-block-tab-block .tab-list button.active span,
  .wp-block-tab-block .tab-list li:hover span,
  .wp-block-tab-block .tab-list li.active span {
    font-weight: bold;
  }
  .wp-block-lpw-group-tab-block .tab-list button:hover span:after, .wp-block-lpw-group-tab-block .tab-list button.active span:after,
  .wp-block-lpw-group-tab-block .tab-list li:hover span:after,
  .wp-block-lpw-group-tab-block .tab-list li.active span:after,
  .wp-block-tab-block .tab-list button:hover span:after,
  .wp-block-tab-block .tab-list button.active span:after,
  .wp-block-tab-block .tab-list li:hover span:after,
  .wp-block-tab-block .tab-list li.active span:after {
    width: 100%;
  }
}
.wp-block-lpw-group-tab-block .tab-list button.active span,
.wp-block-lpw-group-tab-block .tab-list li.active span,
.wp-block-tab-block .tab-list button.active span,
.wp-block-tab-block .tab-list li.active span {
  font-weight: bold;
}
.wp-block-lpw-group-tab-block .tab-list button.active span:after,
.wp-block-lpw-group-tab-block .tab-list li.active span:after,
.wp-block-tab-block .tab-list button.active span:after,
.wp-block-tab-block .tab-list li.active span:after {
  width: 100%;
}
.wp-block-lpw-group-tab-block.standard .tab-group-container, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container,
.wp-block-tab-block.standard .tab-group-container,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container {
  width: 100%;
  overflow-x: scroll;
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  margin-top: 1rem;
  background: white;
  scroll-snap-type: x mandatory;
}
.wp-block-lpw-group-tab-block.standard .tab-group-container::-webkit-scrollbar, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container::-webkit-scrollbar,
.wp-block-tab-block.standard .tab-group-container::-webkit-scrollbar,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container::-webkit-scrollbar {
  display: none;
  /* For Chrome, Safari, and Edge */
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.standard .tab-group-container, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container,
  .wp-block-tab-block.standard .tab-group-container,
  .wp-block-tab-block.is-style-specs-tabs .tab-group-container {
    scroll-snap-type: none;
    margin-top: 0;
    overflow: hidden;
    margin-top: 1rem;
  }
}
.wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group,
.wp-block-tab-block.standard .tab-group-container > .wp-block-group,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group {
  width: 100%;
  flex: 1 0 100%;
  padding: 2rem;
  scroll-snap-align: center;
  scroll-margin: 200px;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group,
  .wp-block-tab-block.standard .tab-group-container > .wp-block-group,
  .wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group {
    order: 2;
    scroll-snap-align: initial;
    position: absolute;
    z-index: -1;
  }
}
.wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group:first-child, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group:first-child,
.wp-block-tab-block.standard .tab-group-container > .wp-block-group:first-child,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group:first-child {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group,
  .wp-block-tab-block.standard .tab-group-container > .wp-block-group,
  .wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group {
    padding: 100px;
  }
}
.wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group.active, .wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group:focus-within, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group.active, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group:focus-within,
.wp-block-tab-block.standard .tab-group-container > .wp-block-group.active,
.wp-block-tab-block.standard .tab-group-container > .wp-block-group:focus-within,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group.active,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group:focus-within {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group.active, .wp-block-lpw-group-tab-block.standard .tab-group-container > .wp-block-group:focus-within, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group.active, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group:focus-within,
  .wp-block-tab-block.standard .tab-group-container > .wp-block-group.active,
  .wp-block-tab-block.standard .tab-group-container > .wp-block-group:focus-within,
  .wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group.active,
  .wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group:focus-within {
    order: 1;
    animation: slide-in 0.5s ease-in-out;
    z-index: 2;
  }
}
.wp-block-lpw-group-tab-block.standard .tab-markers, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-markers,
.wp-block-tab-block.standard .tab-markers,
.wp-block-tab-block.is-style-specs-tabs .tab-markers {
  margin-top: 35px;
}
.wp-block-lpw-group-tab-block.standard .tab-markers .tab-marker-list, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list,
.wp-block-tab-block.standard .tab-markers .tab-marker-list,
.wp-block-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list {
  opacity: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.standard .tab-markers .tab-marker-list, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list,
  .wp-block-tab-block.standard .tab-markers .tab-marker-list,
  .wp-block-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list {
    opacity: 1;
  }
}
.wp-block-lpw-group-tab-block.standard .tab-markers .tab-marker-list li, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list li,
.wp-block-tab-block.standard .tab-markers .tab-marker-list li,
.wp-block-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list li {
  list-style: none;
  width: 6px;
  height: 6px;
  background-color: #989FA5;
  border-radius: 10px;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
.wp-block-lpw-group-tab-block.standard .tab-markers .tab-marker-list li.active, .wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list li.active,
.wp-block-tab-block.standard .tab-markers .tab-marker-list li.active,
.wp-block-tab-block.is-style-specs-tabs .tab-markers .tab-marker-list li.active {
  width: 20px;
  height: 6px;
  background-color: var(--wp--preset--color--secondary, #F5F5F5);
  border-radius: 10px;
}
.wp-block-lpw-group-tab-block.filtered .tab-list-items .tab-list,
.wp-block-tab-block.filtered .tab-list-items .tab-list {
  padding-top: 0;
  gap: 60px;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.filtered .tab-list-items .tab-list,
  .wp-block-tab-block.filtered .tab-list-items .tab-list {
    justify-content: center;
  }
}
.wp-block-lpw-group-tab-block.filtered .tab-list-items .tab-list button,
.wp-block-tab-block.filtered .tab-list-items .tab-list button {
  min-width: fit-content;
  flex: 0 1 auto;
}
.wp-block-lpw-group-tab-block.is-style-side-tabs,
.wp-block-tab-block.is-style-side-tabs {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.is-style-side-tabs,
  .wp-block-tab-block.is-style-side-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 120px;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list-items,
  .wp-block-tab-block.is-style-side-tabs .tab-list-items {
    height: 100%;
    overflow: visible;
    width: 4rem;
    flex-direction: column;
    padding-inline: 0;
    flex: 0 1 25%;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list,
  .wp-block-tab-block.is-style-side-tabs .tab-list {
    flex-direction: column;
    height: 100%;
    overflow: visible;
    padding-inline: 0;
    gap: 20px;
    display: flex;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li,
  .wp-block-tab-block.is-style-side-tabs .tab-list button,
  .wp-block-tab-block.is-style-side-tabs .tab-list li {
    padding-left: 0;
    flex: unset;
    min-width: unset;
    width: 100%;
    border: 0;
    background: none;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 41.42px;
    color: var(--wp--preset--color--text--color, #000000);
    text-align: left;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button span,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li span,
  .wp-block-tab-block.is-style-side-tabs .tab-list button span,
  .wp-block-tab-block.is-style-side-tabs .tab-list li span {
    line-height: inherit;
    font-size: inherit;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button span:after,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li span:after,
  .wp-block-tab-block.is-style-side-tabs .tab-list button span:after,
  .wp-block-tab-block.is-style-side-tabs .tab-list li span:after {
    display: none;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button span:hover:after,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li span:hover:after,
  .wp-block-tab-block.is-style-side-tabs .tab-list button span:hover:after,
  .wp-block-tab-block.is-style-side-tabs .tab-list li span:hover:after {
    display: none;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active, .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button:hover,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li:hover,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active,
  .wp-block-tab-block.is-style-side-tabs .tab-list button:hover,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active,
  .wp-block-tab-block.is-style-side-tabs .tab-list li:hover {
    color: var(--wp--preset--color--primary, #F5F5F5);
    position: relative;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active:before, .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button:hover:before,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active:before,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li:hover:before,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active:before,
  .wp-block-tab-block.is-style-side-tabs .tab-list button:hover:before,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active:before,
  .wp-block-tab-block.is-style-side-tabs .tab-list li:hover:before {
    content: "";
    display: block;
    width: 9.08px;
    height: 9.08px;
    background-color: var(--wp--preset--color--primary, #F5F5F5);
    position: absolute;
    top: 20.71px;
    left: -18px;
    transform: translateY(-50%);
    border-radius: 100%;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active {
    display: block;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content {
    display: block;
    cursor: text;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content *,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content *,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content *,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content * {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul {
    list-style-type: disc;
    list-style: disc;
    padding: 0;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul li,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul li,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul li,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul li {
    cursor: text;
    list-style-type: disc;
    list-style: disc;
    padding-left: 0;
    position: relative;
    color: var(--wp--preset--color--black, #000);
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul li:hover,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul li:hover,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul li:hover,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul li:hover {
    color: var(--wp--preset--color--black, #000);
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul li:before,
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul li:before,
  .wp-block-tab-block.is-style-side-tabs .tab-list button.active .tab-filter-content ul li:before,
  .wp-block-tab-block.is-style-side-tabs .tab-list li.active .tab-filter-content ul li:before {
    display: block;
    top: 15px;
    background-color: inherit;
    width: 3px;
    height: 3px;
    content: "";
    position: absolute;
    left: -1rem;
    background: black;
    border-radius: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-list button,
  .wp-block-tab-block.is-style-side-tabs .tab-list button {
    flex: 0 1 160px;
    min-width: fit-content;
    max-width: 160px;
  }
}
.wp-block-lpw-group-tab-block.is-style-side-tabs .tab-group-container,
.wp-block-tab-block.is-style-side-tabs .tab-group-container {
  flex: 0 1 66%;
}
@media only screen and (min-width: 480px) {
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-group-container,
  .wp-block-tab-block.is-style-side-tabs .tab-group-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 20px;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-group-container .wp-block-lpw-group-filtered-tab,
  .wp-block-tab-block.is-style-side-tabs .tab-group-container .wp-block-lpw-group-filtered-tab {
    flex: 0 1 calc(50% - 10px);
    margin-bottom: 0;
  }
  .wp-block-lpw-group-tab-block.is-style-side-tabs .tab-group-container .wp-block-lpw-group-filtered-tab.is-style-span-2,
  .wp-block-tab-block.is-style-side-tabs .tab-group-container .wp-block-lpw-group-filtered-tab.is-style-span-2 {
    flex: 0 1 100%;
  }
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-markers,
.wp-block-tab-block.is-style-timeline .tab-markers {
  display: none !important;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items,
.wp-block-tab-block.is-style-timeline .tab-list-items {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items,
  .wp-block-tab-block.is-style-timeline .tab-list-items {
    padding-inline: 40px;
  }
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn {
  position: absolute;
  display: none;
  border: none;
  background: none;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 60%;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn,
  .wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn,
  .wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn {
    display: block;
  }
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:active:after, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:hover:after, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:active:after, .wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:hover:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:active:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:hover:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:active:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:hover:after {
  color: var(--wp--preset--color--primary);
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn {
  left: 16px;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-before-btn:after {
  content: "\e804";
  transform: rotate(180deg);
  font-size: 1.5rem;
  color: var(--wp--preset--color--text--color, #000000);
  display: block;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn {
  right: 16px;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .timeline-after-btn:after {
  content: "\e804";
  font-size: 1.5rem;
  color: var(--wp--preset--color--text--color, #000000);
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list {
  gap: 0;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button {
  width: fit-content;
  min-width: 100px;
  position: relative;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button span,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button span {
  transition: transform 0.5s ease-in-out;
  display: block;
  width: 100%;
  position: static;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button span:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button span:after {
  display: none;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button:before,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button:before {
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #989FA5;
  border: none;
  border-radius: 100%;
  bottom: 7px;
  z-index: 99;
  left: 50%;
  display: block;
  content: "";
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button:after {
  background-color: #989FA5;
  height: 2px;
  width: 100%;
  position: absolute;
  content: "";
  bottom: 9px;
  transform: translateY(-50%);
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button:first-child:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button:first-child:after {
  width: 50%;
  right: 0;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list button:last-child:after,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list button:last-child:after {
  width: 50%;
  left: 0;
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list .active:before,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list .active:before {
  background-color: var(--wp--preset--color--primary);
}
.wp-block-lpw-group-tab-block.is-style-timeline .tab-list-items .tab-list .active span,
.wp-block-tab-block.is-style-timeline .tab-list-items .tab-list .active span {
  transform: scale(1.3);
}
.wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-list,
.wp-block-tab-block.is-style-specs-tabs .tab-list {
  gap: 3.125rem;
  padding-top: 0;
  height: 35px;
}
.wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-list button,
.wp-block-tab-block.is-style-specs-tabs .tab-list button {
  flex: 0 1 auto;
  min-width: fit-content;
  align-items: baseline;
}
.wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-list button span,
.wp-block-tab-block.is-style-specs-tabs .tab-list button span {
  --tab-hover-color: var(--wp--preset--color--primary);
}
.wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group {
  padding: 0;
}
.wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group.active,
.wp-block-tab-block.is-style-specs-tabs .tab-group-container > .wp-block-group.active {
  animation: none;
}
.wp-block-lpw-group-tab-block.is-style-specs-tabs .tab-markers,
.wp-block-tab-block.is-style-specs-tabs .tab-markers {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-tab-block.constrain-tabs .tab-list-items,
  .wp-block-tab-block.constrain-tabs .tab-list-items {
    width: fit-content;
    margin-inline: auto;
    max-width: 100%;
  }
}

@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.wp-block-lpw-group-filtered-tab {
  margin-bottom: 2rem;
  opacity: 1;
  max-height: 1000px;
  transition: opacity 0.75s ease-in-out, max-height 0.5s ease-in-out;
  overflow: hidden;
}
.wp-block-lpw-group-filtered-tab .wp-block-columns {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .wp-block-lpw-group-filtered-tab .wp-block-columns {
    gap: 0;
  }
}
.wp-block-lpw-group-filtered-tab.hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  display: none;
}
.wp-block-lpw-group-filtered-tab .is-style-image-cutout-right, .wp-block-lpw-group-filtered-tab .is-style-image-cutout-left {
  position: relative;
  height: 100% !important;
  width: 100% !important;
}
@media only screen and (min-width: 768px) {
  .wp-block-lpw-group-filtered-tab .is-style-image-cutout-right img, .wp-block-lpw-group-filtered-tab .is-style-image-cutout-left img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (max-width: 768px) {
  .wp-block-lpw-group-filtered-tab .wp-block-columns .wp-block-column:has(.is-style-image-cutout-left) {
    order: 2;
  }
}
.wp-block-lpw-group-filtered-tab:has(.is-style-small-card).hidden {
  display: none;
}

.is-style-small-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.is-style-small-card > *:not(figure) {
  padding-inline: 20px;
  margin-block: 0;
}
.is-style-small-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-style-small-card h2, .is-style-small-card h3, .is-style-small-card h4, .is-style-small-card h5, .is-style-small-card h6 {
  margin-block: 0;
}
.is-style-small-card .wp-block-buttons {
  margin-block: 0;
}
.is-style-small-card .wp-block-buttons a {
  padding-left: 0;
}

@media only screen and (min-width: 540px) and (max-width: 767px) {
  .wp-block-columns.maintain-mobile-2 .wp-block-column {
    flex-basis: calc(50% - 1.7rem) !important;
    width: calc(50% - 1.7rem) !important;
  }
}
.wp-block-columns.simple-inline-cta {
  padding: 25px;
}
@media only screen and (min-width: 768px) {
  .wp-block-columns.simple-inline-cta {
    padding: 70px 102px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 103px), calc(100% - 103px) 100%, 0 100%);
  }
}
.wp-block-columns.simple-inline-cta p.h2 {
  line-height: 1.29 !important;
  margin-bottom: 0 !important;
}
.wp-block-columns.is-style-table-style {
  border-bottom: 1px solid #989fa5;
  margin-top: 0;
  padding-bottom: 30px;
  width: 100%;
}
.wp-block-columns.is-style-table-style:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .wp-block-columns.reverse-mobile-columns {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 767px) {
  .wp-block-columns:has(.is-style-simple-list) {
    gap: 0;
  }
}

.braftonium-slider.slick-dots-bottom .slick-dots {
  margin-top: 35px;
  bottom: -35px;
  opacity: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .braftonium-slider.slick-dots-bottom .slick-dots {
    opacity: 1;
  }
}
.braftonium-slider.slick-dots-bottom .slick-dots li {
  list-style: none;
  width: 6px;
  height: 6px;
  margin: 0;
}
.braftonium-slider.slick-dots-bottom .slick-dots li:last-child {
  margin-right: 0;
}
.braftonium-slider.slick-dots-bottom .slick-dots li button {
  border: none;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: white;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out, background-color 0.5s ease-in-out;
  padding: 0;
}
.braftonium-slider.slick-dots-bottom .slick-dots li button:before {
  display: none;
}
.braftonium-slider.slick-dots-bottom .slick-dots li.slick-active {
  width: 20px;
}
.braftonium-slider.slick-dots-bottom .slick-dots li.slick-active button {
  width: 20px;
  height: 6px;
  background-color: var(--wp--preset--color--primary, #F5F5F5);
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .full-width-cta .wrap {
    padding-block: 50px !important;
  }
  .full-width-cta .wrap .wp-block-columns .wp-block-column {
    padding: 3rem 2rem !important;
  }
  .full-width-cta .wrap .wp-block-columns .wp-block-column:empty {
    display: none;
  }
}

.remove-top-padding {
  padding-top: 0 !important;
}
.remove-top-padding > .wp-block-button__link {
  padding-top: 0 !important;
}

.remove-bottom-padding {
  padding-bottom: 0 !important;
}
.remove-bottom-padding > .wp-block-button__link {
  padding-bottom: 0 !important;
}

.remove-padding {
  padding: 0 !important;
}
.remove-padding > .wp-block-button__link {
  padding-block: 0 !important;
}

.reduce-padding {
  padding-block: 30px !important;
}

.reduce-padding-top {
  padding-top: 30px !important;
}

.reduce-padding-bottom {
  padding-bottom: 30px !important;
}

.remove-top-margin {
  margin-top: 0 !important;
}

.remove-margin {
  margin: 0 !important;
}

.remove-bottom-margin {
  margin-bottom: 0 !important;
}

@media only screen and (min-width: 768px) {
  .skinny {
    width: 75%;
    margin-inline: auto;
    display: block;
  }
  .skinny.has-text-align-left {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .skinny-60 {
    width: 60%;
    margin-inline: auto;
    display: block;
  }
  .skinny-60.has-text-align-left {
    margin-left: 0 !important;
  }
}

.full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

blockquote {
  position: relative;
  padding: 0 !important;
}
blockquote:before {
  content: "";
  width: 2px;
  background-color: var(--wp--preset--color--primary);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  z-index: -1;
}
blockquote > * {
  font-size: clamp(20px, 2vw + 1rem, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.65;
  padding-left: 1rem;
}
blockquote p {
  margin-left: 1rem;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}
blockquote cite {
  margin-block-start: 0 !important;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  padding-left: 0;
  background: white;
  margin-block-start: 0;
  padding-block-start: 1.7rem;
}
blockquote cite em {
  font-style: normal;
}
blockquote.is-style-testimonial {
  margin-block: 50px;
  padding: 3.75rem 3rem !important;
  margin-inline: 0;
}
@media only screen and (min-width: 991px) {
  blockquote.is-style-testimonial {
    padding: 3.75rem 6.5rem !important;
    margin-block: 100px;
  }
}
blockquote.is-style-testimonial > * {
  font-weight: 700;
  line-height: 1.294375;
  font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}
blockquote.is-style-testimonial p {
  margin-left: 0;
  padding-left: 0;
}
blockquote.is-style-testimonial:before {
  margin-bottom: 40px;
  left: 3rem;
  position: static;
  content: "";
  width: 68px;
  height: 56px;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='69' height='56' viewBox='0 0 69 56' fill='none'%3E%3Cg clip-path='url(%23clip0_3348_4821)'%3E%3Cpath d='M29.312 26.546H17.7119C18.2768 23.9971 19.3125 21.4483 20.7625 18.9938C22.4385 16.1428 24.8866 12.9708 28.0126 9.57232C28.1821 9.38352 28.2762 9.11919 28.2574 8.85486C28.2386 8.59053 28.1068 8.34508 27.8996 8.19404L17.7495 0.207523C17.3729 -0.0945669 16.8456 -0.0568056 16.5066 0.283046C10.7443 6.06052 6.58253 11.8946 4.15328 17.6532C1.72404 23.393 0.5 29.869 0.5 36.8926V55.0558C0.5 55.5845 0.91429 55.9998 1.44157 55.9998H29.312C29.8392 55.9998 30.2535 55.5845 30.2535 55.0558V27.5089C30.2535 26.9803 29.8392 26.5649 29.312 26.5649V26.546Z' fill='%23F7F7F8'/%3E%3Cpath d='M67.5581 26.5463H55.9579C56.5229 23.9974 57.5586 21.4485 59.0086 18.994C60.6846 16.143 63.1327 12.9711 66.2587 9.57257C66.4282 9.38376 66.5223 9.11943 66.5035 8.8551C66.4847 8.59077 66.3529 8.34533 66.1457 8.19428L55.9956 0.207768C55.619 -0.0943228 55.0917 -0.0565615 54.7527 0.28329C48.9903 6.06077 44.8286 11.9138 42.3994 17.6535C39.9701 23.3932 38.7461 29.8693 38.7461 36.8929V55.056C38.7461 55.5847 39.1604 56.0001 39.6877 56.0001H67.5769C68.1042 56.0001 68.5185 55.5847 68.5185 55.056V27.5092C68.5185 26.9805 68.1042 26.5652 67.5769 26.5652L67.5581 26.5463Z' fill='%23F7F7F8'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3348_4821'%3E%3Crect width='68' height='56' fill='white' transform='translate(0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

@media only screen and (min-width: 1200px) {
  .expand-section {
    width: calc(100% + 200px);
    margin-left: -100px;
  }
}

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

@media only screen and (max-width: 991px) {
  .hide-on-tablet {
    display: none !important;
  }
}

@media only screen and (min-width: 1029px) {
  .hide-on-desktop {
    display: none !important;
  }
}

.show-on-desktop {
  display: none !important;
}
@media only screen and (min-width: 1029px) {
  .show-on-desktop {
    display: block !important;
  }
}

@media only screen and (min-width: 768px) {
  p.columns-2, ul.columns-2, ol.columns-2 {
    column-count: 2;
    column-gap: 2.5625rem;
  }
  p.columns-2 li, ul.columns-2 li, ol.columns-2 li {
    break-inside: avoid;
  }
}
@media only screen and (min-width: 768px) {
  p.columns-3, ul.columns-3, ol.columns-3 {
    column-count: 3;
    column-gap: 2.5625rem;
  }
  p.columns-3 li, ul.columns-3 li, ol.columns-3 li {
    break-inside: avoid;
  }
}

.bold-everything {
  font-weight: 700;
}

header.main-header {
  background-color: #EAECED;
}
header.main-header #logo {
  margin: 0;
  width: 150px;
  max-height: 105px;
  margin-block-end: 0 !important;
}
@media only screen and (min-width: 996px) {
  header.main-header #logo {
    width: fit-content;
    display: flex;
    align-items: end;
    max-height: 100%;
    align-items: center;
  }
}
header.main-header #logo img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-block: 7px;
  width: 100%;
  max-height: 100%;
}
header.main-header button.menu-toggle {
  border: 0px;
  background: transparent;
}
header.main-header .social-links {
  display: none;
  padding-block: 13.5px;
  padding-right: 1.375rem;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
@media only screen and (min-width: 996px) {
  header.main-header .social-links {
    display: flex;
  }
}
header.main-header .social-links span a {
  display: flex;
}
header.main-header .social-links span img {
  filter: brightness(0.5);
  max-height: 18px;
}
header.main-header nav.main {
  flex: 1 0 auto;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media only screen and (min-width: 996px) {
  header.main-header nav.main {
    align-items: flex-end;
  }
}
header.main-header nav.main > ul {
  background-color: white;
}
@media only screen and (min-width: 996px) {
  header.main-header nav.main > ul {
    padding: 21.5px 0 0;
    width: 74%;
    min-width: fit-content;
    display: flex;
    justify-content: end;
    padding-left: 91px;
    gap: clamp(12px, 2vw + 10px, 35px);
  }
  header.main-header nav.main > ul:before {
    background: #EAECED;
    content: "";
    position: absolute;
    left: -1px;
    top: -1px;
    height: calc(100% + 1px);
    width: auto;
    z-index: 2;
    aspect-ratio: 1/1;
    clip-path: polygon(100% 0, 0 100%, 0 0);
    pointer-events: none;
  }
  header.main-header nav.main > ul:after {
    background: white;
    content: "";
    display: block;
    position: absolute;
    width: calc((99vw - 1200px) / 2);
    min-width: 1rem;
    height: 100%;
    top: 0;
    transform: translateX(99%);
  }
}

.blog .searchform > div, .archive .searchform > div {
  position: relative;
}
.blog .searchform > div:has(input[type=search]):after, .archive .searchform > div:has(input[type=search]):after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  /* font-size: 120%; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e803";
  color: #989FA5;
  position: absolute;
  top: 50%;
  right: 1.18rem;
  transform: translateY(-50%);
}
.blog .featured-post, .archive .featured-post {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--wp--preset--color--universal-black);
  position: relative;
  padding: 50px 0;
}
@media only screen and (min-width: 767px) {
  .blog .featured-post, .archive .featured-post {
    padding-block: 100px;
    clip-path: polygon(100% 0, 100% 76%, 89.5% 100%, 0 100%, 0 0);
  }
}
.blog .featured-post .wrap, .archive .featured-post .wrap {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 767px) {
  .blog .featured-post .wrap, .archive .featured-post .wrap {
    flex-wrap: nowrap;
  }
  .blog .featured-post .wrap .article-header, .archive .featured-post .wrap .article-header {
    flex: 0 1 48%;
  }
  .blog .featured-post .wrap .entry-content, .archive .featured-post .wrap .entry-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    height: 100%;
  }
  .blog .featured-post .wrap .entry-content img, .archive .featured-post .wrap .entry-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.blog .featured-post .wrap .entry-content, .archive .featured-post .wrap .entry-content {
  padding-top: 2rem;
}
@media only screen and (min-width: 767px) {
  .blog .featured-post .wrap .entry-content, .archive .featured-post .wrap .entry-content {
    padding-top: 0;
  }
}
.blog .featured-post .wrap .article-header h2, .archive .featured-post .wrap .article-header h2 {
  color: white;
}
.blog .featured-post .wrap .article-header h2 a, .archive .featured-post .wrap .article-header h2 a {
  color: white;
}
.blog .post-listing, .archive .post-listing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.blog .post-listing .post, .archive .post-listing .post {
  clip-path: polygon(79% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
  display: flex;
  flex-direction: column;
}
.blog .post-listing .post .featured-image, .archive .post-listing .post .featured-image {
  width: 100%;
  max-height: 230px;
  aspect-ratio: 193/115;
  flex: 0 1 500px;
}
.blog .post-listing .post .featured-image img, .archive .post-listing .post .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .post-listing .post .article-header, .archive .post-listing .post .article-header {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  flex: 0 1 100%;
}
.blog .post-listing .post .article-header time, .archive .post-listing .post .article-header time {
  color: var(--Slate-Gray, #989FA5);
  /* Body Semibold */
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26.25px;
}
.blog .post-listing .post .article-header .wp-block-buttons, .archive .post-listing .post .article-header .wp-block-buttons {
  flex: 0 1 100%;
  align-items: end;
}
.blog .post-listing .post h2, .archive .post-listing .post h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 41.42px;
  letter-spacing: normal;
}
.blog .pagination, .archive .pagination {
  text-align: center;
  grid-column: 1/-1;
  display: flex;
  justify-content: flex-end;
}
.blog .post-listing-header, .archive .post-listing-header {
  margin: 50px 60px;
}
@media only screen and (min-width: 767px) {
  .blog .post-listing-header, .archive .post-listing-header {
    display: flex;
    justify-content: space-between;
    margin: 0;
    margin-block: 100px 60px;
  }
}
.blog .post-listing-header h1,
.blog .post-listing-header h2, .archive .post-listing-header h1,
.archive .post-listing-header h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin: 0;
  margin-block: 0 !important;
}
.blog .post-listing-header .searchform, .archive .post-listing-header .searchform {
  flex: 0 1 40%;
}
.blog .post-listing-header .searchform input[type=search], .archive .post-listing-header .searchform input[type=search] {
  border-radius: 3px;
  background: var(--Light-Grey, #EAECED);
  max-width: 100%;
}
.blog .post-listing-header .searchform button, .archive .post-listing-header .searchform button {
  display: none;
}

.single-post article {
  background-color: white;
}
.single-post article header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--wp--preset--color--universal-black);
  position: relative;
}
@media only screen and (max-width: 540px) {
  .single-post article header .wrap {
    width: 100%;
  }
}
.single-post article header .wrap .header-content {
  padding: 2rem 1rem;
}
.single-post article header .wrap .featured-image img {
  display: block;
}
@media only screen and (min-width: 767px) {
  .single-post article header {
    clip-path: polygon(100% 0, 100% 76%, 89.5% 100%, 0 100%, 0 0);
  }
  .single-post article header .wrap {
    display: flex;
  }
  .single-post article header .wrap .header-content {
    flex: 0 1 48%;
    padding: 100px 100px 100px 0;
  }
  .single-post article header .wrap .featured-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    height: 100%;
  }
  .single-post article header .wrap .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.single-post article header h1 {
  margin-top: 16px;
  color: white;
}
.single-post article header time {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: white;
  padding-bottom: 6px;
}
.single-post article .entry-content {
  padding: 1rem;
  margin-top: 25px;
}
@media only screen and (min-width: 767px) {
  .single-post article .entry-content {
    padding: 0 200px 100px;
    margin-top: 100px;
  }
}
.single-post article .entry-content figure {
  margin-block: 60px;
  display: block;
}
.single-post article .entry-content .wp-block-column figure {
  margin-block: 0;
}
.single-post article .entry-content h2,
.single-post article .entry-content .h2 {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.8rem + 0.25vw, 2rem);
  line-height: 1.4em;
  margin-bottom: 0.375em;
}
.single-post article .entry-content h3,
.single-post article .entry-content .h3 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.4625rem + 0.1875vw, 1.6875rem);
  font-weight: 700;
}
.single-post article .entry-content h4,
.single-post article .entry-content .h4 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.single-post article .entry-content h5,
.single-post article .entry-content .h5 {
  font-size: clamp(0.5922rem, 0.846vw, 0.846rem);
  line-height: 2.09em;
}
.single-post article .entry-content ul {
  padding-left: 1.5rem;
}
.single-post article .entry-content ul li {
  line-height: 30px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.single-post .braftonium-contentlist .list-item {
  flex-grow: 0;
}

.search .searchform:not(.header) > div {
  position: relative;
}
.search .searchform:not(.header) > div:has(input[type=search]):after {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: 0.2em;
  /* font-size: 120%; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e803";
  color: #989FA5;
  position: absolute;
  top: 50%;
  right: 1.18rem;
  transform: translateY(-50%);
}
.search .searchform:not(.header) input[type=search] {
  border-radius: 3px;
  background: var(--Light-Grey, #EAECED);
  max-width: 100%;
}
.search .searchform:not(.header) button {
  display: none;
}
.search .post-listing-header, .search .post-listing, .search .posts-page-content {
  max-width: 794px;
  margin-inline: auto;
}
.search .post-listing-header {
  padding-top: 100px;
}
.search .post-listing-header h1 {
  margin-top: 60px;
  border-bottom: 1px solid #EAECED;
}
.search .post-listing-header h1.big-body {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.search .post-listing {
  padding-top: 100px;
  display: grid;
  gap: clamp(35px, 5vw, 70px);
}
@media (min-width: 1200px) {
  .search .post-listing {
    gap: 70px;
  }
}
.search .post-listing article h2 a, .search .post-listing article h2 a:visited {
  color: var(--wp--preset--color--primary);
  font-weight: 700;
}
.search .post-listing article .read-more {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #989FA5;
}
.search .pagination {
  text-align: left;
}

footer.site-footer {
  padding-block: 50px;
  background-color: #171819;
  color: white;
}
@media only screen and (min-width: 768px) {
  footer.site-footer {
    padding-block: 100px;
  }
}
footer.site-footer #inner-footer {
  display: flex;
  flex-wrap: wrap;
}
footer.site-footer .footer-logo {
  width: 100%;
}
footer.site-footer .footer-logo img {
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  footer.site-footer .footer-logo {
    flex: 0 1 28%;
  }
}
footer.site-footer .footer-logo p {
  padding-left: 1.875rem;
}
footer.site-footer .footer-logo p, footer.site-footer .footer-logo a {
  font-family: Roboto;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem; /* 166.667% */
  color: white;
  text-decoration: none;
}
footer.site-footer .footer-logo .footer-phone-number, footer.site-footer .footer-logo .footer-address, footer.site-footer .footer-logo .footer-email {
  position: relative;
}
footer.site-footer .footer-logo .footer-phone-number:before, footer.site-footer .footer-logo .footer-address:before, footer.site-footer .footer-logo .footer-email:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  top: 0;
  color: white;
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  font-variant: normal;
  text-transform: none;
}
footer.site-footer .footer-logo .footer-phone-number:before {
  content: "\e815";
}
footer.site-footer .footer-logo .footer-address:before {
  content: "\e800";
}
footer.site-footer .footer-logo .footer-email:before {
  content: "\e816";
}
footer.site-footer .footer-social {
  flex: 1 0 100%;
  border-bottom: 1px solid #FFF;
}
footer.site-footer .footer-social .social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
footer.site-footer .footer-copyright {
  flex: 1 0 100%;
}
footer.site-footer .footer-copyright p, footer.site-footer .footer-copyright a {
  text-align: right;
  color: #FFF;
  text-align: right;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px; /* 100% */
  text-decoration: none;
}
footer.site-footer .footer-copyright p:hover, footer.site-footer .footer-copyright a:hover {
  text-decoration: underline;
}
footer.site-footer .footer-copyright:has(.privacy) {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer.site-footer .footer-widgets {
  gap: 100px;
}
@media only screen and (min-width: 768px) {
  footer.site-footer .footer-widgets {
    display: flex;
  }
}
footer.site-footer .footer-widgets .footer-brand-menu-container {
  margin: 2.2em 0;
}
@media only screen and (min-width: 768px) {
  footer.site-footer .footer-widgets .footer-brand-menu-container {
    padding: 0 10px;
  }
}
footer.site-footer .footer-widgets .widget {
  color: white;
  margin-bottom: 0;
}
footer.site-footer .footer-widgets .footer-menu-title {
  margin-bottom: 0.75em;
  color: white;
  text-decoration: none;
  /* Body */
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
footer.site-footer .footer-widgets ul.menu, footer.site-footer .footer-widgets .footer-brand-menu-list {
  list-style: none;
  color: white;
  min-width: 110px;
}
@media only screen and (min-width: 768px) {
  footer.site-footer .footer-widgets ul.menu, footer.site-footer .footer-widgets .footer-brand-menu-list {
    max-width: 160px;
  }
}
footer.site-footer .footer-widgets ul.menu:has(.double-wide), footer.site-footer .footer-widgets .footer-brand-menu-list:has(.double-wide) {
  max-width: 425px;
}
footer.site-footer .footer-widgets ul.menu a, footer.site-footer .footer-widgets .footer-brand-menu-list a {
  color: white;
  text-decoration: none;
  /* Body */
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
footer.site-footer .footer-widgets ul.menu a:hover, footer.site-footer .footer-widgets .footer-brand-menu-list a:hover {
  text-shadow: 0.2px 0 0 #fff, -0.2px 0 0 #fff;
  text-decoration: underline;
}
footer.site-footer .footer-widgets ul.menu .sub-menu, footer.site-footer .footer-widgets .footer-brand-menu-list .sub-menu {
  list-style: none;
  color: white;
  padding: 0;
  margin-top: 0;
}
footer.site-footer .footer-widgets ul.menu li, footer.site-footer .footer-widgets .footer-brand-menu-list li {
  margin-bottom: 0.75em;
}
footer.site-footer .footer-widgets ul.menu li.double-wide > a, footer.site-footer .footer-widgets .footer-brand-menu-list li.double-wide > a {
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}
footer.site-footer .footer-widgets ul.menu li.double-wide .sub-menu, footer.site-footer .footer-widgets .footer-brand-menu-list li.double-wide .sub-menu {
  display: flex;
  flex-wrap: wrap;
}
footer.site-footer .footer-widgets ul.menu li.double-wide .sub-menu li, footer.site-footer .footer-widgets .footer-brand-menu-list li.double-wide .sub-menu li {
  flex: 0 1 50%;
}

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