/* 
* Made with Template by Marketing Essentials
* Based on Bones by Eddie Machado.
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

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

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

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 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 */
}

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

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

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
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 in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

Stylesheet: Variables

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

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name: 
Author: 

Stylesheet: Typography

******************************************************************/
/*
"Web design is 95% typography" - Oliver Reichenstein

When that quote was made in 2006 it was before web fonts, auto-play video,
and animated pop-ups so even if it is 65 or 75% today that is still *most* 
of any web site's design. Understanding some of the basics of typography
(and web typography) will go a long way.

There are lots of web typographic systems out there however many are
overly complex and not intuitive. Thus, we've tried to set some good
defaults that aren't based on confounding mixins here but you may want
to explore web typography further:

https://www.smashingmagazine.com/2009/08/typographic-design-survey-best-practices-from-the-best-blogs/
https://www.smashingmagazine.com/2012/12/css-baseline-the-good-the-bad-and-the-ugly/
http://www.newnet-soft.com/blog/csstypography
http://typecast.com/blog/4-simple-steps-to-vertical-rhythm
https://github.com/StudioThick/megatype
https://sassline.com
http://matejlatin.github.io/Gutenberg/
https://zellwk.com/blog/responsive-typography/
https://github.com/zellwk/typi

Note that most of the typography styles are set in base.scss with
the html, body, and h1-h6 tags so adjust as needed. Set a good baseline
and consider your vertical rhythm.

*/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/* To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.

  Also, you don't have to include a separate name for 
  each font style...just use the same name and
  declare each style separately. See here:
  http://www.newnet-soft.com/blog/csstypography
*/
/* Libre Franklin Regular */
/*********************
FONT STACKS
*********************/
/*
 Commented out since WP uses system fonts now but if you can't let go I won't be upset. 
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
}

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

Stylesheet: Sass Functions

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

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

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

Some cool simple examples here:
https://vanseodesign.com/css/custom-sass-functions/

******************************************************************/
/*********************
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%;
*********************/
/************************
MORE SASS FUNCTIONS
*************************/
/* Example:
$length: 42em;
$int: strip-unit($length); // 42
*/
/**
 * Calculate rems based on a base unit.
 */
/* Example:
$list: a b, c d, e f;
$value: match($list, e); // returns f
$value: match($list, b); // returns a
$value: match($list, z); // returns false
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

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

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

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

******************************************************************/
.foo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.foo-parent {
  position: relative;
}

/*********************
TINTS/SHADES
https://css-tricks.com/snippets/sass/tint-shade-functions/
*********************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*--------------------------------------------------
Flexbox SASS mixins
The spec: http://www.w3.org/TR/css3-flexbox
https://gist.github.com/richardtorres314/26b18e12958ba418bb37993fdcbfc1bd

Checkout this Flexbox guide for more info:
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

2018: probably can remove these with autoprefixer(?)
---------------------------------------------------*/
/*@include flexbox(); */
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
/******************************************************************
Site Name:
Author:

<!-- 
------------------------------------------------------------------
    Modules: Table of Contents
------------------------------------------------------------------

    01. Hero Modules (ID: HM)
		- Simple Hero (ID: HM-1)
		- Video Hero (ID: HM-2)

------------------------------------------------------------------

	02.) Navigation Modules (ID: NM)
		 -  Basic Sub Navigation (ID: NM-1)

------------------------------------------------------------------

	03.) Basic Layout Modules (ID: BLM)
		 - Full Width Row (ID: BLM-1)
			- Full Width Accordion (ID: BLM-1.1)

		 - Two Column Row (ID: BLM-2)
			- Two Column Row Img Column Cover (ID: BLM-2.1)
			- Two Column Accordion: Double Accordion (ID: BLM-2.2)

------------------------------------------------------------------

	04.) Multi-Use Modules (ID: MU)
		 - Grid Repeater (ID: MU-1)
		 - Flexible Grid Repeater (ID: MU-2)
		 - Page Part (ID: MU-3)
		 - Shortcode Input (ID: MU-4)

------------------------------------------------------------------

	05.) Advanced Modules (ID: AM)
		 - Vertical Tabs (ID: AM-1)
		 - Off Center CTA (ID: AM-2)


------------------------------------------------------------------
-->

******************************************************************/
/**************************************************
GLOBAL STYLES
**************************************************/
:root {
  --primary-color: #12243F;
  --secondary-color: #707071;
  --accent-color: #859958;
  --font-family: "Poppins", sans-serif;
  --font-family-hdr: "noto-serif", serif;
  --font-size-h1: 80px;
  --font-size-h2: 2em;
}

* {
  font-variant-ligatures: none !important;
}

.wrap {
  padding: 0 !important;
}

/* screen reader button styles */
.skip-to-content {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  top: -600px;
  left: 10px;
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  overflow: hidden;
}

.skip-to-content:focus {
  position: absolute;
  clip: auto;
  height: auto;
  width: auto;
  overflow: visible;
  top: 10px;
  left: 10px;
}

span.bounce-arrow, #breadcrumbs {
  display: none;
}

/*typography*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-hdr);
  color: var(--primary-color) !important;
  font-weight: bold !important;
}

body, p {
  font-family: var(--font-family) !important;
  font-size: 16px;
  font-weight: 200 !important;
  line-height: 1.9;
}

p {
  color: #5e5c5c;
  font-size: 18px;
}

li {
  color: #5f6670;
  font-size: 17px;
  line-height: 1.75;
  font-family: var(--font-family);
  font-weight: 200;
  margin-bottom: 2%;
}

h1 {
  font-size: var(--font-size-h1);
  line-height: 88px;
  margin-bottom: 2rem;
}

h2 {
  line-height: 64px;
  color: var(--secondary-color);
  margin-bottom: 3% !important;
}

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

h3, .h3 {
  font-size: 1.3em !important;
}

h4, .h4 {
  font-size: 1.25em !important;
  margin-top: 2.5% !important;
}

b, strong {
  font-weight: 600;
}

.services-step__text b, .services-step__text strong {
  font-weight: 600;
}

@media screen and (min-width: 1025px) {
  h1, .h1 {
    font-size: 3em !important;
  }
}
@media screen and (max-width: 1025px) {
  h1, .h1 {
    font-size: 2em !important;
  }
  h2 {
    font-size: 1.7em !important;
  }
}
a, a:visited {
  color: var(--primary-color);
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/*Buttons*/
.pill-btn, .pill-btn:visited {
  /*margin-top: 4%;
  margin-bottom: 4%;*/
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 26px;
  border-radius: 999px;
  background: #52623E;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

/* the circle + arrow */
.pill-btn::after {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 999px;
  background-image: url("/wp-content/uploads/2026/03/pill-btn-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px 35px;
  display: inline-block;
}

a.pill-btn:hover {
  background-color: #7B8F39;
  text-decoration: none;
  color: #fff;
}

.inline-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #12243F;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
}

/* the circle + arrow */
.inline-btn::after {
  content: "";
  width: 35px;
  height: 35px;
  border-radius: 999px;
  background-image: url("/wp-content/uploads/2026/03/pill-btn-arrow-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px 35px;
  display: inline-block;
}

.inline-btn:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.decor-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  font-style: italic;
}

.decor-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80%;
  height: 18px;
  background: url("/wp-content/uploads/2026/03/decor-underline.svg") no-repeat center/contain;
  pointer-events: none;
}

@media screen and (min-width: 1004px) {
  .pill-btn {
    margin-right: 4%;
  }
}
.row.full-width-row.light.no-padding {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -5%;
}

/**************************************************
HEADER STYLES
**************************************************/
.header.sticky {
  position: sticky;
  top: 32px;
}

.header.sticky #header {
  padding: 0 3rem;
}

.header.sticky #inner-header a,
.header.sticky #inner-header a:visited {
  color: var(--primary-color);
}

@media screen and (min-width: 1025px) {
  #header {
    max-width: 1400px;
    margin: 2rem auto;
    z-index: 9999;
    padding: 0 2rem;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 50px;
    padding: 20px;
    position: sticky;
    top: 32px;
  }
}
@media screen and (min-width: 1004px) {
  #inner-header {
    display: flex;
    justify-content: space-between;
  }
  #logo img {
    max-height: 50px;
  }
}
.menu-item a {
  font-weight: 500;
  font-family: var(--font-family);
  font-size: 16px;
}

.menu-item {
  margin-bottom: 0;
}

#menu-main-nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  height: 99px;
  width: 100%;
}

#menu-main-nav > li {
  text-align: center;
}

#header .sub-menu {
  background: #fff;
  padding: 0 !important;
  border-top: 4px solid #9AB266;
  /*margin-top: 30px;*/
}

#header .sub-menu li {
  display: block;
  float: none !important;
  text-align: left !important;
  padding: 1rem;
}

