/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************

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

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
*********************/
/*
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.
*/
@import url("https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap");
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
 ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary { /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
 ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
 ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
 ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/* Forms
 ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.8;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

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

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

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/*********************
COLORS
*********************/
/*
Here's a great tutorial on how to use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
OTHER MISC VARIABLES
*********************/
/**********************
CSS ANIMATION VARIABLES
**********************/
/*********************
CSS VARIABLES
*********************/
:root {
  --black-color: #1a1a1a;
  --white-color: #ffffff;
  --light-gray-color: #ededed;
  --gray-color: #9a9595;
  --dark-gray-color: #3b3436;
  --meta-gray-color: #9fa6b4;
  --text-color: #25473f;
  --primary-color: #25473f;
  --secondary-color: #1c2622;
  --tertiary-color: #a1cf00;
  --quaternary-color: #424242;
  --link-color: #25473f;
  --border: 1px solid #1c2622;
  --border-radius: 0.25em;
  --box-shadow: 1px 1px 7px -2px #1a1a1a;
  --wp--preset--color--black: #1a1a1a;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--dark-gray: #3b3436;
  --wp--preset--color--pine: #25473f;
  --wp--preset--color--outer-space: #1c2622;
  --wp--preset--color--vibrant-green: #a1cf00;
  --wp--preset--color--dark-stone: #424242;
}

/*
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.
*/
:root {
  --headline-font: Geist, Helvetica Neue, Helvetica, Arial, sans-serif;
  --body-font: Geist, Helvetica Neue, Helvetica, Arial, sans-serif;
  --icons-font: Font Awesome 6 Free;
  --brand-font: Font Awesome 6 Brands;
}

/*
i imported this one in the functions file so bones would look sweet.
don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  /*
  -ms-word-wrap: break-word;
  word-break: break-word; //non-standard css for webkit
  word-wrap: break-word;
  */
  /*
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  */
  /*
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  */
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

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

Stylesheet: Sass Functions

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

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

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

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

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

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

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

Stylesheet: Mixins Stylesheet

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

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

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

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/*********************
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);
*/
/*********************
TRANSFORM
*********************/
/*********************
ANIMATION
*********************/
/*********************
BACKGROUND COLOR OPACITY
*********************/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient( 0deg, #000000, #ffffff ); */
/*********************
BOX SHADOW
*********************/
/* @include box-shadow(1px 1px 0 0 #000000); */
/*********************
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? */
/******************************************************************

Stylesheet: Grid Stylesheet

http://gridsetapp.com - Love this site. Responsive Grids made easy.

******************************************************************/
.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%;
  }
  .m-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%;
  }
  .m-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%;
  }
  .m-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%;
  }
  .m-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%;
  }
  .m-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .m-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .m-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .m-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .m-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .m-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .m-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .m-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .m-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .m-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .m-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .m-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
}
/* 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%;
  }
  .t-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%;
  }
  .t-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%;
  }
  .t-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%;
  }
  .t-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%;
  }
  .t-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%;
  }
  .t-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%;
  }
  .t-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%;
  }
  .t-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%;
  }
  .t-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.5%;
  }
  .t-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%;
  }
  .t-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%;
  }
  .t-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.0909090909%;
  }
  .t-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%;
  }
  .t-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%;
  }
  .t-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%;
  }
  .t-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%;
  }
}
/* 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-3of8 {
    float: left;
    padding-right: 0.75em;
    width: 37.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%;
  }
  .d-5of12 {
    float: left;
    padding-right: 0.75em;
    width: 41.66%;
  }
  .d-7of12 {
    float: left;
    padding-right: 0.75em;
    width: 58.33%;
  }
  .d-11of12 {
    float: left;
    padding-right: 0.75em;
    width: 91.66%;
  }
}
/******************************************************************

Stylesheet: Flex Styles

******************************************************************/
.flex {
  display: flex;
}

.center-v {
  display: flex;
  align-items: center;
}

.center-h {
  display: flex;
  justify-content: center;
}