#header .sub-menu li a,
#header .sub-menu li a:visited {
  color: #13243F !important;
}

#header .sub-menu > *:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.nav .current-menu-item {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.nav .current-menu-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-60%);
  width: 70%;
  height: 25px;
  background: url(/wp-content/uploads/2026/03/decor-underline.svg) no-repeat center/contain;
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  #content {
    margin-top: -9%;
  }
}
/*@media screen and (max-width: 1024px) {
#content {
    margin-top: -25%;
}
}*/
@media only screen and (min-width: 768px) {
  .nav li a:hover, .nav li a:focus {
    text-decoration: none !important;
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .mobmenu, body.admin-bar .mobmenu-panel, .show-nav-left.admin-bar .mobmenu-overlay, .show-nav-right.admin-bar .mobmenu-overlay {
    top: 50px !important;
  }
}
/**************************************************
FOOTER STYLES
**************************************************/
#footer {
  background-color: #fff !important;
  border-top: 1px solid rgba(19, 36, 63, 0.2);
}

#footer-ctas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#footer-ctas > div {
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem;
}

#footer-ctas a {
  background: #ccc;
  border: solid 4px rgba(19, 36, 63, 0.2);
  padding: 1rem 3rem;
  margin: 2rem 0;
}

#footer-ctas a:hover {
  background: var(--primary-color);
  color: #fff;
}

#footer {
  clear: both;
  /*padding: 0 2rem;*/
  background: #ddd;
}

#footer p,
.footer li {
  font-size: 18px;
}

.bottom-bar {
  background-color: #13253F;
  padding: 5px 15px;
}

.bottom-bar p {
  color: #fff;
  font-size: 14px !important;
  text-align: center;
}

.logo-txt {
  font-family: var(--font-family-hdr) !important;
  font-weight: bold !important;
  color: var(--primary-color) !important;
  font-size: 15px !important;
  font-style: italic;
}

#inner-footer {
  margin: 0 auto;
  max-width: 1600px;
  display: grid;
  /*padding: 1rem 0 3rem 0;*/
}

div#inner-footer img {
  margin-top: 25px;
}

.footer-hdr {
  font-family: var(--font-family-hdr) !important;
  font-weight: bold !important;
  color: var(--primary-color) !important;
  font-size: 20px !important;
}

.footer-locations.chamber-logo img {
  max-width: 100px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

@media screen and (min-width: 1400px) {
  #inner-footer {
    max-width: 1400px;
  }
}
@media screen and (min-width: 1025px) {
  #inner-footer {
    padding: 1rem 1rem 1rem 1rem;
  }
}
@media screen and (max-width: 1024px) {
  #inner-footer {
    padding: 3rem;
  }
}
@media screen and (min-width: 819px) {
  #inner-footer {
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr 0.8fr;
    grid-column-gap: 25px;
  }
  #inner-footer > *:not(:last-child) {
    border-right: 1px solid rgba(19, 36, 63, 0.2);
    padding-right: 25px;
  }
}
@media screen and (max-width: 819px) {
  #inner-footer {
    grid-template-columns: 1fr;
  }
  #inner-footer * {
    text-align: center;
    margin: auto;
  }
  #inner-footer > div {
    width: 100%;
    padding-bottom: 25px;
    padding-top: 25px;
  }
  #inner-footer > *:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }
  .footer-contact p {
    margin-bottom: 20px !important;
  }
  #inner-footer #footer-logo img {
    width: 75%;
    margin-bottom: 25px;
  }
}
/**************************************************
HOME STYLES
**************************************************/
.row.simple-hero {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  background-size: cover;
}

.hero-content {
  text-align: center;
}

.hero-content h1, .hero-content p {
  display: block;
}

.hero-content p {
  font-weight: 600 !important;
  color: #12243f;
  font-size: 20px;
}

.hero-green-overlay {
  position: relative;
  overflow: hidden;
}

.hero-green-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(235, 241, 228, 0.78) 0%, rgba(255, 255, 255, 0.7) 45%, rgba(205, 219, 185, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-green-overlay > * {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1025px) {
  .hero-notch {
    --notch-depth: 70px;
    --notch-width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .hero-notch {
    --notch-depth: 30px;
    --notch-width: 100px;
  }
}
.hero-notch {
  padding-bottom: var(--notch-depth);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch-depth)), calc(50% + var(--notch-width) / 2) calc(100% - var(--notch-depth)), 50% calc(100% + 1px), calc(50% - var(--notch-width) / 2) calc(100% - var(--notch-depth)), 0 calc(100% - var(--notch-depth)));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--notch-depth)), calc(50% + var(--notch-width) / 2) calc(100% - var(--notch-depth)), 50% calc(100% + 1px), calc(50% - var(--notch-width) / 2) calc(100% - var(--notch-depth)), 0 calc(100% - var(--notch-depth)));
  transform: translateZ(0);
}

/* the notch */
/*.hero-notch::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-42px;           
  transform:translateX(-50%);
  width:220px;              
  height:84px;              
  background:#f4f5ef;       
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  border-radius:18px;      
  z-index:5;
}*/
.badges img {
  width: 120px;
}

.img-icon.row.two-column-row-container .column.left-column, .img-icon.row.two-column-row-container .column.right-column {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.left-img.img-icon .left-column img, .right-img.img-icon .right-column img {
  Object-fit: cover;
  height: 500px;
  width: 800px;
  border-radius: 10px;
  border: 10px solid #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.img-icon .top-row, .img-icon .bottom-row {
  display: none;
}

.img-icon .icon {
  margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
  .img-icon:nth-child(odd) .two-column-row {
    grid-template-columns: 1fr 1.5fr;
  }
  .img-icon:nth-child(even) .two-column-row {
    grid-template-columns: 1.5fr 1fr;
  }
  .two-column-row-container.img-icon {
    position: relative;
    overflow: visible;
  }
  .two-column-row-container.img-icon img {
    z-index: 4;
  }
  .two-column-row-container.img-icon::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 320px;
    left: 50%;
    bottom: -170px;
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    z-index: 3;
  }
  .two-column-row-container.img-icon:nth-of-type(odd)::after {
    background-image: url("/wp-content/uploads/2026/03/curve-left.svg");
    background-size: 550px 300px;
  }
  .two-column-row-container.img-icon:nth-of-type(even)::after {
    background-image: url("/wp-content/uploads/2026/03/curve-right.svg");
    background-size: 550px 300px;
  }
}
.two-column-row-container.img-icon:not(:has(~ .two-column-row-container.img-icon))::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

.two-column-row-container.img-icon.left-img .right-column img, .two-column-row-container.img-icon.right-img .left-column img {
  height: 70px;
  margin-bottom: 5%;
}

@media screen and (max-width: 1024px) {
  .img-icon.row.two-column-row-container .column.left-column, .img-icon.row.two-column-row-container .column.right-column {
    text-align: center;
    align-content: center;
  }
  .img-icon img {
    margin: auto;
  }
  .img-icon .two-column-row .column div {
    margin: auto;
  }
}
@media screen and (max-width: 1023px) {
  .two-column-row-container.img-icon .two-column-row {
    display: flex;
    flex-direction: column;
  }
  .two-column-row-container.img-icon:nth-of-type(odd) .left-column {
    order: 2;
  }
  .two-column-row-container.img-icon:nth-of-type(odd) .right-column {
    order: 1;
  }
  .two-column-row-container.img-icon:nth-of-type(even) .left-column {
    order: 1;
  }
  .two-column-row-container.img-icon:nth-of-type(even) .right-column {
    order: 2;
  }
}
@media screen and (min-width: 1004px) {
  .hero-content {
    width: 75%;
    margin-top: 5%;
  }
  .badges {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 25px;
    width: 100%;
  }
  .row.two-column-row-containerr.partner {
    gap: 20%;
  }
  .img-icon h3 {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 1004px) {
  .badges {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    width: 100%;
  }
}
.notch-section {
  position: relative;
  background: #f4f5ef; /* your light section color */
}

.row.full-width-row.notch-section {
  padding-bottom: 0;
  margin-bottom: -3%;
}

/* the center notch */
.notch-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -44px; /* how far it sticks up */
  transform: translateX(-50%);
  width: 180px; /* notch width */
  height: 88px; /* notch height */
  background: inherit; /* same as section background */
  z-index: 2;
  /* "house/arrow" shape */
  clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 0% 100%, 0% 50%);
  /* optional: soften corners a bit */
  border-radius: 18px;
}

/*Contact Form*/
.contact-split-form {
  background: #F6F8F3;
  padding: 80px 0;
}

.contact-split-form .two-column-row {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  background-color: #0E2236;
  background-image: url(/wp-content/uploads/2026/03/bbk-white-transparent-logo.webp);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: -25% 160%;
  border-radius: 10px;
}

.contact-split-form .left-column {
  color: #fff;
  border-radius: 14px;
  padding: 64px 56px 140px;
  position: relative;
  overflow: hidden;
}

.contact-split-form .left-column p {
  color: #fff;
}

.contact-split-form .left-column::before {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 520px;
  height: 520px;
  background: url("/wp-content/uploads/2026/03/BBK-Icon-white.webp") no-repeat center/contain;
  opacity: 0.16;
  pointer-events: none;
}

/*.contact-split-form .left-column::after{
  content: "";
  position: absolute;
  left: -40px;
  bottom: -52px;
  width: 360px;
  height: 360px;
  background: url('/wp-content/uploads/2026/03/BBLC-mascot.webp') no-repeat left bottom / contain;
  pointer-events: none;
}*/
.contact-split-form .left-column h2 {
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff !important;
}

.contact-split-form .left-column p {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.92;
}

.contact-split-form {
  margin-bottom: 5%;
}

.contact-split-form .right-column {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 5%;
}

.contact-split-form .right-column .gform_wrapper {
  width: min(760px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}

@media screen and (min-width: 1400px) {
  .contact-split-form .right-column .gform_wrapper {
    transform: translate(10%, 10px);
  }
}
@media screen and (max-width: 1400px) {
  .contact-split-form .right-column {
    padding: 5%;
  }
}
.gform_wrapper.gravity-theme .gfield textarea.small {
  height: 30px !important;
}

@media screen and (min-width: 1024px) {
  .contact-split-form .two-column-row {
    height: 850px;
  }
}
.contact-split-form .gform_wrapper .gfield_label,
.contact-split-form .gform_wrapper .gform-field-label {
  font-weight: 600;
  color: #0E2236;
  font-size: 13px;
}

.contact-split-form .gform_wrapper input[type=text],
.contact-split-form .gform_wrapper input[type=email],
.contact-split-form .gform_wrapper input[type=tel],
.contact-split-form .gform_wrapper textarea {
  border: 1px solid rgba(14, 34, 54, 0.14);
  border-radius: 4px;
  padding: 12px 12px;
  font-size: 15px;
  width: 100%;
  box-shadow: none;
}

.contact-split-form .gform_wrapper textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-split-form .gform_wrapper .gform_footer {
  margin-top: 22px;
  position: relative;
  display: inline-block;
}

.contact-split-form .gform_wrapper .gform_footer input[type=submit], .contact .gform_wrapper .gform_footer input[type=submit] {
  background: #7B8F3A;
  color: #fff;
  border: 0;
  border-radius: 999px;
  /*padding: 16px 78px 16px 34px;*/
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
}

.contact-split-form .gform_button.button::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff url("/wp-content/uploads/2026/03/pill-btn-arrow-white.svg") no-repeat center/18px 18px;
  pointer-events: none;
}

.row.two-column-row-container.contact-split-form {
  padding-top: 0;
}

@media (min-width: 981px) {
  .contact-split-form .left-column {
    position: relative;
    overflow: visible !important;
  }
  .contact-split-form .left-column::after {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -70px;
    width: 390px;
    height: 480px;
    background-image: url("/wp-content/uploads/2026/03/BBK-Mascot.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    pointer-events: none;
    z-index: 5;
  }
}
@media (max-width: 980px) {
  .contact-split-form {
    padding: 56px 0;
  }
  .contact-split-form .two-column-row {
    grid-template-columns: 1fr;
  }
  .contact-split-form .right-column .gform_wrapper {
    margin-left: 0;
    margin-top: -24px;
  }
  .contact-split-form .left-column {
    padding: 5%;
  }
  .row.full-width-row.light.service-intro p {
    width: 100%;
    margin: auto;
  }
}
/*Service and Interior Pages Styles*/
.row.full-width-row.light.service-intro {
  /*background-size: contain !important;
  background-repeat: no-repeat;
  background-position: center;*/
}

.service-intro {
  position: relative;
  overflow: hidden;
  background: none !important;
  --bg-offset: 0px;
}

.service-intro::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  background-image: var(--service-intro-bg);
  background-position: center center;
  background-size: 560px auto;
  background-repeat: no-repeat;
  transform: translateY(var(--bg-offset));
  will-change: transform;
  z-index: 0;
}

.service-intro > * {
  position: relative;
  z-index: 1;
}

.row.full-width-row.light.service-intro .pill-btn {
  margin: auto !important;
}

.row.full-width-row.light.service-intro p {
  text-align: center;
}

@media (max-width: 991px) {
  .service-intro::before {
    transform: none !important;
  }
}
.row.full-width-row.light.service-intro h2 {
  margin-bottom: 1% !important;
}

.white-col .three-column-row, .white-col .four-column-row {
  background-color: #fff;
  border: 1px solid #eee;
}

.white-col .column {
  padding: 8%;
}

.white-col .column img {
  margin-bottom: 15px;
}

.row.three-column-row-container.notch-section.white-col .column *, .row.four-column-row-container.notch-section.white-col .column * {
  text-align: center;
  margin: auto;
  padding-bottom: 15px;
  line-height: 1.7;
}

.row.three-column-row-container.notch-section.white-col .column h3, .row.four-column-row-container.notch-section.white-col .column h3 {
  font-size: 17px !important;
}

@media screen and (min-width: 1024px) {
  .row.simple-hero.interior.hero {
    min-height: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .row.simple-hero.interior.hero {
    min-height: 250px;
  }
}
@media screen and (min-width: 1004px) {
  .white-col .three-column-row > *:not(:last-child), .white-col .four-column-row > *:not(:last-child) {
    background-color: #fff;
    border: 1px solid #eee;
  }
}
/*Resources Page*/
.resource-intro .column {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.row.resource-intro .column ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.row.resource-intro .column ul li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}

.row.resource-intro .column ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 22px;
  height: 22px;
  background: url("/wp-content/uploads/2026/03/BBK-checkmark-icon.svg") no-repeat center center;
  background-size: contain;
}

/*Services Fade In*/
/* General layout for the services section */
.full-width-row.services-fade .services-scroll {
  width: 100%;
  padding: 40px 5% 80px 0;
}

.row.services-fade {
  padding: 0;
}

.perks img {
  height: 100px;
  width: auto;
}

.row.full-width-row.bottom-cta {
  background-size: 400px auto !important;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: center;
}

.row.full-width-row.bottom-cta p {
  display: block !important;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .row.full-width-row.bottom-cta h3 {
    width: 80%;
  }
}
.row.full-width-row.bottom-cta h3 {
  margin-bottom: 2%;
  line-height: 1.7;
}

.row.full-width-row.bottom-cta .pill-btn {
  display: inline-flex !important;
  margin: auto;
}

.bottom-cta h3 {
  font-size: 1.5em !important;
}

.row.bottom-cta {
  padding: 0 4%;
  margin-top: -2.5%;
}

.row.bottom-cta .pill-btn {
  margin-top: 10px;
  min-width: 240px;
}

.bottom-cta h2 {
  margin-bottom: 0 !important;
}

.full-width-row.services-fade .services-scroll__grid {
  /*width: min(1280px, calc(100% - 48px));*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.full-width-row.services-fade .services-scroll__media {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.full-width-row.services-fade .services-scroll__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  display: block;
}

.row.full-width-row.ctas {
  margin-bottom: 5%;
}

.full-width-row.services-fade .services-scroll__main-image {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 600px;
  border-radius: 6px;
  /*box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);*/
  opacity: 1;
  transition: opacity 0.18s ease-in-out;
}

.services-scroll__header {
  margin-bottom: -40px;
}

.full-width-row.services-fade .services-scroll__media,
.full-width-row.services-fade .services-scroll__sticky {
  width: 100%;
}

.full-width-row.services-fade .services-scroll__content {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 20px 0;
}

/*.full-width-row.services-fade .services-step {
  display: block;
  opacity: 0.25;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}*/
.full-width-row.services-fade .services-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  opacity: 0.25;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.full-width-row.services-fade .services-step__icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 2px dashed #b8c98a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.full-width-row.services-fade .services-step__icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.full-width-row.services-fade .services-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.full-width-row.services-fade .services-step__text {
  max-width: 760px;
}

.full-width-row.services-fade .services-step__text h3 {
  margin: 0 0 14px;
  color: #0E2236;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  font-style: italic;
}

.full-width-row.services-fade .services-step__text p {
  margin: 0;
  color: #5f6670;
  font-size: 17px;
  line-height: 1.75;
}

.services-step__text b, .services-step__text strong {
  font-weight: 600;
  margin-bottom: 20px;
}

.full-width-row.services-fade .services-scroll__media,
.full-width-row.services-fade .services-scroll__sticky {
  align-self: start;
}

.full-width-row.services-fade,
.full-width-row.services-fade .services-scroll,
.full-width-row.services-fade .services-scroll__grid,
.full-width-row.services-fade .services-scroll__media {
  overflow: visible !important;
}