.center-vh {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

Stylesheet: Alert Styles

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

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
.alert-success, .alert-error, .alert-info, .alert-help {
  border: 2px solid;
  margin: 1.5em;
  padding: 1em;
}

.alert-help {
  background: #ebe16f;
  border-color: rgb(231.8902439024, 220.3353658537, 88.6097560976);
}

.alert-info {
  background: #d5edf8;
  border-color: rgb(191.1428571429, 227.6326530612, 244.3571428571);
}

.alert-error {
  background: #fbe3e4;
  border-color: rgb(247.8125, 204.6875, 206.484375);
}

.alert-success {
  background: #e6efc2;
  border-color: rgb(221.7207792208, 233.7012987013, 173.7987012987);
}

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

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/*********************
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.
*********************/
.is-style-no-arrow > .wp-block-button__link, .btn-no-arrow, .no-arrow-btn, .btn-no-arrow-wrap > .wp-block-button__link, .no-arrow-btn-wrap > .wp-block-button__link, .is-style-tertiary > .wp-block-button__link, .btn-tertiary, .tertiary-btn, .btn-tertiary-wrap > .wp-block-button__link, .tertiary-btn-wrap > .wp-block-button__link, .is-style-secondary > .wp-block-button__link, .btn-secondary, .secondary-btn, .btn-secondary-wrap > .wp-block-button__link, .secondary-btn-wrap > .wp-block-button__link, .menu-btn > a, .gform_button.button, .btn, .button, button:not(.gmap-embed_block-wrap button), .wp-block-button > .wp-element-button, .wp-block-button > .wp-block-button__link, .btn-primary, .primary-btn, .is-style-primary > .wp-block-button__link, .btn-primary-wrap > .wp-block-button__link, .primary-btn-wrap > .wp-block-button__link {
  background-color: #1c2622;
  border: solid 2px #1c2622;
  border-radius: 0.125em;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 2px;
  padding: 0.75em 2.75em 0.75em 1.12em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}
.is-style-no-arrow > .wp-block-button__link::after, .btn-no-arrow::after, .no-arrow-btn::after, .btn-no-arrow-wrap > .wp-block-button__link::after, .no-arrow-btn-wrap > .wp-block-button__link::after, .is-style-tertiary > .wp-block-button__link::after, .btn-tertiary::after, .tertiary-btn::after, .btn-tertiary-wrap > .wp-block-button__link::after, .tertiary-btn-wrap > .wp-block-button__link::after, .is-style-secondary > .wp-block-button__link::after, .btn-secondary::after, .secondary-btn::after, .btn-secondary-wrap > .wp-block-button__link::after, .secondary-btn-wrap > .wp-block-button__link::after, .menu-btn > a::after, .gform_button.button::after, .btn::after, .button::after, button:not(.gmap-embed_block-wrap button)::after, .wp-block-button > .wp-element-button::after, .wp-block-button > .wp-block-button__link::after, .btn-primary::after, .primary-btn::after, .is-style-primary > .wp-block-button__link::after, .btn-primary-wrap > .wp-block-button__link::after, .primary-btn-wrap > .wp-block-button__link::after {
  background-color: #ffffff;
  border-radius: 1px;
  color: #1c2622;
  content: "\f061";
  font-family: "FontAwesome";
  height: 26px;
  line-height: 1.5;
  padding-left: 2px;
  position: absolute;
  top: 50%;
  right: 0.65em;
  width: 26px;
  z-index: 1;
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.is-style-no-arrow > .wp-block-button__link:hover, .btn-no-arrow:hover, .no-arrow-btn:hover, .btn-no-arrow-wrap > .wp-block-button__link:hover, .no-arrow-btn-wrap > .wp-block-button__link:hover, .is-style-tertiary > .wp-block-button__link:hover, .btn-tertiary:hover, .tertiary-btn:hover, .btn-tertiary-wrap > .wp-block-button__link:hover, .tertiary-btn-wrap > .wp-block-button__link:hover, .is-style-secondary > .wp-block-button__link:hover, .btn-secondary:hover, .secondary-btn:hover, .btn-secondary-wrap > .wp-block-button__link:hover, .secondary-btn-wrap > .wp-block-button__link:hover, .menu-btn > a:hover, .btn:hover, .button:hover, button:hover:not(.gmap-embed_block-wrap button), .wp-block-button > .wp-element-button:hover, .wp-block-button > .wp-block-button__link:hover, .btn-primary:hover, .primary-btn:hover, .is-style-primary > .wp-block-button__link:hover, .btn-primary-wrap > .wp-block-button__link:hover, .primary-btn-wrap > .wp-block-button__link:hover, .is-style-no-arrow > .wp-block-button__link:focus, .btn-no-arrow:focus, .no-arrow-btn:focus, .btn-no-arrow-wrap > .wp-block-button__link:focus, .no-arrow-btn-wrap > .wp-block-button__link:focus, .is-style-tertiary > .wp-block-button__link:focus, .btn-tertiary:focus, .tertiary-btn:focus, .btn-tertiary-wrap > .wp-block-button__link:focus, .tertiary-btn-wrap > .wp-block-button__link:focus, .is-style-secondary > .wp-block-button__link:focus, .btn-secondary:focus, .secondary-btn:focus, .btn-secondary-wrap > .wp-block-button__link:focus, .secondary-btn-wrap > .wp-block-button__link:focus, .menu-btn > a:focus, .btn:focus, .button:focus, button:focus:not(.gmap-embed_block-wrap button), .wp-block-button > .wp-element-button:focus, .wp-block-button > .wp-block-button__link:focus, .btn-primary:focus, .primary-btn:focus, .is-style-primary > .wp-block-button__link:focus, .btn-primary-wrap > .wp-block-button__link:focus, .primary-btn-wrap > .wp-block-button__link:focus, .is-style-no-arrow > .wp-block-button__link:active, .btn-no-arrow:active, .no-arrow-btn:active, .btn-no-arrow-wrap > .wp-block-button__link:active, .no-arrow-btn-wrap > .wp-block-button__link:active, .is-style-tertiary > .wp-block-button__link:active, .btn-tertiary:active, .tertiary-btn:active, .btn-tertiary-wrap > .wp-block-button__link:active, .tertiary-btn-wrap > .wp-block-button__link:active, .is-style-secondary > .wp-block-button__link:active, .btn-secondary:active, .secondary-btn:active, .btn-secondary-wrap > .wp-block-button__link:active, .secondary-btn-wrap > .wp-block-button__link:active, .menu-btn > a:active, .btn:active, .button:active, button:active:not(.gmap-embed_block-wrap button), .wp-block-button > .wp-element-button:active, .wp-block-button > .wp-block-button__link:active, .btn-primary:active, .primary-btn:active, .is-style-primary > .wp-block-button__link:active, .btn-primary-wrap > .wp-block-button__link:active, .primary-btn-wrap > .wp-block-button__link:active {
  background-color: #ffffff;
  color: #1c2622;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}
.is-style-no-arrow > .wp-block-button__link:hover::after, .btn-no-arrow:hover::after, .no-arrow-btn:hover::after, .btn-no-arrow-wrap > .wp-block-button__link:hover::after, .no-arrow-btn-wrap > .wp-block-button__link:hover::after, .is-style-tertiary > .wp-block-button__link:hover::after, .btn-tertiary:hover::after, .tertiary-btn:hover::after, .btn-tertiary-wrap > .wp-block-button__link:hover::after, .tertiary-btn-wrap > .wp-block-button__link:hover::after, .is-style-secondary > .wp-block-button__link:hover::after, .btn-secondary:hover::after, .secondary-btn:hover::after, .btn-secondary-wrap > .wp-block-button__link:hover::after, .secondary-btn-wrap > .wp-block-button__link:hover::after, .menu-btn > a:hover::after, .btn:hover::after, .button:hover::after, button:hover:not(.gmap-embed_block-wrap button)::after, .wp-block-button > .wp-element-button:hover::after, .wp-block-button > .wp-block-button__link:hover::after, .btn-primary:hover::after, .primary-btn:hover::after, .is-style-primary > .wp-block-button__link:hover::after, .btn-primary-wrap > .wp-block-button__link:hover::after, .primary-btn-wrap > .wp-block-button__link:hover::after, .is-style-no-arrow > .wp-block-button__link:focus::after, .btn-no-arrow:focus::after, .no-arrow-btn:focus::after, .btn-no-arrow-wrap > .wp-block-button__link:focus::after, .no-arrow-btn-wrap > .wp-block-button__link:focus::after, .is-style-tertiary > .wp-block-button__link:focus::after, .btn-tertiary:focus::after, .tertiary-btn:focus::after, .btn-tertiary-wrap > .wp-block-button__link:focus::after, .tertiary-btn-wrap > .wp-block-button__link:focus::after, .is-style-secondary > .wp-block-button__link:focus::after, .btn-secondary:focus::after, .secondary-btn:focus::after, .btn-secondary-wrap > .wp-block-button__link:focus::after, .secondary-btn-wrap > .wp-block-button__link:focus::after, .menu-btn > a:focus::after, .btn:focus::after, .button:focus::after, button:focus:not(.gmap-embed_block-wrap button)::after, .wp-block-button > .wp-element-button:focus::after, .wp-block-button > .wp-block-button__link:focus::after, .btn-primary:focus::after, .primary-btn:focus::after, .is-style-primary > .wp-block-button__link:focus::after, .btn-primary-wrap > .wp-block-button__link:focus::after, .primary-btn-wrap > .wp-block-button__link:focus::after, .is-style-no-arrow > .wp-block-button__link:active::after, .btn-no-arrow:active::after, .no-arrow-btn:active::after, .btn-no-arrow-wrap > .wp-block-button__link:active::after, .no-arrow-btn-wrap > .wp-block-button__link:active::after, .is-style-tertiary > .wp-block-button__link:active::after, .btn-tertiary:active::after, .tertiary-btn:active::after, .btn-tertiary-wrap > .wp-block-button__link:active::after, .tertiary-btn-wrap > .wp-block-button__link:active::after, .is-style-secondary > .wp-block-button__link:active::after, .btn-secondary:active::after, .secondary-btn:active::after, .btn-secondary-wrap > .wp-block-button__link:active::after, .secondary-btn-wrap > .wp-block-button__link:active::after, .menu-btn > a:active::after, .btn:active::after, .button:active::after, button:active:not(.gmap-embed_block-wrap button)::after, .wp-block-button > .wp-element-button:active::after, .wp-block-button > .wp-block-button__link:active::after, .btn-primary:active::after, .primary-btn:active::after, .is-style-primary > .wp-block-button__link:active::after, .btn-primary-wrap > .wp-block-button__link:active::after, .primary-btn-wrap > .wp-block-button__link:active::after {
  background-color: #1c2622;
  color: #ffffff;
  -moz-transform: translate(3px, -50%);
  -o-transform: translate(3px, -50%);
  -ms-transform: translate(3px, -50%);
  -webkit-transform: translate(3px, -50%);
  transform: translate(3px, -50%);
}
.is-style-no-arrow > .wp-block-button__link:focus-visible, .btn-no-arrow:focus-visible, .no-arrow-btn:focus-visible, .btn-no-arrow-wrap > .wp-block-button__link:focus-visible, .no-arrow-btn-wrap > .wp-block-button__link:focus-visible, .is-style-tertiary > .wp-block-button__link:focus-visible, .btn-tertiary:focus-visible, .tertiary-btn:focus-visible, .btn-tertiary-wrap > .wp-block-button__link:focus-visible, .tertiary-btn-wrap > .wp-block-button__link:focus-visible, .is-style-secondary > .wp-block-button__link:focus-visible, .btn-secondary:focus-visible, .secondary-btn:focus-visible, .btn-secondary-wrap > .wp-block-button__link:focus-visible, .secondary-btn-wrap > .wp-block-button__link:focus-visible, .menu-btn > a:focus-visible, .btn:focus-visible, .button:focus-visible, button:focus-visible:not(.gmap-embed_block-wrap button), .wp-block-button > .wp-element-button:focus-visible, .wp-block-button > .wp-block-button__link:focus-visible, .btn-primary:focus-visible, .primary-btn:focus-visible, .is-style-primary > .wp-block-button__link:focus-visible, .btn-primary-wrap > .wp-block-button__link:focus-visible, .primary-btn-wrap > .wp-block-button__link:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
  outline-offset: 0.25em;
}
.is-style-no-arrow > .wp-block-button__link:active, .btn-no-arrow:active, .no-arrow-btn:active, .btn-no-arrow-wrap > .wp-block-button__link:active, .no-arrow-btn-wrap > .wp-block-button__link:active, .is-style-tertiary > .wp-block-button__link:active, .btn-tertiary:active, .tertiary-btn:active, .btn-tertiary-wrap > .wp-block-button__link:active, .tertiary-btn-wrap > .wp-block-button__link:active, .is-style-secondary > .wp-block-button__link:active, .btn-secondary:active, .secondary-btn:active, .btn-secondary-wrap > .wp-block-button__link:active, .secondary-btn-wrap > .wp-block-button__link:active, .menu-btn > a:active, .btn:active, .button:active, button:active:not(.gmap-embed_block-wrap button), .wp-block-button > .wp-element-button:active, .wp-block-button > .wp-block-button__link:active, .btn-primary:active, .primary-btn:active, .is-style-primary > .wp-block-button__link:active, .btn-primary-wrap > .wp-block-button__link:active, .primary-btn-wrap > .wp-block-button__link:active {
  top: 1px;
}

.is-style-secondary > .wp-block-button__link, .btn-secondary, .secondary-btn, .btn-secondary-wrap > .wp-block-button__link, .secondary-btn-wrap > .wp-block-button__link, .menu-btn > a, .gform_button.button {
  background-color: #a1cf00;
  border-color: #a1cf00;
  color: #1c2622;
}
.is-style-secondary > .wp-block-button__link::after, .btn-secondary::after, .secondary-btn::after, .btn-secondary-wrap > .wp-block-button__link::after, .secondary-btn-wrap > .wp-block-button__link::after, .menu-btn > a::after, .gform_button.button::after {
  background-color: #1c2622;
  color: #ffffff;
}
.is-style-secondary > .wp-block-button__link:hover, .is-style-secondary > .wp-block-button__link:focus, .is-style-secondary > .wp-block-button__link:active, .btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .secondary-btn:hover, .secondary-btn:focus, .secondary-btn:active, .btn-secondary-wrap > .wp-block-button__link:hover, .btn-secondary-wrap > .wp-block-button__link:focus, .btn-secondary-wrap > .wp-block-button__link:active, .secondary-btn-wrap > .wp-block-button__link:hover, .secondary-btn-wrap > .wp-block-button__link:focus, .secondary-btn-wrap > .wp-block-button__link:active, .menu-btn > a:hover, .menu-btn > a:focus, .menu-btn > a:active, .gform_button.button:hover, .gform_button.button:focus, .gform_button.button:active {
  background-color: rgb(129.2666666667, 166.2, 0);
  border-color: rgb(129.2666666667, 166.2, 0);
}
.is-style-tertiary > .wp-block-button__link, .btn-tertiary, .tertiary-btn, .btn-tertiary-wrap > .wp-block-button__link, .tertiary-btn-wrap > .wp-block-button__link {
  background-color: #25473f;
  border-color: #25473f;
  color: #ffffff;
}
.is-style-tertiary > .wp-block-button__link::after, .btn-tertiary::after, .tertiary-btn::after, .btn-tertiary-wrap > .wp-block-button__link::after, .tertiary-btn-wrap > .wp-block-button__link::after {
  background-color: #1c2622;
  color: #ffffff;
}
.is-style-tertiary > .wp-block-button__link:hover, .is-style-tertiary > .wp-block-button__link:focus, .is-style-tertiary > .wp-block-button__link:active, .btn-tertiary:hover, .btn-tertiary:focus, .btn-tertiary:active, .tertiary-btn:hover, .tertiary-btn:focus, .tertiary-btn:active, .btn-tertiary-wrap > .wp-block-button__link:hover, .btn-tertiary-wrap > .wp-block-button__link:focus, .btn-tertiary-wrap > .wp-block-button__link:active, .tertiary-btn-wrap > .wp-block-button__link:hover, .tertiary-btn-wrap > .wp-block-button__link:focus, .tertiary-btn-wrap > .wp-block-button__link:active {
  background-color: rgb(26.5166666667, 50.8833333333, 45.15);
  border-color: rgb(26.5166666667, 50.8833333333, 45.15);
  color: #ffffff;
}
.is-style-tertiary > .wp-block-button__link:hover::after, .is-style-tertiary > .wp-block-button__link:focus::after, .is-style-tertiary > .wp-block-button__link:active::after, .btn-tertiary:hover::after, .btn-tertiary:focus::after, .btn-tertiary:active::after, .tertiary-btn:hover::after, .tertiary-btn:focus::after, .tertiary-btn:active::after, .btn-tertiary-wrap > .wp-block-button__link:hover::after, .btn-tertiary-wrap > .wp-block-button__link:focus::after, .btn-tertiary-wrap > .wp-block-button__link:active::after, .tertiary-btn-wrap > .wp-block-button__link:hover::after, .tertiary-btn-wrap > .wp-block-button__link:focus::after, .tertiary-btn-wrap > .wp-block-button__link:active::after {
  color: #1c2622;
  background-color: #ffffff;
}

.is-style-no-arrow > .wp-block-button__link, .btn-no-arrow, .no-arrow-btn, .btn-no-arrow-wrap > .wp-block-button__link, .no-arrow-btn-wrap > .wp-block-button__link {
  padding: 0.75em 2.5em;
}
.is-style-no-arrow > .wp-block-button__link::after, .btn-no-arrow::after, .no-arrow-btn::after, .btn-no-arrow-wrap > .wp-block-button__link::after, .no-arrow-btn-wrap > .wp-block-button__link::after {
  content: none;
}
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/******************************************************************

Stylesheet: Form Styles

We put all the form 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/

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/*********************
INPUT STYLES
*********************/
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 {
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 2px solid #9a9595;
  border-radius: 0;
  box-shadow: none;
  color: #25473f;
  display: block;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em !important;
  line-height: 1.5 !important;
  padding: 0.25em !important;
  vertical-align: middle;
  width: 100%;
  -webkit-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}
input[type=text]:hover, input[type=text]:focus, input[type=text]:active,
input[type=password]:hover,
input[type=password]:focus,
input[type=password]:active,
input[type=datetime]:hover,
input[type=datetime]:focus,
input[type=datetime]:active,
input[type=datetime-local]:hover,
input[type=datetime-local]:focus,
input[type=datetime-local]:active,
input[type=date]:hover,
input[type=date]:focus,
input[type=date]:active,
input[type=month]:hover,
input[type=month]:focus,
input[type=month]:active,
input[type=time]:hover,
input[type=time]:focus,
input[type=time]:active,
input[type=week]:hover,
input[type=week]:focus,
input[type=week]:active,
input[type=number]:hover,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:hover,
input[type=email]:focus,
input[type=email]:active,
input[type=url]:hover,
input[type=url]:focus,
input[type=url]:active,
input[type=search]:hover,
input[type=search]:focus,
input[type=search]:active,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=tel]:active,
input[type=color]:hover,
input[type=color]:focus,
input[type=color]:active,
select:hover,
select:focus,
select:active,
textarea:hover,
textarea:focus,
textarea:active,
.field:hover,
.field:focus,
.field:active {
  border-color: #25473f;
  box-shadow: 0 2px 0 0 #25473f;
}
input[type=text]:hover::placeholder, input[type=text]:focus::placeholder, input[type=text]:active::placeholder,
input[type=password]:hover::placeholder,
input[type=password]:focus::placeholder,
input[type=password]:active::placeholder,
input[type=datetime]:hover::placeholder,
input[type=datetime]:focus::placeholder,
input[type=datetime]:active::placeholder,
input[type=datetime-local]:hover::placeholder,
input[type=datetime-local]:focus::placeholder,
input[type=datetime-local]:active::placeholder,
input[type=date]:hover::placeholder,
input[type=date]:focus::placeholder,
input[type=date]:active::placeholder,
input[type=month]:hover::placeholder,
input[type=month]:focus::placeholder,
input[type=month]:active::placeholder,
input[type=time]:hover::placeholder,
input[type=time]:focus::placeholder,
input[type=time]:active::placeholder,
input[type=week]:hover::placeholder,
input[type=week]:focus::placeholder,
input[type=week]:active::placeholder,
input[type=number]:hover::placeholder,
input[type=number]:focus::placeholder,
input[type=number]:active::placeholder,
input[type=email]:hover::placeholder,
input[type=email]:focus::placeholder,
input[type=email]:active::placeholder,
input[type=url]:hover::placeholder,
input[type=url]:focus::placeholder,
input[type=url]:active::placeholder,
input[type=search]:hover::placeholder,
input[type=search]:focus::placeholder,
input[type=search]:active::placeholder,
input[type=tel]:hover::placeholder,
input[type=tel]:focus::placeholder,
input[type=tel]:active::placeholder,
input[type=color]:hover::placeholder,
input[type=color]:focus::placeholder,
input[type=color]:active::placeholder,
select:hover::placeholder,
select:focus::placeholder,
select:active::placeholder,
textarea:hover::placeholder,
textarea:focus::placeholder,
textarea:active::placeholder,
.field:hover::placeholder,
.field:focus::placeholder,
.field:active::placeholder {
  color: #25473f;
}
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 {
  background-color: rgb(242.25, 242.25, 242.25);
  border-color: #a1cf00;
  box-shadow: 0 2px 0 0 #a1cf00;
  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 {
  color: #fbe3e4;
  border-color: #fbe3e4;
  background-color: #ffffff;
  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: #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 {
  color: #e6efc2;
  border-color: #e6efc2;
  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: #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: #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: #d5edf8;
}

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

input[type=checkbox],
input[type=radio] {
  accent-color: #25473f;
  cursor: pointer;
  margin: 0 0.25em 0 0.0625em !important;
}

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

select {
  -webkit-appearance: none;
  -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: calc(100% - 0.75em) center;
  margin: 0 !important;
  padding-right: calc(1.75em + 8px) !important;
}

/*********************
GRAVITY FORMS STYLES
*********************/
body .gform_wrapper .gform_validation_errors {
  background-color: rgb(254.1875, 249.3125, 249.515625) !important;
  border: 1px solid rgb(231.875, 93.125, 98.90625) !important;
  color: #1a1a1a;
  margin: 1.25em 0 !important;
  padding: 0.75em !important;
}
body .gform_wrapper .gform_heading {
  margin-bottom: 1.5em;
}
body .gform_wrapper .gform_heading .gform_title {
  margin-bottom: 0.25em;
}
body .gform_wrapper .gform_heading .gform_description {
  margin-bottom: 0;
}
body .gform_wrapper .gform_heading .gform_required_legend {
  display: none;
  visibility: hidden;
}
body .gform_wrapper .gform_body .gform_fields {
  grid-row-gap: 1em;
}
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  color: #1c2622;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 0.75em;
}
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex label {
  color: #1c2622;
  font-size: 1em;
  padding-top: 0.25em;
}
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex span {
  margin-bottom: 0.5em;
  padding: 0;
}
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex span:last-child {
  margin-bottom: 0;
}
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
  margin-left: 0;
  margin-right: 0;
}
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice .gform-field-label,
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container .gfield_radio .gchoice .gform-field-label {
  font-size: 1em;
}
body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container input.medium {
  width: 49%;
}
body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
  font-size: 0.875em;
  padding-top: 0.25em;
}
body .gform_wrapper .gform_body .gform_fields .gfield.gfield_error .gfield_validation_message {
  background-color: rgb(254.1875, 249.3125, 249.515625);
  border: 1px solid rgb(231.875, 93.125, 98.90625);
  color: #1a1a1a;
  padding: 0.75em;
}
body .gform_wrapper .gform_footer {
  margin: 2em 0 0 0 !important;
  padding: 0 !important;
}
body .gform_wrapper .gform_footer .gform_button {
  margin: 0;
}
@media only screen and (min-width: 641px) {
  body .gform_wrapper .gform_heading {
    margin-bottom: 1.75em;
  }
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex span:nth-last-child(3), body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_complex span:nth-last-child(2) {
    margin-bottom: 0;
    padding-right: 1%;
  }
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left {
    padding-right: 0.5%;
  }
  body .gform_wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right {
    padding-left: 0.5%;
  }
}
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.draggable {
  cursor: pointer;
  cursor: grab;
}
.slick-list.draggable:active {
  cursor: grabbing;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  min-height: 400px;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  position: relative;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*********************
CUSTOM SLIDER STYLES
*********************/
.slick-slider {
  padding: 0 3.5em !important;
  width: 100%;
}
.slick-slider.slick-dotted {
  padding-bottom: 3em !important;
}

.slick-arrow {
  border: 1px solid #25473f;
  color: #25473f;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 0.25em 0.45em;
  position: absolute;
  text-decoration: none;
  top: calc(50% - 48px);
  z-index: 99;
  -moz-box-shadow: 0 0 10px -6px #1a1a1a;
  -o-box-shadow: 0 0 10px -6px #1a1a1a;
  -ms-box-shadow: 0 0 10px -6px #1a1a1a;
  -webkit-box-shadow: 0 0 10px -6px #1a1a1a;
  box-shadow: 0 0 10px -6px #1a1a1a;
  -webkit-transition: background-color 0.235s ease-in-out;
  transition: background-color 0.235s ease-in-out;
}
.slick-arrow:hover, .slick-arrow:focus, .slick-arrow:active {
  background-color: #25473f;
  color: #ffffff;
}
.slick-arrow.pull-left {
  left: 0;
}
.slick-arrow.pull-right {
  right: 0;
}

.slick-dots {
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  justify-content: center;
  left: 50%;
  list-style: none;
  margin: 0 !important;
  max-width: calc(100% - 10em);
  padding: 0 !important;
  position: absolute;
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.slick-dots li {
  background-color: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 100%;
  cursor: pointer;
  height: 20px;
  text-indent: -999px;
  width: 20px;
}
.slick-dots li.slick-active {
  background-color: #25473f;
}
.slick-dots li button {
  display: none;
  visibility: hidden;
}

@media only screen and (min-width: 768px) {
  .slick-slider {
    padding: 0 4.5em !important;
  }
  .slick-arrow {
    font-size: 36px;
  }
  .slick-dots li {
    height: 16px;
    width: 16px;
  }
}
@media only screen and (min-width: 1030px) {
  .slick-slider {
    padding: 0 6.25em !important;
  }
  .slick-arrow {
    font-size: 44px;
  }
}
/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/******************************************************************

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.

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/*********************
GENERAL STYLES
*********************/
body {
  background-color: #ededed;
  color: #25473f;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.open-menu {
  overflow: hidden;
}

::-moz-selection {
  background: rgb(28.2638888889, 54.2361111111, 48.125);
  color: #ffffff;
}

::selection {
  background: rgb(28.2638888889, 54.2361111111, 48.125);
  color: #ffffff;
}

.offscreen {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.offscreen:focus {
  clip: auto;
  height: auto;
  overflow: auto;
  position: relative;
  width: auto;
}

.iframe-container {
  height: 0;
  margin: auto;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
  text-align: center;
}

.iframe-container iframe,
.iframe-container object,
.iframe-container embed {
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
.no-js #is-loading {
  display: none;
}

/*********************
LAYOUT & GRID STYLES
*********************/
.page-center,
.pc {
  margin: 0 auto;
  width: 90%;
}

.full-img {
  display: block;
  height: auto;
  width: 100%;
}

.bg-img {
  background: center center/cover no-repeat rgb(19.5277777778, 37.4722222222, 33.25);
  min-height: 100px;
  overflow: hidden;
  position: relative;
}

.bg-overlay {
  background-color: #1a1a1a;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.no-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

span.ff-headline {
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
span.ff-body {
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}
span.fs-italic {
  font-style: italic !important;
}
span.fs-normal {
  font-style: normal !important;
}
span.fs-oblique {
  font-style: oblique !important;
}
span.fw-100 {
  font-weight: 100 !important;
}
span.fw-200 {
  font-weight: 200 !important;
}
span.fw-300 {
  font-weight: 300 !important;
}
span.fw-400 {
  font-weight: 400 !important;
}
span.fw-500 {
  font-weight: 500 !important;
}
span.fw-600 {
  font-weight: 600 !important;
}
span.fw-700 {
  font-weight: 700 !important;
}
span.fw-800 {
  font-weight: 800 !important;
}
span.fw-900 {
  font-weight: 900 !important;
}

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

.mr-0 {
  margin-right: 0 !important;
}

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

.ml-0 {
  margin-left: 0 !important;
}

.searchform {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
.searchform .searchbox {
  color: #9a9595;
}
.searchform .searchbox:active, .searchform .searchbox:focus {
  color: #25473f;
}
.archive .taxonomy-description,
.search .taxonomy-description {
  margin: 1em 0 0 0;
}
.archive .taxonomy-description p,
.search .taxonomy-description p {
  margin: 0;
}
.archive .main .hentry,
.search .main .hentry {
  margin: 0 0 3em;
}
.archive .main .hentry:last-child,
.search .main .hentry:last-child {
  margin-bottom: 0;
}
.archive .main .hentry .entry-header,
.search .main .hentry .entry-header {
  margin-bottom: 0.75em;
}
.archive .main .hentry .entry-header .entry-title,
.search .main .hentry .entry-header .entry-title {
  margin: 0;
}
.archive .main .hentry .entry-content,
.search .main .hentry .entry-content {
  font-size: 1.125em;
  margin-bottom: 1em;
}
.archive .main .hentry .entry-content .excerpt-read-more,
.search .main .hentry .entry-content .excerpt-read-more {
  color: #25473f;
}
/*********************
LINK STYLES
*********************/
a {
  color: #25473f;
  font-weight: 700;
  text-decoration: underline;
}
a:hover, a:focus {
  color: #1c2622;
  text-decoration: none;
}
a:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*********************
HEADING STYLES
*********************/
.wf-loading h1, .wf-loading .h1, .wf-loading h2, .wf-loading .h2, .wf-loading h3, .wf-loading .h3, .wf-loading h4, .wf-loading .h4, .wf-loading h5, .wf-loading .h5, .wf-loading h6, .wf-loading .h6, .wf-loading .subhead, .wf-loading p, .wf-loading a, .wf-loading label, .wf-loading input, .wf-loading .btn {
  visibility: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subhead {
  color: #1c2622;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.5em 0;
  text-rendering: optimizelegibility;
  text-transform: capitalize;
  word-break: break-word;
  word-wrap: break-word;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, .subhead a {
  text-decoration: none;
}
h1 em, .h1 em, h2 em, .h2 em, h3 em, .h3 em, h4 em, .h4 em, h5 em, .h5 em, h6 em, .h6 em, .subhead em {
  font-weight: 500;
  text-transform: capitalize;
}

h1, .h1 {
  font-size: 2.5em;
  line-height: 1.125;
  font-weight: 500;
}

h2, .h2 {
  font-size: 2em;
}

h3, .h3 {
  font-size: 1.5em;
}

h4, .h4 {
  font-size: 1.375em;
  font-weight: 700;
}

h5, .h5, .subhead {
  font-size: 1.25em;
  line-height: 1.5;
}

h6, .h6 {
  font-size: 1.125em;
  font-style: italic;
}

/*********************
HEADER STYLES
*********************/
.container {
  left: 0;
  overflow: clip;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.container::before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: visible;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  background-color: #1a1a1a;
  background-color: rgba(26, 26, 26, 0.85);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.container.open-menu {
  left: -80vw;
  overflow: visible;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.container.open-menu::before {
  opacity: 1;
  z-index: 1000;
}
.container.open-menu .to-top {
  right: calc(80vw + 5%);
}
.container.open-menu .fixed-cta_btn {
  display: none;
  visibility: hidden;
}
.container:has(.fixed-cta_btn) .footer {
  padding-bottom: 3.5em;
}

.header {
  background-color: #ffffff;
  color: #25473f;
  padding: 0.75em 0;
  position: fixed;
  top: 0;
  z-index: 999;
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@starting-style {
  .header {
    opacity: 0;
  }
}
.header.at-top-of-page {
  background-color: transparent;
  padding: 1.25em 0;
}
.header.at-top-of-page .header_logo_link {
  max-width: 220px;
}
.header.at-top-of-page:has(+ .feat-img_bg-media) .logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
}
.header.at-top-of-page:has(+ .feat-img_bg-media) .header_logo_alt {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out;
}
.header.at-top-of-page:has(+ .feat-img_bg-media) .menu-toggle span {
  background-color: #ffffff;
}
.header:has(.reviews-banner_wrap) {
  padding-top: 0;
}
.header:has(.hide-banner) {
  padding-top: 0.75em;
}

.reviews-banner_wrap {
  background-color: #25473f;
  display: block;
  color: #ffffff;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  margin-bottom: 0.75em;
  opacity: 1;
  padding: 0.5em 0;
  text-transform: uppercase;
  transform: translateY(0%);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.reviews-banner_wrap.hide-banner {
  height: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  transform: translateY(-100%);
}
.reviews-banner_wrap .reviews-banner_columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75em 0.5em;
  justify-content: space-between;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1em 0.5em;
  justify-content: center;
  width: 100%;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-01 {
  align-items: center;
  flex-wrap: nowrap;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-01.has-sibling-col {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(35% - 0.25em);
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-02 {
  gap: 0.75em;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-02.has-sibling-col {
  justify-content: flex-end;
  width: calc(65% - 0.25em);
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_text {
  font-weight: 500;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_stars_wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.1em;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_stars_wrap svg {
  width: 32px;
}
.reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_image {
  max-height: 55px;
  object-fit: contain;
  width: auto;
}

.header_primary-header {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 3vw;
  justify-content: space-between;
}

.header_logo_link {
  max-width: 200px;
  padding: 0;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.logo {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out;
}

.header_logo_alt {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
  transition: opacity 0.5s ease-in-out, visibility 0s ease-in-out 0.5s;
}

.menu-toggle {
  cursor: pointer;
  height: 30px;
  position: relative;
  width: 3.375em;
}
.menu-toggle span {
  background-color: #1a1a1a;
  display: block;
  height: 4px;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.menu-toggle span:nth-child(1) {
  left: 0;
  top: 0;
}
.menu-toggle span:nth-child(2) {
  left: 0;
  top: 43%;
}
.menu-toggle span:nth-child(3) {
  bottom: 0;
  left: 0;
}

.header_nav-wrap {
  background-color: #ffffff;
  height: 100vh;
  left: 100%;
  max-width: 80vw;
  overflow-y: scroll;
  padding: 2em 5vw 5.5em 5vw;
  position: absolute;
  top: 0;
}

.menu-close {
  cursor: pointer;
  height: 2.75em;
  margin: auto 0 2em auto;
  position: relative;
  width: 3.375em;
}
.menu-close span {
  background-color: #1a1a1a;
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.menu-close span:nth-child(1), .menu-close span:nth-child(2) {
  left: -0.25em;
  top: 1.25em;
  width: 3.875em;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-close span:nth-child(2) {
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}
.nav li {
  position: relative;
  width: 100%;
}
.nav li a {
  color: #1c2622;
  display: inline-block;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.35em 0.75em;
  text-decoration: none;
}
.nav li a:hover, .nav li a:focus {
  text-decoration: underline;
}
.nav li.menu-btn > a {
  color: #1c2622 !important;
  font-size: 1.125em;
  padding: 0.75em 2.75em 0.75em 1.12em;
}
.nav li.menu-btn > a::after {
  right: 0.65em;
}
.nav li.menu-btn > a:hover, .nav li.menu-btn > a:focus, .nav li.menu-btn > a:active {
  text-decoration: none;
}
.nav li.current-menu-item > a, .nav li.current_page_item > a {
  text-decoration: underline;
}
.nav li.menu-item-has-children > a {
  max-width: calc(100% - 2.5em);
}
.nav li .sub-menu_arrow {
  color: #25473f;
  cursor: pointer;
  font-size: 1.25em;
  padding: 0.2em 0.85em;
  position: absolute;
  right: 0;
  top: 0;
}
.nav li .sub-menu_arrow .fa-solid {
  -webkit-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
.nav li .sub-menu_arrow.arrow-active .fa-solid {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.nav li ul.sub-menu,
.nav li ul.children {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style-type: none;
  margin-left: 1.25em;
  padding: 0;
}
.nav li ul.sub-menu.open-sub-menu,
.nav li ul.children.open-sub-menu {
  margin-top: 1em;
  max-height: 2500px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.nav li ul.sub-menu li a,
.nav li ul.children li a {
  font-size: 1em;
}
.nav li ul.sub-menu li .sub-menu_arrow,
.nav li ul.children li .sub-menu_arrow {
  padding: 0 0.85em;
}

/*********************
FEATURED IMAGE STYLES
*********************/
.feat-img_container.no-feat-img .feat-img_article-header {
  padding-top: 6em;
}
.feat-img_container.feat-img_default .feat-img_article-header {
  padding-top: 8em;
}
.feat-img_container.feat-img_two-imgs .feat-img_article-header {
  padding-top: 10em;
}
.feat-img_container.feat-img_bg-media .feat-img {
  align-items: flex-end;
  display: flex;
  min-height: 22em;
}
.feat-img_container.feat-img_bg-media .feat-img.no-thumb {
  min-height: 18em;
}
.feat-img_container.feat-img_bg-media .feat-img_article-header {
  color: #ffffff;
  padding: 5em 0 3.5em;
  text-align: right;
}
.feat-img_container.feat-img_bg-media .feat-img_article-header .page-title {
  color: #ffffff;
}
.feat-img_container.feat-img_bg-media .feat-img_icon {
  margin-right: 0;
}
.feat-img_container.feat-img_bg-media .feat-img_subhead {
  margin-right: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .feat-img_container .feat-img_icon {
    animation: 0.5s linear forwards;
    animation-delay: 0.5s;
    animation-name: fade-in_up;
    opacity: 0;
  }
  .feat-img_container .page-title {
    animation: 0.5s linear forwards;
    animation-delay: 0.75s;
    animation-name: fade-in_up;
    opacity: 0;
  }
  .feat-img_container .feat-img_subhead {
    animation: 0.5s linear forwards;
    animation-delay: 1s;
    animation-name: fade-in_up;
    opacity: 0;
  }
  .feat-img_container .feat-img_subhead_btn {
    animation: 0.5s linear forwards;
    animation-delay: 1.25s;
    animation-name: fade-in_up;
    opacity: 0;
  }
}

.feat-img {
  padding-top: 8.75em;
}
.feat-img_vid {
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.feat-img_article-header {
  padding: 4em 0 2.25em;
  text-align: center;
  z-index: 0;
}
.feat-img_article-header .page-title,
.feat-img_article-header .entry-title {
  margin: 0;
}

.feat-img_icon {
  margin: 0 auto 0.5em;
  max-width: 60px;
}

.feat-img_subhead_wrap {
  margin-top: 2em;
}

.feat-img_subhead {
  font-size: 1.25em;
  margin: 0 auto;
  max-width: 720px;
}

.feat-img_subhead_btn {
  margin-top: 1.125em;
}

.feat-img_images-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  margin-top: 1.25em;
}
.feat-img_images-wrap:has(.feat-img_images-two) {
  position: relative;
}
.feat-img_images-wrap:has(.feat-img_images-two)::before {
  content: "";
  height: 54vw;
  left: 0;
  position: absolute;
  top: -5.5em;
  width: 100%;
  z-index: -1;
}
@media (prefers-reduced-motion: no-preference) {
  .feat-img_images-wrap:has(.feat-img_images-two)::before {
    animation: 0.5s linear forwards;
    animation-delay: 1.5s;
    animation-name: fade-in;
    opacity: 0;
  }
  .feat-img_images-wrap:has(.feat-img_images-two) .feat-img_two-imgs_img-one,
  .feat-img_images-wrap:has(.feat-img_images-two) .feat-img_two-imgs_img-two {
    animation: 0.5s linear forwards;
    animation-delay: 1s;
    opacity: 0;
  }
  .feat-img_images-wrap:has(.feat-img_images-two) .feat-img_two-imgs_img-one {
    animation-name: fade-in_left;
  }
  .feat-img_images-wrap:has(.feat-img_images-two) .feat-img_two-imgs_img-two {
    animation-name: fade-in_right;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .feat-img_images-wrap:has(.feat-img_image-default) {
    animation: 0.5s linear forwards;
    animation-delay: 1.25s;
    animation-name: fade-in;
    opacity: 0;
  }
  .feat-img_images-wrap .feat-img_image-default {
    animation: linear forwards;
    animation-name: animate_bg-img_zoom;
  }
  @supports (animation-range: 0vh cover) and (animation-timeline: view(y)) {
    .feat-img_images-wrap .feat-img_image-default {
      animation-range: 0vh cover;
      animation-timeline: view(y);
    }
  }
}

.feat-img_image-default {
  min-height: 22em;
  width: 100%;
}

.feat-img_images-two {
  border-radius: 0.25em;
}
.feat-img_images-two.feat-img_two-imgs_img-one {
  border-bottom-left-radius: unset;
  border-top-left-radius: unset;
  width: 86%;
}
.feat-img_images-two.feat-img_two-imgs_img-two {
  border-bottom-right-radius: unset;
  border-top-right-radius: unset;
  margin-left: auto;
  width: 66%;
}

/*********************
AUTHOR PAGE STYLES
*********************/
.author .feat-img {
  padding-top: 3.75em;
}
.author .page-title {
  display: none;
  visibility: visible;
}

.author_sidebar {
  flex-direction: column;
  gap: 0.75em;
  margin: 0 0 3.25em !important;
  text-align: center;
}

.author_sidebar_img {
  margin: 0 auto 1em;
  max-width: 200px;
}

.author_sidebar_name {
  margin-bottom: 0;
}

.author_sidebar_job-title {
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 0;
}

.author_sidebar_description {
  margin: 0;
}

.author_sidebar_contact-list {
  margin-top: 0.75em !important;
  padding: 0 !important;
}

.author_sidebar_socials-list {
  gap: 0.5em 1.5em !important;
  margin-top: 0.75em !important;
  padding: 0 !important;
}

.author_sidebar_socials-li-link {
  font-size: 1.5em;
}

/*********************
CONTACT ITEMS (THEME SETTINGS) STYLES
*********************/
.contact-info_address-link {
  display: inline-block;
}

/*********************
SOCIAL MEDIA (THEME SETTINGS) STYLES
*********************/
.social-media_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
}
.social-media_list.social-media_icons .social-media_li-link {
  background-color: #a1cf00;
  border: 1px solid #1c2622;
  border-color: #a1cf00;
  color: #1c2622;
  display: inline-block;
  font-size: 1.25em;
  min-width: 40px;
  padding: 0.2em 0.5em;
  text-align: center;
  -webkit-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}
.social-media_list.social-media_icons .social-media_li-link:hover, .social-media_list.social-media_icons .social-media_li-link:focus, .social-media_list.social-media_icons .social-media_li-link:active {
  background-color: rgb(129.2666666667, 166.2, 0);
  border-color: rgb(129.2666666667, 166.2, 0);
}
.social-media_list.social-media_names .social-media_li-link {
  padding: 0.5em;
}

.social-media_li-link {
  display: inline-block;
}

/*********************
PROCESS STEPS (THEME SETTINGS) STYLES
*********************/
.process-steps_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
}

.process-steps_li_wrap {
  display: flex !important;
  flex-direction: column;
  gap: 1.5em;
  width: 100%;
}

.process-steps_li_content-wrap {
  padding: 2.5em 1.375em 2.25em;
}

.process-steps_li_step-counter {
  border: 1px solid #1c2622;
  border-color: #25473f;
  color: #25473f;
  display: inline-block;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  line-height: 1;
  margin-bottom: 1.25em;
  min-width: 34px;
  padding: 0.4em 0.375em 0.375em 0.375em;
}

.process-steps_li_headline {
  color: #25473f;
  font-weight: 400;
}

.process-steps_li_text {
  font-size: 1.125em;
}

/*********************
AFTER CONTENT CTA (THEME SETTINGS) STYLES
*********************/
.after-content_banner_wrap {
  background-color: rgb(19.5277777778, 37.4722222222, 33.25);
  color: #ffffff;
  min-height: unset;
  padding: 1.5em 0;
}
.after-content_banner_pc {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1em 1.5em;
  justify-content: center;
  position: relative;
}

.after-content_banner_headline {
  margin-bottom: 0;
}

/*********************
GOOGLE MAP EMBED STYLES
*********************/
.google-map_embed {
  background-color: #ededed;
  max-width: 800px;
  min-height: 450px;
}
.google-map_embed .btn:active,
.google-map_embed .button:active,
.google-map_embed button:active {
  top: unset;
}

.marker-content_title {
  font-size: 1.75em;
  max-width: 220px;
}

.marker-content_address-wrap {
  font-size: 1.25em;
}

/*********************
OVERSIZED BUTTON (COMPONENT) STYLES
*********************/
.oversized-btn {
  align-items: center;
  border: 1px solid #1c2622;
  border-radius: 0.25em;
  display: flex;
  flex-direction: column;
  gap: 0.625em 1.25em;
  justify-content: center;
  padding: 1.5em 1.25em;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.oversized-btn:hover, .oversized-btn:focus, .oversized-btn:active {
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.oversized-btn_icon {
  margin: 0 !important;
  max-width: 65px !important;
}

.oversized-btn_label {
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0;
  text-transform: uppercase;
}

/*********************
BREADCRUMB STYLES
*********************/
/*
.breadcrumbs {
	background-color: $light-gray;
	border-radius: $border-radius;
	color: $black;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25em;
	justify-content: center;
	padding: 0.375em 2em;
}

.bread-link,
.bread-parent,
.bread-cat {
	color: $black;
	text-decoration: none;

	&:hover,
	&:focus,
	&:active {
		color: $black;
		text-decoration: underline;
	}
}

.separator {}

.item-home {}

.item-cat {}

.item-current {}
*/
/*********************
POSTS & CONTENT STYLES
*********************/
.content {
  padding: 3.5em 0;
  min-height: calc(100vh - 365px);
}

.inner-content {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
}

.main {
  flex-grow: 1;
  padding-right: 0;
}

.byline {
  color: #9fa6b4;
  font-style: italic;
  margin: 1em 0 0 0;
}
.is-layout-flex > :is(*, div) {
  margin: 0 !important;
}

.delay-columns_wrap {
  flex-direction: column !important;
}

.wp-block-buttons {
  gap: 1.25em;
}

/*
.is-layout-flex > :is(*, div) {
	margin: 0;
}

.is-layout-grid > :is(*, div) {
	margin: 0;
}
*/
.entry-content h1:last-child, .entry-content .h1:last-child, .entry-content h2:last-child, .entry-content .h2:last-child, .entry-content h3:last-child, .entry-content .h3:last-child, .entry-content h4:last-child, .entry-content .h4:last-child, .entry-content h5:last-child, .entry-content .h5:last-child, .entry-content h6:last-child, .entry-content .h6:last-child, .entry-content .subhead:last-child, .entry-content .wp-block-heading:last-child, .entry-content p:last-child, .entry-content ul:last-child, .entry-content ol:last-child, .entry-content table:last-child, .entry-content dl:last-child, .entry-content dd:last-child, .entry-content blockquote:last-child, .entry-content img:last-child, .entry-content figure:last-child, .entry-content .wp-block-image:last-child, .entry-content hr:last-child, .entry-content pre:last-child, .entry-content code:last-child, .entry-content kbd:last-child, .entry-content samp:last-child, .entry-content .wp-caption:last-child, .entry-content .wpmf-gallerys:last-child, .entry-content .iframe-container:last-child, .entry-content .gform_wrapper:last-child, .entry-content .wp-block-group:last-child, .entry-content .wp-block-columns:last-child, .entry-content .wp-block-cover:last-child, .entry-content .wp-block-cover-image:last-child, .entry-content .wp-block-buttons:last-child, .entry-content .fb_acf_block:last-child {
  margin-bottom: 0;
}
.entry-content h1, .entry-content .h1, .entry-content h2, .entry-content .h2, .entry-content h3, .entry-content .h3, .entry-content h4, .entry-content .h4, .entry-content h5, .entry-content .h5, .entry-content h6, .entry-content .h6, .entry-content .subhead, .entry-content .wp-block-heading {
  margin: 0 0 0.5em 0;
}
.entry-content p, .entry-content ul, .entry-content ol, .entry-content table, .entry-content dl, .entry-content dd, .entry-content blockquote, .entry-content img, .entry-content figure, .entry-content .wp-block-image, .entry-content hr, .entry-content pre, .entry-content code, .entry-content kbd, .entry-content samp, .entry-content .wp-caption, .entry-content .wpmf-gallerys, .entry-content .iframe-container, .entry-content .gform_wrapper, .entry-content .wp-block-group, .entry-content .wp-block-columns, .entry-content .wp-block-cover, .entry-content .wp-block-cover-image, .entry-content .wp-block-buttons, .entry-content .fb_acf_block {
  margin: 0 0 1.5em 0;
}
.entry-content > p,
.entry-content .wp-block-group > p,
.entry-content .wp-block-group__inner-container > p,
.entry-content .wp-block-column > p,
.entry-content .wp-block-cover__inner-container > p,
.entry-content .wp-block-media-text__content > p {
  font-size: 1.125em;
}
.entry-content > ul,
.entry-content .wp-block-group > ul,
.entry-content .wp-block-group__inner-container > ul,
.entry-content .wp-block-column > ul,
.entry-content .wp-block-cover__inner-container > ul,
.entry-content .wp-block-media-text__content > ul,
.entry-content > ol,
.entry-content .wp-block-group > ol,
.entry-content .wp-block-group__inner-container > ol,
.entry-content .wp-block-column > ol,
.entry-content .wp-block-cover__inner-container > ol,
.entry-content .wp-block-media-text__content > ol {
  font-size: 1.125em;
}
.entry-content > ul li,
.entry-content .wp-block-group > ul li,
.entry-content .wp-block-group__inner-container > ul li,
.entry-content .wp-block-column > ul li,
.entry-content .wp-block-cover__inner-container > ul li,
.entry-content .wp-block-media-text__content > ul li,
.entry-content > ol li,
.entry-content .wp-block-group > ol li,
.entry-content .wp-block-group__inner-container > ol li,
.entry-content .wp-block-column > ol li,
.entry-content .wp-block-cover__inner-container > ol li,
.entry-content .wp-block-media-text__content > ol li {
  padding-left: 0.25em;
  margin-bottom: 0.9em;
}
.entry-content ul, .entry-content ol {
  padding-left: 1.75em;
}
.entry-content ul.no-list, .entry-content ol.no-list {
  padding-left: 0;
}
.entry-content ol {
  counter-reset: custom-list-counter;
  list-style: none;
}
.entry-content ol li {
  counter-increment: custom-list-counter;
  margin: 0 0 1.5em 1.75em;
  padding-left: 0.5em;
  position: relative;
}
.entry-content ol li::before {
  border: 1px solid #a1cf00;
  color: #25473f;
  content: counter(custom-list-counter, decimal-leading-zero);
  display: inline-block;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.125em;
  left: -2.8em;
  line-height: 1.7em;
  position: absolute;
  text-align: center;
  top: 0;
  min-height: 35px;
  min-width: 35px;
  padding: 0.125em 0.125em 0 0.125em;
}
.entry-content table {
  width: 100%;
}
.entry-content table caption {
  font-size: 0.75em;
  letter-spacing: 0.1em;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
.entry-content table td {
  border: none;
  padding: 1em 0.5em;
  text-align: center;
}
.entry-content table td:last-child {
  border-right: 0;
}
.entry-content table th {
  background-color: #424242;
  color: #ffffff;
  border: none;
  font-weight: 500;
  padding: 0.75em;
  text-transform: uppercase;
}
.entry-content table th:last-child {
  border-right: 0;
}
.entry-content blockquote {
  background-color: #ededed;
  border: none;
  color: #1c2622;
  font-size: 1.125em;
  font-style: italic;
  font-weight: 400;
  padding: 2.125em 2.125em 2.125em 3.625em;
}
.entry-content blockquote p {
  margin-bottom: 0.25em;
  position: relative;
}
.entry-content blockquote p::before {
  background-color: #a1cf00;
  content: "";
  height: 100%;
  left: -1.6em;
  position: absolute;
  top: 0;
  width: 2px;
}
.entry-content .wp-block-group {
  /*
  &.is-nowrap {
  	> .wp-block-group {
  		margin-bottom: 0;
  	}
  }
  */
}
.entry-content .wp-block-group .col-2_break-pc_wrap {
  gap: 0;
}
.entry-content .wp-block-group .col-2_break-pc_wrap .stay-pc_wrap {
  padding-left: 5vw;
  padding-right: 5vw;
}
.entry-content .wp-block-group .col-2_break-pc_wrap .break-pc_wrap .wp-block-cover {
  height: 100%;
}
.entry-content .wp-block-separator {
  padding: 0;
  width: 100%;
}
.entry-content dl dd {
  color: #9fa6b4;
  font-size: 0.85em;
  margin-left: 0;
}
.entry-content dl dd:last-child {
  margin-bottom: 0;
}
.entry-content img {
  border-radius: 0.25em;
  display: block;
  height: auto;
  max-width: 100%;
}
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
  max-width: 100%;
}
.entry-content pre, .entry-content code, .entry-content kbd, .entry-content samp {
  background: #1a1a1a;
  border-radius: 0.25em;
  color: #ffffff;
  display: block;
  font-size: 0.9em;
  padding: 1.75em;
}
.entry-content > .alignfull:first-child {
  margin-top: -3.5em;
}
.entry-content > .alignfull:last-child {
  margin-bottom: -3.5em;
}
@media (prefers-reduced-motion: no-preference) {
  .entry-content :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subhead, .wp-block-heading, p, li, blockquote, hr, pre, code, kbd, samp, .wp-caption, .wp-block-button, .wp-block-table, blockquote, .wp-block-image, .wp-caption, .wpmf-gallerys, .gform_wrapper, .wp-block-cover, .fb_acf_block, .fb_acf_block):not(.fb_acf_block *, .toc_block-wrap) {
    animation: linear forwards;
    opacity: 0;
  }
  @supports (animation-range: 100px 250px) and (animation-timeline: view(y)) and (animation-range: 200px 300px) {
    .entry-content :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subhead, .wp-block-heading, p, li, blockquote, hr, pre, code, kbd, samp, .wp-caption, .wp-block-button, .wp-block-table, blockquote, .wp-block-image, .wp-caption, .wpmf-gallerys, .gform_wrapper, .wp-block-cover, .fb_acf_block, .fb_acf_block):not(.fb_acf_block *, .toc_block-wrap) {
      animation-range: 100px 250px;
      animation-timeline: view(y);
    }
    .entry-content :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subhead, .wp-block-heading, p, li, blockquote, hr, pre, code, kbd, samp, .wp-caption, .wp-block-button, .wp-block-table, blockquote, .wp-block-image, .wp-caption, .wpmf-gallerys, .gform_wrapper, .wp-block-cover, .fb_acf_block, .fb_acf_block):not(.fb_acf_block *, .toc_block-wrap).wp-block-image {
      animation-range: 200px 300px;
    }
  }
  .entry-content :where(.wp-block-table, blockquote, .wp-block-image, .wp-caption, .wpmf-gallerys, .gform_wrapper, .wp-block-cover, .fb_acf_block):not(.fb_acf_block *) {
    animation-name: fade-in;
  }
  .entry-content :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subhead, .wp-block-heading, p, li, blockquote, hr, pre, code, kbd, samp, .wp-caption, .wp-block-button):not(.fb_acf_block *) {
    animation-name: fade-in_up;
  }
  .entry-content > *.initially-visible {
    animation: 0.5s linear forwards;
    animation-delay: 1.25s;
    animation-name: fade-in;
    opacity: 0;
  }
  .entry-content > *.initially-visible * {
    animation: 0.5s linear forwards;
    animation-duration: 0s;
    animation-name: fade-in;
    opacity: 0;
  }
}

.alignleft,
img.alignleft {
  text-align: left;
}

.alignright,
img.alignright {
  text-align: right;
}

.aligncenter,
img.aligncenter {
  text-align: center;
}

.wp-caption {
  border: 1px solid #1c2622;
  max-width: 100%;
  padding: 0.5em;
}
.wp-caption img {
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 0.5em 0 0;
  text-align: center;
}

.wpmf-gallerys .gallery .gallery-item {
  padding: 0.25em !important;
}
.wpmf-gallerys .gallery .gallery-item .gallery-caption {
  font-size: 0.85em;
  margin: 0.5em 0 0;
}

.tags {
  margin: 0;
}

/*********************
GUTENBERG STYLES
*********************/
.alignfull.has-background {
  padding: 2em 0;
}
.alignfull > .wp-block-group__inner-container {
  margin: 0 auto;
  width: 90%;
}

.page-center .alignfull {
  margin-left: calc(50% - (50vw - 7.5px));
  max-width: calc(100vw - 15px);
  width: calc(100vw - 15px);
}
p.has-background {
  padding: 1.75em;
}

.has-background {
  padding: 1.5em;
}

.has-black-color {
  color: #1a1a1a !important;
}

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

.has-dark-gray-color {
  color: #3b3436 !important;
}

.has-pine-color {
  color: #25473f !important;
}

.has-outer-space-color {
  color: #1c2622 !important;
}

.has-vibrant-green-color {
  color: #a1cf00 !important;
}

.has-dark-stone-color {
  color: #424242 !important;
}

.has-black-background-color {
  background-color: #1a1a1a !important;
}

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

.has-dark-gray-background-color {
  background-color: #3b3436 !important;
}

.has-pine-background-color {
  background-color: #25473f !important;
}

.has-outer-space-background-color {
  background-color: #1c2622 !important;
}

.has-vibrant-green-background-color {
  background-color: #a1cf00 !important;
}

.has-dark-stone-background-color {
  background-color: #424242 !important;
}

.has-black-border-color {
  border-color: #1a1a1a !important;
}

.has-white-border-color {
  border-color: #ffffff !important;
}

.has-dark-gray-border-color {
  border-color: #3b3436 !important;
}

.has-pine-border-color {
  border-color: #25473f !important;
}

.has-outer-space-border-color {
  border-color: #1c2622 !important;
}

.has-vibrant-green-border-color {
  border-color: #a1cf00 !important;
}

.has-dark-stone-border-color {
  border-color: #424242 !important;
}

/*********************
CUSTOM ACF BLOCK STYLES
*********************/
.no-content_headline {
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}

.no-content_paragraph {
  font-size: 1.25em;
}

.faq_list_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 770px;
}

.faq_li_wrap {
  border-bottom: 1px solid #1c2622;
  border-color: #25473f !important;
  overflow: hidden;
  width: 100%;
}
.faq_li_wrap:first-child {
  border-top: 1px solid #1c2622;
}
.faq_li_wrap.faq-open .faq_li_question-wrap .faq_li_question-icon::after {
  -moz-transform: translate(-50%, -50%) rotate(90deg);
  -o-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq_li_wrap.faq-open .faq_li_answer-wrap {
  max-height: 750px;
}

.faq_li_question-wrap {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 1em;
  justify-content: space-between;
  margin: 1.875em 0;
  -webkit-transition: all 0.235s ease-in-out;
  transition: all 0.235s ease-in-out;
}
.faq_li_question {
  font-size: 1.375em;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq_li_question-icon {
  min-height: 2em;
  min-width: 2em;
  position: relative;
}
.faq_li_question-icon::before, .faq_li_question-icon::after {
  background-color: #25473f;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 100%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.faq_li_question-icon::before {
  height: 0.125em;
}
.faq_li_question-icon::after {
  width: 0.125em;
}

.faq_li_answer-wrap {
  max-height: 0;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}

.faq_li_answer {
  font-size: 1.125em;
  padding-bottom: 1.666666em;
}

.gallery-filter_block-wrap .filter-form_wrap {
  background-color: #25473f;
  gap: 1em;
  padding: 0.875em 1.625em;
}
.gallery-filter_block-wrap .attachment_fieldsets_wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.gallery-filter_block-wrap .filter-form_fieldset {
  gap: 0.375em;
}
.gallery-filter_block-wrap .filter-form_title {
  color: #ffffff;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
}

.gallery-filter_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em 1.75em;
  margin-bottom: 0 !important;
}

.gallery-filter_li_wrap {
  width: 100%;
}

.image-slider-cont_list_wrap {
  padding: 0 !important;
}
.image-slider-cont_list_wrap .slick-track {
  gap: 1.5em;
  min-height: 0;
}

.oversized-btn_block-wrap {
  animation-name: fade-in_up !important;
}
.process-list_block-wrap .process-steps_list_wrap {
  justify-content: center;
}
.process-list_block-wrap .process-steps_li_wrap {
  animation: linear forwards;
  animation-name: fade-in;
  max-width: 1130px;
  opacity: 0;
}
@supports (animation-range: 100px 250px) and (animation-timeline: view(y)) and (animation-range: 200px 300px) {
  .process-list_block-wrap .process-steps_li_wrap {
    animation-range: 100px 250px;
    animation-timeline: view(y);
  }
}
.process-list_block-wrap .process-steps_li_content-wrap {
  border: 1px solid #1c2622;
  border-radius: 0.25em;
  text-align: center;
}
.process-slider_block-wrap .process-steps_list_wrap {
  margin: 0 5vw;
  padding: 5em 0 0 !important;
  width: calc(100% - 10vw);
}
.process-slider_block-wrap .process-steps_list_wrap .slick-arrow {
  font-size: 36px;
  padding: 0.2em 0.25em 0.12em;
  top: 0;
}
.process-slider_block-wrap .process-steps_list_wrap .slick-arrow.pull-left {
  left: unset;
  right: 2em;
}
.process-slider_block-wrap .process-steps_list_wrap .slick-track {
  gap: 0.75em;
}
.process-slider_block-wrap .process-steps_li_wrap {
  background-color: #1c2622;
  border: 1px solid #1c2622;
  border-radius: 0.25em;
  gap: 0;
  overflow: hidden;
}
.process-slider_block-wrap .process-steps_li_content-wrap {
  background-color: #1c2622;
}
.process-slider_block-wrap .process-steps_li_step-counter {
  border-color: #ffffff;
  color: #ffffff;
}
.process-slider_block-wrap .process-steps_li_headline {
  color: #a1cf00;
}
.process-slider_block-wrap .process-steps_li_text {
  color: #ffffff;
}
.process-slider_block-wrap .process-steps_li_img {
  border-radius: 0;
}

.toc_block-wrap {
  align-items: center;
  background-color: #25473f;
  border-radius: 0.125em;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  justify-content: center;
  padding: 0 0.75em;
  width: 100%;
}
.toc_block-wrap.hide-block {
  display: none;
  visibility: hidden;
}

.toc_icon {
  margin: 0 !important;
  max-width: 50px !important;
  padding: 1.25em 0;
}

.toc_list_wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1em;
  justify-content: center;
  padding: 1.125em 0 !important;
}

.toc_li_link {
  color: #ffffff;
  display: inline-block;
  font-weight: 700;
  padding: 0.5em;
  text-decoration: none;
  text-transform: capitalize;
}
.toc_li_link:hover, .toc_li_link:focus, .toc_li_link:active {
  color: #ffffff;
  text-decoration: underline;
}
.toc_li_link[title=faq] {
  text-transform: uppercase;
}

.testimonial-grid_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
}

.testimonial-grid_li_wrap {
  background-color: #424242;
  border-radius: 0.25em;
  color: #25473f;
  display: flex;
  flex-direction: column;
  gap: 2.25em;
  justify-content: center;
  padding: 3.25em 2em 1.875em;
  width: 100%;
}

.testimonial-grid_li_testimony {
  font-size: 1.125em;
}

.testimonial-grid_li_project-info {
  color: #25473f;
  text-transform: capitalize;
}

.testimonial-grid_li_project-link {
  align-self: flex-end;
  font-size: 1.125em;
}

.testimonial-slider_list_wrap .slick-track {
  min-height: unset;
}

.testimonial-slider_li_wrap {
  background-color: #25473f;
  border-radius: 0.25em;
  color: #ffffff;
  display: flex !important;
  flex-direction: column;
  gap: 1.25em;
  margin: 0 0.5em;
  padding: 1.5em;
}

.testimonial-slider_li_testimony {
  font-size: 1.125em;
}

.testimonial-slider_li_testimony-author {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.25;
}

/*
.testimonial-slider_li_testimony-img {
	max-width: 200px !important;
}
*/
.testimonial-slider_li_testimony-link {
  font-size: 1.125em;
}

.video-popup_thumb_wrap {
  cursor: pointer;
  position: relative;
}

.video-popup_thumb_img {
  margin-bottom: 0 !important;
  -moz-box-shadow: 1px 1px 7px -2px #1a1a1a;
  -o-box-shadow: 1px 1px 7px -2px #1a1a1a;
  -ms-box-shadow: 1px 1px 7px -2px #1a1a1a;
  -webkit-box-shadow: 1px 1px 7px -2px #1a1a1a;
  box-shadow: 1px 1px 7px -2px #1a1a1a;
}

.video-popup_thumb_icon {
  background-color: #25473f;
  border-radius: 0.25em;
  color: #ffffff;
  font-size: 1.25em;
  left: 50%;
  padding: 0.6em 1.5em 0.4em;
  position: absolute;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-popup_modal_wrap {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 999999;
}
.video-popup_modal_wrap.open-popup {
  display: block;
  visibility: visible;
}

.video-popup_modal_vid-wrap {
  height: 100%;
  left: 50%;
  max-height: calc(100vh - 8em);
  max-width: calc(100vw - 12em);
  position: fixed;
  top: 50%;
  width: 100%;
  z-index: 2;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-popup_modal_vid-iframe {
  background-color: #1a1a1a;
  height: 100%;
  width: 100%;
}

.video-popup_modal_close {
  background-color: #25473f;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5em;
  padding: 0.1em 0.5em;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
}

/*********************
PATTERN STYLES
*********************/
.pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical {
  align-items: normal;
}

.pattern_img-group-copy .wp-block-group__inner-container .wp-block-columns .wp-block-column:nth-child(odd) .wp-block-image {
  clip-path: polygon(60% 90%, 55% 90%, 55% 10%, 55% 0%, 0% 0%, 0% 100%, 55% 100%, 55% 90%, 100% 90%, 100% 10%, 60% 10%);
}
.pattern_img-group-copy .wp-block-group__inner-container .wp-block-columns .wp-block-column:nth-child(odd) .wp-block-image img {
  border-radius: 0;
}

.pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group {
  display: flex;
  flex-direction: column;
  gap: 2.25em;
}
.pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item {
  justify-content: center;
}
.pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(3) {
  order: -1;
}
.pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(4) {
  order: -1;
}
/*
.slider_track {
	//this item should have alignfull on it

	> .wp-block-group__inner-container {
		--slider-max-width: 100%;
		--slider-duration: 20s;

		display: flex;
		height: var(--slider-item-height);
		//block-size: var(--slider-item-height);
		max-width: none !important;
		overflow-x: hidden;
		position: relative;
		//width: 100%;
		width: var(--slider-max-width) !important;
		//max-inline-size: var(--slider-max-width);

		&:has( .wp-block-image:nth-child(4):last-child ) {
			--slider-items: 4;
		}

		&:has( .wp-block-image:nth-child(5):last-child ) {
			--slider-items: 5;
		}

		.wp-block-image {
			--slider-item-width: 300px;
			--slider-item-height: 200px;
			--slider-item-offset: max(
				calc( var(--slider-item-width) * var(--slider-items) ),
				calc( 100% + var(--slider-item-width) )
			);
			--slider-delay: calc( var(--slider-duration) / var(--slider-items) * ( var(--slider-items) - var(--slider-item-index) ) );

			animation: slider-scroll-left linear var(--slider-duration) var(--slider-delay, 0s) infinite;
			position: absolute;
			inset-inline-start: var(--slider-item-offset);
			@include transform( translate( -50%, 0 ) );

			&:nth-of-type(1) {
				--slider-item-index: 1;
			}
			&:nth-of-type(2) {
				--slider-item-index: 2;
			}
			&:nth-of-type(3) {
				--slider-item-index: 3;
			}
			&:nth-of-type(4) {
				--slider-item-index: 4;
			}
			&:nth-of-type(5) {
				--slider-item-index: 5;
			}
		}
	}

	@keyframes slider-scroll-left {
		to {
			inset-inline-start: calc( var(--slider-item-width) * -1 );
		}
	}
}

.pattern_image-sliders {
	@keyframes images-scroll-left {
		0% {
			//left: -250px;
			@include transform( translate( 0%, 0 ) );
		}
		100% {
			//left: -250px;
			@include transform( translate( -100%, 0 ) );
		}
	}

	.wp-block-group__inner-container {

		// Variables for slider settings

		// By default, the slider will scroll to the left. Right scrolling has not been setup yet, but once we have a solution for left, right will not be difficult.
		.slider_track {
			//height: 200px;
			//min-width: 100%;

			position: relative;
			//overflow: hidden;

			/*
			animation-name: images-scroll-left;
			animation-duration: 20s;
			animation-timing-function: linear;
			animation-iteration-count: infinite;
			// * /

			.wp-block-group__inner-container {
				//align-items: center;
				//display: flex;
				gap: 1.5em;
				max-width: none;
				width: 100%;
			}

			// Slider Item
			.wp-block-image {
				/*
				animation-name: images-scroll-left;
				//animation-duration: $slider-animation-speed;
				animation-duration: 20s;
				animation-timing-function: linear;
				animation-iteration-count: infinite;
				// * /

				//height: 200px;
				margin: 0;
				//position: absolute;
				//width: 300px;

				// Create multiple rules for the various slides, with slight 'animation-delay' variations for each slide.

				img {
					//height: 100%;
					//object-fit: cover;
				}
			}
		}

		/*
		// Styles for scrolling left
		.slider_scroll-left {
			@keyframes images-scroll-left {
				to {
					left: -250px;
				}
			}
		}
		// * /

		// Styles for scrolling right (NOT READY)
		//.slider_scroll-right {
		//	@keyframes scroll-right {
		//		to {
		//			right: -250px;
		//		}
		//	}
		//}
	}
}
*/
.pattern_two-col-content .wp-block-group__inner-container .wp-block-columns {
  gap: 3em;
}

.pattern_our-process-list .wp-block-group__inner-container > .wp-block-group {
  margin: auto;
  max-width: 570px;
}

.pattern_our-process-slider.alignfull, .pattern_our-process-slider.has-background {
  padding: 0;
}
.pattern_banner .wp-block-group__inner-container > .wp-block-group {
  gap: 0.75em 6.5em !important;
}

.pattern_latest-posts {
  background: center top/cover no-repeat url("../images/bg_grid-lines_01.png");
}

.pattern_faq .wp-block-group__inner-container .wp-block-columns {
  flex-direction: column-reverse;
  gap: 2.875em;
}
.pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column .wp-block-image {
  padding-left: 5vw;
  padding-right: 5vw;
}
.pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column .wp-block-image img {
  margin: auto;
}
.pattern_portfolio-gallery .wp-block-group__inner-container .portfolio_text-content_wrap > .wp-block-group {
  gap: 0.5em;
  width: 100%;
}
.pattern_portfolio-gallery .wp-block-group__inner-container .portfolio_text-content_wrap > .wp-block-group .wp-block-heading {
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pattern_related-posts {
  background: center center/cover no-repeat url("../images/bg_grid-lines_01.png");
}

.pattern_google-reviews {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 10px;
  padding-bottom: 0;
  margin-bottom: 1.5em !important;
}
.pattern_google-reviews .wp-block-group__inner-container > .wp-block-group {
  justify-content: center;
  text-align: center;
}
.pattern_google-reviews .wp-block-group__inner-container .wp-block-heading {
  color: #ffffff;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed {
  margin-top: -6em !important;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap {
  border-radius: 10px !important;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2) !important;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-name-date .sb-item-author-name {
  font-weight: 600 !important;
  font-size: 20px !important;
  line-height: 1em !important;
  color: #1a1a1a !important;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-rating {
  margin: 5px 0 5px 0 !important;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-text {
  color: #1a1a1a !important;
}
.pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-load-button-ctn {
  display: none !important;
  visibility: hidden;
}
.pattern_build-areas-map .wp-block-group__inner-container .wp-block-columns .wp-block-column .wp-block-buttons {
  gap: 0.75em;
  container-type: inline-size;
}
.pattern_build-areas-map .wp-block-group__inner-container .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button {
  width: 100%;
}
.pattern_build-areas-map .wp-block-group__inner-container .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button .wp-element-button.wp-block-button__link {
  padding: 0.75em 1.5em;
}
@container (min-width: 522px) {
  .pattern_build-areas-map .wp-block-group__inner-container .wp-block-columns .wp-block-column .wp-block-buttons .wp-block-button {
    width: calc(50% - 0.375em);
  }
}

/*********************
POST FEED - MODULE STYLES
*********************/
.post_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5em 1.5em;
  justify-content: flex-start;
  margin-bottom: 0 !important;
}

.post_li_wrap {
  width: 100%;
}

.post_li_img-link {
  display: inline-block;
  margin-bottom: 0.875em;
}

.post_li_title {
  margin-bottom: 0.6em;
}

.post_li_title-link {
  color: #1c2622;
  font-weight: 400;
}
.post_li_title-link:active, .post_li_title-link:focus, .post_li_title-link:hover {
  text-decoration: underline;
}

.post_li_meta {
  font-style: italic;
  margin-bottom: 0.5em;
}

.post_li_date {
  margin-bottom: 0.5em;
}

.post_li_excerpt {
  font-size: 1.125em;
  margin: 0 0 1.5em !important;
}

/*********************
POST SINGLE STYLES
*********************/
.single-post .feat-img_container.feat-img_two-imgs {
  margin-bottom: 3em;
}
.single-post .content {
  padding: 5.875em 0;
}
.single-post .content .entry-content > .alignfull:first-child {
  margin-top: 0;
}
.single-post .content .entry-content > .alignfull:last-child {
  margin-bottom: 0;
}
.single-post .content .entry-content .alignfull {
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.single-post .content .entry-content .alignfull > .wp-block-group__inner-container {
  margin: 0 2em;
  max-width: none;
  width: calc(100% - 4em);
}

.entry-meta {
  font-style: italic;
  margin: 0 0 0.5em 0;
}

.blog-sgl_sidebar {
  margin: 0 0 3.25em 0 !important;
}

.blog-sgl_sidebar_services-wrap {
  background-color: #25473f;
  border-radius: 0.25em;
  color: #ffffff;
  padding: 2em 1.25em 2.125em;
  width: 100%;
}

.blog-sgl_sidebar_services-headline {
  border-bottom: 1px solid #a1cf00;
  color: #ffffff;
  display: inline-block;
  padding-bottom: 0.375em;
  text-transform: uppercase;
}

.blog-sgl_sidebar_services-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}

.blog-sgl_sidebar_services-li-link {
  color: #ffffff;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}
.blog-sgl_sidebar_services-li-link:hover, .blog-sgl_sidebar_services-li-link:focus, .blog-sgl_sidebar_services-li-link:active {
  color: #a1cf00;
  text-decoration: underline;
}

.blog-sgl_sidebar_video-wrap {
  margin-top: 2.5em;
  padding-bottom: 169.25%;
  width: 100%;
}

.blog-sgl_after-content_wrap {
  padding: 0;
}
.blog-sgl_after-content_wrap .no-list {
  padding: 0;
}

.blog-sgl_after-content_pc .widget {
  margin: 0;
}

/*********************
PORTFOLIO FEED - MODULE STYLES
*********************/
.portfolio_list_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 3.75em 2em;
  justify-content: flex-start;
  margin-bottom: 0 !important;
}

.portfolio_li_wrap {
  width: 100%;
}

.portfolio_li_img-link {
  display: inline-block;
  margin-bottom: 1.5em;
}

.portfolio_li_title {
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.portfolio_li_title-link {
  color: #25473f;
  font-weight: 700;
}
.portfolio_li_title-link:hover, .portfolio_li_title-link:focus, .portfolio_li_title-link:active {
  color: #25473f;
  text-decoration: underline;
}

/*********************
SERVICES/RESOURCES FEED - MODULE STYLES
*********************/
.serv-res_list_wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.5em;
  margin-bottom: 0 !important;
}

.serv-res_li_wrap {
  width: 100%;
}

.serv-res_li_img-link {
  display: inline-block;
  margin-bottom: 1.25em;
}

.serv-res_li_title {
  margin-bottom: 0.5em;
}

.serv-res_li_title-link {
  color: #25473f;
  text-transform: uppercase;
}
.serv-res_li_title-link:hover, .serv-res_li_title-link:focus, .serv-res_li_title-link:active {
  color: rgb(19.5277777778, 37.4722222222, 33.25);
}

.serv-res_li_excerpt {
  margin: 0 0 1em !important;
}

.serv-res_li_link {
  font-size: 1.125em;
}

/*********************
POST TYPE FILTER - MODULE STYLES
*********************/
.filter-form_wrap {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: flex-start;
  margin-bottom: 3em;
}

.filter-form_fieldset {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  width: 100%;
}

.filter-form_title {
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
}

.filter-form_buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.filter-form_button-option.mixitup-control-active {
  background-color: rgb(19.5277777778, 37.4722222222, 33.25);
  color: #ffffff;
  text-decoration: none;
}

.filter-form_checkboxes {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.25em 0.75em;
}

.filter-form_checkbox-label {
  cursor: pointer;
}

/*********************
MIXITUP STYLES
*********************/
.filter-no-results {
  display: none;
  margin: 3em 0;
  text-align: center;
  visibility: hidden;
  width: 100%;
}
.filter-no-results.show-no-results {
  display: block;
  visibility: visible;
}

.filter-pagination {
  align-items: center;
  column-gap: 0.625em;
  display: flex;
  justify-content: center;
  margin: 2.5em 0 0 0;
  white-space: nowrap;
  width: 100%;
}
.filter-pagination.mixitup-page-list-disabled {
  display: none;
  visibility: hidden;
}
.filter-pagination .mixitup-pager {
  align-items: center;
  background-color: transparent;
  border: 1px solid #1c2622;
  border-color: #25473f;
  color: #25473f;
  cursor: pointer;
  display: flex;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  min-width: 36px;
  padding: 0.25em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.filter-pagination .mixitup-pager[data-page="1"]::before, .filter-pagination .mixitup-pager[data-page="2"]::before, .filter-pagination .mixitup-pager[data-page="3"]::before, .filter-pagination .mixitup-pager[data-page="4"]::before, .filter-pagination .mixitup-pager[data-page="5"]::before, .filter-pagination .mixitup-pager[data-page="6"]::before, .filter-pagination .mixitup-pager[data-page="7"]::before, .filter-pagination .mixitup-pager[data-page="8"]::before, .filter-pagination .mixitup-pager[data-page="9"]::before {
  content: "0";
}
.filter-pagination .mixitup-pager:hover, .filter-pagination .mixitup-pager:focus, .filter-pagination .mixitup-pager:active {
  background-color: #25473f;
  color: #ffffff;
}
.filter-pagination .mixitup-pager.mixitup-pager-prev, .filter-pagination .mixitup-pager.mixitup-pager-next {
  border: none;
  color: #25473f;
  font-size: 1.5em;
  line-height: 0.5;
  min-height: unset;
  padding: 0;
}
.filter-pagination .mixitup-pager.mixitup-pager-prev.mixitup-pager-disabled, .filter-pagination .mixitup-pager.mixitup-pager-next.mixitup-pager-disabled {
  display: none;
  visibility: hidden;
}
.filter-pagination .mixitup-pager.mixitup-pager-prev:hover, .filter-pagination .mixitup-pager.mixitup-pager-prev:focus, .filter-pagination .mixitup-pager.mixitup-pager-prev:active, .filter-pagination .mixitup-pager.mixitup-pager-next:hover, .filter-pagination .mixitup-pager.mixitup-pager-next:focus, .filter-pagination .mixitup-pager.mixitup-pager-next:active {
  background-color: transparent;
  color: #1c2622;
  text-decoration: underline;
}
.filter-pagination .mixitup-pager.mixitup-pager-active, .filter-pagination .mixitup-pager.mixitup-pager-disabled, .filter-pagination .mixitup-pager.mixitup-pager-truncation-marker {
  cursor: default;
}
.filter-pagination .mixitup-pager.mixitup-pager-active {
  background-color: #25473f;
  color: #ffffff;
  cursor: default;
  font-weight: 400;
}
.filter-pagination .mixitup-pager.mixitup-pager-truncation-marker {
  border: none;
  color: #25473f;
  font-size: 1em;
  font-weight: 400;
  min-width: 0;
  padding: 0;
}
.filter-pagination .mixitup-pager.mixitup-pager-truncation-marker:hover, .filter-pagination .mixitup-pager.mixitup-pager-truncation-marker:focus, .filter-pagination .mixitup-pager.mixitup-pager-truncation-marker:active {
  background-color: transparent;
}

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

.pagination ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625em;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.pagination ul li a, .pagination ul li.current {
  align-items: center;
  background-color: transparent;
  border: 1px solid #1c2622;
  border-color: #1c2622;
  color: #1c2622;
  display: flex;
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  min-width: 36px;
  padding: 0.25em;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.pagination ul li a:hover, .pagination ul li a:focus, .pagination ul li a:active {
  background-color: #25473f;
  color: #ffffff;
}
.pagination ul li.current {
  background-color: #25473f;
  color: #ffffff;
  cursor: default;
}
.pagination ul li.prev-link a, .pagination ul li.next-link a {
  border: none;
  color: #25473f;
  font-size: 1.5em;
  line-height: 0.5;
  min-height: unset;
  padding: 0;
}
.pagination ul li.prev-link a:hover, .pagination ul li.prev-link a:focus, .pagination ul li.prev-link a:active, .pagination ul li.next-link a:hover, .pagination ul li.next-link a:focus, .pagination ul li.next-link a:active {
  background-color: transparent;
  color: #1c2622;
  text-decoration: underline;
}
.pagination ul li.first-page-link.pagination-gap, .pagination ul li.last-page-link.pagination-gap {
  align-items: flex-end;
  display: flex;
  gap: 0.5em;
}
.pagination ul li.first-page-link.pagination-gap::after {
  content: "...";
  padding-bottom: 0.375em;
}
.pagination ul li.last-page-link.pagination-gap::before {
  content: "...";
  padding-bottom: 0.375em;
}

.wp-prev-next .prev-link {
  float: left;
}
.wp-prev-next .next-link {
  float: right;
}

/*********************
GOOGLE REVIEWS STYLES
*********************/
.sbr-feed .sb-feed-container .sb-feed-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2em;
  justify-content: center;
  margin: auto;
  width: 95%;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap {
  background-color: #ffffff;
  border-radius: 10px;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item {
  gap: 0.75em;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-provider-icon {
  display: none;
  visibility: hidden;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-author-date-ctn .sb-item-author-ctn .sb-item-name-date .sb-item-author-name {
  color: #1a1a1a !important;
  font-size: 1.125em !important;
  font-weight: 600 !important;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-rating .sb-relative .sb-item-rating-ctn {
  gap: 0.25em;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-rating .sb-relative .sb-item-rating-ctn .sb-item-rating-icon svg {
  margin: 0 2px;
  height: 27px;
  width: 27px;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-text {
  color: #ffffff !important;
  font-size: 1.125em !important;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-text .sb-expand .sb-expand-on-click {
  border-bottom: none;
  box-shadow: none;
  color: #ffffff;
}
.sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-text .sb-expand .sb-expand-on-click:active, .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap .sb-post-item .sb-item-text .sb-expand .sb-expand-on-click:hover {
  text-decoration: underline;
}
.sbr-feed .sb-feed-container .sb-load-button-ctn {
  align-items: center;
  display: flex;
  justify-content: center;
}
.sbr-feed .sb-feed-container .sb-load-button-ctn .sb-btn {
  background-color: #1c2622 !important;
  border: 0 !important;
  border-radius: 0.32em !important;
  box-shadow: none !important;
  color: #25473f !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  margin: auto !important;
  padding: 1.125em 3.75em 1.125em 2em !important;
  position: relative !important;
  width: auto !important;
  -webkit-transition: all 0.23s ease-in-out;
  transition: all 0.23s ease-in-out;
}
.sbr-feed .sb-feed-container .sb-load-button-ctn .sb-btn:active, .sbr-feed .sb-feed-container .sb-load-button-ctn .sb-btn:hover {
  background-color: rgb(56.1272727273, 76.1727272727, 68.1545454545) !important;
}
/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.25em;
}
.sidebar.no-sidebar {
  display: none;
  visibility: hidden;
}

.widget {
  margin: 0 0 2.25em;
  width: 100%;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widgettitle {
  border-bottom: 1px solid #1c2622;
  display: inline-block;
  margin-bottom: 0.5em;
}
.widget ul {
  margin: 0;
  padding: 0 0 0 1.5em;
}
.widget ul li ul {
  padding-left: 1em;
}

.no-widgets {
  background-color: #ffffff;
  border: 1px solid #1c2622;
  padding: 1.5em;
  text-align: center;
}
.no-widgets p {
  margin: 0;
}

/*********************
FOOTER STYLES
*********************/
.footer {
  background-color: #1c2622;
  color: #ffffff;
}
.footer a {
  color: #ffffff;
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
}
.footer a:hover, .footer a:focus, .footer a:active {
  text-decoration: underline;
}

.footer_col_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2.875em 1.75em;
  justify-content: space-between;
  padding: 3em 0 1.5em;
}

.footer_col {
  padding: 0;
  text-align: center;
}

.footer_headline {
  color: #a1cf00;
  font-size: 1.375em;
  font-weight: 500;
  margin-bottom: 0.75em;
}

.footer_oversized-btn_wrap {
  padding: 2.875em 0 0;
}
.footer_oversized-btn_wrap:has(.oversized-btn:nth-child(2)) {
  display: flex;
  flex-direction: column;
  gap: 1.625em;
  justify-content: center;
}
.footer_oversized-btn_wrap .oversized-btn {
  font-size: 1em !important;
}
.footer_content_paragraph {
  font-size: 1em;
  margin-bottom: 1.125em;
}
.footer_content_paragraph:last-child {
  margin-bottom: 0;
}

.footer_content_btn {
  color: #1c2622 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}

.footer_services {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875em 1.25em;
}
.footer_services li {
  line-height: 1.2;
  width: 100%;
}
.footer_links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875em 1.25em;
}
.footer_links li {
  line-height: 1.2;
  width: 100%;
}
.footer_links.footer_terms-links {
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 0.75em;
}
.footer_links.footer_terms-links li {
  width: auto;
}
.footer_links.footer_terms-links li a {
  cursor: pointer;
  position: relative;
  text-decoration: underline;
}
.footer_links.footer_terms-links li a:active, .footer_links.footer_terms-links li a:focus, .footer_links.footer_terms-links li a:hover {
  text-decoration: none;
}
.footer_links.footer_terms-links li:not(:first-child) a::before {
  content: "|";
  height: auto;
  left: -0.65em;
  position: absolute;
  top: 0;
  width: auto;
}

.footer_contact_wrap {
  margin-bottom: 2.25em;
}
.footer_contact_wrap:last-child {
  margin-bottom: 0;
}

.footer_contact_list {
  display: flex;
  flex-direction: column;
  gap: 1.375em 1em;
}

.footer_contact_li {
  line-height: 1.2;
}
.footer_copyright-credit {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  line-height: 1.2;
  padding: 1.5em 0 2em 0;
  text-align: center;
}
.footer_copyright-credit:has(.footer_copyright_links_wrap) .footer_copyright {
  order: 1;
}
.footer_copyright-credit:has(.footer_copyright_links_wrap) .footer_copyright_links_wrap {
  align-self: center;
  order: 0;
}
.footer_copyright-credit:has(.footer_copyright_links_wrap) .footer_credit {
  order: 2;
}

.footer_credit_link {
  font-size: 1em !important;
  font-weight: 700 !important;
}

/*********************
FIXED (FLOATING) ITEM STYLES
*********************/
.to-top {
  background-color: #1a1a1a;
  border: 1px solid #1c2622;
  border-color: #ffffff;
  border-radius: 0.25em;
  bottom: 10%;
  color: #ffffff;
  cursor: pointer;
  padding: 0.375em 0.5625em;
  position: fixed;
  right: 5%;
  text-decoration: none;
  z-index: 100;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.to-top:hover, .to-top:focus, .to-top:active {
  background-color: rgb(51.5, 51.5, 51.5);
  color: #ffffff;
}

.fixed-cta_btn {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  bottom: 0;
  padding: 0.825em 1.75em;
  position: fixed;
  right: 5%;
  width: 90%;
  z-index: 100;
}
.fixed-cta_btn::after {
  display: none;
  visibility: hidden;
}
.fixed-cta_btn:active {
  top: unset;
}

/*********************
ANIMATION CLASSES
*********************/
.page-load_fade-in,
.page-load_fade-in_up,
.page-load_fade-in_down,
.page-load_fade-in_left,
.page-load_fade-in_right {
  animation: 0.5s linear forwards;
  opacity: 0;
}

.scroll_fade-in,
.scroll_fade-in_up,
.scroll_fade-in_down,
.scroll_fade-in_left,
.scroll_fade-in_right {
  animation: linear forwards;
  opacity: 0;
}
@supports (animation-range: 100px 250px) and (animation-timeline: view(y)) and (animation-range: 200px 300px) {
  .scroll_fade-in,
  .scroll_fade-in_up,
  .scroll_fade-in_down,
  .scroll_fade-in_left,
  .scroll_fade-in_right {
    animation-range: 100px 250px;
    animation-timeline: view(y);
  }
}

.page-load_fade-in,
.scroll_fade-in {
  animation-name: fade-in;
}

.page-load_fade-in_up,
.scroll_fade-in_up {
  animation-name: fade-in_up;
}

.page-load_fade-in_down,
.scroll_fade-in_down {
  animation-name: fade-in_down;
}

.page-load_fade-in_left,
.scroll_fade-in_left {
  animation-name: fade-in_left;
}

.page-load_fade-in_right,
.scroll_fade-in_right {
  animation-name: fade-in_right;
}

/*********************
ANIMATION KEYFRAMES
*********************/
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in_up {
  from {
    transform: translateY(50%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes fade-in_down {
  from {
    transform: translateY(-50%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
@keyframes fade-in_left {
  from {
    transform: translateX(-20%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes fade-in_right {
  from {
    transform: translateX(20%);
    opacity: 0;
  }
  to {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes animate_bg-img_zoom {
  from {
    background-size: 150% auto;
  }
  to {
    background-size: 200% auto;
  }
}
/*********************
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.
*********************/
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/******************************************************************

Stylesheet: 581px and Up Stylesheet

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
@media only screen and (min-width: 581px) {
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .searchform {
    flex-direction: row;
  }
  /*********************
  HEADING STYLES
  *********************/
  /*********************
  HEADER STYLES
  *********************/
  .container.open-menu {
    left: -65vw;
  }
  .container.open-menu .to-top {
    right: calc(65vw + 5%);
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-01.has-sibling-col {
    width: calc(50% - 0.25em);
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-02.has-sibling-col {
    width: calc(50% - 0.25em);
  }
  .header_nav-wrap {
    max-width: 65vw;
  }
  /*********************
  FEATURED IMAGE STYLES
  *********************/
  .feat-img_container.no-feat-img .feat-img_article-header {
    padding-top: 8em;
  }
  .feat-img_container.feat-img_bg-media .feat-img {
    min-height: 28em;
  }
  .feat-img_vid {
    height: auto;
    width: 100%;
  }
  .feat-img_image-default {
    min-height: 28em;
  }
  /*********************
  AUTHOR PAGE STYLES
  *********************/
  /*********************
  CONTACT ITEMS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  SOCIAL MEDIA (THEME SETTINGS) STYLES
  *********************/
  /*********************
  PROCESS STEPS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  AFTER CONTENT CTA (THEME SETTINGS) STYLES
  *********************/
  /*********************
  GOOGLE MAP EMBED STYLES
  *********************/
  /*********************
  OVERSIZED BUTTON (COMPONENT) STYLES
  *********************/
  .oversized-btn {
    flex-direction: row;
  }
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .alignleft,
  img.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
  }
  .alignright,
  img.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
  }
  .aligncenter,
  img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  /*********************
  GUTENBERG STYLES
  *********************/
  /*********************
  CUSTOM ACF BLOCK STYLES
  *********************/
  .gallery-filter_block-wrap .filter-form_fieldset {
    width: 100%;
  }
  /*********************
  PATTERN STYLES
  *********************/
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group {
    display: grid;
    grid-gap: 2.25em;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: minmax(100px, auto);
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-headline {
    grid-column: span 5;
    grid-row: 1/2;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-text {
    grid-column: span 5;
    grid-row: 5/6;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image {
    grid-column: span 5;
    grid-row: span 1;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image .wp-block-image {
    height: 100%;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image .wp-block-image img {
    height: 100%;
    object-fit: cover;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(3n) {
    grid-column: span 3;
    grid-row: span 2;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(3n+1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .pattern_portfolio-gallery .wp-block-group__inner-container .portfolio_text-content_wrap > .wp-block-group {
    width: calc(50% - 0.625em);
  }
  /*********************
  POST FEED - MODULE STYLES
  *********************/
  /*********************
  POST SINGLE STYLES
  *********************/
  /*********************
  PORTFOLIO FEED - MODULE STYLES
  *********************/
  /*********************
  SERVICES/RESOURCES FEED - MODULE STYLES
  *********************/
  .serv-res_li_wrap {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.75em;
    max-width: 1200px;
  }
  .serv-res_li_wrap:nth-child(even) {
    flex-direction: row-reverse;
  }
  .serv-res_li_img-link {
    margin-bottom: 0;
    width: calc(50% - 0.875em);
  }
  .serv-res_li_content-wrap {
    flex-grow: 1;
    width: calc(50% - 0.875em);
  }
  /*********************
  POST TYPE FILTER - MODULE STYLES
  *********************/
  .filter-form_fieldset {
    width: calc(50% - 0.75em);
  }
  /*********************
  MIXITUP STYLES
  *********************/
  /*********************
  PAGE NAVI STYLES
  *********************/
  /*********************
  GOOGLE REVIEWS STYLES
  *********************/
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /*********************
  FOOTER STYLES
  *********************/
  .footer_services {
    padding: 0 6vw;
  }
  .footer_services li {
    width: calc(50% - 0.625em);
  }
  .footer_links {
    padding: 0 6vw;
  }
  .footer_links li {
    width: calc(50% - 0.625em);
  }
  .footer_links.footer_terms-links {
    gap: 1em;
    justify-content: center;
  }
  .footer_links.footer_terms-links li {
    width: auto;
  }
  .footer_copyright-credit {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer_copyright {
    width: calc(50% - 0.5em);
  }
  .footer_copyright_links_wrap {
    width: 100%;
  }
  .footer_credit {
    width: calc(50% - 0.5em);
  }
  /*********************
  FIXED (FLOATING) ITEM STYLES
  *********************/
}
/*********************
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.
*********************/
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/******************************************************************

Stylesheet: 768px and Up Stylesheet

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
@media only screen and (min-width: 768px) {
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .page-center,
  .pc {
    width: 94%;
  }
  /*********************
  HEADING STYLES
  *********************/
  h1, .h1 {
    font-size: 3.25em;
  }
  h2, .h2 {
    font-size: 2.75em;
  }
  h3, .h3 {
    font-size: 2em;
  }
  /*********************
  HEADER STYLES
  *********************/
  .container.open-menu {
    left: -50vw;
  }
  .container.open-menu .to-top {
    right: calc(50vw + 3%);
  }
  .container:has(.toc_block-wrap) .footer {
    padding-bottom: 4.5em;
  }
  .container:has(.toc_block-wrap) .to-top {
    bottom: 20%;
  }
  .container:has(.fixed-cta_btn) .footer {
    padding-bottom: 0;
  }
  .header.at-top-of-page .header_logo_link {
    max-width: 240px;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-01 {
    gap: 0.25em 1em;
    justify-content: flex-start;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-02 {
    justify-content: flex-end;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_stars_wrap {
    padding-top: 0;
    font-size: 1.25em;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_stars_wrap svg {
    width: 39px;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_image {
    max-height: 65px;
  }
  .header_logo_link {
    max-width: 240px;
  }
  .header_nav-wrap {
    max-width: 50vw;
  }
  /*********************
  FEATURED IMAGE STYLES
  *********************/
  .feat-img_container.feat-img_bg-media .feat-img {
    min-height: 32em;
  }
}
@media only screen and (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .feat-img_container.feat-img_bg-media {
    animation: 0.5s linear forwards;
    animation-name: fade-in;
  }
  .feat-img_container.feat-img_bg-media .feat-img {
    animation: linear forwards;
    animation-name: animate_bg-img_zoom;
  }
  @supports (animation-range: exit) and (animation-timeline: view(y)) {
    .feat-img_container.feat-img_bg-media .feat-img {
      animation-range: 0vh cover;
      animation-timeline: view(y);
    }
  }
}
@media only screen and (min-width: 768px) {
  .feat-img_icon {
    max-width: 75px;
  }
  .feat-img_images-wrap {
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 3vw;
  }
  .feat-img_images-wrap:has(.feat-img_images-two)::before {
    height: 30vw;
  }
  .feat-img_image-default {
    min-height: 32em;
  }
  .feat-img_images-two.feat-img_two-imgs_img-one {
    width: calc(60% - 1.5vw);
  }
  .feat-img_images-two.feat-img_two-imgs_img-two {
    margin: 2em 0 0;
    width: calc(40% - 1.5vw);
  }
}
@media only screen and (min-width: 768px) {
  /*********************
  AUTHOR PAGE STYLES
  *********************/
  .author_sidebar {
    margin: 0 !important;
    padding: 0 1.5em 0 0 !important;
    position: sticky;
    text-align: left;
    top: 2em;
  }
  .author_sidebar_img {
    margin: 0 0 0.5em;
  }
  /*********************
  CONTACT ITEMS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  SOCIAL MEDIA (THEME SETTINGS) STYLES
  *********************/
  .social-media_list {
    justify-content: flex-start;
  }
  /*********************
  PROCESS STEPS (THEME SETTINGS) STYLES
  *********************/
  .process-steps_li_wrap {
    gap: 2.5em;
  }
  .process-steps_li_content-wrap {
    padding: 3.625em 1.625em;
  }
  /*********************
  AFTER CONTENT CTA (THEME SETTINGS) STYLES
  *********************/
  .after-content_banner_pc {
    flex-direction: unset;
    justify-content: space-around;
  }
  /*********************
  GOOGLE MAP EMBED STYLES
  *********************/
  /*********************
  OVERSIZED BUTTON (COMPONENT) STYLES
  *********************/
  .oversized-btn {
    gap: 0.75em 2em;
  }
  .oversized-btn:hover, .oversized-btn:focus, .oversized-btn:active {
    -moz-transform: scale(1.025);
    -o-transform: scale(1.025);
    -ms-transform: scale(1.025);
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
  }
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .content {
    min-height: calc(100vh - 410px);
  }
  .entry-content .wp-block-group .col-2_break-pc_wrap {
    flex-wrap: nowrap !important;
  }
  .entry-content .wp-block-group .col-2_break-pc_wrap .stay-pc_wrap {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .entry-content table th {
    font-size: 1.25em;
  }
  /*********************
  GUTENBERG STYLES
  *********************/
  .alignfull > .wp-block-group__inner-container {
    width: 94%;
  }
  /*********************
  CUSTOM ACF BLOCK STYLES
  *********************/
  /*********************
  CUSTOM ACF BLOCK STYLES
  *********************/
  .faq_li_question-wrap {
    gap: 1.5em;
  }
  .faq_li_question {
    font-size: 1.75em;
  }
  .faq_li_question-icon {
    min-height: 2.875em;
    min-width: 2.875em;
  }
  .gallery-filter_block-wrap .filter-form_wrap {
    align-items: flex-end;
    justify-content: space-between;
  }
  .gallery-filter_block-wrap .attachment_fieldsets_wrap {
    flex-direction: row;
  }
  .gallery-filter_li_wrap {
    width: calc(50% - 0.875em);
  }
  .gallery-filter_li_img {
    height: 100% !important;
    object-fit: cover;
  }
  .process-list_block-wrap .process-steps_li_wrap {
    flex-direction: row;
  }
  .process-list_block-wrap .process-steps_li_wrap:nth-child(even) {
    flex-direction: row-reverse;
  }
  .process-list_block-wrap .process-steps_li_content-wrap {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(50% - 1.25em);
  }
  .process-list_block-wrap .process-steps_li_img {
    object-fit: cover;
    width: calc(50% - 1.25em);
  }
  .process-slider_block-wrap .process-steps_list_wrap {
    margin: 0 3vw;
    padding: 7.5em 0 0 !important;
    width: calc(100% - 6vw);
  }
  .process-slider_block-wrap .process-steps_list_wrap .slick-arrow {
    font-size: 44px;
  }
  .process-slider_block-wrap .process-steps_list_wrap .slick-track {
    align-items: stretch;
    gap: 1.75em;
  }
  .process-slider_block-wrap .process-steps_li_wrap {
    height: auto;
    justify-content: space-between;
  }
  .process-slider_block-wrap .process-steps_li_content-wrap {
    padding-bottom: 2.375em;
  }
  .toc_block-wrap {
    bottom: 1.5em;
    flex-wrap: nowrap;
    left: 50%;
    position: fixed;
    margin-bottom: 0 !important;
    max-width: 1000px;
    width: 94%;
    z-index: 999;
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .testimonial-grid_li_wrap {
    flex-grow: 1;
    width: calc(50% - 0.75em);
  }
  .testimonial-slider_li_wrap {
    padding: 2.625em;
  }
  .testimonial-slider_li_testimony-author {
    font-size: 2.25em;
  }
  /*********************
  PATTERN STYLES
  *********************/
  .pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical {
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
  }
  .pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical:has(.oversized-btn_block-wrap:nth-child(2)) .oversized-btn_block-wrap {
    width: calc(50% - 0.625em);
  }
  .pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical:has(.oversized-btn_block-wrap:nth-child(2)) .oversized-btn_block-wrap .oversized-btn {
    flex-direction: column;
    height: 100%;
  }
  .pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical:has(.oversized-btn_block-wrap:nth-child(2)) .oversized-btn_block-wrap .oversized-btn .oversized-btn_label {
    font-size: 2.25em;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(16, minmax(auto, 35px));
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-headline {
    grid-column: 1/7;
    grid-row: 1/4;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-text {
    grid-column: 5/10;
    grid-row: 5/12;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(3) {
    grid-column: 7/13;
    grid-row: 1/5;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(4) {
    grid-column: 1/5;
    grid-row: 4/13;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(5) {
    grid-column: 10/13;
    grid-row: 5/14;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(6) {
    grid-column: 1/5;
    grid-row: 13/17;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(7) {
    grid-column: 5/10;
    grid-row: 12/15;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(8) {
    grid-column: 10/13;
    grid-row: 14/17;
  }
  .pattern_our-process-slider .wp-block-group__inner-container > .wp-block-group {
    margin-bottom: 4.5em;
    width: calc(100% - 14.5em);
  }
  .pattern_our-process-slider .wp-block-group__inner-container .process-slider_block-wrap .process-steps_list_wrap {
    padding-top: 0 !important;
  }
  .pattern_our-process-slider .wp-block-group__inner-container .process-slider_block-wrap .process-steps_list_wrap .slick-arrow {
    top: -3em;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns {
    flex-direction: row;
    flex-wrap: nowrap !important;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column > .wp-block-group {
    padding-left: 0;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column.col-1 {
    margin: 10em 0 !important;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column.col-1 .wp-block-image {
    padding-left: 0;
    padding-right: 0;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column.col-1 .wp-block-image img {
    border-radius: 0 0.25em 0.25em 0;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column.col-2 .wp-block-image {
    padding-left: 3.25em;
    padding-right: 0;
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column.col-2 .wp-block-image img {
    border-radius: 0.25em 0 0 0.25em;
  }
  .pattern_google-reviews .wp-block-group__inner-container > .wp-block-group {
    justify-content: space-between;
    text-align: left;
  }
  /*********************
  POST FEED - MODULE STYLES
  *********************/
  .post_li_wrap {
    width: calc(50% - 0.75em);
  }
  /*********************
  POST SINGLE STYLES
  *********************/
  .blog-sgl_sidebar {
    margin-right: 1.5em !important;
    padding: 0 !important;
    width: calc(33.33% - 1.5em);
  }
  /*********************
  PORTFOLIO FEED - MODULE STYLES
  *********************/
  .portfolio_li_wrap {
    width: calc(50% - 1em);
  }
  /*********************
  SERVICES/RESOURCES FEED - MODULE STYLES
  *********************/
  .serv-res_li_wrap:has(.serv-res_li_img-link) {
    position: relative;
  }
  .serv-res_li_wrap:has(.serv-res_li_img-link) .serv-res_li_title {
    left: 45%;
    margin-bottom: 0;
    position: absolute;
    top: 0;
  }
  .serv-res_li_wrap:nth-child(even):has(.serv-res_li_img-link) .serv-res_li_title {
    left: 20%;
  }
  .serv-res_li_img-link {
    padding: 2.25em 0;
    width: calc(60% - 0.875em);
  }
  .serv-res_li_content-wrap {
    padding: 4.5em 0;
    width: calc(40% - 0.875em);
  }
  /*********************
  POST TYPE FILTER - MODULE STYLES
  *********************/
  .filter-form_fieldset {
    width: calc(33.33% - 1em);
  }
  /*********************
  MIXITUP STYLES
  *********************/
  /*********************
  PAGE NAVI STYLES
  *********************/
  /*********************
  GOOGLE REVIEWS STYLES
  *********************/
  .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap {
    border-bottom: none !important;
    width: calc(50% - 1em);
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin-top: 0;
    padding-left: 1.5em;
  }
  /*********************
  FOOTER STYLES
  *********************/
  .footer_col_wrap {
    padding: 3em 0 1em;
  }
  .footer_col {
    text-align: left;
    width: calc(50% - 0.875em);
  }
  .footer_oversized-btn_wrap:has(.oversized-btn:nth-child(2)) {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer_oversized-btn_wrap:has(.oversized-btn:nth-child(2)) .oversized-btn {
    flex-direction: column;
    width: calc(50% - 0.8125em);
  }
  .footer_oversized-btn_wrap .oversized-btn_label {
    font-size: 2em;
  }
  .footer_col_content {
    order: 5;
  }
  .footer_col_services {
    order: 1;
  }
  .footer_services {
    align-items: flex-start;
    padding: 0;
  }
  .footer_col_service-areas {
    order: 2;
  }
  .footer_col_links {
    order: 3;
  }
  .footer_links {
    align-items: flex-start;
    padding: 0;
  }
  .footer_links.footer_terms-links {
    align-items: center;
    flex-direction: row;
    margin-bottom: 0;
  }
  .footer_col_contact-social {
    order: 4;
  }
  .footer_copyright-credit {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 3em 0;
  }
  .footer_copyright-credit:has(.footer_copyright_links_wrap) .footer_copyright {
    order: 0;
  }
  .footer_copyright-credit:has(.footer_copyright_links_wrap) .footer_copyright_links_wrap {
    order: 1;
  }
  .footer_copyright-credit:has(.footer_copyright_links_wrap) .footer_credit {
    order: 2;
  }
  .footer_copyright {
    width: auto;
  }
  .footer_copyright_links_wrap {
    width: 50%;
  }
  .footer_credit {
    width: auto;
  }
  /*********************
  FIXED (FLOATING) ITEM STYLES
  *********************/
  .to-top {
    right: 3%;
  }
  .fixed-cta_btn {
    bottom: unset;
    max-width: 255px;
    right: 0;
    top: 34%;
    transform-origin: 100% 100%;
    width: auto;
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .fixed-cta_btn:active {
    top: 34%;
  }
}
/*********************
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.
*********************/
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/******************************************************************

Stylesheet: 1030px and Up Stylesheet

This is the desktop size. It's larger than an iPad so it will only be seen on the Desktop.

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
@media only screen and (min-width: 1030px) {
  /*********************
  GENERAL STYLES
  *********************/
  body.open-menu {
    overflow: visible;
  }
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .page-center,
  .pc {
    max-width: 1300px;
  }
  /*********************
  HEADING STYLES
  *********************/
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .subhead {
    word-break: normal;
  }
  h1, .h1 {
    font-size: 3.75em;
  }
  h2, .h2 {
    font-size: 3.25em;
  }
  h3, .h3 {
    font-size: 2.25em;
  }
  h4, .h4 {
    font-size: 1.75em;
  }
  h5, .h5, .subhead {
    font-size: 1.5em;
  }
  /*********************
  HEADER STYLES
  *********************/
  .container {
    overflow-x: clip;
    overflow-y: visible;
  }
  .container::before {
    content: none;
  }
  .container.open-menu {
    left: 0;
  }
  .container.open-menu .to-top {
    right: 3%;
  }
  .header.at-top-of-page:has(+ .feat-img_bg-media) .nav > li > a {
    color: #ffffff;
  }
  .header.at-top-of-page:has(+ .feat-img_bg-media) .nav > li.menu-item-has-children::after {
    color: #ffffff;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-01.has-sibling-col {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(65% - 0.25em);
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column.reviews-banner_column-02.has-sibling-col {
    width: calc(35% - 0.25em);
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_text {
    font-size: 1.25em;
  }
  .header_primary-header {
    gap: 1.5em;
  }
  .nav-search-icons {
    display: none;
    visibility: hidden;
  }
  .header_nav-wrap {
    align-items: center;
    background-color: transparent;
    display: flex;
    flex-wrap: nowrap;
    gap: 1em 1.75em;
    height: auto;
    justify-content: space-between;
    left: unset;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: static;
    top: unset;
    width: auto;
  }
  .menu-close {
    display: none;
    visibility: hidden;
  }
  .header_nav {
    order: 2;
  }
  .nav {
    align-items: center;
    gap: 0.5em 2.25em;
    justify-content: flex-end;
  }
  .nav li {
    width: auto;
  }
  .nav li a {
    display: inline-block;
    font-size: 1em;
    padding: 0.25em 0;
  }
  .nav li.menu-btn > a {
    padding: 0.7em 2.7em 0.6em 0.6em;
  }
  .nav li.menu-btn > a::after {
    right: 0.6em;
  }
  .nav li.menu-item-has-children::after {
    content: "\f107";
    color: #1c2622;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .nav li.menu-item-has-children:hover::after, .nav li.menu-item-has-children:focus::after, .nav li.menu-item-has-children:active::after {
    -moz-transform: translate(0, -50%) rotate(180deg);
    -o-transform: translate(0, -50%) rotate(180deg);
    -ms-transform: translate(0, -50%) rotate(180deg);
    -webkit-transform: translate(0, -50%) rotate(180deg);
    transform: translate(0, -50%) rotate(180deg);
  }
  .nav li.menu-item-has-children > a {
    max-width: none;
    padding-right: 1.25em;
    position: relative;
    z-index: 2;
  }
  .nav li.menu-item-has-children .menu-item-has-children > a {
    padding-right: 1.625em;
  }
  .nav li.menu-item-has-children .menu-item-has-children::after {
    right: 0.625em;
    -moz-transform: translate(0, -50%) rotate(-90deg);
    -o-transform: translate(0, -50%) rotate(-90deg);
    -ms-transform: translate(0, -50%) rotate(-90deg);
    -webkit-transform: translate(0, -50%) rotate(-90deg);
    transform: translate(0, -50%) rotate(-90deg);
  }
  .nav li .sub-menu_arrow {
    display: none;
    visibility: hidden;
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    max-height: none;
    overflow: visible;
    border: none;
    border-radius: 0.125em;
    gap: 0;
    left: -0.75em;
    margin: 0;
    min-width: 12em;
    opacity: 0;
    padding: 0.5em 0 0 0;
    position: absolute;
    visibility: hidden;
    z-index: 8999;
    -moz-transform: translate(0, 1em);
    -o-transform: translate(0, 1em);
    -ms-transform: translate(0, 1em);
    -webkit-transform: translate(0, 1em);
    transform: translate(0, 1em);
    -webkit-transition: opacity 0.235s ease-in-out, transform 0.235s ease-in-out;
    transition: opacity 0.235s ease-in-out, transform 0.235s ease-in-out;
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    background-color: #1c2622;
    color: #ffffff;
    display: block;
    padding: 0.75em;
    text-decoration: none;
    -webkit-transition: all 0.125s ease-in-out;
    transition: all 0.125s ease-in-out;
  }
  .nav li ul.sub-menu li a:hover, .nav li ul.sub-menu li a:focus,
  .nav li ul.children li a:hover,
  .nav li ul.children li a:focus {
    background-color: #25473f;
    text-decoration: underline;
  }
  .nav li ul.sub-menu li:first-child > a,
  .nav li ul.children li:first-child > a {
    border-radius: 0.125em 0.125em 0 0;
  }
  .nav li ul.sub-menu li:last-child > a,
  .nav li ul.children li:last-child > a {
    border-radius: 0 0 0.125em 0.125em;
  }
  .nav li ul.sub-menu li ul.sub-menu,
  .nav li ul.children li ul.sub-menu {
    left: 100%;
    padding: 0;
    top: 0;
  }
  .nav li:hover > ul, .nav li:focus-within > ul {
    top: auto;
    opacity: 1;
    visibility: visible;
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .nav > li:nth-last-child(2).menu-item-has-children .menu-item-has-children > a, .nav > li:last-child.menu-item-has-children .menu-item-has-children > a {
    padding-left: 1.625em;
    padding-left: 0.75em;
  }
  .nav > li:nth-last-child(2).menu-item-has-children .menu-item-has-children::after, .nav > li:last-child.menu-item-has-children .menu-item-has-children::after {
    left: 0.625em;
    right: unset;
    -moz-transform: translate(0, -50%) rotate(90deg);
    -o-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    -webkit-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg);
  }
  .nav > li:nth-last-child(2) > ul.sub-menu,
  .nav > li:nth-last-child(2) > ul.children, .nav > li:last-child > ul.sub-menu,
  .nav > li:last-child > ul.children {
    left: unset;
    right: -0.75em;
    text-align: right;
  }
  .nav > li:nth-last-child(2) > ul.sub-menu li ul,
  .nav > li:nth-last-child(2) > ul.children li ul, .nav > li:last-child > ul.sub-menu li ul,
  .nav > li:last-child > ul.children li ul {
    left: unset;
    right: 100%;
  }
  /*********************
  FEATURED IMAGE STYLES
  *********************/
  .feat-img_container.no-feat-img .feat-img_article-header {
    padding-top: 10em;
  }
  .feat-img_container.feat-img_bg-media .feat-img {
    min-height: 37.875em;
  }
  .feat-img_container.feat-img_bg-media .feat-img .feat-img_article-header .page-title {
    margin: 0 0 0 auto;
    max-width: 900px;
  }
  .feat-img_icon {
    max-width: 90px;
  }
  .feat-img_images-wrap {
    gap: 6vw;
  }
  .feat-img_image-default {
    min-height: 37.875em;
  }
  .feat-img_images-two.feat-img_two-imgs_img-one {
    width: calc(63% - 3vw);
  }
  .feat-img_images-two.feat-img_two-imgs_img-two {
    margin: 5em 0 0;
    width: calc(37% - 3vw);
  }
  /*********************
  AUTHOR PAGE STYLES
  *********************/
  .author .feat-img {
    padding-top: 5em;
  }
  /*********************
  CONTACT ITEMS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  SOCIAL MEDIA (THEME SETTINGS) STYLES
  *********************/
  /*********************
  PROCESS STEPS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  AFTER CONTENT CTA (THEME SETTINGS) STYLES
  *********************/
  /*********************
  GOOGLE MAP EMBED STYLES
  *********************/
  /*********************
  OVERSIZED BUTTON (COMPONENT) STYLES
  *********************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .entry-content .delay-columns_wrap {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
  /*********************
  GUTENBERG STYLES
  *********************/
  .alignfull > .wp-block-group__inner-container {
    max-width: 1300px;
  }
  /*********************
  CUSTOM ACF BLOCK STYLES
  *********************/
  .gallery-filter_block-wrap .filter-form_wrap {
    flex-wrap: nowrap;
  }
  .gallery-filter_block-wrap .attachment_fieldsets_wrap {
    width: 73%;
  }
  .gallery-filter_list_wrap.gallery-layout-tile .gallery-filter_li_wrap {
    width: calc(33.33% - 1.1666666667em);
  }
  .gallery-filter_list_wrap.gallery-layout-masonry {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
  .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap {
    grid-column: span 10;
    grid-row: span 2;
    width: auto;
  }
  .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n-4), .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n-1) {
    grid-column: span 7;
  }
  .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n-3), .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n-2), .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n) {
    grid-column: span 3;
  }
  .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n-2), .gallery-filter_list_wrap.gallery-layout-masonry .gallery-filter_li_wrap:nth-child(5n) {
    grid-row: span 1;
  }
  .process-slider_block-wrap .process-steps_list_wrap {
    margin: 0;
    width: 100%;
  }
  .process-slider_block-wrap .process-steps_list_wrap .slick-arrow.pull-left {
    right: calc(3vw + 2em);
  }
  .process-slider_block-wrap .process-steps_list_wrap .slick-arrow.pull-right {
    right: 3vw;
  }
  .toc_block-wrap {
    gap: 0 3.25em;
    padding: 0 1.5em;
  }
  .toc_list_wrap {
    gap: 0.25em 3.25em;
  }
  .toc_li_link {
    padding: 0.25em 0.5em;
  }
  .testimonial-grid_list_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid_list_wrap:has(.testimonial-grid_li_wrap:nth-child(1):last-child) .testimonial-grid_li_wrap {
    grid-column: span 2;
  }
  .testimonial-grid_list_wrap:has(.testimonial-grid_li_wrap:nth-child(3)) .testimonial-grid_li_wrap:nth-child(4n-3) {
    grid-row: span 2;
  }
  .testimonial-grid_list_wrap:has(.testimonial-grid_li_wrap:nth-child(4):last-child) .testimonial-grid_li_wrap:nth-child(4) {
    grid-column: span 2;
  }
  .testimonial-grid_list_wrap:has(.testimonial-grid_li_wrap:nth-child(5):last-child) .testimonial-grid_li_wrap:nth-child(5) {
    grid-row: span 1;
  }
  .testimonial-grid_li_wrap {
    grid-column: span 1;
    grid-row: span 1;
    width: auto;
  }
  /*********************
  PATTERN STYLES
  *********************/
  .pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical:has(.oversized-btn_block-wrap:nth-child(2)) .oversized-btn_block-wrap {
    width: calc(40% - 0.625em);
  }
  .pattern_oversized-buttons .wp-block-group__inner-container .wp-block-group.is-vertical:has(.oversized-btn_block-wrap:nth-child(2)) .oversized-btn_block-wrap .oversized-btn {
    gap: 0.75em 1.5em;
    flex-direction: row;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-headline {
    padding-left: 2.25em;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-text {
    grid-column: 6/10;
    grid-row: 5/12;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(3) {
    grid-column: 7/13;
    padding-right: 2.25em;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(4) {
    grid-column: 1/6;
    grid-row: 4/12;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(5) {
    padding-right: 2.25em;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(6) {
    grid-column: 1/6;
    grid-row: 12/17;
    padding-left: 2.25em;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(7) {
    grid-column: 6/10;
  }
  .pattern_portfolio-gallery .wp-block-group__inner-container .portfolio_text-content_wrap > .wp-block-group {
    width: calc(25% - 0.9375em);
  }
  /*********************
  POST FEED - MODULE STYLES
  *********************/
  .post_list_wrap {
    gap: 4.5em 1.5em;
  }
  .post_li_wrap {
    width: calc(33.33% - 1em);
  }
  /*********************
  POST SINGLE STYLES
  *********************/
  .blog-sgl_sidebar {
    width: calc(28.5714286% - 1.5em);
  }
  .blog-sgl_sidebar_services-li-link {
    font-size: 1.5em;
  }
  /*********************
  PORTFOLIO FEED - MODULE STYLES
  *********************/
  /*********************
  SERVICES/RESOURCES FEED - MODULE STYLES
  *********************/
  .serv-res_list_wrap {
    gap: 7.25em;
  }
  .serv-res_li_wrap {
    gap: 4em;
  }
  .serv-res_li_img-link {
    padding: 3em 0;
    width: calc(55% - 2em);
  }
  .serv-res_li_content-wrap {
    padding: 5.75em 0;
    width: calc(45% - 2em);
  }
  /*********************
  POST TYPE FILTER - MODULE STYLES
  *********************/
  .filter-form_wrap {
    align-items: center;
  }
  .filter-form_reset-btn {
    width: auto;
  }
  .filter-form_checkboxes {
    align-items: center;
    flex-direction: unset;
  }
  /*********************
  MIXITUP STYLES
  *********************/
  /*********************
  PAGE NAVI STYLES
  *********************/
  /*********************
  GOOGLE REVIEWS STYLES
  *********************/
  .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap {
    width: calc(33.3333333333% - 1.3333333333em);
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /*********************
  FOOTER STYLES
  *********************/
  .footer_col {
    order: unset;
    width: calc(20% - 1.4em);
  }
  .footer_headline {
    font-size: 1.375em;
  }
  .footer_oversized-btn_wrap:has(.oversized-btn:nth-child(2)) .oversized-btn {
    flex-direction: row;
    width: calc(40% - 0.8125em);
  }
  .footer_oversized-btn_wrap:has(.oversized-btn:nth-child(3)) .oversized-btn {
    flex-direction: column;
  }
  .footer_oversized-btn_wrap .oversized-btn_label {
    font-size: 2.25em;
  }
  .footer_services li {
    width: 100%;
  }
  .footer_links li {
    width: 100%;
  }
  /*********************
  FIXED (FLOATING) ITEM STYLES
  *********************/
  .to-top {
    display: none;
    visibility: hidden;
  }
  /*********************
  ANIMATION KEYFRAMES
  *********************/
  @keyframes animate_bg-img_zoom {
    from {
      background-size: 100% auto;
    }
    to {
      background-size: 120% auto;
    }
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
/******************************************************************

Stylesheet: Button Styles

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
/******************************************************************

Stylesheet: Super Large Monitor Stylesheet

You can add some advanced styles here if you like. This kicks in on larger screens.

******************************************************************/
/*********************
IMPORTS & DEPENDENCIES
*********************/
@media only screen and (min-width: 1240px) {
  /*********************
  GENERAL STYLES
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /*********************
  HEADING STYLES
  *********************/
  /*********************
  HEADER STYLES
  *********************/
  .header.at-top-of-page .header_logo_link {
    max-width: 300px;
  }
  .header.at-top-of-page:has(+ .feat-img_bg-media) .nav > li > a {
    color: #ffffff;
  }
  .header.at-top-of-page:has(+ .feat-img_bg-media) .nav > li.menu-item-has-children::after {
    color: #ffffff;
  }
  .reviews-banner_wrap .reviews-banner_columns .reviews-banner_column .reviews-banner_text {
    font-size: 1.75em;
  }
  .header_logo_link {
    max-width: 260px;
  }
  /*********************
  FEATURED IMAGE STYLES
  *********************/
  .feat-img_container.feat-img_bg-media .feat-img {
    min-height: 43.75em;
  }
  .feat-img_image-default {
    min-height: 43.75em;
  }
  /*********************
  AUTHOR PAGE STYLES
  *********************/
  /*********************
  CONTACT ITEMS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  SOCIAL MEDIA (THEME SETTINGS) STYLES
  *********************/
  /*********************
  PROCESS STEPS (THEME SETTINGS) STYLES
  *********************/
  /*********************
  AFTER CONTENT CTA (THEME SETTINGS) STYLES
  *********************/
  /*********************
  GOOGLE MAP EMBED STYLES
  *********************/
  /*********************
  OVERSIZED BUTTON (COMPONENT) STYLES
  *********************/
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .entry-content .wp-block-group .col-2_break-pc_wrap .stay-pc_wrap:first-child {
    padding-left: max( 3vw, calc( ( 100vw - 1315px ) / 2 ) ) !important;
    padding-right: 2.375em;
  }
  .entry-content .wp-block-group .col-2_break-pc_wrap .stay-pc_wrap:last-child {
    padding-left: 2.375em;
    padding-right: max( 3vw, calc( ( 100vw - 1315px ) / 2 ) ) !important;
  }
  /*********************
  GUTENBERG STYLES
  *********************/
  /*********************
  CUSTOM ACF BLOCK STYLES
  *********************/
  .process-slider_block-wrap .process-steps_list_wrap .slick-arrow.pull-left {
    right: max( calc( 4vw + 2em ), calc( ( ( 100vw - 1315px ) / 2 ) + 2.5em ) );
  }
  .process-slider_block-wrap .process-steps_list_wrap .slick-arrow.pull-right {
    right: max( 4vw, calc( ( 100vw - 1315px ) / 2 ) );
  }
  /*********************
  PATTERN STYLES
  *********************/
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_content-text {
    grid-row: 5/11;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(5) {
    grid-row: 5/13;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(7) {
    grid-row: 11/14;
  }
  .pattern_image-copy-collage .wp-block-group__inner-container > .wp-block-group .collage_grid-item.grid-item_image:nth-child(8) {
    grid-row: 13/17;
  }
  .pattern_two-col-content .wp-block-group__inner-container .wp-block-columns {
    gap: 12em;
  }
  .pattern_our-process-slider .wp-block-group__inner-container > .wp-block-group {
    flex-wrap: nowrap !important;
    gap: 2.5em;
  }
  .pattern_our-process-slider .wp-block-group__inner-container > .wp-block-group .wp-block-image {
    max-width: 75px;
  }
  .pattern_our-process-slider .wp-block-group__inner-container > .wp-block-group .wp-block-image img {
    width: 100% !important;
  }
  .pattern_our-process-slider .wp-block-group__inner-container > .wp-block-group p {
    max-width: calc(100% - (500px + 3.75em));
  }
  .pattern_faq .wp-block-group__inner-container .wp-block-columns .wp-block-column.col-2 .stay-pc_wrap {
    padding-left: 0;
  }
  .pattern_portfolio-gallery .wp-block-group__inner-container .portfolio_text-content_wrap > .wp-block-group {
    max-width: 400px;
    width: auto;
  }
  .pattern_google-reviews .wp-block-group__inner-container .sbr-feed .sb-feed-container .sb-feed-posts {
    row-gap: 1em;
  }
  /*********************
  POST FEED - MODULE STYLES
  *********************/
  /*********************
  POST SINGLE STYLES
  *********************/
  .blog-sgl_sidebar {
    margin-right: 2.25em !important;
    width: calc(28.5714286% - 2.25em);
  }
  .blog-sgl_sidebar_services-wrap {
    padding: 3em 1.75em 3.125em;
  }
  .blog-sgl_sidebar_services-li-link {
    font-size: 1.75em;
  }
  /*********************
  PORTFOLIO FEED - MODULE STYLES
  *********************/
  .portfolio_list_wrap {
    gap: 3.5em 4.75em;
  }
  .portfolio_li_wrap {
    width: calc(50% - 2.375em);
  }
  /*********************
  SERVICES/RESOURCES FEED - MODULE STYLES
  *********************/
  .serv-res_li_wrap {
    gap: 7.25em;
  }
  .serv-res_li_wrap:has(.serv-res_li_img-link) .serv-res_li_title {
    left: 40%;
  }
  .serv-res_li_img-link {
    width: calc(55% - 3.625em);
  }
  .serv-res_li_content-wrap {
    width: calc(45% - 3.625em);
  }
  /*********************
  POST TYPE FILTER - MODULE STYLES
  *********************/
  /*********************
  MIXITUP STYLES
  *********************/
  /*********************
  PAGE NAVI STYLES
  *********************/
  /*********************
  GOOGLE REVIEWS STYLES
  *********************/
  .sbr-feed .sb-feed-container .sb-feed-posts {
    gap: 3.25em;
  }
  .sbr-feed .sb-feed-container .sb-feed-posts:has(> .sb-post-item-wrap:nth-last-child(3):first-child) .sb-post-item-wrap {
    width: calc(33.3333333333% - 2.1666666667em);
  }
  .sbr-feed .sb-feed-container .sb-feed-posts:has(> .sb-post-item-wrap:nth-last-child(2):first-child) .sb-post-item-wrap {
    width: calc(50% - 1.625em);
  }
  .sbr-feed .sb-feed-container .sb-feed-posts:has(> .sb-post-item-wrap:nth-last-child(1):first-child) {
    padding-left: 3em;
  }
  .sbr-feed .sb-feed-container .sb-feed-posts:has(> .sb-post-item-wrap:nth-last-child(1):first-child) .sb-post-item-wrap {
    width: calc(50% - 1.625em);
  }
  .sbr-feed .sb-feed-container .sb-feed-posts .sb-post-item-wrap {
    width: calc(25% - 2.4375em);
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  /*********************
  FOOTER STYLES
  *********************/
  .footer_col_wrap {
    gap: 2em;
  }
  .footer_col {
    width: calc(20% - 1.6em);
  }
  .footer_headline {
    margin-bottom: 1em;
  }
  .footer_oversized-btn_wrap:has(.oversized-btn:nth-child(3)) .oversized-btn {
    flex-direction: row;
  }
  .footer_oversized-btn_wrap .oversized-btn_label {
    font-size: 2.75em;
  }
  .footer_col_services {
    flex-grow: 1;
  }
  .footer_services {
    gap: 1.5em;
  }
  .footer_services li {
    width: calc(50% - 0.75em);
  }
  .footer_col_links {
    flex-grow: 1;
  }
  .footer_links {
    gap: 1.5em;
  }
  .footer_links li {
    width: calc(50% - 0.75em);
  }
  /*********************
  FIXED (FLOATING) ITEM STYLES
  *********************/
}