.services-fade li b {
  font-weight: bold;
  font-size: 17px;
  font-family: var(--font-family-hdr);
  color: var(--primary-color) !important;
}

.services-fade h4 {
  font-weight: bold;
  font-size: 20px;
  font-family: var(--font-family-hdr);
  color: var(--primary-color) !important;
}

.row li::marker {
  color: #859958 !important;
}

@media screen and (max-width: 991px) {
  .full-width-row.services-fade .services-scroll {
    padding: 0 0 56px;
  }
  .full-width-row.services-fade .services-scroll__grid {
    width: min(100%, 100% - 32px);
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
  .full-width-row.services-fade .services-scroll__media {
    position: relative;
    min-height: auto;
    margin: 0;
    padding: 0;
    z-index: 5;
  }
  .full-width-row.services-fade .services-scroll__sticky {
    position: sticky;
    top: 70px;
    margin: 0;
  }
  .full-width-row.services-fade .services-scroll__main-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
  }
  .full-width-row.services-fade .services-scroll__content {
    gap: 56px;
    padding: 0;
  }
  .full-width-row.services-fade .services-step {
    grid-template-columns: 1fr;
    gap: 18px;
    opacity: 1;
    transform: translateY(24px);
    padding: 25px;
    border: 1px solid #859958;
  }
  .full-width-row.services-fade .services-step * {
    text-align: center;
  }
  .full-width-row.services-fade .services-step.is-active {
    opacity: 1;
    transform: translateY(0);
  }
  .full-width-row.services-fade .services-step__icon {
    width: 56px;
    height: 56px;
    margin: auto;
  }
  .full-width-row.services-fade .services-step__icon img {
    width: 26px;
    height: 26px;
    margin: auto;
  }
  .full-width-row.services-fade .services-step__text h3 {
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.7;
  }
  .full-width-row.services-fade .services-step__text p {
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
  .full-width-row.services-fade .services-step__text li {
    text-align: left;
  }
}
/**************************************************
GLOBAL MODULE STYLES
**************************************************/
/* Interior Page Module Padding*/
.row {
  padding: 5% 4%;
}

/* Content Container Max Width */
.content-container {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
}

/* Top Row Wysiwyg inside all custom modules */
.top-row {
  padding: 0 0 45px;
}

.top-content {
  margin-bottom: 5%;
}

/* Bottom Row Wysiwyg inside all custom modules */
.bottom-row {
  padding: 45px 0 0;
}

/* Global Padding Removal Classes */
.top-padding-none {
  padding-top: 0;
}

.right-padding-none {
  padding-right: 0;
}

.bottom-padding-none {
  padding-bottom: 0;
}

.left-padding-none {
  padding-left: 0;
}

/* Global Margin Removal Classes */
.top-margin-none {
  margin-top: 0;
}

.right-margin-none {
  margin-right: 0;
}

.bottom-margin-none {
  margin-bottom: 0;
}

.left-margin-none {
  margin-left: 0;
}

/* Accordion Styles */
.accordion {
  margin-left: auto;
  margin-right: auto;
}

.accordion-label {
  background: #FDEEDD;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 11px;
  cursor: pointer;
  align-items: center;
}

.accordion-label h3 {
  font-size: 20px;
  line-height: 35px;
  font-weight: 700;
}

.accordion .content {
  background: #FFF7EF;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
}

.accordion .content p {
  margin: 15px;
}

.accordion .item.active .content {
  max-height: 1000px;
}

.accordion .item {
  margin: 3px 0;
}

.accordion-label:hover {
  background: #ffc787;
  transition: 0.2s;
}

button.accordion-toggle {
  background: 0;
  border: 0;
  font-size: 22px;
}

.accordion .item.active .accordion-label {
  background: #ffc787;
  transition: 0.2s ease;
}

.row.basic-sub-nav {
  padding: 30px 4%;
  background-color: #444444;
}

.basic-sub-nav .nav-links {
  display: flex;
  width: 100%;
  justify-content: center;
}

.basic-sub-nav .nav-links a {
  color: #fff;
  font-weight: bold;
}

.basic-sub-nav .nav-links a:hover {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

@media (min-width: 1024px) {
  .simple-hero {
    min-height: 800px;
  }
}
/* Base styles for all screen sizes wider than 380px */
@media (min-width: 380px) {
  .simple-hero {
    /*min-height: 700px;*/
  }
  .video-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .video-hero-content h1 {
    color: #fff;
  }
  .video-hero-content p {
    color: #fff;
  }
  .full-width-row {
    display: block;
  }
  .full-width-accordion {
    display: block;
  }
  .full-width-accordion .top-row {
    padding: 0;
  }
  .two-column-row, .three-column-row, .four-column-row {
    display: grid;
  }
  .row.two-column-row-img-cover-container {
    padding: 0;
  }
  .two-column-row-img-cover-container .two-column-row.left .image-column {
    order: 1;
  }
  .two-column-row-img-cover-container .two-column-row.right .image-column {
    order: 2;
  }
  .two-column-row-img-cover-container .two-column-row.left .content-column {
    order: 2;
  }
  .double-accordion-grid {
    display: grid;
  }
  .grid-container {
    display: grid;
    gap: 45px;
  }
  .grid-container .grid-item img {
    margin-bottom: 15px;
  }
  .grid-container .grid-item a:hover {
    text-decoration: none;
  }
  .multi-column-grid-container {
    display: grid;
  }
  .multi-column-grid-item.full-width {
    grid-column: 1/-1;
  }
  .vertical-tabs-container .content-container .column {
    flex: 1;
  }
  .vertical-tabs-container .content-container .tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .vertical-tabs-container .tab-button {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 12px 20px;
    text-align: left;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  .vertical-tabs-container .tab-button:hover {
    background-color: #007bff;
    color: white;
  }
  .vertical-tabs-container .tab-button.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
  }
  .vertical-tabs-container .tab-content-container.column {
    display: flex;
    flex-direction: column;
    flex: 2;
  }
  .vertical-tabs-container .tab-content {
    display: none;
    padding: 20px;
    background-color: #fff;
    margin-bottom: 15px;
    border: 1px solid #ddd;
  }
  .vertical-tabs-container .tab-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .vertical-tabs-container .tab-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  .off-cta-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    align-items: stretch;
  }
  .off-cta-container .column:first-of-type {
    flex-basis: 35%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 20px;
    color: white;
  }
  .off-cta-content {
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 5%;
    height: fit-content;
    width: 90%;
    transform: translateX(60%) translateY(30%);
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.69);
    line-height: 2;
  }
  .off-cta-content h3 {
    color: #0B1A3C;
    padding-left: 5%;
    border-left: 3px solid #DB0C31;
  }
  .off-cta-content {
    color: #6B6C70;
  }
  .off-cta-content {
    color: #051A53;
    font-weight: bold;
  }
  /* mobile styles */
}
@media (min-width: 380px) and (min-width: 1005px) {
  .basic-sub-nav .nav-links a {
    border-right: 1px solid #fff;
    padding: 0 45px;
  }
  .basic-sub-nav .nav-links a {
    border-right: none;
  }
  .basic-sub-nav .nav-links a:hover {
    text-decoration: none;
    color: #fff;
  }
  .two-column-row {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    max-width: 1400px;
    margin: auto;
  }
  .three-column-row {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1400px;
    margin: auto;
  }
  .four-column-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1400px;
    margin: auto;
  }
  .two-column-row-img-cover-container .two-column-row.left .content-column {
    padding: 0 12% 0 0;
  }
  .two-column-row-img-cover-container .two-column-row.right .content-column {
    padding: 0 0 0 12%;
  }
  .double-accordion-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .grid-container {
    display: grid;
    gap: 24px;
    align-items: stretch;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-container.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-container.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-container.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-container.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-container.cols-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  /* MU-2: Flexible Grid Repeater */
  .multi-column-grid-container.columns-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .multi-column-grid-container.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .multi-column-grid-container.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .multi-column-grid-container.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .multi-column-grid-container.columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .multi-column-grid-container.columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .vertical-tabs-container .content-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 45px;
  }
}
@media (min-width: 380px) and (max-width: 1004px) {
  .row {
    padding: 13% 4%;
  }
  .basic-sub-nav .nav-links {
    display: grid;
  }
  .basic-sub-nav .nav-links a {
    border-bottom: solid 1px white;
  }
  .basic-sub-nav .nav-links a:last-of-type {
    border-bottom: none;
  }
  .basic-sub-nav .nav-links a {
    padding: 25px 25px;
  }
  .two-column-row-img-cover-container .two-column-row.left .content-column, .two-column-row-img-cover-container .two-column-row.right .content-column {
    padding: 2% 4%;
  }
  .double-accordion-grid {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .double-accordion-grid .accordion .item {
    margin: 0;
  }
  .double-accordion-grid .accordion {
    display: grid;
    gap: 3px;
  }
  .grid-container.three-col-row, .grid-container.four-col-row, .grid-container.five-col-row, .grid-container.six-col-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 380px) {
  /*FAQ Accordion*/
  .row.single-faq-accordion {
    padding: 0 4% 5%;
  }
  .single-faq-accordion .faq-accordion {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }
  .single-faq-accordion .faq-item {
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .single-faq-accordion .faq-item.is-open {
    border-color: var(--accent-color);
    box-shadow: 0 8px 94px rgba(8, 57, 65, 0.05);
  }
  .single-faq-accordion .faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    cursor: pointer;
  }
  .single-faq-accordion .faq-question h3 {
    margin: 0;
    flex: 1;
    font-size: 18px !important;
    line-height: 1.25;
  }
  .single-faq-accordion .accordion-toggle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: none;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 18px;
    padding-top: 3px !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
  }
  .faq-item.is-open {
    padding-bottom: 24px;
  }
  .single-faq-accordion .faq-item.is-open .accordion-toggle {
    transform: rotate(45deg);
  }
  .single-faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 28px;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding-bottom 0.35s ease;
  }
  .single-faq-accordion .faq-answer-inner {
    padding-bottom: 0;
  }
  .single-faq-accordion .faq-item.is-open .faq-answer {
    opacity: 1;
    padding-bottom: 28px;
  }
  .single-faq-accordion h2 {
    margin-bottom: 2.5%;
    text-align: center;
  }
  .single-faq-accordion .faq-answer p:first-child {
    margin-top: 0;
  }
  .single-faq-accordion .faq-answer p:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 380px) and (max-width: 767px) {
  .single-faq-accordion .faq-question {
    padding: 18px 20px;
    gap: 12px;
  }
  .single-faq-accordion .faq-question h3 {
    font-size: 20px;
  }
  .single-faq-accordion .faq-answer {
    padding: 0 20px;
  }
  .single-faq-accordion .faq-item.is-open .faq-answer {
    padding-bottom: 20px;
  }
  .single-faq-accordion .accordion-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 24px;
  }
}
@media (min-width: 380px) {
  /**************************************************
  INDIVIDUAL MODULE STYLES
  **************************************************/
  /*Homepage: Services Accordion*/
}
@media (min-width: 380px) and (min-width: 1004px) {
  .home-accordion .two-column-row {
    grid-template-columns: 0.75fr 1fr;
  }
}
@media (min-width: 380px) and (max-width: 1004px) {
  .home-accordion .two-column-row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 380px) {
  .row.two-column-row-container.home-accordion {
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: -5% -10%;
  }
  .sa-acc {
    max-width: 600px !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .sa-acc__item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-image: var(--sa-bg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  }
  .sa-acc__item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(247, 248, 243, 0.8392156863) 0%, rgba(247, 248, 243, 0.8392156863) 55%, rgba(247, 248, 243, 0.8392156863) 100%);
  }
  .sa-acc__toggle {
    position: relative;
    z-index: 1;
    width: 100%;
    border: 0;
    background: rgba(255, 255, 255, 0.18);
    /*backdrop-filter:blur(2px);
    -webkit-backdrop-filter:blur(2px);*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px;
    cursor: pointer;
  }
  .is-open .sa-acc__panel {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
}
@media (min-width: 380px) {
  /*.sa-acc__title{
  	font-style:italic;
  	font-weight:700;
  	color:#0e2236;font-size:
  	clamp(22px,2.2vw,30px);
  	line-height:1.1;
  	text-align:center;
  	  font-family: var(--font-family-hdr);

  }*/
  .sa-acc__icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(75, 87, 49, 0.6);
    /*margin: 10px auto 14px;*/
    border: 1px dotted #fff;
  }
  .sa-acc__icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
  }
  .is-open .sa-acc__icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
  }
  .sa-acc__panel {
    position: relative;
    z-index: 1;
    padding: 0 34px 34px;
    text-align: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
  }
  .sa-acc__panelInner {
    padding-top: 10px;
  }
  .sa-acc__panelIcon {
    width: 75px;
    height: 75px;
    border-radius: 999px;
    background: rgba(75, 87, 49, 0.6);
    display: grid;
    place-items: center;
    margin: 10px auto 14px;
    border: 0.5px solid #fff;
  }
  .sa-acc__panelIcon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
  }
  .sa-acc__panelTitle, .sa-acc__title {
    margin: auto;
    font-style: italic;
    font-weight: 700;
    color: #0e2236;
    line-height: 1.1;
    font-family: var(--font-family-hdr);
    text-align: center !important;
    font-size: 20px;
  }
  .is-open .sa-acc__panelTitle {
    font-size: 22px;
  }
  .sa-acc__content {
    color: #1a2c42;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.7;
  }
  .sa-acc__content p {
    color: #021208;
  }
  .sa-acc__content img {
    margin: auto;
  }
  .sa-acc__toggle:focus-visible {
    outline: 3px solid rgba(14, 34, 54, 0.25);
    outline-offset: 4px;
  }
  .sa-acc__item.is-open .sa-acc__toggle {
    justify-content: center;
  }
  .sa-acc__item.is-open .sa-acc__title {
    text-align: center;
  }
  .sa-acc__item.is-open .sa-acc__icon {
    display: none;
  }
  .sa-acc__item.is-open .sa-acc__toggle {
    display: none;
  }
  /*Process Timeline: How We Work With You*/
  .ptl {
    padding: 40px 0;
  }
  .ptl__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
}
@media (min-width: 380px) and (min-width: 1004px) {
  .ptl__grid {
    grid-template-columns: 1.1fr 1.3fr;
  }
}
@media (min-width: 380px) {
  .ptl__leftWrap {
    position: relative;
    display: inline-block;
  }
  .ptl__image {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .ptl__bubble {
    position: absolute;
    left: 14%;
    top: 6%;
    background: #f6f6f1;
    color: #0e2236;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    font-weight: 600;
  }
  .ptl__list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .ptl__item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    align-items: flex-start;
    position: relative;
  }
  .ptl__item + .ptl__item {
    margin-top: 32px;
  }
  .ptl__marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #13243F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }
  .ptl__num {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }
  .ptl__content {
    padding-top: 8px;
  }
  .ptl__title {
    margin: 0 0 10px;
  }
  .ptl__desc p:first-child {
    margin-top: 0;
  }
  .ptl__desc p:last-child {
    margin-bottom: 0;
  }
  .ptl__item::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 50px;
    width: 2px;
    height: calc(100% + 32px);
    background: #d9d9d9;
    z-index: 1;
  }
  .ptl__item:last-child::after {
    display: none;
  }
}
@media (min-width: 380px) {
  /*********************
  Search STYLES
  *********************/
  .search #content {
    padding: 0 5%;
  }
  aside#sidebar1 {
    display: none;
  }
  .search p.footer-category {
    display: none;
  }
  .search #content {
    padding: 0;
  }
  .search .byline-wrap {
    display: none;
  }
  article.post-search-result {
    max-width: 1400px;
    margin: 2.5% auto;
    border: 1px solid #ddd;
    padding: 2.5% !important;
    border-radius: 10px;
  }
  .row.full-width-row.privacy {
    max-width: 1400px;
    margin: auto;
  }
  #post-not-found {
    max-width: 1400px;
    margin: auto;
  }
}
@media (min-width: 380px) and (max-width: 1400px) {
  article.post-search-result {
    margin: 2.5% 5%;
  }
}
@media (min-width: 380px) {
  a.excerpt-read-more {
    display: block;
  }
  h3.search-title.entry-title a:hover {
    text-decoration: none;
    color: #859958;
  }
}
@media (min-width: 380px) {
  /*********************
  404 and Search STYLES
  *********************/
  .error404 #content {
    padding: 0 5%;
  }
  /*********************
  BLOG STYLES
  *********************/
  .blog #content, .blog > aside {
    padding: 0 5%;
  }
  /*********************
  Cookie Consent Banner
  *********************/
  .cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    color: black;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
  }
  .cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
  }
  .cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  }
  .cookie-consent-button:active {
    opacity: 0.5;
  }
  .cookie-consent-button.btn-success {
    background-color: #34a853;
    color: white;
  }
  .cookie-consent-button.btn-grayscale {
    background-color: #dfe1e5;
    color: black;
  }
  .cookie-consent-button.btn-outline {
    background-color: #e6f4ea;
    color: #34a853;
  }
  .cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .cookie-consent-options label {
    margin: 0 10px;
    font-size: 14px;
  }
  .cookie-consent-options input {
    margin-right: 5px;
  }
  .container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  @supports (grid-area: auto) {
    /**
    * Grid defaults. 
    * If you don't want to use CSS Grid, remove the .grid class 
    * from #container in header.php
    * 
    */
    .grid {
      display: grid;
      margin: 0 auto;
      width: 100%;
      /*height: 100vh; */
      grid-gap: 12px;
    }
    .grid #content {
      flex: 1;
      background-color: ghostwhite;
    }
    .grid aside {
      background-color: honeydew;
      min-height: 80px;
    }
    .grid #footer {
      background-color: #fff;
    }
    .grid-aside {
      grid-template-rows: auto 1fr auto;
    }
    @media only screen and (min-width: 380px) and (min-width: 768px) {
      .grid-aside {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: auto 1fr auto;
      }
      .grid-aside #header, .grid-aside #footer {
        grid-column: span 12;
      }
      .grid-aside #content {
        grid-column: 1/8;
      }
      .grid-aside aside {
        grid-column: 8/-1;
      }
      .grid-full {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: auto 1fr auto;
      }
      .grid-full #header, .grid-full #footer {
        grid-column: span 12;
      }
      .grid-full #content {
        grid-column: 1/-1;
      }
      .grid-full aside {
        display: none;
      }
    }
    @media only screen and (min-width: 380px) and (min-width: 1170px) {
      .grid-aside #content {
        grid-column: 2/8;
      }
      .grid-aside aside {
        grid-column: 8/12;
      }
      .grid-full #content {
        grid-column: 0/12;
      }
    }
    @media only screen and (min-width: 380px) and (min-width: 1600px) {
      .grid-aside #content {
        grid-column: 3/8;
      }
      .grid-aside aside {
        grid-column: 8/11;
      }
      .grid-full #content {
        grid-column: 0/12;
      }
    }
  }
}
/*********************
Small Business Page
*********************/
.row.bottom-cta.non-profit {
  margin-top: 0;
}

.row.simple .pill-btn {
  margin: auto;
}

.row.simple h3, .bottom-cta h3 {
  margin-bottom: 3%;
}

/*********************
Small Business Page
*********************/
.broken-border-cta.row {
  padding: 3% 4%;
}

.broken-border-cta .two-column-row {
  /*border: 1px solid #13253F;*/
  border-radius: 5px;
  background-color: #fff;
  overflow: visible;
  padding: 1%;
  max-width: 1200px;
  box-shadow: 0 8px 94px rgba(8, 57, 65, 0.05);
}

.broken-border-cta .two-column-row .left-column {
  padding: 2.5%;
}

.broken-border-cta .two-column-row .right-column img {
  border-radius: 5px;
}

.broken-border-cta .pill-btn {
  margin-bottom: 0;
  margin-top: 0;
}

@media only screen and (min-width: 1005px) {
  .broken-border-cta .two-column-row {
    grid-template-columns: 1.5fr 1fr;
  }
  .broken-border-cta .two-column-row .right-column img {
    transform: translate(8%, 10%) scale(1.1);
  }
}
@media only screen and (max-width: 1005px) {
  .broken-border-cta .two-column-row .left-column, .broken-border-cta .two-column-row .right-column {
    padding: 5%;
  }
  .row.full-width-row.bottom-cta {
    min-height: auto;
  }
}
/*********************
Contact Page
*********************/
.contact.row .right-column {
  background-color: #0E2237;
  padding: 5%;
  border-radius: 10px;
  border: 10px solid #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.row.two-column-row-container.contact .right-column h2 {
  color: #fff !important;
}

.page-contact-us .contact.row.two-column-row-container .right-column .gfield_label, .page-contact-us .contact.row.two-column-row-container .right-column .gform-field-label {
  color: #fff !important;
  font-family: var(--font-family);
  font-weight: 200 !important;
  line-height: 1.9;
}

.page-contact-us .contact.row.two-column-row-container .gform_confirmation_message {
  color: #fff;
}

.contact-details {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #0E2237;
  /*box-shadow: rgb(149 157 165 / 11%) 0px 4px 12px;	margin-bottom: 20px;
  border-radius:5px;*/
  margin-bottom: 12px;
  width: 100%;
}

.contact-details,
.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0E2237;
  text-decoration: none;
  font-size: 18px;
}

.contact-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: #7b8f3b;
  flex-shrink: 0;
}

.contact-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  color: #7b8f3b;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-icon-stroke svg {
  fill: none;
}

/*********************
About Us Page
*********************/
.about-basic.row .left-column img {
  height: 75%;
  object-fit: cover;
  border-radius: 5px;
}

.row.two-column-row-container.about-basic {
  margin-bottom: -6%;
  padding-top: 0;
  padding-bottom: 0;
}

/*********************
Team Page
*********************/
.team-row.row {
  padding-top: 0;
}

.team-row .grid-container {
  /*display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));*/
  gap: 30px;
  margin-top: 40px;
  /* flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;*/
}

.team-row .grid-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
}

.team-row .grid-item img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  margin: 0 auto 20px;
  border-radius: 16px;
}

.team-row .grid-header {
  margin: 0 0 10px;
}

.team-row .grid-text {
  margin-bottom: 20px;
}

.team-row .team-member-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
}

@media (min-width: 1024px) {
  .team-row .grid-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .team-row .grid-item {
    width: 30%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .team-row .grid-container {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (max-width: 768px) {
  .team-row .grid-container {
    display: grid;
  }
}
@media (max-width: 1800px) {
  .team-row.row {
    max-width: 1500px !important;
    margin: auto;
  }
}
@media (max-width: 1024px) {
  .team-row .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .team-row .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-row .grid-item {
    padding: 20px;
  }
  .team-row .grid-item img {
    height: auto;
    max-width: 100%;
  }
}
.team-row .grid-container {
  /*display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));*/
  gap: 30px;
  margin-top: 40px;
}

.team-row .grid-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  text-align: center;
}

.team-row .grid-item img {
  display: block;
  width: 100%;
  max-width: 450px;
  height: 450px;
  object-fit: cover;
  margin: 0 auto 20px;
  border-radius: 5px;
}

.team-row .grid-header {
  margin: 0 0 10px;
}

.team-row .grid-text p {
  margin-top: 0;
  margin-bottom: 0;
}

.team-row .team-member-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 20px;
  text-decoration: underline;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  width: fit-content;
  margin: -15px auto auto auto;
}

.team-row .lightbox {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.team-row .lightbox-content {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.team-row .lightbox-content .close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.team-row #teamMemberBioContent h3 {
  margin: 0 0 20px;
}

.team-row #teamMemberBioContent h3 span {
  display: inline;
}

.team-row #teamMemberBioContent p {
  margin: 0;
}

@media (max-width: 1024px) {
  .team-row .grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .team-row .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-row .grid-item {
    padding: 20px;
  }
  .team-row .grid-item img {
    height: auto;
    max-width: 100%;
  }
  .team-row .lightbox {
    padding: 15px;
  }
  .team-row .lightbox-content {
    padding: 24px;
    max-width: 100%;
    max-height: 85vh;
  }
  .team-row .lightbox-content .close {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .team-row .lightbox {
    padding: 30px 15px 15px;
    align-items: flex-start;
  }
  .team-row .lightbox-content {
    margin-top: 125px;
    max-height: calc(100vh - 175px);
  }
}
div#teamMemberBioContent p, div#teamMemberBioContent div {
  color: #707071 !important;
  font-size: 18px !important;
  line-height: 1.9 !important;
}

#teamMemberBioContent p {
  margin-bottom: 20px !important;
}

/*********************
Work With Us Page
*********************/
.work-with-us-form.row .right-column div {
  background-color: #0E2237;
  padding: 5%;
  border-radius: 10px;
  border: 10px solid #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.work-with-us-form.row .right-column p, .work-with-us-form.row .right-column h2 {
  color: #fff !important;
}

.work-with-us-form.row .right-column h2 {
  font-size: 25px !important;
  line-height: 1.7;
}

@media (min-width: 380px) and (min-width: 1005px) {
  .work-with-us-form.row .two-column-row {
    grid-template-columns: 1fr 0.5fr;
    gap: 45px;
    max-width: 1400px;
    margin: auto;
  }
}
/*404 Page*/
.error.row .column.right-column {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.error.row .column.left-column {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}

.column.right-column h2, .column.right-column p {
  display: inline-block !important;
  width: 100%;
  margin-bottom: 0;
  margin-top: 15px;
}

.error.row h2 {
  font-size: 50px !important;
}

.error.row .top-row {
  display: none;
}

.error.row .two-column-row {
  max-width: 1000px;
}

@media (min-width: 380px) {
  .error404 #content {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .error.row.simple-hero.interior.hero {
    min-height: 400px;
  }
}
@media screen and (max-width: 1004px) {
  .error.row .column.left-column {
    display: none;
  }
}
/* Ye Olde Bones Grid
* Hear Ye, hear ye!
* This is the old style grid, now commented out
* You *should* make the move to css grid now but
* if you need this or can't let go, it's still here
* so uncomment to use (and comment the cssgrid out).
* Just know that Rachel Andrew is watching.
*/
/**
* Gutenberg Styles.
*
* Now enqueued in a separate function in functions.php to
* keep styles out of the main stylesheet. Alternatively
* you can comment out the Gutenberg styles enqueue and 
* uncomment this below to have a single stylesheet.
* You do you.
*/
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

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

******************************************************************/
.alert-success, .alert-error, .alert-info, .alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}

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

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

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

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

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

Stylesheet: Button Styles

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

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

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

See here on placeholder selectors and why you should
use @extend instead of @include:
http://thesassway.com/intermediate/understanding-placeholder-selectors

Also, don't use cursor: pointer; for buttons as they already should 
signify that they are clickable:

https://medium.com/simple-human/buttons-shouldnt-have-a-hand-cursor-b11e99ca374b

*********************/
.blue-button, .button {
  position: relative;
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 0.5em 1em;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
}
.blue-button:active, .button:active {
  top: 1px;
}

.blue-button {
  background: #0056ac;
  color: #fff;
}
.blue-button:hover, .blue-button:focus {
  color: #fff;
}

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

Stylesheet: Form Styles

Here are a few defaults for forms and stuffs.

******************************************************************/
/*********************
INPUTS
*********************/
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
select,
textarea,
.field {
  display: block;
}
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 {
  opacity: 0.6;
  cursor: not-allowed;
}
input[type=password] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  width: 100%;
}

fieldset {
  border: 1px solid #ccc;
}
fieldset label {
  font-weight: 600;
}
fieldset p {
  margin-bottom: 0;
}

legend {
  padding: 0 0.5em;
}

.radio-buttons {
  margin-top: 0;
}
.radio-buttons li {
  margin-left: 2px;
  list-style-type: none;
}
.radio-buttons label {
  font-weight: normal;
}

/*********************
BASE STYLESHEET
These are the base styles and it's loaded on every device. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Stylesheet

As the name implies, this is the base stylesheet. This will be
loaded by all devices and viewports so keep it as light as possible.

If you are using progressive enhancement, load styles that will be
only seen on tablets or desktops in the stylesheets targeted for
those viewpoints.

******************************************************************/
/*********************
GLOBAL STYLES
Use this section for
site-wide stuffs.
*********************/
html {
  font-size: 1em;
}

body {
  color: #333333;
  font-size: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

pre code {
  white-space: pre-line;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/*********************
LINK STYLES
*********************/
a, a:visited {
  text-decoration: none;
  /* on hover */
}
a:hover, a:focus, a:visited:hover, a:visited:focus {
  text-decoration: underline;
}
a, a:visited {
  /* on click */
}
a, a:visited {
  /* mobile tap color */
}
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
HEADING STYLES
******************************************************************/
/* 
While there are several frameworks for Sass web typography and
baselines like Sassline, Megatype and Gutenberg (not the new WP editor), 
those all seemed overly complex. What I wanted was simple defaults that 
looked good out of the box without a lot of calculations and segmented mixins.

After searching far and wide, I came across this:
http://type-scale.com which we used to get our base sizes.

You should use only one <h1> element per page (generally for the page title). 
Then, use <h2> for sub-headings and h3-h6 if you need to structure your text
further. Using correct headings helps with readability, SEO, and accessibility.
*/
/* Heading defaults */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  color: rgb(47.6, 47.6, 47.6);
  font-weight: 500;
  line-height: 1.2;
  text-rendering: optimizelegibility;
}
h1::before, .h1::before, h2::before, .h2::before, h3::before, .h3::before, h4::before, .h4::before, h5::before, .h5::before, h6::before, .h6::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((0.7 - 1.2) * 0.5em);
}
h1::after, .h1::after, h2::after, .h2::after, h3::after, .h3::after, h4::after, .h4::after, h5::after, .h5::after, h6::after, .h6::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((0.7 - 1.2) * 0.5em);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* 
  Removing text decoration from all headline links.
  If you want it, then delete this. Do it your way.
  */
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  text-decoration: none;
}

h1, .h1 {
  margin-top: 0;
  font-size: 3.157em;
}

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

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

h4, .h4 {
  font-size: 1.333em;
}

h5, .h5 {
  font-size: 1em;
}

h6, .h6 {
  text-transform: uppercase;
  letter-spacing: 4.333px;
}

/*********************
LIST STYLES
*********************/
ul, ol {
  -webkit-padding-start: 20px;
}

.list-square {
  margin-bottom: 1.5em;
  list-style-position: outside;
  list-style-type: square;
}

.nostyle {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.related-posts-list {
  display: flex;
}

.page-numbers {
  margin: 1em 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}
.page-numbers li {
  margin-right: 1em;
}

/*********************
NAVIGATION STYLES
*********************/
/* 
Where did the nav menu go?
Navigation styles for mobile are now in 767down.scss
if you need them.

We almost always use the Responsive Menu plugin:
https://wordpress.org/plugins/responsive-menu/ for mobile
menus but those selectors are there if you want to use the
default menu.

For your main navigation, styles are in 768up.scss.
*/
/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/*
As you add pages, add your own body classes below if you 
need page-specific styles.

It's good practice to use .page-yourpage {} syntax here so 
that you don't conflict with other classes. That's what
the cool kids do.

*/
.error404 .search-outer {
  padding: 1.5em 0;
}
.error404 .search-input {
  display: flex;
  width: 100%;
}
.error404 input[type=search] {
  margin: 0 1em 0 0;
  height: 40px;
  min-width: 250px;
}
.error404 .search-submit {
  width: 100px;
}

.page-blog .entry-content .alignfull, .page-blog .entry-content .alignwide {
  margin: 0;
  max-width: 100%;
}

/**
 * put all your custom page classes here  
 * e.g. .page-yourpage {}
 */
/*********************
POSTS & CONTENT STYLES
*********************/
/* post meta */
.byline-wrap {
  margin-bottom: 1.5em;
}
/* entry content */
.entry-content table {
  margin-bottom: 1.5em;
  width: 100%;
  border: 1px solid #ccc;
}
.entry-content tr {
  border-bottom: 1px solid #ccc;
}
.entry-content tr:nth-child(even) {
  background-color: #dedede;
}
.entry-content td {
  padding: 7px;
  border-right: 1px solid #ccc;
}
.entry-content td:last-child {
  border-right: 0;
}
.entry-content th {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #dedede;
}
.entry-content th:last-child {
  border-right: 0;
}
.entry-content {
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */
} /* end .entry-content */
.wp-caption {
  /* images inside wp-caption */
} /* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* default WP image classes */
/******************************************************************
SCREEN READER STYLES
******************************************************************/
/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}

.screen-reader-text:focus {
  top: 5px;
  left: 5px;
  z-index: 100000;
  /* Above WP toolbar. */
  display: block;
  clip: auto !important;
  padding: 15px 23px 14px;
  width: auto;
  height: auto;
  border-radius: 3px;
  background-color: #f1f1f1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.875rem;
  font-size: 14px;
  line-height: normal;
}

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

/* end .wp-prev-next */
/******************************************************************
COMMENT STYLES
******************************************************************/
/* h3 comment title */
#comments-title {
  /* number of comments span */
}
.commentlist {
  margin: 0;
  list-style-type: none;
}

.comment {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #ccc;
}
.comment .comment-author {
  display: flex;
  align-items: center;
}
.comment {
  /* vcard */
}
.comment .vcard .avatar {
  margin-right: 1rem;
}
.comment {
  /* end .commentlist .vcard */
}
.comment .children {
  /* variations */
}
.comment .children { /* change number for different depth */ }
.comment {
  /* end children */
}
.comment {
  /* general comment classes */
}
/* comment meta */
/* comment content */
/* end .commentlist .comment_content */
/* comment reply link */
/* end .commentlist .comment-reply-link */
/* edit comment link */
.comment-edit-link {
  margin-right: 6px;
}

/**********************
COMMENT FORM STYLES
***********************/
/* comment submit button */
/* comment form title */
/* cancel comment reply link */
/* logged in comments */
/* allowed tags */
/* no comments */
/*********************
SIDEBARS & ASIDES
*********************/
.widget ul li {
  /* deep nesting */
}
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
}

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

  Stylesheet: 481px and Up Stylesheet

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

  Not sure if people use this breakpoint much anymore. We don't.
  I can't remember the last time I used this stylesheet but keeping
  it in for now.

  ******************************************************************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .menu ul li a {
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .menu ul li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
  }
  .menu ul {
    /* end current highlighters */
  }
  .menu {
    /* end .menu ul */
  } /* end .menu */
  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */
  }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
    margin-top: 11px;
  }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
    margin-top: 11px;
  }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: table;
    clear: both;
    margin-top: 11px;
  }
  .entry-content .wp-block-media-text.alignfull {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* end .entry-content */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  check your menus here. do they look good?
  do they need tweaking?
  */
  /* end .footer-links */
}
/*********************
BELOW TABLET
This is for everything that's below an iPad including mobile
phones. This way we can keep mobile styles separate and not
compete with the base styles.
*********************/
@media only screen and (max-width: 767px) {
  /******************************************************************
  Site Name: 
  Author:

  Stylesheet: Below Tablet

  This stylesheet will show on devices smaller than an iPad or tablet.
  Use this to add styles that will *only* show on mobile phones.

  I find it easier to do it this way than to have to override base styles.

  ******************************************************************/
  .wrap {
    padding: 1em;
  }
  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    margin: 0;
    padding: 0;
    border-bottom: 0;
    list-style-type: none;
  }
  .nav li a {
    display: block;
    padding: 0.2em;
    text-decoration: none;
  }
  .nav li {
    /* 
    Are you really going to use drop-down menus for mobile?
    Probably not. We almost always use the Responsive Menu
    plugin: https://wordpress.org/plugins/responsive-menu/
    */
  }
  .nav li ul.sub-menu li a,
  .nav li ul.children li a {
    padding-left: 30px;
  }
  .nav {
    /* end .menu li */
    /* highlight current page */
  }
  .nav {
    /* end current highlighters */
  } /* end .nav */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tablet & Small Desktop Stylesheet

  This stylesheet will be used for tablets and larger devices
  like desktops. CSS Grid starts working its magic here so you
  can start to have fun with your layout(s).

  ******************************************************************/
  /*********************
  GLOBAL STYLES
  *********************/
  .entry-content .alignfull {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
  }
  .entry-content .alignwide {
    margin-right: calc(25% - 25vw);
    margin-left: calc(25% - 25vw);
    max-width: 1000%;
    width: auto;
  }
  .entry-content .alignwide img,
  .entry-content .alignfull img {
    display: block;
    margin: 0 auto;
  }
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    padding: 1em 1.5em;
  }
  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  .header-nav {
    display: flex;
    align-items: center;
  }
  .nav {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
  }
  .nav li {
    float: left;
    list-style: none;
  }
  .nav li a {
    display: block;
    border-bottom: 0;
    padding: 0 0.5em;
    text-decoration: none;
    /*
    you can use hover styles here even though this size
    has the possibility of being a mobile device.
    */
  }
  .nav li a:hover, .nav li a:focus {
    text-decoration: underline;
  }
  .nav li {
    /*
    plan your menus and drop-downs wisely.
    */
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    position: absolute;
    z-index: 8999;
    visibility: hidden;
  }
  .nav li ul.sub-menu li:last-child a,
  .nav li ul.children li:last-child a {
    border-bottom: 0;
  }
  .nav li ul.sub-menu li,
  .nav li ul.children li {
    /*
    if you need to go deeper, go nuts
    just remember deeper menus suck
    for usability. k, bai.
    */
  }
  .nav li ul.sub-menu,
  .nav li ul.children {
    /* highlight sub-menu current page */
  }
  .nav li {
    /* showing sub-menus */
  }
  .nav li:hover > ul {
    top: auto;
    visibility: visible;
  }
  .nav {
    /* end .menu ul li */
    /* highlight current page */
  }
  .nav {
    /* end current highlighters */
  } /* end .nav */
  /********************
  WORDPRESS BODY CLASSES
  style a page via class
  ********************/
  /*
  We like having these classes for use in iPad and larger devices
  so we've copied them here.
  */
  .single-full #main {
    max-width: 640px;
    float: none;
    margin: 0 auto;
  }
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .widget ul li {
    /* deep nesting */
  }
  /*!
   *
   * We rarely use these widget classes but they
   * do come in handy sometimes. Know your widgets.
   *
   */
  /* links widget */
  /* meta widget */
  /* pages widget */
  /* recent-posts widget */
  /* archives widget */
  /* tag-cloud widget */
  /* calendar widget */
  /* category widget */
  /* recent-comments widget */
  /* search widget */
  /* text widget */
  /*********************
  FOOTER STYLES
  *********************/
  /*
  you'll probably need to do quite a bit
  of overriding here if you styled them for
  mobile. Make sure to double check these!
  */
  .footer-links ul li {
    /*
    be careful with the depth of your menus.
    it's very rare to have multi-depth menus in
    the footer.
    */
  }
  /* end .footer-links */
}
@media only screen and (max-width: 899px) {
  /******************************************************************
  Site Name: 
  Author:

  Stylesheet: Below Tweener

  This stylesheet will show on devices smaller than large tablets but
  below desktops.

  Use this for tweener device sizes. We don't use this stylesheet
  often but on occasion it comes in handy.

  ******************************************************************/
}
@media only screen and (max-width: 1029px) {
  /******************************************************************
  Site Name: 
  Author:

  Stylesheet: Smaller Desktops + Tablets

  This stylesheet affects desktops and some tablets but often I find
  that 1029px and below is a good breakpoint for showing a mobile 
  hamburger menu so you can add styles for that here.

  I find it easier to do it this way than to have to override base styles.

  ******************************************************************/
}
/*********************
TWEENER
This targets some trickier 'tweener' devices like large
tablets. You probably won't need to add too much to this stylesheet.
If you're not using it, delete it.
*********************/
@media only screen and (min-width: 900px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Tweener Stylsheet

  This is for some trickier in-between 'tweener' sizes like larger 
  tablets.

  ******************************************************************/
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:

  Stylesheet: Desktop Stylsheet

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

  At this breakpoint you can start setting things like max-width for
  your content. Or go full-width. Like Nas said: "The world is yours!"

  ******************************************************************/
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Larger Laptop + Desktop

  You can add some advanced styles for larger devices here if you like. 

  ******************************************************************/
}
/*********************
HIMALAYA XL 9000 SIZE
This is for super ginormous monitors like your one friend has.
*********************/
@media only screen and (min-width: 1600px) {
  /******************************************************************
  Site Name: 
  Author: 

  Stylesheet: Super Large Monitor Stylesheet

  You can add some advanced styles here for extra large monitors.

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

  Stylesheet: Print Stylesheet

  This is the print stylesheet. You probably don't need to edit much
  in here but if you want to, do your thang.

  Adapted from here:
  https://www.noupe.com/design/css-perfect-print-stylesheet-98272.html

  Updated 2018-05-25

  ******************************************************************/
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -ms-filter: none !important;
    filter: none !important;
  }
  /* Setting content width, unsetting floats and margins */
  /* Attention: the classes and IDs vary from theme to theme. Thus, set own classes here */
  #content {
    width: 100%;
    margin: 0;
    float: none;
  }
  /** Setting margins */
  @page {
    margin: 2cm;
  }
  /* Or: */
  @page :left {
    margin: 1cm;
  }
  @page :right {
    margin: 1cm;
  }
  /* The first page of a print can be manipulated as well */
  @page :first {
    margin: 1cm 2cm;
  }
  /* Set font to 16px/13pt, set background to white and font to black.*/
  /* This saves ink */
  body {
    font-size: 13pt;
    line-height: 1.3;
    background: #fff !important;
    color: #000;
  }
  h1 {
    font-size: 24pt;
  }
  h2, h3, h4 {
    font-size: 14pt;
    margin-top: 25px;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  /* Defining all page breaks */
  a {
    page-break-inside: avoid;
  }
  blockquote {
    page-break-inside: avoid;
  }
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  img {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
  table, pre {
    page-break-inside: avoid;
  }
  ul, ol, dl {
    page-break-before: avoid;
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* Displaying link color and link behaviour */
  a:link, a:visited, a {
    background: transparent;
    color: #0088cc;
    font-weight: bold;
    text-decoration: underline;
    text-align: left;
  }
  a[href^=http]:after {
    content: " < " attr(href) "> ";
  }
  article a[href^="#"]:after {
    content: "";
  }
  a:not(:local-link):after {
    content: " < " attr(href) "> ";
  }
  /**
  * Making intergated videos disappear, and removing the iframes' whitespace to zero. 
  */
  .entry-content iframe, ins {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap;
  }
  .embed-youtube, .embed-responsive, .embed-container {
    display: none;
    position: absolute;
    height: 0;
    overflow: hidden;
  }
  /* Hiding unnecessary elements for the print */
  #header-widgets, nav, aside,
  .sidebar, .content-ads, .make-comment, .author-bio,
  .heading, .related-posts, #decomments-form-add-comment,
  #breadcrumbs, #footer, .post-byline, .byline, .meta-single,
  .site-title img, .post-tags, .readability, .sidebar, .page-navigation, .wp-prev-next,
  .respond-form {
    display: none;
  }
}

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