/*! 
Theme Name: 1p21 Theme Build
Author: 1p21

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

for future friendly editing and to avoid possibility of change overrides, DO:
- For smaller and or quick fixes, put css changes in post-live.css 
OR
- For complex and or elaborate rebuilds/ Site build, modify sass files locally with a compiler and output as the style.css
*/
/* ================================================================================
* Resets.css
================================================================================ */
/***
    The new CSS reset - version 1.8.3 (last updated 21.1.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html,
iframe, canvas,
img, svg, video, audio,
input, textarea, select, button,
table, caption, tbody, tfoot, thead, tr, th, td):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Reset form elements while keeping essential ui styles */
:where(input, textarea, select, option, button, optgroup) {
  all: revert;
  margin: unset;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/* resets table styles nicely so html attribute features are still preserved */
:where(table, caption, tbody, tfoot, thead, tr, th, td) {
  margin: unset;
  padding: unset;
  border: unset;
  background: unset;
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ================================================================================
* Native Custom CSS Properties
================================================================================ */
/* css vars because internet explorer can no longer hold us back <3 */
:root {
  /* Core Vars DO NOT EDIT. */
  /* Design Reference - Breakpoints This will be used by javascript to track media queries on stuff like sliders */
  --br-xxs: 359px;
  --br-xs: 767px;
  --br-sm: 1199px;
  --br-md: 1399px;
  --br-lg: 1899px;
  --br-xl: 2879px;
  --br-xxl: 3839px;
  /* Design Reference: Comps/Design Sizes based on given XD Files' artboards */
  --comp: 360px;
  /* unit in case for padding to push to negative margins (ie overlaps). Best to keep as tiny as possible */
  --overlap-buffer: 1px;
  /* Styleguide - Fonts */
  --font-primary: Rubik, Helvetica, Arial, sans-serif;
  --font-secondary: Plus Jakarta Sans, Helvetica, Arial, sans-serif;
  --font-accent: var(--font-primary);
  --font-monospace: monospace;
  /* Styleguide - colors */
  --color-dark: #0B142E;
  --color-dark-alt: #EFB44E;
  --color-light: #FFFFFF;
  --color-light-alt: #F2F5FC;
  --color-primary: #183073;
  --color-primary-alt: #486299;
  --color-primary-gradient-start: var(--color-primary);
  --color-primary-gradient-end: var(--color-primary-alt);
  --color-secondary: #E6C485;
  --color-secondary-alt: #D6B77C;
  --color-secondary-gradient-start: var(--color-secondary);
  --color-secondary-gradient-end: var(--color-secondary-alt);
  --color-accent: #13275C;
  --color-accent-alt: #101F47;
  --color-accent-gradient-start: var(--color-accent);
  --color-accent-gradient-end: var(--color-accent-alt);
  --color-neutral: rgba(72, 98, 153, 0.2);
  --color-neutral-light: var(--color-neutral);
  --color-neutral-lighter: var(--color-neutral-light);
  --color-neutral-lightest: var(--color-neutral-lighter);
  --color-neutral-dark: rgba(99, 132, 184, 0.5);
  --color-neutral-darker: var(--color-neutral-dark);
  --color-neutral-darkest: var(--color-neutral-darker);
  --color-success: #00CC00;
  --color-caution: #CC6600;
  --color-error: var(--color-secondary);
  /* add more native vars as needed */
  --negative-pusher: .01rem;
}
@media only screen and (min-width: 768px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 768px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1200px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1400px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1900px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1920px;
    /* add more native vars as needed */
  }
}

/* ================================================================================
* Global Styles/Normalize:
* Custom reset and global styles for the site html tags
================================================================================ */
/* Custom scaffolding and normalizing styles
--------------------------------------------------------------- */
html,
body {
  /* prevent document from shrinking to window sizes that are too small */
  min-width: 320px;
  /* cascade global font family, color, and background to reduce appearance of broken styles */
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--scheme-fg, var(--color-dark));
  background: var(--scheme-bg, var(--color-light));
  background-attachment: fixed;
  /* make sure there are no edge case words that overflow the layout or make blocks too wide*/
  word-wrap: break-word;
  /* smoothen scroll */
  scroll-behavior: smooth;
  /* mobile viewport bug fix */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* accent color for form stuff */
  accent-color: var(--color-primary);
}

/* position sticky friendly way to cut off any horizontal scrolls but also allow y to still scroll. Apply only on html element or everything will jiggle for safari ios.
 + overflox fix for chrome's responsive inspector -_-
--------------------------------------------------------------- */
html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  overflow-x: clip;
}

/* Remove scrollbar ONLY on touch devices
--------------------------------------------------------------- */
@media (pointer: coarse) {
  html,
  body {
    scrollbar-width: none;
  }
  ::-webkit-scrollbar {
    display: none;
  }
}
/* disable browser focus default styles: Note: customize focus styles as well for accessibility. recommended to set as the same styles as hovers on elements 
--------------------------------------------------------------- */
:focus {
  outline: none;
}

/* Critical sizing and fonts fixes
--------------------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  /* fix animation flickering issues for webkit browsers */
  -webkit-backspace-visibility: hidden;
  /* box sizing */
  box-sizing: border-box;
  /* font fixes */
  -webkit-font-smoothing: antialiased;
  /* Firefox 25*/
  -moz-osx-font-smoothing: grayscale;
}

/* Form control resets. Note: will not entirely prettify Gravity forms styles for the design... yet. To view the rest of the form control scaffoldings, including gravity forms' go to vendor/_gforms styles
--------------------------------------------------------------- */
input:not([type=checkbox]):not([type=radio]),
textarea,
select,
button {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  resize: none;
  display: block;
  font: inherit;
  color: inherit;
  margin: 0;
}

input:is([type=checkbox], [type=radio]) {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  /* placeholder stuff. adjust as needed */
  color: inherit;
  opacity: 0.5;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
  /* placeholder stuff. adjust as needed */
  color: inherit;
  opacity: 0.5;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  /* placeholder stuff. adjust as needed */
  color: inherit;
  opacity: 0.5;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
input:focus::-webkit-input-placeholder,
select:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  /* placeholder stuff. adjust as needed */
  opacity: 0.2;
}
input:focus::-moz-placeholder,
select:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  /* placeholder stuff. adjust as needed */
  opacity: 0.2;
}
input:focus::-ms-input-placeholder,
select:focus::-ms-input-placeholder,
textarea:focus::-ms-input-placeholder {
  /* placeholder stuff. adjust as needed */
  opacity: 0.2;
}

button {
  border: none;
  cursor: pointer;
}

/* Remove default ugly blue links. NOTE: Make sure to style a tags appropiately for accessibility while maintianing styleguide
--------------------------------------------------------------- */
a {
  text-decoration: none;
  color: inherit;
}

/* Monospace elements
--------------------------------------------------------------- */
:where(pre, code, kbd, tt) {
  font-family: var(--font-monospace);
  background: rgba(0, 0, 0, 0.05);
}

:where(code, kbd, tt) {
  padding: 0.125em;
}

:where(pre) {
  padding: 1em;
  max-width: 100%;
  line-height: 1;
  overflow: auto;
}
:where(pre) * {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Other critical element styles
--------------------------------------------------------------- */
:where(strong, b) {
  font-family: inherit;
  font-weight: bolder;
}

:where(em, cite, i, var) {
  font-family: inherit;
  font-style: italic;
}

:where(u) {
  text-decoration: underline;
}

:where(var) {
  font-family: var(--font-secondary);
}

:where(sup, sub, small) {
  font-size: 0.75em;
}

:where(sup) {
  vertical-align: top;
}

:where(sub) {
  vertical-align: bottom;
}

:where(hr) {
  outline: 0;
  border: 0;
  display: block;
}

/* Images
* Note: best practice to let images only expand within available space 
--------------------------------------------------------------- */
:where(img, svg) {
  max-width: 100%;
}

:where(img) {
  height: auto;
}

/* Embeds
* Note: best practice to let images only expand within available space 
--------------------------------------------------------------- */
:where(video,
audio,
iframe,
object,
embed) {
  max-width: 100%;
}

/* Other custom global scaffolding here....
--------------------------------------------------------------- */
/* Normalize template main and asides' vertical padding. adjust as needed then customize in certain template styles.
You can use classes for other elements that need to share the same padding as well
--------------------------------------------------------------- */
:where(main, .main,
aside, .aside) {
  padding-block: 50px;
}
@media only screen and (min-width: 768px) {
  :where(main, .main,
  aside, .aside) {
    padding-block: 75px 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  :where(main, .main,
  aside, .aside) {
    padding-block: 5.625rem 7.5rem;
  }
}
@media only screen and (min-width: 1900px) {
  :where(main, .main,
  aside, .aside) {
    padding-block: 90px 8.75rem;
  }
}
.banner-no-background-image :where(main, .main,
aside, .aside) {
  padding-top: 0rem;
}
/* ...Or separate normalize template main and asides' vertical padding.
--------------------------------------------------------------- */
/* Catch fancy/weird/whatever positioned elements into custom templates' content area only + prevent clipping issues
--------------------------------------------------------------- */
.template-wrapper {
  position: relative;
}

/* ================================================================================
* Vendor Overrides ( CSS Library/ Plugin related stuff. EG: animated,slick,gravity forms etc. )
================================================================================ */
/* Vendor - Animate.css
--------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  /* Turn off all animations on sm and below */
  .animate__animated {
    transition-property: none !important;
    transform: none !important;
    animation: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .animate__animated-custom-entranceReady {
    /* hide animation on init. may or may not be necessary */
    opacity: 0;
    transition: none;
  }
  .visible .animate__animated-custom-entranceReady {
    opacity: 1;
  }
}
/* Vendor - Gravity Forms
--------------------------------------------------------------- */
/* Reset, skeletons, and normalize for gravity forms and form control elements. No need to edit.
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
:is(input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]),
:is(.gform_wrapper, .gfield_required) .gfield_required, .gform_wrapper.gravity-theme .gfield_required .gfield_required_custom, .gform_wrapper.gravity-theme .gfield_label, .gform_wrapper.gravity-theme :is(.gfield, .field_description_above) :is(.description,
.gfield_description,
.gsection_description,
.instruction), .gform_wrapper.gravity-theme :is(.gfield_validation_message,
.validation_message) {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

.gfield:is(.gfield-custom-box-label-inset, .gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]) {
  line-height: var(--field-line-height, inherit);
  border-radius: var(--field-border-radius, 0);
  color: var(--color-dark);
  padding-inline: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-block: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * var(--field-baseline-offset, 0.5)) calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * (1 - var(--field-baseline-offset, 0.5)));
  background: none;
  background-size: calc(100% + var(--field-border-width, 1px) * 2) calc(100% + var(--field-border-width, 1px) * 2);
  background-position: calc(var(--field-border-width, 1px) * -1) calc(var(--field-border-width, 1px) * -1);
  max-width: 100%;
}

.gfield:is(.gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]) {
  border-width: var(--field-border-width, 1px);
  border-style: solid;
  min-height: 0;
}

.gfield:is(.gfield-custom-box-label-adjacent):is(.focus) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):focus {
  border-width: var(--field-border-width, 2px);
}

.gfield:is(.gfield-custom-box-label-inset) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]) {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.gform_wrapper.gravity-theme :is(.gfield_validation_message, .validation_message) {
  /* reset validation messages enough to make matching design more bearable */
  background: none;
  border: 0;
}
.gform_wrapper.gravity-theme .gfield :is(.description,
.gfield_description,
.gsection_description,
.instruction) {
  margin-top: 0.5em;
}
.gform_wrapper.gravity-theme .field_description_above :is(.description,
.gfield_description,
.gsection_description,
.instruction) {
  margin-top: 0;
  margin-bottom: 0.5em;
}

/*  .ginput_ scaffolding. No need to edit 
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .ginput {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .ginput_container_time {
  min-width: calc(var(--field-padding-x) * 2 + 5ch);
  max-width: calc(var(--field-padding-x) * 2 + 5ch);
}
:is(.field_sublabel_below) .gform_wrapper.gravity-theme .ginput_complex {
  align-items: center;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}

/*  .gfield_ scaffolding. No need to edit
--------------------------------------------------------------- */
.gfield.gfield_error :is(label, legend), .gfield_validation_message,
.gfield .validation_message,
.gfield [aria-invalid=true] + label,
.gfield .gform_wrapper label + [aria-invalid=true] {
  color: var(--field-error-color) !important;
}
.gfield:is(.gfield-custom-box-label-adjacent):is(.gfield_error) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea):is([aria-invalid=true]) {
  border-color: var(--field-error-color) !important;
  /* box-shadow: inset 0 -4px 0 0 var(--field-error-color); */
}

.gfield .gchoice {
  margin: 0 0 0.5em;
}

/* gfield customize colors
--------------------------------------------------------------- */
/* Form Customizations: Custom gravity forms and form control elements. Adjust as needed.
--------------------------------------------------------------- */
/* Variables. Will put in the form so non-gravity forms form control elements can utilize too */
:is(form, .gfield) {
  /* height of form field. designers will prefer to design form fields based on their height. this is to better support the wonders they create while being able to use padding to support multi-line/ edge case form fields */
  --field-height: 3.375rem;
  /* border width. This will be accounted for in calculating the form field height as well */
  --field-border-width: 1px;
  /* duh */
  --field-border-radius: 0;
  /* horizontal padding for the form field */
  --field-padding-x: 1.25em;
  /* color for required indicators */
  --field-required-color: var(--scheme-sp,var(--color-secondary));
  /* color for errors */
  --field-error-color: var(--color-error);
  /* Note: this value has to be unitless for calc values to work.
  * modify this value if the font seems a little too high or low in vertical alignment. 1 moves the text to the very top. 0 moves the text to the very bottom. 0.5 will center it based on the fonts' basline alignment */
  --field-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work
  * Formula is line-height-px / font-size-px */
  --field-line-height: 1.125;
  font-size: 18px;
  line-height: var(--field-line-height, 1.125);
}
:is(form, .gfield) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea) {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
:is(form, .gfield):is(.gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea) {
  border-color: var(--color-neutral);
}

:is(form, .gfield):is(.focus, .gfield_error), :is(form, .gfield):is(.gfield-custom-box-label-adjacent):is(.gfield_error) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea):is([aria-invalid=true], :focus) {
  --field-border-width: 2px;
}

:is(form, .gfield):is(.focus):is(.gfield-custom-box-label-adjacent):is(.focus) .gfield_label,
:is(form, .gfield):is(.focus) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):is(:focus) {
  border-color: var(--scheme-fg-bias, var(--color-primary));
}

/*  .gfield - multiline
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select) {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select).large {
  height: 11.5625rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select).medium {
  height: 9.5625rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select).small {
  height: 7.5625rem;
}
/*  .gfield - label
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gfield_label {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
  /* customize type for .gfield and scaffolding for descending elements */
  /* custom font styles for gfield_label */
  font-size: 14px;
  line-height: var(--field-line-height, inherit);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.825em;
  display: flex;
  gap: 0.25em;
}
/*  .gform_ overrides. Adjust as needed
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gform {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .gform_fields {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 22px;
}

/* .gfield_required / .required-glyph Required Indicator
--------------------------------------------------------------- */
.required-glyph,
.gfield-custom-label-indicator.ginput_container::after,
.gform_wrapper.gravity-theme .gfield_required {
  /* adjust required styles  */
  font-size: 1em;
  line-height: var(--field-line-height, inherit);
  color: var(--field-required-color);
  font-style: normal;
  font-weight: 700;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  order: 99;
}
/* custom helpers - Required Message
--------------------------------------------------------------- */
.required-message {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
/* custom helpers - Disclaimer Message
--------------------------------------------------------------- */
.disclaimer-message {
  font-size: 1rem;
}
/* Theme Options custom helpers - label required indicator
--------------------------------------------------------------- */
/* required and custom label indicator */
.gfield-custom-label-indicator:is(.ginput_container::before,
.ginput_container::after,
.gfield_label::after,
.gfield_label > .gfield_required) {
  display: block;
  pointer-events: none;
}
.ginput_container {
  position: relative;
}
.ginput_container::before, .ginput_container::after {
  position: absolute;
  right: var(--field-padding-x);
  top: calc((var(--field-height) - 1em * var(--field-line-height)) * 0.5);
  z-index: 3;
  pointer-events: none;
}

.gfield_label > .gfield_required, .gfield_label::after {
  margin-left: 0.25em;
}

.gfield_contains_required .gfield-custom-label-indicator[data-required-glyph] {
  /* field ui indicator */
  /* required indicator */
}
.gfield_contains_required .gfield-custom-label-indicator[data-required-glyph]::before {
  right: calc(var(--field-padding-x) + 3em);
}
.gfield_contains_required .gfield-custom-label-indicator[data-required-glyph]::after {
  content: attr(data-required-glyph);
}
.gfield-custom-label-indicator.ginput_container::before {
  color: var(--color-dark-alt);
}
.gfield-custom-label-indicator.ginput_container::after, .gfield-custom-label-indicator.gfield_label > .gfield_required {
  color: var(--field-required-color);
}

.gfield-custom-no-label-indicator.gfield_label > .gfield_required {
  display: none;
}

/* related indicators. Make sure required indicator does not conflict
--------------------------------------------------------------- */
.gfield--type-select select {
  padding-right: calc(var(--field-padding-x) + 1em);
}

/* single line select indicator
--------------------------------------------------------------- */
.gfield--type-select .ginput_container::before {
  display: inline-block;
  order: 9;
  align-self: center;
  margin-left: 0.75em;
  margin-right: var(--field-padding-x);
  transform-origin: center center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.5rem;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 2px solid var(--color-dark);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

/* phone indicator
--------------------------------------------------------------- */
.gfield--type-phone.gfield-custom-box-label-inset .gfield_label::after {
  content: "(___) ___-____";
  position: static;
}

/* Theme Options custom helpers - ilawyer custom styles
--------------------------------------------------------------- */
/* custom styles skeletons. No need to edit */
.gform_wrapper.gravity-theme .gfield.gfield-custom-box {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
  position: relative;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box .gfield_label {
  align-self: start;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset {
  /* Overlay label on the input field NOTE: May soon be deprecated. enable or disable via theme options as needed  */
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset .gfield_label {
  position: absolute;
  top: var(--field-border-width);
  left: var(--field-border-width);
  right: var(--field-border-width);
  z-index: 1;
  margin-bottom: 0;
  pointer-events: none;
  /* Take care of edge case overflowing labels */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - var(--field-border-width) * 2);
  padding-right: calc(var(--field-padding-x) * 2 - var(--field-border-width));
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset:is(.active, .focus, :focus-within) .gfield_label {
  opacity: 0;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):not(:focus)::-webkit-input-placeholder {
  /* fix multiline placeholders from peeking behind the label */
  color: transparent;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):not(:focus)::-moz-placeholder {
  /* fix multiline placeholders from peeking behind the label */
  color: transparent;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-inset :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea,
[aria-invalid=true]):not(:focus)::-ms-input-placeholder {
  /* fix multiline placeholders from peeking behind the label */
  color: transparent;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent {
  /* set label beside input field. not to be confused with left align labels settingf for forms. this is our custom stuff and it's prettier than how gravity forms does it.  */
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: max-content;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .gfield_label,
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .ginput_container {
  /* grid/flex fix */
  min-width: 0;
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .gfield_label {
  margin-bottom: 0;
  background-color: var(--color-light-alt);
}
.gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent *:not(.gfield_label):not(.ginput_container) {
  grid-column: 1/-1;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) :is(.gfield_label, .ginput_container) {
    grid-column: 1/-1;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) .gfield_label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) .ginput_container {
    grid-column: 2;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:is(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  select,
  textarea) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) :is(.gfield_label, .ginput_container) {
    grid-row: 1;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) .gfield_label {
    grid-column: 1;
    max-width: -moz-max-content;
    max-width: max-content;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) .ginput_container {
    grid-column: 2;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent:not(.gfield--type-textarea,
  .gfield--type-multiselect,
  .gfield--type-post_title,
  .gfield--type-post_content,
  .gfield--type-post_excerpt) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  select,
  textarea) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent :is(.gfield_label, .ginput_container) {
    grid-column: 1/-1;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .gfield_label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent .ginput_container {
    grid-column: 2;
  }
  .gform_wrapper.gravity-theme .gfield.gfield-custom-box.gfield-custom-box-label-adjacent :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
  select,
  textarea,
  [aria-invalid=true]) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top: 0;
  }
}

/* Hidden Gravity Forms Stuff
--------------------------------------------------------------- */
.gform_hidden,
.validation_message.instruction,
.gform_validation_container,
.gform_validation_errors,
.gform_ajax_spinner,
.gform_required_legend {
  /* must hide elements */
  display: none !important;
}

/* Vendor - Swiper
--------------------------------------------------------------- */
/* Swiper Customizations
Variable docs: https://oxygen4fun.supadezign.com/tips/swiperjs-tips-and-good-practice/#customcss
--------------------------------------------------------------- */
:root {
  --swiper-theme-color: var(--scheme-sb,var(--color-secondary-alt));
  --swiper-navigation-sides-offset: 0rem;
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bottom: 3rem;
  --swiper-pagination-top: auto;
  --swiper-pagination-right: 1rem;
  --swiper-pagination-left: auto;
  --swiper-pagination-bullet-size: .4rem;
  --swiper-pagination-bullet-width: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-horizontal-gap: calc(var(--swiper-pagination-bullet-size) * 2);
  --swiper-pagination-bullet-vertical-gap: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: var(--scheme-fg-bias, var(--color-neutral-dark));
  --swiper-pagination-progressbar-size: var(--swiper-pagination-bullet-size);
  --swiper-pagination-progressbar-bg-color: var(--scheme-fg-bias, var(--color-neutral));
  --swiper-scrollbar-border-radius: calc(var(--swiper-pagination-bullet-size) * .5);
  --swiper-scrollbar-bg-color: var(--swiper-pagination-progressbar-bg-color);
  --swiper-scrollbar-drag-bg-color: var(--scheme-fg-bias, var(--color-neutral));
  --swiper-scrollbar-sides-offset: 1rem;
  --swiper-scrollbar-bottom: 3.5rem;
  --swiper-scrollbar-top: auto;
  --swiper-custom-arrow-offset-x: 64px;
  /* distance of arrows from the slider. set as a padding  */
  /* distance to compensate the arrow distance against the width of the .carousels and the width of the component's container
  Tip: setting equal to --swiper-custom-arrow-offset-x will align the slides to the container. so pretty. */
}
/* Swiper Enhancements
--------------------------------------------------------------- */
.swiper {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
  padding-left: var(--swiper-custom-arrow-offset-x);
  margin-left: calc(var(--swiper-custom-arrow-offset-x-negate, var(--swiper-custom-arrow-offset-x)) * -1);
  padding-right: var(--swiper-custom-arrow-offset-x);
  margin-right: calc(var(--swiper-custom-arrow-offset-x-negate, var(--swiper-custom-arrow-offset-x)) * -1);
}
.swiper.swiper-initialized {
  opacity: 1;
}
:is(:where(.swiper-horizontal) > .swiper-pagination-bullets, .swiper-pagination-bullets:where(.swiper-pagination-horizontal), .swiper-pagination-custom, .swiper-pagination-fraction):not(.swiper-pagination-lock) {
  bottom: var(--swiper-pagination-bottom);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--swiper-pagination-bullet-horizontal-gap);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}
.swiper-button-next, .swiper-button-prev {
  /* customize swiper buttons to utilize theme's styles for the button */
  --button-baseline-offset: .5 !important;
  --swiper-navigation-size: var(--button-height);
  z-index: 1;
  width: auto;
}
.swiper-button-next::before, .swiper-button-next::after, .swiper-button-prev::before, .swiper-button-prev::after {
  content: none;
}
.swiper-scrollbar-drag {
  height: 3px;
  top: -50%;
  bottom: -50%;
  margin-block: auto;
}

/* Swiper Custom Helpers
--------------------------------------------------------------- */
.swiper-custom-scrollbar-static .swiper-scrollbar {
  position: static;
  margin-top: var(--swiper-scrollbar-bottom);
  margin-inline: auto;
}
.swiper-custom-pagination-static .swiper-pagination {
  position: static;
  margin-top: var(--swiper-pagination-bottom);
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-sm .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-bottom);
  }
}
@media only screen and (max-width: 767px) {
  .swiper-custom-pagination-static-xs .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-bottom);
  }
}
.swiper-custom-hide-slides:is(.swiper-initialized, :has(.swiper-initialized)) .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-hide-slides-sm:is(.swiper-initialized, :has(.swiper-initialized)) .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease-in-out;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-custom-hide-slides-xs:is(.swiper-initialized, :has(.swiper-initialized)) .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease-in-out;
  }
}
.swiper-custom-remove-background .swiper-slide {
  mix-blend-mode: multiply;
}
.swiper-custom-equal-heights .swiper-slide {
  height: auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.swiper-custom-equal-heights .swiper-slide > :where(:only-child) {
  flex: 1 1;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-equal-heights-sm .swiper-slide {
    height: auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .swiper-custom-equal-heights-sm .swiper-slide > :where(:only-child) {
    flex: 1 1;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-equal-heights-xs .swiper-slide-slide {
    height: auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .swiper-custom-equal-heights-xs .swiper-slide-slide > :where(:only-child) {
    flex: 1 1;
  }
}
.swiper-custom-buttons-static {
  --swiper-custom-arrow-offset-x: 0rem;
}
.swiper-custom-buttons-static .swiper-wrapper {
  height: auto;
}
.swiper-custom-buttons-static .swiper-button-next, .swiper-custom-buttons-static .swiper-button-prev {
  position: static;
  transform: none;
  margin: 0;
  margin-top: 0.75rem;
}
.swiper-custom-buttons-static .swiper-button-next ~ .swiper-pagination, .swiper-custom-buttons-static .swiper-button-prev ~ .swiper-pagination {
  display: inline-flex;
  width: auto;
}
.swiper-custom-buttons-static .swiper-button-prev {
  margin-right: 0.06125rem;
}
.swiper-custom-buttons-static .swiper-button-next {
  margin-left: 0.06125rem;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-buttons-static-sm {
    --swiper-custom-arrow-offset-x: 0rem;
  }
  .swiper-custom-buttons-static-sm .swiper-wrapper {
    height: auto;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next, .swiper-custom-buttons-static-sm .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
    margin-top: 1.5rem;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next ~ .swiper-pagination, .swiper-custom-buttons-static-sm .swiper-button-prev ~ .swiper-pagination {
    display: inline-flex;
    width: auto;
  }
  .swiper-custom-buttons-static-sm .swiper-button-prev {
    margin-right: 0.06125rem;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next {
    margin-left: 0.06125rem;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-custom-buttons-static-xs {
    --swiper-custom-arrow-offset-x: 0rem;
  }
  .swiper-custom-buttons-static-xs .swiper-wrapper {
    height: auto;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next, .swiper-custom-buttons-static-xs .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
    margin-top: 0.75rem;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next ~ .swiper-pagination, .swiper-custom-buttons-static-xs .swiper-button-prev ~ .swiper-pagination {
    display: inline-flex;
    width: auto;
  }
  .swiper-custom-buttons-static-xs .swiper-button-prev {
    margin-right: 0.06125rem;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next {
    margin-left: 0.06125rem;
  }
}

/* ================================================================================
* Content Styles
================================================================================ */
/* H tag scaffolding
--------------------------------------------------------------- */
:where(.content-palette-dark) :is(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
:is(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) :where(a) {
  font: inherit !important;
}
:is(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) :where(a):not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}

/* H1 - can be reused by section titles, primary-heading etc.
--------------------------------------------------------------- */
:is(:where(*.h1), .content :where(h1)) {
  font-size: 35px;
  line-height: calc(1em + 10px);
  font-family: var(--font-secondary);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
:where(.content-palette-dark) :is(:where(*.h1), .content :where(h1)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-fg, inherit);
}
@media only screen and (min-width: 768px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 45px;
    line-height: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 50px;
    line-height: 60px;
  }
}
/* H2 - can be reused by certain titles
--------------------------------------------------------------- */
:is(:where(*.h2), .content :where(h2)) {
  font-size: 24px;
  line-height: 32px;
  font-family: var(--font-secondary);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 1.625rem;
}
:where(.content-palette-dark) :is(:where(*.h2), .content :where(h2)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
@media only screen and (min-width: 768px) {
  :is(:where(*.h2), .content :where(h2)) {
    font-size: 24px;
    line-height: 34px;
  }
}
/* H3 - can be reused by certain titles
--------------------------------------------------------------- */
:is(:where(*.h3), .content :where(h3)) {
  font-size: 20px;
  line-height: calc(1em + 12px);
  color: var(--scheme-sp);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}
:where(.content-palette-dark) :is(:where(*.h3), .content :where(h3)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
/* H4s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly case result types/titles, blog post meta, etc
--------------------------------------------------------------- */
:is(:where(*.h4), .content :where(h4)) {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1.375rem;
}
:where(.content-palette-dark) :is(:where(*.h4), .content :where(h4)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
/* H5s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly testimonial quote sources, contact info titles, etc
--------------------------------------------------------------- */
:is(:where(*.h5), .content :where(h5)) {
  font-size: 15px;
  line-height: 18px;
  font-family: var(--font-accent);
  color: var(--scheme-fg-contrast);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
:where(.content-palette-dark) :is(:where(*.h5), .content :where(h5)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
:is(:where(*.h5), .content :where(h5)):is(.fancy-border) {
  --fancy-border-margin-y: .5em;
}
/* H6s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly contact info titles, etc
--------------------------------------------------------------- */
:is(:where(*.h6), .content :where(h6)) {
  font-size: 15px;
  line-height: calc(1em + 10px);
  font-family: var(--font-accent);
  color: var(--scheme-sp);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
:where(.content-palette-dark) :is(:where(*.h6), .content :where(h6)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
/* Blockquote -  can be reused in testimonial-highlights, long call to action sections, any general quote, etc.
--------------------------------------------------------------- */
:is(:where(*.blockquote), .content :where(blockquote)) {
  font-size: 24px;
  line-height: 34px;
  font-family: var(--font-primary);
  color: var(--color-primary-alt);
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  margin-block: 35px 40px;
}
:is(:where(*.blockquote), .content :where(blockquote))::before {
  display: block;
  content: "";
  background: var(--color-secondary);
  width: 35px;
  height: 2px;
  margin-bottom: 20px;
}
:where(.content-palette-dark) :is(:where(*.blockquote), .content :where(blockquote)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
:is(:where(*.blockquote), .content :where(blockquote)) > * {
  font: inherit;
  color: inherit;
  margin-block: 0 0.5em;
  padding: 0;
}
:is(:where(*.blockquote), .content :where(blockquote)) > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    display: grid;
    grid-template-columns: 35px auto;
    gap: 25px;
  }
  :is(:where(*.blockquote), .content :where(blockquote))::before {
    margin-block: 13px auto;
  }
  .content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 27px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 26px;
    line-height: 36px;
    width: calc(100% - 40px);
    margin-block: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 28px;
    line-height: 40px;
    width: calc(100% - 60px);
  }
  .content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1900px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    gap: 20px;
    width: calc(100% - 50px);
  }
}
:is(:where(*.blockquote), .content :where(blockquote)):is(.blockquote-style-larger) {
  font-size: 28px;
  line-height: 38px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.blockquote-style-larger) {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.blockquote-style-larger) {
    font-size: 34px;
  }
}
:is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated) {
  position: relative;
  z-index: 0;
  padding-left: 1.5rem;
  font-size: 24px;
  line-height: 35px;
  margin-block: 50px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated) {
    font-size: 26px;
    line-height: 38px;
    padding-left: 60px;
    margin-block: 60px;
    max-width: 36ch;
    margin-inline: 0 auto;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated) {
    font-size: 28px;
    line-height: 40px;
    padding-left: 53px;
    margin-block: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated) {
    padding-left: 65px;
    font-size: 32px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 1900px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated) {
    max-width: 38ch;
  }
}
:is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated)::after {
  display: block;
  content: "";
  position: absolute;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url("/wp-content/themes/1p21-pql36/images/gfx-quotation-mark.svg");
          mask-image: url("/wp-content/themes/1p21-pql36/images/gfx-quotation-mark.svg");
  width: 55px;
  height: 48px;
  background: var(--color-primary);
  opacity: 0.6;
  margin-inline: auto;
  z-index: -1;
  top: -20px;
  left: -10px;
}
@media only screen and (min-width: 768px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated)::after {
    width: 75px;
    height: 65px;
    top: -28px;
    left: 5px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated)::after {
    left: -16px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(:where(*.blockquote), .content :where(blockquote)):is(.content-style-has-decorated-blockquote :is(:where(*.blockquote), .content :where(blockquote)), .blockquote-style-decorated)::after {
    left: 0px;
  }
}

/* Cite /  Blockquote Source - Optional
Note: Some designs may include a blockquote quote source. suprise, there's an html tag for that (:
can be reused in testimonial-source, any general quote source, etc.
--------------------------------------------------------------- */
:is(:where(*.cite), .content :where(cite)) {
  font-size: 17px;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: var(--scheme-sp);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
}
:where(.content-palette-dark) :is(:where(*.cite), .content :where(cite)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: inherit;
}
:is(blockquote, *.blockquote) :is(:where(*.cite), .content :where(cite)) {
  margin-top: 1.25em;
}
/* Lead - Optional
Note: Some designs may include another style for a little bit fancier basic text that may not be tagged as a normal html element like blockquote or h tag
Use this if it helps
--------------------------------------------------------------- */
*.lead {
  font-size: 20px;
  line-height: 30px;
}
:where(.content-palette-dark) *.lead {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-sp, var(--color-accent));
}
@media only screen and (min-width: 768px) {
  *.lead {
    font-size: 21px;
    line-height: 30px;
  }
}
/* Content - Anchor links
--------------------------------------------------------------- */
:is(.content :where(a)) {
  color: var(--scheme-sp, var(--color-primary));
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
:is(.content :where(a)):where(:hover, :focus) {
  text-decoration: none;
}
:where(.content-palette-dark) :is(.content :where(a)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
:where(.content-palette-dark) :is(.content :where(a)):not(:where(:hover, :focus)) {
  color: var(--scheme-sp, var(--color-accent));
}
:where(.content-palette-dark) :is(.content :where(a)):where(:hover, :focus) {
  color: var(--scheme-sp, var(--color-accent-alt));
}

/* The Content - Lists Scaffolding
--------------------------------------------------------------- */
:is(.content :where(ol, ul, dd)) {
  list-style-type: none;
  padding-left: 1.75rem;
}
:is(.content :where(ol, ul, dd)) :where(ol, ul, dd) {
  margin-bottom: 0;
}
:is(.content :where(ol, ul, dd)).list-inline {
  list-style: none;
  padding-left: 0;
}
:is(.content :where(ol, ul, dd)).list-inline li {
  display: inline;
}

/* The Content - List Items
--------------------------------------------------------------- */
:is(.content :where(li, dd, dt)) {
  list-style: inherit;
  position: relative;
  font-weight: 400;
}
:is(.content :where(li, dd, dt)) :where(ul, ol, dd), :is(.content :where(li, dd, dt)):nth-child(n+2) {
  /* space out each item. Note: some designs may or may not have this. comment out if not needed */
  margin-top: 0.5em;
}
:is(.content :where(li, dd, dt)):last-child > *:last-child {
  margin-bottom: 0;
}

/* The Content - List Items Bulleted
--------------------------------------------------------------- */
:is(.content :where(li))::marker, :is(.content :where(li))::before {
  color: var(--color-secondary-alt);
  font-size: 0.75em;
  display: inline-block;
}
:where(.content-palette-dark) :is(.content :where(li))::marker, :where(.content-palette-dark) :is(.content :where(li))::before {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
:is(.content :where(li))::before {
  position: absolute;
  right: 100%;
  margin-right: -0.1em;
  top: 0.25em;
  padding-right: 1em;
}

/* The Content - Unordered List
--------------------------------------------------------------- */
:is(.content :where(ul)) > li::before {
  content: "\25CF\FE0E";
}
/* The Content - Ordered List
--------------------------------------------------------------- */
:is(.content :where(ol)) {
  counter-reset: listItem;
}
:is(.content :where(ol)) > li {
  counter-increment: listItem;
}
:is(.content :where(ol)) > li::before {
  content: counter(listItem) ". ";
}
:is(.content :where(ol)) > li::before, :is(.content :where(ol)) > li::marker {
  font-weight: 700;
  font-size: 18px;
  top: 0;
  padding-right: 0.75em;
}
/* The Content - Tables Skeletons. Do not edit
--------------------------------------------------------------- */
:where(.content table) {
  border-collapse: collapse;
  table-layout: fixed;
  -webkit-hyphens: auto;
          hyphens: auto;
  font: inherit;
  border-color: var(--table-border-color);
  border-width: var(--table-border-width-y) var(--table-border-width-x);
}

:where(.content :where(table, th, td)) {
  border-style: solid;
}

:where(.content :where(tr):first-child > :where(th, td)) {
  border-top-color: var(--table-border-color);
}

:where(.content :where(th, td)) {
  border-width: var(--table-border-width-y) var(--table-border-width-x) 0;
  border-color: var(--table-cell-border-color-y) var(--table-border-color);
  background-color: var(--table-cell-background);
}
:where(.content :where(th, td)):nth-last-child(n+2) {
  border-right-color: var(--table-cell-border-color-x);
}
:where(.content :where(th, td)) > *:last-child {
  margin-bottom: 0;
}

.table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}
.table-wrapper table {
  margin-bottom: 0;
}

/* The Content - Tables Customizations
--------------------------------------------------------------- */
:where(.content table) {
  /* left and right border width */
  --table-border-width-x: 1px;
  /* top and bottom border width */
  --table-border-width-y: 1px;
  /* table container color */
  --table-border-color: var(--scheme-bias-fg,var(--color-neutral));
  /* background color for cells */
  --table-cell-background: var(--scheme-bg,transparent);
  /* border color for left and right */
  --table-cell-border-color-x: var(--scheme-bg-contrast,rgba(127, 127, 127, 0.3));
  /* border color fortop and bottom */
  --table-cell-border-color-y: transparent;
  font-size: 0.9em;
}
:where(.content table) :where(th, td) {
  padding-block: 0.5em;
  padding-inline: 1em;
}
:where(.content table) :where(th) {
  --table-cell-background: var(--table-border-color);
  --table-cell-border-color-y: var(--table-border-color);
  --table-cell-border-color-x: var(--table-border-color);
  font-size: 0.75em;
  font-family: var(--font-primary);
  color: var(--color-dark-alt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: inherit;
}
:where(.content table) :where(tr:nth-child(odd) td) {
  --table-cell-background: var(--scheme-bg-contrast,rgba(127, 127, 127, 0.3));
  --table-cell-border-color-y: var(--scheme-bg,transparent);
  --table-cell-border-color-x: var(--scheme-bg,rgba(127, 127, 127, 0.3));
  color: var(--scheme-fg, inherit);
}
:where(.content table) :where(caption) {
  padding: 0.5em;
}

/* The Content - Other Obscure tags in case it can be utilized for design
--------------------------------------------------------------- */
/* bold, strong */
:where(.content :where(strong, b)) {
  color: var(--scheme-fg-contrast, inherit);
}
:where(.content-palette-dark) :where(.content :where(strong, b)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* italic, em */
:where(.content-palette-dark) :where(.content :where(em, i)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* address */
:where(.content-palette-dark) :where(.content :where(address)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* abbreviations */
:where(.content-palette-dark) :where(.content :where(abbr)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* acronym */
:where(.content-palette-dark) :where(.content :where(acronym)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* big */
:where(.content-palette-dark) :where(.content :where(big)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* code, kbd, pre */
:where(.content-palette-dark) :where(.content :where(code, kbd, pre)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

:where(.content-palette-dark) :where(.content :where(code)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

:where(.content :where(kbd)) {
  padding-inline: 1em;
  border-radius: 0.2em;
  box-shadow: 0 0.2em 0 0 rgba(127, 127, 127, 0.4);
}
:where(.content-palette-dark) :where(.content :where(kbd)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* strike, del */
:where(.content :where(del, s)) {
  text-decoration: line-through;
}
:where(.content-palette-dark) :where(.content :where(del, s)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* ins */
:where(.content-palette-dark) :where(.content :where(ins)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* ins */
:where(.content-palette-dark) :where(.content :where(q)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* small */
:where(.content-palette-dark) :where(.content :where(small)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* sub */
:where(.content-palette-dark) :where(.content :where(sub)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* sup */
:where(.content-palette-dark) :where(.content :where(sup)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* tt */
:where(.content-palette-dark) :where(.content :where(tt)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* var */
:where(.content-palette-dark) :where(.content :where(var)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}

/* The Content - Scaffolding + Margin Top specificities
--------------------------------------------------------------- */
:where(.content) {
  font-size: 18px;
  line-height: 1.67;
  font-family: var(--font-primary);
  color: inherit;
}
:where(.content) :where(:not(:where(*.h1, *.h2, *.h3,
*.h4, *.h5, *.h6,
h1, h2, h3,
h4, h5, h6,
*.blockquote,
blockquote,
hr)) + *):where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6, hr), :where(.content).content-style-apply-h-first-margin > :where(:first-child):where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6, hr) {
  margin-top: 2rem;
}
:where(.content) :where(p,
ul,
ol,
dl,
input:not([type=checkbox]):not([type=radio]):not([type=submit]),
select,
textarea,
form,
pre,
.table-wrapper,
table,
.wistia_responsive_padding) {
  margin-bottom: 1.67em;
}
/* Content Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/global/content.md#content-palette-name
--------------------------------------------------------------- */
/* 
support content styles for dark schemes. 
Note: To aply dark mode styles, use @extends to select optional scheme component.
example of styles:

h2 {
	color: something;

	:is( %extend-scheme-dark ) & {
		color: somethingelse
	}
}

*/
.content-palette-dark {
  /* inherit white color: NOTE: for this to work, best practice is for a) text color to be modified alongside dark background styles of containing section for accessibility/ and or b) Use and enabling _schemes.scss */
  color: var(--scheme-fg, var(--color-light));
}
.content-palette-dark :where(ol, ul, table) {
  color: var(--scheme-fg, inherit);
}
/* Other Content Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/global/content.md#content-style-name
--------------------------------------------------------------- */
/* for content with thicker weight than usual */
.content.content-style-thick {
  font-weight: bolder;
}

/* for content with more specific weights because the design says so */
.content.content-style-thin {
  font-weight: 100;
}

.content.content-style-light {
  font-weight: 300;
}

.content.content-style-medium {
  font-weight: 500;
}

.content.content-style-semibold {
  font-weight: 600;
}

.content.content-style-bold {
  font-weight: 700;
}

.content.content-style-extrabold {
  font-weight: 800;
}

/* for instances of content with less line-height or vertical spacing. Usually lists */
.content.content-style-compact {
  line-height: 25px;
}
.content.content-style-compact li, .content.content-style-compact li :where(ul, ol) {
  margin-top: 8px;
}
@media only screen and (min-width: 768px) {
  .content.content-style-compact li, .content.content-style-compact li :where(ul, ol) {
    margin-top: 12px;
  }
}

/* Remove first child margin. Note: Do not apply first child margin 0 globally as this causes more unintended issues down the line (content import, post launch, etc.) */
.content.content-style-no-first-margin > :where(*:first-child) {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .content.content-style-no-first-margin-xs > :where(*:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .content.content-style-no-first-margin-sm > :where(*:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .content.content-style-no-first-margin-md > :where(*:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1899px) {
  .content.content-style-no-first-margin-lg > :where(*:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1900px) and (max-width: 2879px) {
  .content.content-style-no-first-margin-xl > :where(*:first-child) {
    margin-top: 0;
  }
}

/* Remove last child margin. Note: Do not apply last child margin 0 globally as this causes more unintended issues down the line (content import, post launch, etc.) */
.content.content-style-no-last-margin > :where(*:last-child) {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .content.content-style-no-last-margin-xs > :where(*:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .content.content-style-no-last-margin-sm > :where(*:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .content.content-style-no-last-margin-md > :where(*:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1899px) {
  .content.content-style-no-last-margin-lg > :where(*:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1900px) and (max-width: 2879px) {
  .content.content-style-no-last-margin-xl > :where(*:last-child) {
    margin-bottom: 0;
  }
}

/* Designs with fancy first letters. adjust styles as needed */
.content.content-style-drop-caps > p:first-of-type::first-letter {
  font-size: 2.75rem;
  font-family: var(--font-accent);
  color: var(--color-primary);
  float: left;
  margin: 0 0.1em -0.25em 0;
}
.content.content-style-drop-caps > p:first-of-type + * {
  clear: left;
}
/* ================================================================================
* Supported WP Core Classes/ Styles
================================================================================ */
/* Wordpress Core Classes.
--------------------------------------------------------------- */
/* Align Classes */
*.alignleft,
*.align-left,
*.alignright,
*.align-right,
*.aligncenter,
*.align-center {
  margin-bottom: 0.5em;
  max-width: 100%;
  height: auto;
  width: auto;
}
@media only screen and (max-width: 1199px) {
  *.alignleft,
  *.align-left,
  *.alignright,
  *.align-right,
  *.aligncenter,
  *.align-center {
    display: block;
  }
}

@media only screen and (min-width: 1200px) {
  *.alignleft,
  *.align-left {
    display: inline;
    float: left;
    clear: right;
    margin-right: 0.5em;
    margin-top: 0.5em;
  }
  *.alignright,
  *.align-right {
    display: inline;
    float: right;
    clear: right;
    margin-left: 0.5em;
    margin-top: 0.5em;
  }
  *.aligncenter,
  *.align-center {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* WP Captions */
.wp-caption {
  background: var(--color-light);
  border: 1px solid var(--color-light-alt);
  max-width: 100%;
  padding: 0.5em;
  text-align: center;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 0.75em;
  line-height: 1.25;
  margin: 0;
}

/* Screen reader */
.screen-reader-text:focus, *:focus-within > .screen-reader-text {
  background-color: var(--color-light-alt);
  clip: auto !important;
  clip-path: none;
  color: var(--color-neutral);
  position: fixed;
  display: block;
  font-size: 1em;
  height: auto;
  left: 0.25rem;
  line-height: normal;
  padding-inline: 1.5rem;
  padding-block: 1rem;
  text-decoration: none;
  top: 0.25rem;
  width: auto;
  z-index: 9999999;
}

/* ================================================================================
* Global Helpers CSS - These styles are critical to the build and its template parts. They don't usually need edits and will work as is
================================================================================ */
/* Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/helper.md

Note: Styles already prebuilt in this section must not be omitted
--------------------------------------------------------------- */
/* Clearfix stuff
--------------------------------------------------------------- */
.clearfix::after {
  content: "";
  font-size: 0;
  visibility: hidden;
  height: 0;
  clear: both;
  display: table;
  width: 100%;
  flex: 0 0 auto;
}

/* hide element while being ADA and SEO friendly
--------------------------------------------------------------- */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

/* WEBP Support
--------------------------------------------------------------- */
.no-webp *.instance-webp,
.webp *.instance-not-webp {
  display: none !important;
}

/* emulate background cover on image tags
--------------------------------------------------------------- */
.cover {
  /* containing element */
  position: relative;
  overflow: hidden;
  display: block;
}
.cover.cover-constricted {
  /* constrict element. all children will have to be absolute for this element to maintain its size */
  --cover-aspect-w: 3;
  --cover-aspect-l: 4;
}
.cover.cover-constricted::before {
  content: "";
  display: block;
  padding-bottom: calc(100% * var(--cover-aspect-l) / var(--cover-aspect-w));
}
.cover.cover-constricted > * {
  position: absolute;
}
.cover-child {
  /* element to emulate background-size cover */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* wrap svgs in this helper to control sizing like font glyphs. Sets an svg to align to the bottom left. Set a font size to it to align heights. ie Case Results Icon, Selling Points, Testimonial stars, Social Media, iLawyer Logo, etc.
--------------------------------------------------------------- */
.content-icon {
  height: 1em;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-overflow: ellipsis;
}
.content-icon :where(img,
picture,
svg,
object) {
  max-height: 100%;
  width: auto;
  height: 100%;
  flex: 1 1;
  -o-object-fit: contain;
     object-fit: contain;
}

/* clamp blocks of texts to up to a certain height only. NOTE: for this to work there should be no custom line height on the text or any of its bllock children. if any, they should be passed to --line-height
--------------------------------------------------------------- */
.clamp-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: calc(var(--line-height) * var(--line-clamp));
  -webkit-line-clamp: var(--line-clamp);
  line-height: var(--line-height);
}

/* like content-icon except friendlier styles for logos to support styleable svg logos while allowing for an img tag for SEO to exist in the same block
--------------------------------------------------------------- */
.logo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
}
.logo-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: auto;
}
.logo-wrapper :where(img,
picture,
svg,
object) {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
}
.logo-wrapper :where(svg,
object):not(:only-child) {
  pointer-events: none;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
.logo-wrapper :is(svg, object) ~ :where(img,
picture:not(.inline-svg)) {
  opacity: 0;
}

/* Responsive Global Helpers. Integrated to PHP template parts. Proceed with caution when modifying.
* Note: if the element relies on being set as another display type that's not block (flex, inline-block, inline-flex, etc. ) on  breakpoint/s it is suppose to show, using the *-hide helpers is recommended (eg: instead of xs-only, use sm-hide md-hide lg-hide xl-hide)

* Info to what everything means:
-----------------------------------------------
Tag 	Device		min				max	  
-----------------------------------------------
xs: 	mobile		0				767px
sm: 	tablet		768px	1199px
md: 	laptop		1200px	1399px
lg: 	desktop		1400px	1899px
xl: 	hd			1900px	999999999999+
--------------------------------------------------------------- */
.xl-only,
.lg-only,
.md-only,
.sm-only,
.xs-only,
.home-only,
.internal-only,
.print-only {
  display: none !important;
}

.onep21-template-home .home-only {
  display: block !important;
}
.onep21-template-home .home-hide {
  display: none !important;
}

body:not(.onep21-template-home) .internal-only {
  display: block !important;
}
body:not(.onep21-template-home) .internal-hide {
  display: none !important;
}

@media only print {
  .print-only {
    display: block !important;
  }
  .print-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1900px) {
  .xl-only {
    display: block !important;
  }
  .xl-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1899px) {
  .lg-only {
    display: block !important;
  }
  .lg-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .md-only {
    display: block !important;
  }
  .md-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .sm-only {
    display: block !important;
  }
  .sm-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .xs-only {
    display: block !important;
  }
  .xs-hide {
    display: none !important;
  }
}
/* Add more helpers as needed */
/* ================================================================================
* Global Critical Components - UI/ Build Elements These need edits based on the design
================================================================================ */
/* Buttons: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md
--------------------------------------------------------------- */
/* Button Skeletons. do not edit 
--------------------------------------------------------------- */
.button {
  border: var(--button-border-width) solid;
  padding-inline: calc(var(--button-padding-x) - var(--button-border-width));
  padding-block: calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * var(--button-baseline-offset)) calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * (1 - var(--button-baseline-offset)));
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100%;
  background: none;
  text-align: center;
  transition: all 0.125s ease-in-out;
  min-height: var(--button-height);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  background-size: calc(100% + var(--button-border-width) * 2) calc(100% + var(--button-border-width) * 2);
  background-position: calc(var(--button-border-width) * -1) calc(var(--button-border-width) * -1);
  background-clip: border-box;
  background-origin: border-box;
  line-height: var(--button-line-height);
}
.button, .button:is(:hover, :focus) {
  text-decoration: none;
}

/* Button Customizations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md#css-vars 
--------------------------------------------------------------- */
.button {
  --button-height: 3.5rem;
  /* ideal height of the button including the `var(--button-border-width)` on both top and bottom, vertical padding and the line height times the set `var(--button-lines)`. Designs will have buttons setup by a height. This makes it easier on our end to support. */
  --button-border-width: 2px;
  /* border width. This will be accounted for in calculating the button height as well */
  --button-border-radius: 4px;
  /* button radius */
  --button-padding-x: 1.25em;
  /* horizontal padding */
  --button-lines: 1;
  /* Number of lines to compensate for the button height.
  * NOTE: this value has to be unitless for calc values to work. */
  --button-baseline-offset: 0.5;
  /* Let's say the font on your build has its baseline a little too low or high so inside a button, it doesn't seem vertically centered and makes our designer pals sad. Modify this value to shift that alignment and make the button as pretty as it can be again.
  * 1 moves the text to the very bottom.
  * 0 moves the text to the very top.
  * 0.5 will center it based on the fonts' baseline alignment
  * NOTE: this value has to be unitless for calc values to work. */
  --button-line-height: 1.125;
  /* line height
  * Usually there's no need to modify this unless a multiline button is present in the design and has a line height drastically different to what is set (currently 1.125).
  * NOTE: this value has to be unitless for calc values to work.
  * Formula is line-height-px / font-size-px 
  * font-size 16px and line-height at 20px
  * 20/16 = 1.25 (Note: Unitless value) */
  font-size: 14px;
  font-family: var(--font-accent);
  color: var(--color-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--button-border-radius);
}
@media only screen and (min-width: 768px) {
  .button {
    --button-padding-x: 40px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .button {
    --button-height: 3.875rem;
    --button-padding-x: 30px;
    font-size: 16px;
  }
}
/* Buttons Sizing Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-size-name
--------------------------------------------------------------- */
/* button w/ a height even more smaller than the default height */
.button.button-size-micro {
  font-size: 0.75rem;
  --button-height: 2em;
}
/* button w/ a height smaller than the default height */
.button.button-size-small {
  font-size: 13px;
  --button-height: 3em;
}
@media only screen and (min-width: 768px) {
  .button.button-size-small {
    font-size: 15px;
  }
}
/* button w/ a height slightly larger than the default height but it's not that big */
.button.button-size-medium {
  --button-height: 4.5em;
}
/* button w/ a height larger than the default height */
.button.button-size-large {
  --button-height: 56px;
}
@media only screen and (min-width: 1200px) {
  .button.button-size-large {
    --button-height: 60px;
    --button-padding-x: 35px;
  }
}
/* button w/ a height that's even larger for no reason than the larger height */
.button.button-size-larger {
  font-size: 16px;
  --button-height: 64px;
}
/* surprise, another size but only for mobile i think we'll see */
@media only screen and (max-width: 1199px) {
  .button.button-size-shrinks {
    --button-height: 60px;
    font-size: 15px;
    --button-padding-x: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .button.button-size-shrinks {
    font-size: 14px;
    --button-padding-x: 18px;
  }
}

/* constricts the width equal to whatever size height is set*/
.button.button-size-equal {
  --button-padding-x: 0;
  width: var(--button-height);
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Buttons Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-palette-name
--------------------------------------------------------------- */
/* 
* Default - most frequent button palette in the comps
* Invert - reuses default's colors but palettes for hover vs not hover are reversed
* Outline - text w/ border influencing text color
* Minimal - no colors except for the text
Adjust as needed.
*/
.button.button-palette-default, .button.button-palette-reverse:is(:hover, :focus) {
  background-image: linear-gradient(180deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-default:is(:hover, :focus), .button.button-palette-outline:is(:hover, :focus), .button.button-palette-reverse {
  background-image: none;
  background-color: var(--color-neutral-light);
  color: var(--color-dark);
  border-color: transparent;
}
.button.button-palette-minimal, .button.button-palette-minimal-reverse:is(:hover, :focus) {
  background-color: transparent;
  background-image: none;
  color: var(--color-secondary);
  border-color: transparent;
}
.button.button-palette-minimal-reverse, .button.button-palette-minimal:is(:hover, :focus) {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: transparent;
}
.button.button-palette-outline {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: currentColor;
}
/*
primary palette. adjust or omit as needed
* Tip: if both a flat and gradient version of the palette exists in the design, adding the class .button-style-flat to this .button-palette-* class will disable the gradient
*/
/*
secondary palette. adjust or omit as needed
* Tip: if both a flat and gradient version of the palette exists in the design, adding the class .button-style-flat to this .button-palette-* class will disable the gradient
*/
.button.button-palette-secondary {
  background-image: var(--color-secondary);
  background-color: var(--color-secondary);
  border-color: transparent;
}
.button.button-palette-secondary:is(:hover, :focus) {
  background-image: var(--color-primary-alt);
  background-color: var(--color-primary-alt);
  color: var(--color-light);
  border-color: transparent;
}

/*
accent palette. adjust or omit as needed
* Tip: if both a flat and gradient version of the palette exists in the design, adding the class .button-style-flat to this .button-palette-* class will disable the gradient
*/
/* Other Buttons Variations Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-style-name
--------------------------------------------------------------- */
/* buttons with extra decorations or whichever is the most specially styled. overhaul or add more button styles as needed */
.button.button-style-special {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  --button-border-offset: .5em;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 var(--button-border-width) var(--color-accent);
  border-width: var(--button-border-offset);
  background-clip: padding-box;
}
.button.button-style-special::before {
  content: "";
  transition: box-shadow 0.125s ease-in-out;
  display: inline-block;
  align-self: center;
  margin-right: 1.5em;
  margin-left: 0.375em;
  margin-bottom: 0.375em;
  width: 1.5rem;
  height: var(--button-border-width);
  background: currentColor;
  box-shadow: 0em -0.375em 0 0, -0.375em 0 0 0, 0.375em 0 0 0, 0em 0.375em 0 0;
}
.button.button-style-special:is(:hover, :focus) {
  box-shadow: 0 0 0 var(--button-border-width) var(--color-primary);
  border-color: rgba(255, 255, 255, 0.5);
}
.button.button-style-special:is(:hover, :focus)::before {
  box-shadow: 0.375em -0.375em 0 0, -0.75em 0 0 0, -0.75em 0 0 0, 0.375em 0.375em 0 0;
}

/* link style button. Usually the maps link or read more text for blog posts */
.button.button-style-link {
  --button-border-width: 2px;
  border-radius: 0;
  padding: 0 0 0.5em;
  border-width: 0 0 var(--button-border-width);
  min-height: 0;
  background: none;
  border-color: var(--color-secondary);
  color: inherit;
  text-transform: uppercase;
  font-weight: 700;
}
.button.button-style-link:is(:hover, :focus) {
  background: none;
  color: inherit;
  border-color: var(--color-primary-alt);
}

/* undo background gradients in favor for the flat background color for button-palette. will only work if backgrounds are setup with proper fallbacks (background-gradient with a background-color fallback) */
.button.button-style-flat, .button.button-style-flat:is(:hover, :focus) {
  background-image: none;
}

/* remove radius */
.button.button-style-no-radius {
  --button-border-radius: 0;
}

/* no corners for the button. only soft bbies */
.button.button-style-round {
  --button-border-radius: 999em;
}

/* button styles that have thicker borders than usual */
.button.button-style-thick-border {
  --button-border-width: 4px;
}

/* button styles that have thicker borders than usual */
.button.button-style-thin-border {
  --button-border-width: 1px;
}

/* button styles that have thicker borders than usual */
.button.button-style-no-border {
  --button-border-width: 0px;
}

/* diamond buttons. best if paired with .button-size-equal */
@supports (clip-path: polygon(0 0, 0 0, 0 0, 0 0)) {
  .button.button-style-diamond {
    overflow: hidden;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }
}

/* if the slider buttons have unique overrides */
.button.button-style-slider:is(.button-palette-minimal, .button-palette-minimal-reverse) {
  --button-height: 2.5em;
  --button-padding-x: .4em;
}
.button.button-style-slider:is(.button-size-large) {
  font-size: 24px;
}
@media only screen and (min-width: 1200px) {
  .button.button-style-slider {
    font-size: 18px;
  }
  .button.button-style-slider:is(.button-size-large) {
    font-size: 30px;
  }
}
/* Misc Button stuff. Add as needed
--------------------------------------------------------------- */
/* little arrow indicator for slider arrows: .button.button-size-equal.button-palette-default > i.button-slider-glyph */
.button-slider-glyph:empty::after {
  display: inline-block;
  order: 9;
  align-self: center;
  transform-origin: center center;
  /* slider glyph border arrow styles */
  content: "";
  width: 1.125em;
  height: 1.125em;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  flex: 0 0 auto;
  margin-left: -0.375em;
}
:is(.prev,
.slick-prev,
.swpier-button-prev) .button-slider-glyph {
  transform: scaleX(-1);
}

/* Container: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md
--------------------------------------------------------------- */
/* Container Skeletons. do not edit 
--------------------------------------------------------------- */
.container {
  /* do not attempt to override or your container may misalign. containers are meant to always be centered after all */
  /* Tip: if something in the design is off center, consult with designer or use additional padding or margin as needed for the contents instead */
  padding-inline: min(var(--container-fallback), var(--container-gutter)) !important;
  margin-inline: auto !important;
  /* widths*/
  max-width: 100%;
  width: calc(100% - max(var(--container-gutter) - min(var(--container-fallback), var(--container-gutter)), 0rem) * 2);
  min-width: 0;
  /* flex stuff */
  flex: 0 0 auto;
  /* container query support */
  container: container/inline-size;
}

/* Fallback Scaffolding. Usually no need to edit: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#css-vars 
--------------------------------------------------------------- */
.container {
  --container-fallback: 20px;
  /* NOTE: If you want to set the horizontal "padding" of a certain section, Customize `--container-gutter` instead. There is almost no need to customize this value unless for scaffolding purposes
  this is meant to be a back up spacing in case narrow comp and and gutter occurs for lower range of media queries. */
  --container-size-reference: var(--comp);
  /* window width or section width. you wont usually need to manipulate this value  unless complex split layout designs */
  --container-gutter: var(--container-fallback);
  /* customizeable distance. Set as the `--container-fallback` by default. Can be customized depending on the design of a given section though 20px - 30px should be enough */
}
@media only screen and (min-width: 768px) {
  .container {
    --container-fallback: 28px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    --container-fallback: 40px;
  }
}
@media only screen and (min-width: 1900px) {
  .container {
    --container-fallback: 96px;
  }
}

/* Custom Container Size Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-size-name
--------------------------------------------------------------- */
/* repeating/ internal page container sizing. sometimes designers will use the same gutter width for internals and or gridded template. this can be used so you dont have to copy paste identical styles to different selectos like 10 times */
@media only screen and (min-width: 768px) {
  .container.container-size-default {
    --container-gutter: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-default {
    --container-gutter: 72px;
  }
}
@media only screen and (min-width: 1900px) {
  .container.container-size-default {
    --container-gutter: 264px;
  }
}

/* Reduces horizontal padding */
@media only screen and (min-width: 768px) {
  .container.container-size-wide {
    --container-gutter: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-wide {
    --container-gutter: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-grid {
    --container-gutter: 70px;
  }
}
@media only screen and (min-width: 1900px) {
  .container.container-size-grid {
    --container-gutter: 120px;
  }
}

/* Reduces horizontal padding for xs only */
@media only screen and (max-width: 767px) {
  .container.container-size-wide-xs {
    --container-fallback: 15px;
    --container-gutter: var(--container-fallback);
  }
}

/* Reduces horizontal padding for sm only */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .container.container-size-wide-sm {
    --container-fallback: 30px;
    --container-gutter: var(--container-fallback);
  }
}

/* Other Container Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-style-name
--------------------------------------------------------------- */
/* sometimes when you dont need the fallback gutter for the container but also need to constrict the layout, here's ya boi. Note: Make sure you add appropriate padding for the innards of this container */
.container.container-style-no-padding {
  --container-fallback: 0px;
}

/* constrict container to how wide it is in the deisgn comps. makes sure it never goes beyond the comp or set gutter or fallback global padding + adding important disables third party scripts from overriding our styles */
@media only screen and (min-width: 768px) {
  .container.container-style-maxed {
    max-width: calc(var(--container-size-reference) - max(var(--container-gutter) - min(var(--container-fallback), var(--container-gutter)), 0rem) * 2) !important;
  }
}

/* constrict container to how wide it is in the deisgn comps for mobile/xs and smaller only */
@media only screen and (max-width: 767px) {
  .container.container-style-maxed-xs {
    max-width: calc(var(--container-size-reference) - max(var(--container-gutter) - min(var(--container-fallback), var(--container-gutter)), 0rem) * 2) !important;
  }
}

/* constrict container to how wide it is in the deisgn comps for hd/xl and beyond only */
@media only screen and (min-width: 1900px) {
  .container.container-style-maxed-xl {
    max-width: calc(var(--container-size-reference) - max(var(--container-gutter) - min(var(--container-fallback), var(--container-gutter)), 0rem) * 2) !important;
  }
}

/* constrict container to how wide it is in the deisgn comps for touch devices/xs to sm-max only */
@media only screen and (max-width: 1199px) {
  .container.container-style-maxed-touch {
    max-width: calc(var(--container-size-reference) - max(var(--container-gutter) - min(var(--container-fallback), var(--container-gutter)), 0rem) * 2) !important;
  }
}

/* constrict container to how wide it is in the deisgn comps for touch devices/xs to sm-max only */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .container.container-style-maxed-nontouch {
    max-width: calc(var(--container-size-reference) - max(var(--container-gutter) - min(var(--container-fallback), var(--container-gutter)), 0rem) * 2) !important;
  }
}

/* Columns: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/columns.md
--------------------------------------------------------------- */
/* Column Skeletons. do not edit 
Vars: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/columns.md#css-vars
--------------------------------------------------------------- */
.columns {
  --columns-gap-x: 0px;
  /* Number of columns desired for the layout */
  --columns-gap-y: 0rem;
  /* distance between columns horizontally */
  --columns-number: 1;
  /* distance between columns vertically */
  width: 100%;
}
.columns, .columns > * {
  min-width: 0;
  max-width: 100%;
}
.columns.columns-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: var(--columns-gap-y);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
}
.columns.columns-flex > * {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100% / var(--columns-number) - var(--columns-gap-x) * (var(--columns-number) - 1) / var(--columns-number));
}
.columns.columns-grid {
  display: grid;
  row-gap: var(--columns-gap-y);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
  grid-template-columns: repeat(var(--columns-number), calc(100% / var(--columns-number) - var(--columns-gap-x) * (var(--columns-number) - 1) / var(--columns-number)));
}
.columns.columns-grid > :where(*) {
  width: 100%;
}
.columns.columns-masonry {
  -moz-column-count: var(--columns-number);
       column-count: var(--columns-number);
  -webkit-column-count: var(--columns-number);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
  -webkit-column-gap: var(--columns-gap-x);
}
.columns.columns-masonry > * {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.columns.columns-masonry > *:nth-child(n+2) {
  margin-top: var(--columns-gap-y);
}

/*
https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/popup.md
--------------------------------------------------------------- */
.doc-popup-active {
  overflow-y: hidden;
}

.popup-content {
  display: none !important;
}

.popup {
  display: none;
  overflow-y: scroll;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  min-width: 320px;
  background: none !important;
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.popup.active {
  display: block;
}
.popup-overlay {
  background: var(--color-dark);
  opacity: 0.8;
  min-height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.popup-body {
  overflow-y: scroll;
  height: 100%;
  padding-block: 11vw;
  scrollbar-width: none;
}
.popup-body::-webkit-scrollbar {
  display: none;
}
.popup-frame {
  background: var(--color-light);
  position: relative;
  padding-block: 4.875rem;
  padding-inline: 2rem;
}
.popup-close-button {
  position: absolute;
  top: 0;
  right: 1em;
  margin-top: 1em;
  background: none;
  border: 0;
  font-size: 2.5rem;
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  padding: 0;
  overflow: hidden;
  text-indent: -9999em;
  color: var(--color-primary);
}
.popup-close-button::before, .popup-close-button::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
}
.popup-close-button::before {
  transform: rotate(45deg);
}
.popup-close-button::after {
  transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
  .popup-frame {
    padding-inline: 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .popup-container {
    --container-gutter: 200px;
  }
  .popup-frame {
    padding-inline: 6rem;
  }
}
@media only screen and (min-width: 1900px) {
  .popup-container {
    --container-gutter: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .popup-wrapper {
    padding-block: 4rem 2rem;
    padding-inline: 2rem;
  }
  .popup-close-button {
    font-size: 2rem;
    margin-top: 1.25rem;
    right: 1.25rem;
  }
}

/* Widgets https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md
--------------------------------------------------------------- */
/* Widgets Skeleton. Do not Edit 
--------------------------------------------------------------- */
.widget {
  padding-block: var(--widget-padding-top) var(--widget-padding-bottom);
  padding-inline: var(--widget-padding-x);
  position: relative;
  max-width: none;
  width: auto;
}
.widget,
.widget > :where(ul, .widget-content, .menu, div):not(.content),
.widget > :where(ul, .widget-content, .menu, div):not(.content) li {
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
}
.widget > :where(ul, .widget-content, .menu, div) {
  padding-block: var(--widget-content-padding-top) var(--widget-content-padding-bottom);
  margin-block: var(--widget-content-margin-top) var(--widget-content-margin-bottom);
}
.widget > :where(ul, .widget-content, .menu, div):last-child, .widget > :where(ul, .widget-content, .menu, div):not(.content) > li, .widget > :where(ul, .widget-content, .menu, div):not(.content) :where(ul, .sub-menu) {
  margin-inline: calc(var(--widget-padding-x) * -1);
  max-width: none;
}
:is(.widget_title, .widget-title, .widgettitle) {
  padding-inline: var(--widget-title-padding-x);
  margin-block: 0;
}

.widget > :where(ul, .widget-content, .menu, div):not(.content) li > a {
  padding-inline: var(--widget-item-padding-x);
}
.widget > :where(ul, .widget-content, .menu, div).content {
  padding-inline: calc(var(--widget-padding-x) + var(--widget-item-padding-x));
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) ul li {
  padding-left: calc(var(--widget-padding-x) + var(--widget-dropdown-offset));
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) ul li > a {
  padding-left: calc(var(--widget-dropdown-item-offset) + var(--widget-item-padding-x));
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li {
  list-style: none;
  clear: both;
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li a {
  padding-block: calc((var(--widget-item-height) - var(--widget-item-border-width) - 1em * var(--widget-item-lines) * var(--widget-item-line-height)) * var(--widget-item-baseline-offset)) calc((var(--widget-item-height) - var(--widget-item-border-width) - 1em * var(--widget-item-lines) * var(--widget-item-line-height)) * (1 - var(--widget-item-baseline-offset)));
  color: inherit;
  text-decoration: none;
  display: flex;
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li ul {
  border-block: var(--widget-item-border-width) solid transparent;
  padding-block: var(--widget-dropdown-padding-top) var(--widget-dropdown-padding-bottom);
  margin-block: var(--widget-dropdown-margin-top) var(--widget-dropdown-margin-bottom);
  flex: 0 0 auto;
  min-width: calc(100% + var(--widget-padding-x) * 2);
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li:last-child > ul {
  border-bottom: 0;
  margin-bottom: calc(var(--widget-dropdown-padding-bottom) * -1);
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) > li:last-child > ul {
  /* fix top level item dropdown bottom gaps */
  margin-bottom: calc((var(--widget-padding-bottom) + var(--widget-content-padding-bottom)) * -1);
}
.widget:not(.widget-style-no-toggle):not(.open) > :is(.widget_title, .widget-title, .widgettitle) + *:where(ul, .widget-content, .menu, div),
.widget:not(.widget-style-no-toggle) li:not(.open) > ul:not(:only-child) {
  /* close it all, javascript will take care of opening what needs to be opened */
  display: none;
}
:is(.widget_title, .widget-title, .widgettitle) + *:not(:where(ul, .widget-content, .menu, div)) {
  margin-top: var(--widget-content-margin-top);
}

.widget :where(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), select, textarea, table) {
  width: 100%;
}

/* Widget Customizations https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md#css-vars
--------------------------------------------------------------- */
.widget {
  --widget-padding-x: 30px;
  /* Horizontal padding between the widgets' edges and its contents
  NOTE: the .widget, title, li, and ul/content block use this variable to adjust paddings and negative margins to align to value
  NOTE: li is being padded with --widget-padding-x to align the padding perfectly with the title, li, and uls/content block */
  --widget-padding-top: 40px;
  /* Yes */
  --widget-padding-bottom: var(--widget-padding-top);
  /* Yes */
  --widget-dropdown-padding-top: 1rem;
  /* Yes  */
  --widget-dropdown-padding-bottom: var(--widget-dropdown-padding-top);
  /* Yes
  * will also be used to calculate negative margins for dropdowns within the last child for consistent spacing  */
  --widget-dropdown-margin-top: 0.5rem;
  /* dropdown margin top. used to distance from previous sibling link */
  --widget-dropdown-margin-bottom: var(--widget-dropdown-margin-top);
  /* dropdown margin bottom. used to distance from parent li's next sibling */
  --widget-item-height: 3.125rem;
  /* ideal height of widget list item. designers will prefer to design widget list items based on their height. this is to better support the wonders they create while being able to use padding to support multi-line/ edge case widget list items */
  --widget-item-border-width: 1px;
  /* border width. This will be accounted for in calculating the widget list item height as well */
  --widget-item-lines: 1;
  /* Note: this value has to be unitless for calc values to work. 
  Number of lines to compensate for the widget list item height */
  --widget-item-padding-x: 0px;
  /* Padding to distance between only the anchor tags' and parent widget li item.
  Not affected by `--widget-padding-x` */
  --widget-dropdown-offset: 0em;
  /* indent padding for dropdown. designers will prefer this if contrasting dropdown background is not set */
  /* Set to 0rem if not needed */
  --widget-dropdown-item-offset: 0em;
  /* indent padding for dropdown items. designers will prefer this if contrasting dropdown background is not set */
  /* Set to 0rem if not needed */
  --widget-title-padding-x: var(--widget-item-padding-x);
  /* Note: this value has to be unitless for calc values to work.
  * modify this value if the font seems a little too high or low in vertical alignment. 1 moves the text to the very top. 0 moves the text to the very bottom. 0.5 will center it based on the fonts' basline alignment */
  --widget-content-margin-top: 1.25rem;
  /* margin distance between the widget title and the widget contents */
  --widget-content-margin-bottom: 0rem;
  /* margin distance between the widget title and the widget contents */
  --widget-content-padding-top: 0rem;
  /* margin distance between the widget title and the widget contents
  Note: if the widget accordion is closed, this hides along with the contents, meaning it wont affect the `--widget-padding-bottom` */
  --widget-content-padding-bottom: var(--widget-content-padding-top);
  /* margin distance between the widget title and the widget contents
  Tip: setting to `calc(var(--widget-padding-bottom) * -1)` can compensate the `--widget-padding-bottom` without affecting it when the widget is collapsed
  Note: if the widget accordion is closed, this hides along with the contents, meaning it wont affect the `--widget-padding-bottom` */
  --widget-item-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work.
  modify this value if the font seems a little too high or low in vertical alignment.
  * 1 moves the text to the very top.
  * 0 moves the text to the very bottom.
  * 0.5 will center it based on the fonts' basline alignment
  */
  --widget-item-line-height: 1.25;
  /* Note: this value has to be unitless for calc values to work. Usually there's no need to modify this unless a multiline widget list item is present in the design.
  * Formula is line-height-px / font-size-px */
  font-size: 20px;
  line-height: var(--widget-item-line-height);
  color: var(--scheme-fg, var(--color-dark));
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  background-color: var(--scheme-bg, var(--color-light));
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.widget:where(:nth-last-child(n+2)) {
  margin-bottom: calc(var(--fancy-box-pseudo-offset-y, 0px) + var(--default-gap-y, 60px));
}
.widget > :where(ul, .widget-content):not(.content) li:is(.open, :hover, :focus-within) > a {
  color: var(--scheme-sp, var(--color-primary));
  font-weight: 600;
}
.widget > :where(ul, .widget-content):not(.content) li ul {
  background-color: var(--color-light);
  text-align: left;
}
.widget > :where(ul, .widget-content):not(.content) li.open {
  border-bottom: 0;
}
.widget > :where(ul, .widget-content):not(.content) li.open > a {
  border-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .widget {
    --widget-padding-x: 40px;
  }
}
@media only screen and (min-width: 1900px) {
  .widget {
    --widget-padding-x: 50px;
  }
}
/* Widget Title
--------------------------------------------------------------- */
:is(.widget_title, .widget-title, .widgettitle) {
  font-size: 30px;
  line-height: 40px;
  flex-wrap: wrap;
}
:is(.widget_title, .widget-title, .widgettitle).fancy-border {
  --fancy-border-width: 100%;
  --fancy-border-margin-l: 0;
}
:is(.widget_title, .widget-title, .widgettitle).fancy-border-before:before, :is(.widget_title, .widget-title, .widgettitle).fancy-border-after:after {
  grid-column: 1/-1;
}
.widget:not(.widget-style-no-toggle):not(.open) > :is(.widget_title, .widget-title, .widgettitle) {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.widget:not(.widget-style-no-toggle):not(.open) > :is(.widget_title, .widget-title, .widgettitle).fancy-border {
  --fancy-border-margin-y: 0rem;
  --fancy-border-height: 0rem;
}
@media only screen and (min-width: 1200px) {
  :is(.widget_title, .widget-title, .widgettitle) {
    font-size: 35px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.widget_title, .widget-title, .widgettitle) {
    font-size: 35px;
    line-height: 45px;
  }
}
/* Widget Toggle
--------------------------------------------------------------- */
.widget-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  cursor: pointer;
}
.widget-toggle > * {
  min-width: 0;
}
.widget-toggle:not(:is(.widget_title, .widget-title, .widgettitle))::before {
  display: inline-block;
  order: 9;
  align-self: center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.5rem;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 1.5px solid var(--color-secondary);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.open > .widget-toggle::before {
  transform: rotate(-135deg);
}
/* Widget Customization by type. Unless an extra extra custom site, there should be rarely a need to apply overrides at this point
--------------------------------------------------------------- */
/* Graphic/ design related styles or decoration styles here. Essentially, the fancy stuff enhances the gucciness of the site
--------------------------------------------------------------- */
/* Fancy Borders + HR: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-border-css-vars
--------------------------------------------------------------- */
:where(hr),
.fancy-border {
  clear: both;
  outline: none;
  border: none;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.fancy-border {
  --fancy-border-margin-y: 1.5rem;
  --fancy-border-background: currentColor;
}
:where(hr), .fancy-border.fancy-border-before::before, .fancy-border.fancy-border-after::after {
  height: var(--fancy-border-height, 2px);
  background: var(--fancy-border-background, var(--color-neutral));
  width: var(--fancy-border-width, 100%);
  margin-left: var(--fancy-border-margin-l, auto);
  margin-right: var(--fancy-border-margin-r, auto);
  max-width: 100%;
  grid-column: 1/-1;
  flex: 0 0 auto;
}

.fancy-border.fancy-border-before:not(hr)::before, .fancy-border.fancy-border-after:not(hr)::after {
  content: "";
}

:where(hr),
.fancy-border-after::after,
.fancy-border-before::before {
  display: block;
  transition: all 0.375s ease-in-out;
}

.fancy-border.fancy-border-after::after {
  order: 99;
}
.fancy-border.fancy-border-before::before {
  order: -99;
}
hr.fancy-border-after, .fancy-border.fancy-border-after::after {
  margin-top: var(--fancy-border-margin-y, 1.875rem);
}

hr.fancy-border-before, .fancy-border.fancy-border-before::before {
  margin-bottom: var(--fancy-border-margin-y, 1.875rem);
}

.fancy-border-palette-primary {
  --fancy-border-background: var(--color-primary) linear-gradient(90deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
}
.fancy-border-palette-secondary {
  --fancy-border-background: var(--color-secondary) linear-gradient(90deg, var(--color-secondary-gradient-start) 0%, var(--color-secondary-gradient-end) 100%);
}
.fancy-border-palette-accent {
  --fancy-border-background: var(--color-accent) linear-gradient(90deg, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-end) 100%);
}
.fancy-border-palette-dark-alt {
  --fancy-border-background: var(--color-dark-alt) linear-gradient(90deg, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-end) 100%);
}
.fancy-border-palette-primary-alt {
  --fancy-border-background: var(--color-primary-alt) linear-gradient(90deg, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
}
.fancy-border-palette-secondary-alt {
  --fancy-border-background: var(--color-secondary-alt) linear-gradient(90deg, var(--color-secondary-gradient-start) 0%, var(--color-secondary-gradient-end) 100%);
}
.fancy-border-palette-accent-alt {
  --fancy-border-background: var(--color-accent-alt) linear-gradient(90deg, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-end) 100%);
}
.fancy-border-palette-neutral {
  --fancy-border-background: var(--color-neutral);
}
.fancy-border-palette-sp {
  --fancy-border-background: var(--scheme-sp);
}
.fancy-border-palette-sp-contrast {
  --fancy-border-background: var(--scheme-sp-contrast);
}
.fancy-border-palette-sb {
  --fancy-border-background: var(--color-primary);
}
.fancy-border-palette-sb-contrast {
  --fancy-border-background: var(--scheme-sb-contrast);
}
.fancy-border-palette-fg {
  --fancy-border-background: var(--scheme-fg);
}
.fancy-border-palette-fg-contrast {
  --fancy-border-background: var(--scheme-fg-contrast);
}
.fancy-border-palette-fg-bias {
  --fancy-border-background: var(--scheme-fg-bias);
}
.fancy-border-palette-bg {
  --fancy-border-background: var(--scheme-bg);
}
.fancy-border-palette-bg-contrast {
  --fancy-border-background: var(--scheme-bg-contrast);
}
.fancy-border-palette-bg-bias {
  --fancy-border-background: var(--scheme-bg-bias);
}
.fancy-border-style-round {
  border-radius: 999em;
}
.fancy-border-style-thin {
  --fancy-border-height: 1px;
}
hr.fancy-border-style-flat, .fancy-border-style-flat.fancy-border-before::before, .fancy-border-style-flat.fancy-border-after::after {
  background-image: none !important;
}

.fancy-border-style-inline {
  --fancy-border-margin-l: .5em;
  display: flex;
  flex-wrap: nowrap;
  row-gap: var(--fancy-border-margin-y);
  -moz-column-gap: var(--fancy-border-margin-l);
       column-gap: var(--fancy-border-margin-l);
}
.fancy-border-style-inline:before, .fancy-border-style-inline:after {
  flex: 1 1;
  margin-block: 0 !important;
  align-self: center;
}
.fancy-border-style-masked {
  --fancy-border-gap: .375rem;
  --fancy-border-width: 2rem;
  --fancy-border-height: 2px;
}
.fancy-border-style-masked:is(hr), .fancy-border-style-masked.fancy-border-before:not(hr)::before, .fancy-border-style-masked.fancy-border-after:not(hr)::after {
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(var(--fancy-border-height, 3px) var(--fancy-border-height, 3px) at calc(var(--fancy-border-height, 3px) * 0.5) 50%, black 40%, transparent 50%), radial-gradient(var(--fancy-border-height, 3px) var(--fancy-border-height, 3px) at calc(100% - (var(--fancy-border-height) * 0.5 + var(--fancy-border-gap))) 50%, black 40%, transparent 50%), radial-gradient(var(--fancy-border-height, 3px) var(--fancy-border-height, 3px) at calc(100% - var(--fancy-border-height) * 0.5) 50%, black 40%, transparent 50%), linear-gradient(to right, transparent calc(var(--fancy-border-height, 3px) * 0.5), black calc(var(--fancy-border-height, 3px) * 0.5), black calc(100% - (var(--fancy-border-height) * 0.5 + var(--fancy-border-gap))), transparent calc(100% - (var(--fancy-border-height) * 0.5 + var(--fancy-border-gap))), transparent 100%);
          mask-image: radial-gradient(var(--fancy-border-height, 3px) var(--fancy-border-height, 3px) at calc(var(--fancy-border-height, 3px) * 0.5) 50%, black 40%, transparent 50%), radial-gradient(var(--fancy-border-height, 3px) var(--fancy-border-height, 3px) at calc(100% - (var(--fancy-border-height) * 0.5 + var(--fancy-border-gap))) 50%, black 40%, transparent 50%), radial-gradient(var(--fancy-border-height, 3px) var(--fancy-border-height, 3px) at calc(100% - var(--fancy-border-height) * 0.5) 50%, black 40%, transparent 50%), linear-gradient(to right, transparent calc(var(--fancy-border-height, 3px) * 0.5), black calc(var(--fancy-border-height, 3px) * 0.5), black calc(100% - (var(--fancy-border-height) * 0.5 + var(--fancy-border-gap))), transparent calc(100% - (var(--fancy-border-height) * 0.5 + var(--fancy-border-gap))), transparent 100%);
}
/* Animated Fancy Border: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-border-animated
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  hr.fancy-border-animated, .fancy-border-animated.fancy-border-before::before, .fancy-border-animated.fancy-border-after::after {
    transition: width 1.5s ease-in-out;
  }
  .fancy-border-animated:not(.visible) {
    --fancy-border-width: 0% !important;
  }
}

/* Fancy Icons: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-icon
--------------------------------------------------------------- */
.fancy-icon-menu {
  position: relative;
  --fancy-icon-menu-width: 2rem;
  --fancy-icon-menu-height: 1rem;
  --fancy-icon-menu-bar-height: 2px;
  --fancy-icon-menu-bar-top-width: 100%;
  --fancy-icon-menu-bar-top-margin-l: auto;
  --fancy-icon-menu-bar-top-margin-r: auto;
  --fancy-icon-menu-bar-center-width: 100%;
  --fancy-icon-menu-bar-center-margin-l: auto;
  --fancy-icon-menu-bar-center-margin-r: auto;
  --fancy-icon-menu-bar-bottom-width: 100%;
  --fancy-icon-menu-bar-bottom-margin-l: auto;
  --fancy-icon-menu-bar-bottom-margin-r: auto;
  width: var(--fancy-icon-menu-width);
  height: var(--fancy-icon-menu-height);
}
.fancy-icon-menu span {
  position: absolute;
  transform-origin: center center;
  background: currentColor;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--fancy-icon-menu-bar-height);
  width: 100%;
  transition-duration: 0.375s;
  transition-timing-function: ease-in-out;
  transition-property: top, bottom, left, right, transform, width;
}
.fancy-icon-menu span:where(:first-child) {
  bottom: auto;
  width: var(--fancy-icon-menu-bar-top-width);
  margin: auto var(--fancy-icon-menu-bar-top-margin-r) auto var(--fancy-icon-menu-bar-top-margin-l);
}
.fancy-icon-menu span:where(:last-child) {
  top: auto;
  width: var(--fancy-icon-menu-bar-bottom-width);
  margin: auto var(--fancy-icon-menu-bar-bottom-margin-r) auto var(--fancy-icon-menu-bar-bottom-margin-l);
}
.fancy-icon-menu span:where(:nth-child(2), :nth-child(3)) {
  width: var(--fancy-icon-menu-bar-center-width);
  margin: auto var(--fancy-icon-menu-bar-center-margin-r) auto var(--fancy-icon-menu-bar-center-margin-l);
}
.open .fancy-icon-menu span {
  margin: auto;
}
.open .fancy-icon-menu span:nth-child(2) {
  transform: rotateZ(45deg);
}
.open .fancy-icon-menu span:nth-child(3) {
  transform: rotateZ(-45deg);
}
.open .fancy-icon-menu span:is(:nth-child(2), :nth-child(3)) {
  width: 100%;
}
.open .fancy-icon-menu span:is(:first-child, :last-child) {
  width: 0;
}
/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
.fancy-box {
  --fancy-box-background: var(--color-light-alt);
  --fancy-box-pseudo-background: var(--color-neutral-light);
  --fancy-box-pseudo-offset: 0;
  --fancy-box-pseudo-offset-x: var(--fancy-box-pseudo-offset);
  --fancy-box-pseudo-offset-bottom: var(--fancy-box-pseudo-offset);
  --fancy-box-pseudo-offset-top: 0;
  background: var(--fancy-box-background);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .fancy-box {
    --fancy-box-pseudo-offset: 25px;
    --fancy-box-pseudo-offset-top: var(--fancy-box-pseudo-offset-bottom);
  }
}
.fancy-box::after {
  content: "";
  z-index: -1;
  background: var(--fancy-box-pseudo-background);
  position: absolute;
  pointer-events: none;
}
.fancy-boxes-wrapper {
  position: relative;
  z-index: 1;
  padding-top: var(--negative-pusher);
}
.fancy-box-cut-left::after {
  left: var(--fancy-box-pseudo-offset-x);
}
.fancy-box-cut-right::after {
  right: var(--fancy-box-pseudo-offset-x);
}
.fancy-box-cut-top::after {
  top: var(--fancy-box-pseudo-offset-top);
}
.fancy-box-cut-bottom::after {
  bottom: var(--fancy-box-pseudo-offset-bottom);
}
:is(.fancy-box-extend-left, .fancy-box-extend-right) {
  max-width: calc(100% - var(--fancy-box-pseudo-offset-x)) !important;
}

:is(.fancy-box-extend-left.fancy-box-extend-right) {
  max-width: calc(100% - var(--fancy-box-pseudo-offset-x) * 2) !important;
}

.fancy-box-extend-left {
  margin-left: var(--fancy-box-pseudo-offset-x);
}
.fancy-box-extend-left::after {
  left: calc(var(--fancy-box-pseudo-offset-x) * -1);
}
.fancy-box-extend-right {
  margin-right: var(--fancy-box-pseudo-offset-x);
}
.fancy-box-extend-right::after {
  right: calc(var(--fancy-box-pseudo-offset-x) * -1);
}
.fancy-box-extend-top {
  margin-top: var(--fancy-box-pseudo-offset-top);
}
.fancy-box-extend-top::after {
  top: calc(var(--fancy-box-pseudo-offset-top) * -1);
}
.fancy-box-extend-bottom {
  margin-bottom: var(--fancy-box-pseudo-offset-bottom);
}
.fancy-box-extend-bottom::after {
  bottom: calc(var(--fancy-box-pseudo-offset-bottom) * -1);
}
@media only screen and (max-width: 767px) {
  .fancy-box-style-no-xs {
    margin-inline: 0;
    max-width: 100%;
  }
  .fancy-box-style-no-xs::after {
    content: none;
  }
}

.fancy-pattern {
  --fancy-pattern-height: 720px;
  --fancy-pattern-color: var(--color-secondary-alt);
  --fancy-pattern-t: auto;
  --fancy-pattern-b: auto;
  --fancy-pattern-l: auto;
  --fancy-pattern-r: auto;
  --fancy-pattern-transform: none;
}
.fancy-pattern-wrapper {
  position: relative;
  z-index: 0;
}
.fancy-pattern::after {
  z-index: -1;
  content: "";
  display: block;
  font-size: var(--fancy-pattern-height);
  height: 1em;
  width: 0.3362913967em;
  position: absolute;
  pointer-events: none;
  top: var(--fancy-pattern-t);
  bottom: var(--fancy-pattern-b);
  left: var(--fancy-pattern-l);
  right: var(--fancy-pattern-r);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transform-origin: center center;
  transform: var(--fancy-pattern-transform);
}
.doc-images-loaded .fancy-pattern::after {
  background: var(--fancy-pattern-color);
  -webkit-mask-image: url(/wp-content/themes/1p21-pql36/images/bg-gfx-pattern-01.svg);
          mask-image: url(/wp-content/themes/1p21-pql36/images/bg-gfx-pattern-01.svg);
}

/* Fancy Text Animation by Mr. Garrett except Sam added tweaks
Requires:
PHP: functions/function-helpers.scss: onep21_fancy_letters. Text must be outputted using this function
SCSS: scss/components/fancy.scss fancy-letters
JS: `Fancy Text Animated trackVisibility`
--------------------------------------------------------------- */
/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
.fancy-picture {
  --fancy-picture-duration: 1.5s;
  --fancy-picture-delay: 0s;
  --fancy-picture-duration: 1.5s;
}
@media only screen and (min-width: 1200px) {
  .fancy-picture {
    overflow: hidden;
    background: var(--scheme-bg-contrast);
  }
  .fancy-picture:is(.visible) img {
    /* make background block animate for document ready or when visible*/
    transition: opacity var(--fancy-picture-duration) ease-in-out var(--fancy-picture-delay), transform var(--fancy-picture-duration) ease-in-out var(--fancy-picture-delay);
    opacity: 1;
    transform: scale(1);
    transform-style: preserve-3d;
  }
  .fancy-picture:is(html:not(.doc-images-loaded) .fancy-picture,
  .fancy-picture:not(.visible)) img {
    /* hide if not ready to let the world to know got to let it show */
    opacity: 0;
    transform: scale(1.125);
  }
}

/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
/* Accordion: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/accordion.md#accordion
--------------------------------------------------------------- */
.accordion:not(.open) {
  display: none;
}

/* Accordion: Toggle  https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/accordion.md#data-toggle-accordion
--------------------------------------------------------------- */
.accordion-trigger {
  cursor: pointer;
}
.accordion-trigger > * {
  pointer-events: none;
}
.accordion-trigger::after {
  content: "+";
}
.accordion-trigger.open::after {
  content: "-";
}

/* ================================================================================
* Includes 
================================================================================ */
/* Forms https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/helper/form.md
For Gravity Forms specific styles go to scss/vendors/gforms
-------------------------------------------------------------------------------- */
.field-form {
  max-width: 100%;
}
.field-form :where(.faux-gform_wrapper) :is(.gform_title,
.gform_description,
.gform_footer,
.gform_page_footer,
.gform_body) {
  margin: 0;
  padding: 0;
}
.field-form :where(.faux-gform_wrapper) .gform_heading {
  /* gform heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 46px;
}
.field-form :where(.faux-gform_wrapper) :where(.gform_heading,
.gform_title,
.gform_description) {
  /* everything inside the heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  margin-left: auto;
  margin-right: auto;
}
.field-form :is(.faux-gform_wrapper) :is(.gform_title, .gform_description):last-child {
  margin-bottom: 0;
}
.field-form :is(.gform_wrapper) .gform_body {
  /* body: gforms generated or template custom ones */
}
.field-form :is(.gform_wrapper) :is(.gform_footer, .gform_page_footer) {
  /* footer: gforms generated or template custom ones */
  /* reset margin and padding and add  one margin to keep spacing simple to setup. Gravity forms man. */
  padding: 0;
  margin: 0;
  margin-top: 24px;
}
.field-form :is(.gform_wrapper) :is(.gform_footer, .gform_page_footer) :is(.gform_button, .button) {
  /* that goes for the button too */
  margin-bottom: 0;
  margin-top: 0;
}
.field-form-body :is(.gform_wrapper) .gform_heading {
  /* in case gravity forms decides to add more ugly things */
  display: none;
}

/*  Responsive Background skeletons: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/field/responsive-background
--------------------------------------------------------------- */
/* Responsive Background skeletons. Do not Edit.
--------------------------------------------------------------- */
.responsive-background {
  pointer-events: none;
  overflow: hidden;
  transform-style: preserve-3d;
  z-index: -1;
  background-color: var(--scheme-bg, var(--color-dark));
}
.responsive-background::after {
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  pointer-events: none;
  mix-blend-mode: var(--responsive-background-overlay-mix-blend, none);
  background: var(--responsive-background-overlay-background, normal);
  opacity: var(--responsive-background-overlay-opacity, 0.75);
}
.responsive-background-wrapper {
  position: relative;
  z-index: 0;
}
.responsive-background, .responsive-background-bg {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.responsive-background-bg {
  /* Note: when styling instances of this block, make sure properties are NOT set as shorthand to avoid override issues */
  background-size: cover;
  background-position: var(--responsive-background-bg-position);
  /* Note: Best practice to add fallback background-colors to your background images */
  background-color: inherit;
  z-index: -2;
  background-image: var(--responsive-background-image, none) !important;
}
.responsive-background-bg:is(img) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--responsive-background-bg-position);
     object-position: var(--responsive-background-bg-position);
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  :is(.responsive-background-animated-on-loaded, .responsive-background-animated-on-visible.visible) .responsive-background-bg {
    /* make background block animate for document ready or when visible*/
    transition: opacity ease-in-out 1.5s, transform ease-in-out 1.5s;
    opacity: 1;
    transform: scale(1);
    transform-style: preserve-3d;
  }
  :is(html:not(.doc-images-loaded) .responsive-background-animated-on-loaded,
  .responsive-background-animated-on-visible:not(.visible)) .responsive-background-bg {
    /* hide if not ready to let the world to know got to let it show */
    opacity: 0;
    transform: scale(1.125);
  }
}

/* Responsive Background Customizations
--------------------------------------------------------------- */
.responsive-background {
  --responsive-background-overlay-mix-blend: normal;
  --responsive-background-overlay-background: none;
  --responsive-background-overlay-opacity: .75;
  --responsive-background-bg-position: center center;
}

/* Carousels https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/carousel.md
--------------------------------------------------------------- */
/* Carousel Item skeletons. Do not Edit.
--------------------------------------------------------------- */
.carousel-item {
  text-align: center;
}
.carousel-item-image {
  height: var(--carousel-height);
}
.carousel-item-image > :where(*) {
  pointer-events: none;
}
.carousel-item-image, .carousel-item-image picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.carousel-item-image :where(svg, object, img) {
  height: auto !important;
}
.carousel-item-image :where(img, svg, object, picture) {
  width: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  align-self: center;
  flex: 0 0 auto;
}

/* Carousel Item Customizations
--------------------------------------------------------------- */
:root {
  /* height of award. best to set to the tallest award logo provided  */
  --carousel-height: 120px;
}
/* Case Results https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/result.md
-------------------------------------------------------------------------------- */
/*
* Case Result Icon
-------------------------------------------------------------------------------- */
.result-icon {
  font-size: 40px;
}
@media only screen and (min-width: 1400px) {
  .result-icon {
    font-size: 47px;
  }
}
/*
* Case Result Value
-------------------------------------------------------------------------------- */
.result-value {
  font-size: 55px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.75rem;
}
.result-value:is(.fancy-border) {
  --fancy-border-margin-y: .4em;
}
.result-value:is(.fancy-border-after) {
  margin-bottom: var(--fancy-border-margin-y);
}
.result-value-confidential {
  font-size: 0.6em;
}
.result-value-number-long {
  font-size: 0.75em;
}
@media only screen and (min-width: 768px) {
  .result-value {
    font-size: 55px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .result-value {
    font-size: 65px;
    line-height: 75px;
  }
  .result-value-confidential {
    font-size: 0.48em;
  }
}
@media only screen and (min-width: 1900px) {
  .result-value-confidential {
    font-size: 0.6em;
  }
}
/*
* Case Result Type
-------------------------------------------------------------------------------- */
.result-type {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-primary-alt);
  font-weight: 600;
  max-width: 125px;
  margin-inline: auto;
}
@media only screen and (min-width: 1200px) {
  .result-type {
    max-width: 96px;
  }
}
@media only screen and (min-width: 1400px) {
  .result-type {
    font-size: 20px;
    line-height: 26px;
    max-width: 106px;
  }
}
/*
* Case Result Title - Optional
-------------------------------------------------------------------------------- */
/*
* Case Result Description
-------------------------------------------------------------------------------- */
.result-description {
  margin-top: 1.5rem;
}
/*
* Case Result Learn More - Optional
-------------------------------------------------------------------------------- */
.result-learn-more {
  font-size: 17px;
  color: var(--color-secondary-alt);
  font-weight: 800;
  margin-top: 1rem;
  align-self: center;
}
/*
* Case Result Description + Details Split. Useful for popups/ hovers
-------------------------------------------------------------------------------- */
.result-summary:nth-last-child(n+2) {
  margin-bottom: auto;
}
.result-details-default {
  margin-top: 1.5em;
  border-top: 1px solid var(--color-neutral);
  padding-top: 1.5rem;
}
.result-details-default .result-content {
  max-width: 50ch;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
.result-details-popup {
  text-align: center;
}
.result-details-popup .result-type {
  max-width: none;
  margin-bottom: 1.125rem;
}
.result-details-popup .result-content {
  text-align: initial;
}
/*
* includes/repeater-result
-------------------------------------------------------------------------------- */
.result {
  text-align: center;
  position: relative;
  /* styles when the profile has a link */
}
.result, .result-container {
  max-width: 100%;
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.result.fancy-box, .result-container.fancy-box {
  --fancy-box-pseudo-offset-x: 20px;
  --fancy-box-pseudo-offset-bottom: 28px;
  --fancy-box-pseudo-offset-top: min(50%,245px);
  padding-block: 2.625rem;
  padding-inline: 1rem;
}
.result :where(.result-description, .result-content) {
  margin-left: auto;
  margin-right: auto;
}
.result-pointer-reference:has(.result-details, [href]):is(:hover, :focus-within) .result-learn-more {
  color: var(--color-sp-contrast);
}
.result-pointer-reference:has(.result-details, [href]):is(:hover, :focus-within) .result-content {
  max-width: 50ch;
}
.result-details-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}
.result-details-default .result-description {
  flex: 1 1;
}
.result-details-default .result-learn-more:first-child {
  margin-top: auto;
}
.result-details-hover {
  max-width: none;
  position: absolute;
  background-color: var(--color-dark-alt);
  color: var(--color-light);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  scrollbar-width: none;
  overflow-y: scroll;
  transition: 0.25s all ease-in-out;
  padding: 2rem;
  opacity: 1;
}
.result-details-hover::-webkit-scrollbar {
  display: none;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
@media only screen and (min-width: 1400px) {
  .result-container:is(.fancy-box) {
    padding-inline: 3rem;
  }
}
/* Practice Areas https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/practice-area.md
-------------------------------------------------------------------------------- */
/*
* Practice Area Skeleton. Do not Edit
-------------------------------------------------------------------------------- */
.practice-area-title {
  padding-inline: var(--pa-title-padding-x);
}
.practice-area-title.fancy-border-after:after {
  --fancy-border-margin-l: calc(var(--pa-title-padding-x) * -1);
  --fancy-border-margin-r: calc(var(--pa-title-padding-x) * -1);
}
.practice-area-menu li,
.practice-area-menu li a {
  display: flex;
  flex-direction: column;
}
.practice-area-menu li:nth-child(-n+1) {
  border-top: 0;
}
.practice-area-menu li a {
  justify-content: center;
  flex: 1 1;
  padding-block: calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * var(--pa-item-baseline-offset)) calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * (1 - var(--pa-item-baseline-offset)));
  padding-inline: var(--pa-item-padding-x);
  min-height: var(--pa-item-height);
}
@media only screen and (max-width: 767px) {
  .practice-area-menu li a {
    min-height: 0;
  }
}

/*
* Practice Area Vars/ Scaffolding
-------------------------------------------------------------------------------- */
.practice-area {
  --pa-item-padding-x: 0rem;
  /* height of practice area item. designers will prefer to design buttons based on their height. this is to better support the wonders they create while being able to use padding to support multi-line/ edge case buttons */
  --pa-item-height:58px;
  /* ideal height of menu items */
  --pa-item-lines: 1;
  /* Note: this value has to be unitless for calc values to work.
  	* Number of lines to compensate for the item height */
  --pa-item-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work.
  	* 1 moves the text to the very bottom. 0 moves the text to the very top */
  --pa-item-line-height: 1.5;
  /* Note: this value has to be unitless for calc values to work.
  	* Formula is line-height-px / font-size-px */
  --pa-title-padding-x: var(--pa-item-padding-x);
  /* horizontal padding for the practice area title */
  line-height: var(--pa-item-line-height);
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .practice-area {
    min-width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .practice-area {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .practice-area {
    /* reset heights to normal flow */
  }
}

/*
* Practice Area Category Title
-------------------------------------------------------------------------------- */
.practice-area-title {
  margin-bottom: 1rem;
}
/*
* Practice Area Menu
-------------------------------------------------------------------------------- */
.practice-area-menu li {
  border-top: 2px solid var(--color-neutral);
}
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--color-primary);
  font-weight: 600;
}
/*
* includes/repeater-practice-area
-------------------------------------------------------------------------------- */
.practice-area, .practice-area-container {
  max-width: 100%;
  display: flex;
  min-width: 0;
}
.practice-area-container {
  flex: 1 1;
  flex-direction: column;
}
/* Pagination https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/helper/pagination.md
-------------------------------------------------------------------------------- */
/* Pagination Skeletons. do not edit 
--------------------------------------------------------------- */
.pagination {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  text-align: center;
  clear: both;
  margin-left: auto;
  margin-right: auto;
}
.pagination-block {
  grid-row: 1;
}
.pagination-block-left {
  grid-column: 1;
  text-align: left;
}
.pagination-block-center {
  grid-column: 2;
}
.pagination-block-right {
  grid-column: 3;
  text-align: right;
}
.pagination-num-list.pagination-block-left span:first-child,
.pagination-num-list.pagination-block-left a:first-child {
  margin-left: 0;
}
.pagination-num-list.pagination-block-right span:last-child,
.pagination-num-list.pagination-block-right a:last-child {
  margin-left: 0;
}
@media only screen and (max-width: 1199px) {
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
  }
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) a:nth-last-child(n+2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) a:nth-last-child(n+2) {
    margin-right: 0.5em;
  }
}
/* Pagination Customizations. customize as needed 
--------------------------------------------------------------- */
.pagination {
  font-size: 16px;
  letter-spacing: 0em;
  text-transform: capitalize;
  font-weight: 700;
  border-top: 1px solid var(--color-neutral-light);
  padding-top: 20px;
  margin-top: 3rem;
  margin-bottom: 0;
  max-width: 1400px;
}
.pagination .current,
.pagination a:is(:hover, :focus) {
  color: var(--color-primary-alt);
}
.pagination-num-list a,
.pagination-num-list span {
  margin-inline: 0.125em;
}
.pagination-nav-link :where(a) {
  dislay: inline-flex;
  align-items: center;
}
.pagination-nav-link .next:after,
.pagination-nav-link .prev:before {
  display: inline-block;
  order: 9;
  align-self: center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.5rem;
  transform-origin: 40% 40%;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
}
.pagination-nav-link .next:after {
  transform: rotate(-45deg);
  margin-left: 1em;
}
.pagination-nav-link .prev:before {
  transform: rotate(135deg);
  margin-right: 1em;
}

/* Profile https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/profile.md
-------------------------------------------------------------------------------- */
/*
* Profile Image
-------------------------------------------------------------------------------- */
.profile-image {
  --profile-image-aspect-w: 490;
  --profile-image-aspect-l: 550;
  --profile-image-position: 50% 15%;
  --profile-image-overlay-background: linear-gradient(to bottom, transparent -40%, var(--color-dark));
  --profile-image-overlay-opacity: .8;
  max-width: 100%;
  width: 100%;
  display: block;
  position: relative;
}
.profile-image::before {
  /* aspect ratio keeper + hover overlay */
  content: "";
  display: block;
  position: relative;
  padding-top: calc(100% * var(--profile-image-aspect-l) / var(--profile-image-aspect-w));
}
.profile-image-img, .profile-image-placeholder, .profile-image-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.profile-image-img, .profile-image-placeholder-img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -o-object-position: var(--profile-image-position);
     object-position: var(--profile-image-position);
}
.profile-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--color-neutral-lighter);
  background-color: var(--color-dark);
  background-image: linear-gradient(to bottom, var(--color-accent-gradient-start), var(--color-accent-gradient-end));
  font-size: 20px;
  color: var(--color-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 600;
}
@media only screen and (min-width: 1400px) {
  .profile-image-placeholder {
    font-size: 20px;
  }
}
.profile-image-placeholder-icon {
  font-size: 8rem;
  margin-bottom: 1rem;
}
.profile-image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
* Profile Image Pseudos: wheh linking to a bio page only
-------------------------------------------------------------------------------- */
.profile-image[href]:is(:hover, :focus-within)::before, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href]::before {
  opacity: var(--profile-image-overlay-opacity);
  pointer-events: auto;
}
.profile-image[href]:is(:hover, :focus-within) .profile-image-placeholder-text, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-image-placeholder-text {
  display: none;
}
.profile-image[href]:is(:hover, :focus-within) .profile-view, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-view {
  opacity: 1;
  background: transparent;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.09em;
  pointer-events: auto;
  transition: none;
}
.profile-image[href]:is(:hover, :focus-within) .profile-view:hover, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-view:hover {
  color: var(--color-light);
}
.profile-image[href]::before,
.profile-image[href] .profile-view {
  transition: none;
  opacity: 0;
  pointer-events: none;
}
.profile-image[href]::before {
  /* Overlay effect */
  z-index: 2;
  background: var(--profile-image-overlay-background);
  mix-blend-mode: multiply;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.profile-image[href] .profile-view {
  /*  */
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -moz-min-content;
  height: min-content;
}

/*
* Profile View text
-------------------------------------------------------------------------------- */
/*
* Profile Thumbnail, contains profile image, special blurb, whatever can be included in a thumbnail
-------------------------------------------------------------------------------- */
.profile-thumbnail {
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*
* Profile Additional Details
-------------------------------------------------------------------------------- */
.profile-details {
  /* view profile hit space/ additional details container */
  padding-block: 2rem;
  padding-inline: 1rem;
  transition: 0.5s ease-in-out all;
  color: var(--color-light);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background: var(--color-dark-alt);
}
.profile-details::before {
  content: "";
  color: var(--color-light);
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.profile-details:is(:hover, :focus-within), .profile-pointer-reference:is(:hover, :focus-within) .profile-details {
  opacity: 1;
  pointer-events: auto;
}
.profile-details-body {
  flex: 1 1;
  overflow-y: scroll;
  scrollbar-width: none;
}
.profile-details-body::-webkit-scrollbar {
  display: none;
}
.profile-details-body + .profile-details-footer {
  padding-top: 2rem;
  align-self: stretch;
}

/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-info-name {
  font-size: 30px;
  line-height: 1.5;
  align-content: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .profile-info-name {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1400px) {
  .profile-info-name {
    font-size: 30px;
    line-height: 55px;
  }
}
@media only screen and (min-width: 1900px) {
  .profile-info-name {
    font-size: 35px;
    line-height: 60px;
  }
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-info-position {
  margin-top: auto;
  margin-bottom: 0;
}
.profile-info-position:is(.h2) {
  font-size: 18px;
  color: var(--color-primary-alt);
}
/*
* includes/repeater-profile
-------------------------------------------------------------------------------- */
.profile {
  align-self: stretch;
  /* styles when the profile has a link */
}
.profile, .profile-container {
  max-width: 100%;
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.profile-container {
  gap: 0.75rem;
}
.profile-info {
  flex: 1 1;
}
.profile-info.fancy-border {
  --fancy-border-width: 100%;
}
.profile-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Testimonial https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/testimonial.md
-------------------------------------------------------------------------------- */
/*
* Testimonial Stars
-------------------------------------------------------------------------------- */
.testimonial-stars {
  font-size: 18px;
  margin-bottom: 24px;
}
.testimonial-stars.testimonial-stars-mini {
  font-size: 16px;
  margin-bottom: 1.25em;
}
@media only screen and (min-width: 1400px) {
  .testimonial-stars.testimonial-stars-mini {
    font-size: 18px;
  }
}
/*
* Testimonial Highlight / Main quote
-------------------------------------------------------------------------------- */
.testimonial-highlight {
  font-size: 16px;
  line-height: 25px;
  color: inherit;
  text-align: inherit;
  margin-top: 0;
  margin-bottom: 45px;
}
.testimonial-highlight:is(.blockquote) {
  font-size: 18px;
  line-height: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .testimonial-highlight:is(.blockquote) {
    font-size: 20px;
    margin-bottom: 2.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-highlight:is(.blockquote) {
    font-size: 27px;
  }
}
/*
* Testimonial Quote Body / other parts of the quote
-------------------------------------------------------------------------------- */
.testimonial-quote {
  margin-top: 0;
  margin-bottom: 2rem;
}
/*
* Testimonial Divider - Optional
-------------------------------------------------------------------------------- */
.testimonial-divider {
  --fancy-border-margin-y: 1.25rem;
  --fancy-border-margin-l: 0;
}
:is(.testimonial-highlight, .testimonial-quote):has(+ .testimonial-divider) {
  margin-bottom: 0;
}

@media only screen and (min-width: 1400px) {
  .testimonial-divider {
    --fancy-border-margin-y: 1.375rem;
  }
}
/*
* Testimonial Source + Optional Icon
-------------------------------------------------------------------------------- */
.testimonial-source {
  font-size: 13px;
  margin-bottom: 0;
}
.testimonial-source.testimonial-source-mini:is(.cite) {
  font-size: 14px;
}
.testimonial-source span:nth-last-child(n+2)::after {
  font-size: 0.6em;
  content: "\25CF\FE0E";
  color: var(--scheme-sb-contrast, inherit);
  margin-inline: 1.75em 1em;
  vertical-align: middle;
}
.testimonial-source-icon {
  font-size: 18px;
  vertical-align: middle;
}

/*
* includes/repeater-testimonial
-------------------------------------------------------------------------------- */
.testimonial :not(.testimonial-divider) + .testimonial-source {
  margin-top: auto;
}
/* Video Button - Default (One that doesnt have custom markup in it, just the usual one with a play symbol)
https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/helper/video-button.md#css-vars
--------------------------------------------------------------- */
.video-button-default {
  --video-button-size: 86px;
  /* size of video button by height and or width */
  --video-button-text-svg-radius-ratio: 1.25;
  /*  ratio of svg path for rounded text. */
  --video-button-glyph-height: 0.22em;
  /* height for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-width: 0.19em;
  /* width for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-color: linear-gradient(to bottom, var(--color-secondary-gradient-start), #CFA65B);
  /* color of the video button glyph. Used as a background-color so it can take gradients too */
  display: inline-flex;
  width: 1em;
  height: 1em;
  position: relative;
  font-size: var(--video-button-size);
  z-index: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--scheme-bg);
}
.video-button-default:is(.video-button-no-api) {
  pointer-events: none;
}
.video-thumbnail .video-button-default {
  /* customize instances of video button within thumbnail*/
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width: 1400px) {
  .video-button-default {
    --video-button-size: 94px;
  }
}
.video-button-default, .video-button-default-image, .video-button-default-text, .video-button-default::before, .video-button-default::after, .video-button-default-thumbnail-markup::after {
  transition: 0.25s ease-in-out all;
}
.video-button-default-image, .video-button-default-text, .video-button-default-text-svg, .video-button-default-text span, .video-button-default::before, .video-button-default::after {
  position: absolute;
  margin: auto;
  pointer-events: none;
}
.video-button-default-text, .video-button-default-image {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-button-default.video-button-default-no-icon::before, .video-button-default.video-button-default-no-icon::after {
  content: "";
  display: block;
  z-index: -1;
}
.video-button-default > .wistia_click_to_play {
  position: static !important;
  width: auto !important;
  height: auto !important;
}
.video-button-default-glyph {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.video-button-default-glyph::before {
  content: "";
  display: block;
  width: var(--video-button-glyph-width);
  height: var(--video-button-glyph-height);
  background: var(--video-button-glyph-color, currentColor);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-button-default-glyph:not(.video-button-default-glyph-has-text) {
  padding-left: calc(var(--video-button-glyph-width) * 0.25);
}
.video-button-default-glyph-has-text::before {
  content: none;
}
.video-button-default-glyph-text {
  font-size: var(--video-button-glyph-height);
}
.video-button-default-text {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-neutral);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-button-default-text-svg {
  transform-style: preserve-3d;
  max-width: none;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  font-size: calc(1em * 1 / var(--video-button-text-svg-radius-ratio));
  width: calc(200% * var(--video-button-text-svg-radius-ratio));
  height: calc(200% * var(--video-button-text-svg-radius-ratio));
}
.video-button-default-text-svg path {
  transform-origin: center center;
}
.video-button-default-text-html span {
  top: 0;
  bottom: 0;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
.video-button-default-text-html span:nth-child(odd) {
  right: 100%;
  margin-right: 1em;
}
.video-button-default-text-html span:nth-child(even) {
  left: 100%;
  margin-left: 1em;
}
.video-button-default-image {
  transition: all 0.25s ease-in-out;
}
.video-button-default-image-init, .video-button-default:is(:hover, :focus) .video-button-default-image-hover, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-hover {
  opacity: 1;
}

.video-button-default-image-hover, .video-button-default:is(:hover, :focus) .video-button-default-image-init, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-init {
  opacity: 0;
}

.video-button-default.video-button-default-no-icon {
  /* tru element/background */
  /* these are basic styles. overhaul as needed */
}
.video-button-default.video-button-default-no-icon, .video-button-default.video-button-default-no-icon::before, .video-button-default.video-button-default-no-icon::after {
  /* these are basic styles. overhaul as needed */
  border-radius: 999em;
  transform: scale(1);
}
.video-button-default.video-button-default-no-icon::before {
  /* fake extra background */
  /* these are basic styles. overhaul as needed */
  background: #333C6B;
  z-index: -1;
  inset: 0;
  opacity: 0.65;
}
.video-button-default.video-button-default-no-icon::after {
  /* other element for fx */
  /* these are basic styles. overhaul as needed */
  background: var(--color-light);
  inset: 0.1em;
}
.video-button-default.video-button-default-no-icon:is(:hover, :focus), .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon {
  /* on hover on itself/ containing repeater/ .video-pointer-reference */
}
.video-button-default.video-button-default-no-icon:is(:hover, :focus)::before, .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon::before {
  /* these are basic styles. overhaul as needed */
  background: var(--color-primary-alt);
  opacity: 0.7;
}
.video-button-default.video-button-default-no-icon:is(:hover, :focus)::after, .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon::after {
  /* these are basic styles. overhaul as needed */
}

/* Video Pointer Reference
--------------------------------------------------------------- */
.video-pointer-reference {
  cursor: pointer;
}

/* Video Thumbnail
https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/helper/video-thumbnail.md#css-vars
--------------------------------------------------------------- */
.video-thumbnail {
  --video-thumbnail-aspect-w: 427;
  --video-thumbnail-aspect-l: 279;
  --video-thumbnail-overlay-background: linear-gradient(to bottom, transparent -40%, var(--color-dark));
  --video-thumbnail-overlay-opacity: .8;
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--color-light-alt);
  box-shadow: 0 2px 6px 4px rgba(0, 0, 0, 0.2);
}
.video-thumbnail::before {
  /* aspect ratio keeper  */
  content: "";
  display: block;
  padding-top: calc(100% * var(--video-thumbnail-aspect-l) / var(--video-thumbnail-aspect-w));
}
.video-thumbnail-markup {
  overflow: hidden;
}
.video-thumbnail-markup[href]::after, .video-thumbnail-markup.wistia_embed::after {
  /* overlay */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: var(--color-primary);
  background: var(--video-thumbnail-overlay-background);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: 0.25s ease-in-out all;
}
.video-thumbnail-markup-img img {
  max-width: none;
}
.video-thumbnail:is(:hover, :focus) .video-thumbnail-markup::after, .video-pointer-reference:is(:hover, :focus-within) .video-thumbnail .video-thumbnail-markup::after {
  opacity: var(--video-thumbnail-overlay-opacity);
}
/* force object fit cover where we need to, im looking at you wistia
--------------------------------------------------------------- */
:is(.video-thumbnail-markup, .video-button-image),
.video-thumbnail-markup > *,
.video-thumbnail-markup img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  margin: 0 !important;
}

/* includes/repeater-video
--------------------------------------------------------------- */
.video {
  /* styles when the video has a link */
}
.video, .video-container {
  max-width: 100%;
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.video-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}
.video-title:is(.h3) {
  color: inherit;
}
.video-title:is(.fancy-border) {
  --fancy-border-margin-y: 1.25rem;
  margin-top: var(--fancy-border-margin-y);
}
/* ================================================================================
* Parts 
================================================================================ */
/* Review Us Page https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/parts/review-us.md
--------------------------------------------------------------- */
.review-us {
  text-align: center;
}
.review-us-columns {
  --columns-gap-x: 4em;
  --columns-gap-y: 2em;
  align-items: flex-end;
  justify-content: center;
}
.review-us-columns .button {
  margin-top: 1em;
}
.review-us, .review-us-video {
  margin-top: 3em;
}
@media only screen and (min-width: 768px) {
  .review-us-columns {
    --columns-number: 2;
  }
  .review-us-columns .button {
    width: 100%;
  }
}
/* Awards https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/parts/awards.md
--------------------------------------------------------------- */
.awards-title {
  margin-bottom: 35px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
.awards .swiper {
  --carousel-height: 121px;
  --swiper-pagination-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .awards-title {
    margin-bottom: 3.875rem;
  }
  .awards .swiper {
    --carousel-height: 122px;
    --swiper-pagination-bottom: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .awards-title {
    font-size: 16px;
    margin-bottom: 45px;
  }
  .awards .swiper {
    --swiper-pagination-bottom: 65px;
  }
}
@media only screen and (min-width: 1900px) {
  .awards-title {
    margin-bottom: 3.5rem;
  }
  .awards .swiper {
    --swiper-pagination-bottom: 3.5rem;
  }
}
/* ================================================================================
* Header
================================================================================ */
/* Layout Header https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/header.md
Note: The styles will be setup mobile first starting with the smallest device comp where the header menu toggle is no longer visible  (usually initially at md/laptop)
And then Desktop first starting with the largest device comp where the the header toggle is visible (Usually sm/tablet)
Tip: setting up mobile navigation desktop-first starting at sm-max for touch screen styles, and then mobile-first starting at md for desktop styles helps simplify the styles and lessen the need for overrides.
Also Tip: Default styles are set based on its sticky state, and then overriding these styles when no scroll has happened yet (.doc-header-not-sticky). This is to keep styles less repetitive and as simple as possible
--------------------------------------------------------------- */
/* Layout Header Variables
--------------------------------------------------------------- */
/* Tip: placing the css var on :root can allow elements outside of the layout header utilize the variable if needed ie sticky stuff, offsets, jump link scroll etc. */
:root {
  --layout-header-height: 116px;
  /* height of the whole header at a given state or layout */
  --layout-header-offset: 0px;
  /* How far off the header is from the top of the viewport. This is specially useful for .header-overlay-on-banner styles before sticky-ing */
  --layout-header-logo-height: var(--layout-header-height);
  /* height of logo including its padding at a given state or layout. */
  --layout-header-toggle-offset-y: 1rem;
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1900px) {
  :root {
    --layout-header-height: 118px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    /* Touch Devices Header Styles Start */
    --layout-header-height: 110px;
    /* offset: one top value might work for the design. NOTE: adjust ilawyer alertbar settings accordingly if enabled (dynamic margin, offset to bottom on touch devices, position, etc.) */
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --layout-header-height: 160px;
    --layout-header-logo-height: 103px;
    /* offset: one top value might work for the design. NOTE: adjust ilawyer alertbar settings accordingly if enabled (dynamic margin, offset to bottom on touch devices, position, etc.) */
  }
}

.doc-header-not-sticky .header-overlay-on-banner {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    /* override logo height apart form the header height on this state only. Adjust as needed */
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner {
    /* Touch Devices Header Styles Start */
    /* offset: one top value might work for the design. NOTE: adjust ilawyer alertbar settings accordingly if enabled (dynamic margin, offset to bottom on touch devices, position, etc.) */
    --layout-header-offset: 0px;
  }
}
.doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open {
    /* DO NOT ENABLE. Safari has a bug that conflicts the window scrollbar as of 06/24 */
    /* overflow-y:hidden; */
  }
}
/* Offset the scroll by the header height so the element a jump link scrolls to us not underneath the header but instead compensates to the header height and scrolls just next to it
--------------------------------------------------------------- */
html, body {
  scroll-padding: calc(var(--layout-header-height) + var(--layout-header-offset)) !important;
}

/* CSS offset to avoid header + banner content overlap that only applies when header-overlay-on-banner class is added: pseudo element that always matches the header height. The .banner-main should have this on a clean build, but you can move this class around elements as needed. You can also apply this to a page's first section if there is not banner present. set this only once to avoid shifting the document on scroll. and move to proper media query as needed
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .banner-has-background-image.header-overlay-on-banner .has-layout-header-offset::before {
    content: "";
    flex: 0 0 auto;
    height: var(--layout-header-height);
    display: block;
    width: 100%;
  }
}
/* Layout Header Itself
--------------------------------------------------------------- */
.layout-header {
  /* Note: position must be set initially, NOT based on whether or not a scroll has occured (sticky vs not-sticky class). This is to prevent layout jumps on scroll */
  position: sticky;
  top: var(--layout-header-offset);
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--scheme-bg, var(--color-dark));
  color: var(--scheme-fg, var(--color-light));
  transition: 0.25s top ease-in-out;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
.layout-header-container {
  container-type: normal;
}
@media only screen and (min-width: 1200px) {
  .layout-header {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .layout-header {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .layout-header {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header {
    /* remove background */
    background: transparent;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .layout-header {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .layout-header {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
  /* remove dropdown shadow on all devices when not scrolling yet */
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .layout-header {
    /* reset offset when no scrolling yet */
    --layout-header-offset: 0;
  }
}
.doc-header-menu-open .layout-header {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.header-overlay-on-banner .layout-header {
  /* Overlay header on header-overlay-on-banner. best for setting position on large devices AND NOTHING ELSE */
}
@media only screen and (min-width: 1200px) {
  .header-overlay-on-banner .layout-header {
    position: fixed;
  }
}

/* Header Blocks
--------------------------------------------------------------- */
.header-blocks {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: var(--container-gutter);
       column-gap: var(--container-gutter);
  row-gap: 0;
  column-gap: var(--container-gutter);
  /* set as min instead in case alertbar needs to be added within header */
  min-height: var(--layout-header-height);
}
@media only screen and (min-width: 1200px) {
  .header-blocks {
    /* Non-touch Devices Header Styles Start */
    grid-template-areas: "logo nav cta";
    grid-template-columns: auto 1fr auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-blocks {
    grid-template-areas: "logo cta" "logo nav";
    grid-template-columns: auto 1fr;
  }
}
@media only screen and (min-width: 1400px) {
  .header-blocks {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media only screen and (min-width: 1900px) {
  .header-blocks {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-blocks {
    /* Touch Devices Header Styles Start */
    grid-template-areas: "logo cta toggle-menu";
  }
}
@media only screen and (max-width: 767px) {
  .header-blocks {
    grid-template-areas: "logo toggle-menu" "cta cta";
    grid-template-columns: 1fr auto;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-blocks {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-blocks {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-blocks {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.header-blocks .doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Logo
--------------------------------------------------------------- */
.header-logo {
  padding-block: 36px;
  padding-inline: var(--container-gutter, 1.5rem);
  margin-inline: calc(var(--container-gutter, 0) * -1);
  height: var(--layout-header-logo-height);
  flex: 0 0 auto;
  grid-area: logo;
  /* support logo offseting on overlay banner + not sticky state. comment if not needed */
  position: relative;
}
.header-logo .logo-wrapper-br, .header-logo .logo-wrapper-before-sticky {
  /* hide possible variations of logo */
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-logo {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1400px) {
  .header-logo {
    padding-block: 36px;
  }
}
@media only screen and (min-width: 1900px) {
  .header-logo {
    padding-block: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo {
    /* Touch Devices Header Styles Start */
    padding-block: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    padding-block: 0;
    flex: 1 1;
  }
  .header-logo .logo-wrapper-br {
    /* show  */
    display: block;
  }
  .header-logo .logo-wrapper-br ~ .logo-wrapper-nonbr {
    display: none;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-logo {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-sticky {
    /* hide default logo on before sticky */
    display: none;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-before-sticky {
    /* show  */
    display: block;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-logo {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-logo {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-logo {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Toggle/s - Scaffolding for usual box buttons
--------------------------------------------------------------- */
.header-toggle {
  width: 63px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1200px) {
  .header-toggle {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-toggle {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-toggle {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-toggle {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-toggle {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
@media only screen and (max-width: 1199px) {
  .doc-header-not-sticky .header-toggle {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-menu-open .header-toggle {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open .header-toggle {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-menu-open.doc-header-not-sticky .header-toggle {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open.doc-header-not-sticky .header-toggle {
    /* Touch Devices Header Styles Start */
  }
}
/* Header Toggle - Menu
--------------------------------------------------------------- */
.header-toggle-menu {
  --layout-header-menu-toggle-open-offset: 0px;
  /* How far off the toggle is from its original position. useful for mobile when the layout of the header shifts around and the toggle is positioned weird over the menu when it's open */
  background-color: var(--color-light-alt);
  color: var(--color-dark);
  position: relative;
  z-index: 99999;
  top: 0;
  transition: 0.375s all ease-in-out;
  align-self: center;
  min-height: 78px;
  grid-area: toggle-menu;
}
.header-toggle-menu.open {
  top: var(--layout-header-menu-toggle-open-offset);
}
.header-toggle-menu-icon {
  --fancy-icon-menu-width: 43px;
  --fancy-icon-menu-height: 15px;
  --fancy-icon-menu-bar-height: 4px;
  --fancy-icon-menu-bar-center-width: 0%;
}
.header-toggle-menu.open .header-toggle-menu-icon {
  color: inherit;
}
.header-toggle-menu-label {
  font-size: 15px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-top: 0.5em;
  transition: 0.375s all ease-in-out;
}
.header-toggle-menu.open .header-toggle-menu-label {
  margin-top: -1em;
  opacity: 0;
}
.header-toggle-menu.open .header-toggle-menu-label:nth-last-child(2) {
  display: none;
}
.header-toggle-menu:not(.open) .header-toggle-menu-label:nth-child(3) {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-toggle-menu {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-toggle-menu {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-toggle-menu {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-toggle-menu {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-toggle-menu {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-toggle-menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.doc-header-menu-open.doc-header-not-sticky .header-toggle-menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Toggle - Other Block toggles
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .header-toggle- {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-toggle- {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-toggle- {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-toggle- {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-toggle- {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-toggle- {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.doc-header-menu-open.doc-header-not-sticky .header-toggle- {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Main
--------------------------------------------------------------- */
/* Header CTA
--------------------------------------------------------------- */
.header-cta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1rem;
  grid-area: cta;
}
@media only screen and (min-width: 1200px) {
  .header-cta {
    /* Non-touch Devices Header Styles Start */
    margin-top: 5px;
    flex-direction: column;
    align-items: flex-end;
    justify-self: self-end;
    gap: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-cta {
    gap: 0.5rem;
    align-self: self-end;
  }
}
@media (min-width: 1200px) and (max-width: 1399px), (min-width: 1900px) {
  .header-cta {
    flex-direction: row;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    gap: 0.5rem;
  }
}
@media only screen and (min-width: 1900px) {
  .header-cta {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta {
    /* Touch Devices Header Styles Start */
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-cta {
    text-align: center;
    align-items: center;
    flex: 1 1;
    padding-block: 0rem 1rem;
    /* layout cta contents horizontally */
    flex-direction: row;
    justify-content: center;
    gap: 7px;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-cta {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-cta {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-cta {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header CTA - Text
--------------------------------------------------------------- */
.header-cta-text {
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--font-accent);
  color: var(--color-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.header-cta-text > span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--color-primary);
  margin: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .header-cta-text {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1200px) {
  .header-cta-text {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta-text {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-cta-text {
    font-size: 13px;
    margin-top: 5px;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta-text {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-cta-text {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-cta-text {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-cta-text {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Number/s
--------------------------------------------------------------- */
.header-numbers {
  display: flex;
  gap: 1rem;
}
.header-numbers .number-link {
  font-size: 22px;
  font-family: var(--font-secondary);
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .header-numbers {
    margin-top: -5px;
  }
  .header-numbers .number-link {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-numbers {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1900px) {
  .header-numbers .number-link {
    font-size: 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-numbers {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-numbers {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-numbers {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-numbers {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-numbers {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Navigation
--------------------------------------------------------------- */
.header-nav {
  --layout-header-menu-touch-offset: 0px;
  /* top offset of nav overlay on touch devices to the viewport */
  grid-area: nav;
}
@media only screen and (min-width: 1200px) {
  .header-nav {
    /* Non-touch Devices Header Styles Start */
    display: flex;
    justify-content: center;
    align-self: stretch;
    flex: 1 1;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-nav {
    justify-content: flex-end;
    flex: 0 0 auto;
    align-self: self-start;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav {
    /* Touch Devices Header Styles Start */
    --layout-header-menu-touch-offset: calc(var(--layout-header-logo-height) - var(--layout-header-toggle-offset-y));
    transition: top 0.25s ease-in-out, left 0.5s ease-in-out, opacity 0.5s ease-in-out;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    background: rgba(11, 20, 46, 0.9);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    z-index: 9999;
    scrollbar-width: none;
    position: fixed;
    bottom: 0;
    left: 100%;
    top: var(--layout-header-menu-touch-offset);
    padding-inline: var(--container-gutter);
    padding-bottom: var(--container-gutter);
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav {
    color: inherit;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav {
    align-self: stretch;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-nav {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-nav {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-nav {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open .header-nav {
    left: 0%;
    opacity: 1;
    background: rgba(11, 20, 46, 0.92);
  }
}
.doc-header-menu-open.doc-header-not-sticky .header-nav {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Navigation Menu
--------------------------------------------------------------- */
.header-nav .menu {
  --layout-header-menu-touch-menu-padding-x: 25px;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-dropdown-padding-x: 1.875rem;
  /* horizontal padding for menu items and accordion/dropdowns
  NOTE: Keep horizontal padding on the li items instead of the containing ul/dropdown to maintain hover hitspace or so that the next level of dropdown does not disappear while you hover to it */
  --layout-header-menu-nontouch-current-height: 0px;
  /* current item border indicator height */
  font-size: 17px;
  line-height: 1.125;
  font-family: var(--font-accent);
  color: inherit;
}
.header-nav .menu li {
  display: flex;
  flex-wrap: wrap;
}
.header-nav .menu li,
.header-nav .menu li > a {
  position: relative;
}
.header-nav .menu li > a {
  padding-block: 0.85em;
  display: inline-flex;
  align-items: center;
  transition: 0.125s ease-in-out all;
  flex: 1 0;
  justify-content: flex-start;
}
.header-nav .menu li:last-child, .header-nav .menu li:last-child > a {
  /* disable border for last items */
  border: none;
}
.header-nav .menu li:is(.menu-item-has-children) > a::after {
  display: inline-block;
  align-self: center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.5rem;
  margin-left: 0.75em;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 1.5px solid var(--color-secondary);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.header-nav .menu ul {
  background-color: var(--color-light-alt);
  color: var(--color-dark);
}
@media only screen and (min-width: 768px) {
  .header-nav .menu {
    --layout-header-menu-touch-menu-padding-x: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu {
    gap: 2.125ch;
    display: flex;
    justify-content: space-between;
    /* extra extra deep deep deep inner level dropdown edge case dropdown fix */
    /* top level level dropdown edge case dropdown fix */
  }
  .header-nav .menu li:is(:hover, :focus-within) ~ li > ul,
  .header-nav .menu li:not(:hover, :focus-within) > ul {
    display: none;
  }
  .header-nav .menu li {
    position: relative;
    padding-left: var(--layout-header-menu-nontouch-dropdown-padding-x);
    padding-right: var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li > a {
    flex: 1 1;
    /* flush dropdown indicator and text to the left */
    justify-content: flex-start;
  }
  .header-nav .menu li:is(:hover, :focus-within) > a {
    /* activated styles upon interaction for nontouch */
    color: var(--color-accent);
  }
  .header-nav .menu li.menu-item-special > ul {
    width: 40em;
    right: -4em;
    left: auto;
  }
  .header-nav .menu li.menu-item-special > ul li {
    flex-direction: column;
    border-block: 0;
  }
  .header-nav .menu li.menu-item-special > ul li.view-all {
    align-items: flex-end;
  }
  .header-nav .menu li.menu-item-special > ul li ul {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    color: inherit;
    padding: 0;
    width: auto;
    -moz-column-count: 3;
         column-count: 3;
    gap: var(--layout-header-menu-touch-menu-padding-x);
  }
  .header-nav .menu li.menu-item-special > ul li ul li > a {
    padding-block: 0.5em;
  }
  .header-nav .menu li.menu-item-special > ul > li {
    margin-bottom: 2rem;
  }
  .header-nav .menu ul {
    width: 230px;
    padding-block: 0.75rem;
    top: 0;
    left: 100%;
    /* Take dropdowns out of doc flow + setup for hover/focus effects */
    position: absolute;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
    z-index: 1;
    /* additional border styles + align to current item indicator. comment out if not needed */
    border-top: var(--layout-header-menu-nontouch-current-height) solid var(--color-accent);
    margin-top: calc(var(--layout-header-menu-nontouch-current-height) * -1);
  }
  .header-nav .menu ul li:is(:hover, :focus-within) > a {
    color: var(--color-primary-alt);
    font-weight: 600;
  }
  .header-nav .menu ul li:is(.menu-item-has-children) > a::after {
    transform-origin: center center;
    transform: rotate(-45deg);
  }
  .header-nav .menu > li {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu > li, .header-nav .menu > li > a {
    /* undo fanciness from non-media query scaffolding for top level menu item and its child a tag */
    border: none;
    background: none;
    margin: 0;
  }
  .header-nav .menu > li > a {
    padding-block: 0.75rem;
  }
  .header-nav .menu > li::before {
    /* current menu item indicator */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.125s ease-in-out width;
    width: 0;
    height: var(--layout-header-menu-nontouch-current-height);
    background: var(--color-accent);
  }
  .header-nav .menu > li:is(:hover, :focus-within) > a {
    background: transparent;
    color: var(--scheme-sp);
  }
  .header-nav .menu > li:is(.current-menu-item, .current-menu-ancestor, :hover, :focus-within) > a {
    color: var(--color-secondary);
  }
  .header-nav .menu > li:is(.current-menu-item, .current-menu-ancestor, :hover, :focus-within)::before {
    /* current menu item indicator if active */
    width: 100%;
  }
  .header-nav .menu > li:is(.menu-item-has-children) > a::after {
    color: var(--color-secondary);
  }
  .header-nav .menu > li > ul {
    top: 100%;
    left: 0;
  }
  .header-nav .menu > li > ul ul {
    background-color: rgb(241, 242, 244);
  }
  .header-nav .menu ul ul ul {
    left: calc(var(--layout-header-menu-nontouch-dropdown-padding-x) * 2);
    top: 100%;
    transform: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-nav .menu > li > a {
    padding-block: 0.75rem 0.5rem;
  }
  .header-nav .menu > li:nth-last-child(-n+2) > ul {
    left: auto;
    transform: none;
    right: 0;
  }
  .header-nav .menu > li:nth-last-child(-n+2) > ul ul {
    right: calc(var(--layout-header-menu-nontouch-dropdown-padding-x) * 2);
    left: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .header-nav .menu {
    gap: 15px;
  }
  .header-nav .menu ul {
    width: 280px;
  }
}
@media only screen and (min-width: 1900px) {
  .header-nav .menu {
    gap: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .menu {
    background: var(--color-light-alt);
    color: var(--color-dark);
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 25px;
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    box-shadow: inherit;
    /* shift menu to the right edge and limit width. comment if not needed*/
    margin-left: auto;
  }
  .header-nav .menu li:not(.open) > ul {
    display: none;
  }
  .header-nav .menu li {
    padding-left: var(--layout-header-menu-touch-menu-padding-x);
    padding-right: var(--layout-header-menu-touch-menu-padding-x);
  }
  .header-nav .menu li ul {
    margin-left: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
    margin-right: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
  }
  .header-nav .menu li > a {
    flex: 1 0 100%;
    gap: 2px;
  }
  .header-nav .menu li:is(:hover, :focus-within, .open) > a {
    /* activated styles upon interaction for touch */
    color: var(--scheme-sp-contrast);
  }
  .header-nav .menu li:is(.open) {
    border-bottom: 0;
  }
  .header-nav .menu li:is(.open) > a {
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 0;
  }
  .header-nav .menu ul {
    margin-top: 0.25em;
  }
  .header-nav .menu li:nth-last-child(n+2) > ul {
    margin-bottom: 0.25rem;
  }
  .header-nav .menu ul {
    background-color: rgba(255, 255, 255, 0.3);
    color: inherit;
    align-self: stretch;
    order: 99;
    flex: 1 0 100%;
    /* basic borders to contrast multiple dropdown levels */
  }
  .header-nav .menu > li > ul {
    background-color: var(--color-light);
  }
  .header-nav .menu > li > ul ul {
    background-color: rgba(0, 0, 0, 0.05);
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .menu {
    max-width: 100%;
  }
  .header-nav .menu li > a {
    padding-block: 0.75em;
    justify-content: flex-start;
  }
  .header-nav .menu li:is(.menu-item-has-children) > a::after {
    margin-right: -2.5em;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes  */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-nav .menu {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-nav .menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.doc-header-menu-open.doc-header-not-sticky .header-nav .menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Form
--------------------------------------------------------------- */
#header-form .gform_wrapper {
  position: relative;
}
#header-form .gform_title:last-child {
  margin-bottom: 0;
}
#header-form .gform_description {
  max-width: 80ch;
}
#header-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#header-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#header-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (max-width: 1199px) {
  #header-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
/* ================================================================================
* Banner
================================================================================ */
/* Layout Banner https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/banner.md
--------------------------------------------------------------- */
.banner-has-background-image {
  --layout-banner-offset: 20px;
}
@media only screen and (min-width: 768px) {
  .banner-has-background-image {
    --layout-banner-offset: 174px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image {
    --layout-banner-offset: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-has-background-image {
    --layout-banner-offset: 80px;
  }
}
.banner-no-background-image {
  /* Styles specific for when banner doesnt support background image */
}
/* CSS offset to avoid banner + main template overlap that only applies when header-overlay-on-banner class is added: pseudo element that always matches the offset. All templates main/ first sections should have this on a clean build, but you can move this class around elements as needed. You can also apply this to a page's first section if there is not banner present. set this only once to avoid shifting the document on scroll. and move to proper media query as needed
--------------------------------------------------------------- */
.has-banner .has-layout-banner-offset:is(:is(.layout-banner + *):not(:has(.has-layout-banner-offset)),
:is(.main, main) > :first-child,
:is(.main, main) > :first-child *)::before {
  content: "";
  flex: 0 0 auto;
  height: var(--layout-banner-offset);
  display: block;
  width: 100%;
}
/* CSS offset class to apply to element within the banner that will overlap things
--------------------------------------------------------------- */
.layout-banner:not(:last-child) .layout-banner-offset-element {
  margin-bottom: calc(var(--layout-banner-offset) * -1);
}

/* Layout Banner Itself
--------------------------------------------------------------- */
.layout-banner {
  padding-bottom: var(--negative-pusher);
}
@media only screen and (max-width: 767px) {
  .layout-banner {
    /* allow more space for mobile only because the design said so */
  }
  .layout-banner .container, .layout-banner-container {
    --container-fallback: 0px;
  }
}
.layout-banner .banner-background .responsive-background-bg {
  background-position: center top;
}
.banner-has-background-image .layout-banner {
  /* Styles specific for when banner has background image */
  background-color: var(--scheme-bg, var(--color-dark));
  color: var(--scheme-fg, var(--color-light));
  position: relative;
  z-index: 1;
}
.banner-no-background-image .layout-banner {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Main
--------------------------------------------------------------- */
.banner-main {
  padding-block: 3.125rem 4.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
:is(.banner-main-block, .banner-main-blocks) {
  min-width: 0;
}

.banner-main-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  align-items: center;
  align-content: center;
  grid-auto-flow: dense;
  row-gap: 1.3rem;
  -moz-column-gap: 4.25rem;
       column-gap: 4.25rem;
}
.banner-main-block, .banner-main-blocks {
  min-width: 0;
}
.banner-main-block:only-child {
  flex: 1 1;
  grid-column: 1/-1;
  grid-row: 1/-1;
  justify-self: center;
  gap: 2.75rem;
}
.banner-main-block:is(.secondary-heading-isolated) {
  grid-column: 1/-1;
  margin-bottom: 0;
  justify-self: stretch;
}
.banner-main-block:is(.banner-slider) {
  justify-self: stretch;
  grid-column: 1/-1;
  margin-top: 2rem;
}
@media only screen and (min-width: 768px) {
  .banner-main {
    padding-block: 5rem 4.25rem;
  }
  .banner-main-container {
    --container-gutter: 28px;
  }
  .banner-main-blocks {
    grid-template-columns: 1fr auto;
    row-gap: 2rem;
  }
  .banner-main-block:is(.secondary-heading-isolated, .banner-body:not(:only-child)) {
    order: -1;
  }
  .banner-main-block:is(.banner-body:not(:only-child)) {
    text-align: left;
    align-items: stretch;
    align-self: self-start;
    gap: 1.5rem;
    width: 100%;
  }
  .banner-main-block:is(.banner-video) {
    align-self: stretch;
    padding-block: 3.75rem 9.375rem;
    margin-right: -15px;
    margin-top: -1rem;
  }
  .banner-main-block:is(.banner-video) .banner-video-body {
    margin-inline: -74px 24px;
  }
  .banner-main-block:is(.secondary-heading-isolated, .banner-slider) {
    align-self: self-end;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-main-blocks {
    grid-template-rows: repeat(2, auto) 1fr;
    min-height: var(--negative-pusher);
    row-gap: 2.25rem;
  }
  .banner-main-block:is(.secondary-heading-isolated, .banner-body:not(:only-child), .banner-slider) {
    grid-column: 1;
  }
  .banner-main-block:is(.secondary-heading-isolated) {
    margin-top: 0;
  }
  .banner-main-block:is(.banner-video) {
    grid-column: 2;
    grid-row: 1/-1;
    padding-block: 5.5rem 21.25rem;
    margin-right: -25px;
    margin-top: 0;
  }
  .banner-main-block:is(.banner-video) .banner-video-body {
    margin-inline: -64px 80px;
  }
  .banner-main-block:is(.banner-slider) {
    margin-top: 0;
    align-self: center;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-main-blocks {
    -moz-column-gap: 5.5rem;
         column-gap: 5.5rem;
  }
  .banner-main-block:is(.banner-video) {
    padding-block: 5.25rem 23.5rem;
    margin-right: 10px;
  }
  .banner-main-block:is(.banner-video) .banner-video-body {
    margin-inline: -88px 102px;
  }
  .banner-main-block:is(.secondary-heading-isolated) {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 1900px) {
  .banner-main {
    padding-block: 6.75rem 9.5rem;
  }
  .banner-main-container {
    --container-gutter: 83px;
  }
  .banner-main-blocks {
    -moz-column-gap: 7.5rem;
         column-gap: 7.5rem;
  }
  .banner-main-block:is(.banner-video) {
    padding-block: 4.5rem 24.25rem;
    margin-right: -31px;
  }
  .banner-main-block:is(.banner-video) .banner-video-body {
    margin-inline: -203px 215px;
  }
  .banner-main-block:is(.secondary-heading-isolated) {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner-main-block:only-child {
    gap: 1.5rem;
  }
}
.banner-has-background-image .banner-main {
  /* Styles specific for when banner has background image */
  padding-block: 20px 32px;
  min-height: 325px;
}
@media only screen and (min-width: 768px) {
  .banner-has-background-image .banner-main {
    padding-block: 55px 65px;
    min-height: 350px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-main {
    padding-block: 3rem;
    min-height: 420px;
  }
}
.banner-has-background-image.header-overlay-on-banner .banner-main {
  /* Styles specific for when banner has the header overlay before scroll + Styles specific for when banner has background image */
}
.banner-no-background-image .banner-main {
  /* Styles specific for when banner doesnt support background image OR global fallback heading*/
}
/* Banner Body
--------------------------------------------------------------- */
.banner-body {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 2.25rem;
}
@media only screen and (min-width: 1200px) {
  .banner-body {
    gap: 2rem;
  }
}
.banner-has-background-image .banner-body {
  /* Styles specific for when banner has background image */
  gap: 1.25rem;
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-body {
    gap: 2.75rem;
  }
}
.banner-has-background-image:not(.banner-has-background-image-customized.ilaw-default) .banner-body {
  /* Styles specific for when banner has background image customized */
}
.banner-no-background-image .banner-body {
  /* Styles specific for when banner doesnt support background image */
}
/* Global Banner Text
--------------------------------------------------------------- */
.banner-text {
  max-width: 100%;
  flex-direction: column;
  display: flex;
  gap: 0;
}
.banner-has-background-image .banner-text {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-text {
  /* Styles specific for when banner doesnt support background image */
}
/* Global Secondary Heading
--------------------------------------------------------------- */
.secondary-heading {
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-family: var(--font-accent);
  color: var(--scheme-fg);
  letter-spacing: 0.025em;
  text-transform: none;
  font-style: normal;
  font-weight: 500;
}
.secondary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
.secondary-heading::before,
.secondary-heading > span::before {
  font-size: 0.65em;
  color: var(--scheme-sp);
  font-style: normal;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .secondary-heading {
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .secondary-heading > span {
    display: flex;
    align-items: center;
  }
  .secondary-heading > span:nth-child(n+2)::before {
    color: var(--color-secondary);
    content: "\25CF\FE0E";
    margin-inline: 0.5em;
  }
}
@media only screen and (min-width: 1200px) {
  .secondary-heading {
    font-size: 20px;
    margin-bottom: 0;
  }
  .secondary-heading > span:nth-child(n+2)::before {
    margin-inline: 1em;
  }
}
@media only screen and (min-width: 1400px) {
  .secondary-heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .secondary-heading > span {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .secondary-heading {
    font-size: 15px;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-inline: auto;
  }
  .secondary-heading::after {
    content: "\25CF\FE0E" "\25CF\FE0E";
    letter-spacing: 0.312rem;
    font-size: 12px;
    color: var(--color-secondary);
    display: block;
  }
  .secondary-heading > span {
    display: block;
  }
}
.banner-has-background-image .secondary-heading {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .secondary-heading {
  /* Styles specific for when banner doesnt support background image */
}
.secondary-heading.secondary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
}
.secondary-heading.secondary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
/* Global Primary Heading
--------------------------------------------------------------- */
/* Note: default styles are set to custom internal templates w/ no banner background images  (Case Results, Testimonials, etc.) to reduce repetitive styles and or lengthy selectors */
.primary-heading {
  /* Global Styles / custom page template heading styles (Testimonials Grid, Attorney Grid, etc.) */
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 0;
}
.primary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
@media only screen and (max-width: 767px) {
  .primary-heading {
    font-size: 45px;
  }
}
.primary-heading.primary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
}
@media only screen and (max-width: 1199px) {
  .primary-heading.primary-heading-default {
    font-size: 42px;
    line-height: 57px;
  }
}
@media only screen and (max-width: 767px) {
  .primary-heading.primary-heading-default {
    font-size: 37px;
    line-height: 47px;
    margin-top: -0.75rem;
  }
}
.primary-heading.primary-heading-default-h1 {
  /* Styles specific for default template primary heading set as an h1 (Single Post, Single Page) */
}
.primary-heading.primary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.primary-heading.primary-heading-blog-title {
  /* Styles specific for blog post/ blog archive custom primary heading set as blog page's title eg 'Our Blog', 'Firm Blog', etc... Note: This will be an H1 on Blog/Archive but not in Single Posts for SEO (Single Posts, Blog/ Archive) */
}
.layout-banner .primary-heading {
  /* Styles specific for when it's inside a banner */
}
.primary-heading.h1-fallback-heading {
  /* Styles specific for when banner does not exist/ rendered as a helper class for the fallback h1 */
  display: inline-block;
  margin-bottom: 1em;
}
.banner-has-background-image .primary-heading {
  /* Styles specific for when banner has background image */
  color: inherit;
}
.layout-banner .banner-has-background-image .primary-heading {
  text-shadow: 0 2px 0.125em var(--scheme-bg, var(--color-dark));
}
.banner-no-background-image .primary-heading {
  /* Styles specific for when banner doesnt support background image */
}
@media only screen and (min-width: 1200px) {
  .banner-no-background-image .primary-heading {
    font-size: 60px;
  }
}
/* Banner Slider (Optional depending on comps)
--------------------------------------------------------------- */
.banner-slider:is(.swiper) {
  --swiper-custom-arrow-offset-x: 40px;
  --swiper-custom-arrow-offset-x-negate: 0;
}
.banner-slider .testimonial-stars svg * {
  fill: var(--scheme-sp);
}
@media only screen and (min-width: 1200px) {
  .banner-slider:is(.swiper) {
    --swiper-custom-arrow-offset-x: 42px;
    --swiper-custom-arrow-offset-x-negate: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-slider:is(.swiper) {
    --swiper-custom-arrow-offset-x: 56px;
    --swiper-custom-arrow-offset-x-negate: 0;
  }
}
@media only screen and (min-width: 1900px) {
  .banner-slider:is(.swiper) {
    --swiper-custom-arrow-offset-x-negate: var(--swiper-custom-arrow-offset-x);
  }
}
/* Banner video (Optional depending on comps)
--------------------------------------------------------------- */
.banner-video {
  text-align: center;
}
.banner-video .video-button {
  --video-button-size: 58px;
}
.banner-video .video-thumbnail {
  width: 268px;
}
.banner-video .video-thumbnail:has(+ .banner-video-cta) .video-button {
  top: -17%;
}
@media only screen and (min-width: 768px) {
  .banner-video .video-thumbnail:has(+ .banner-video-cta) .video-button {
    top: 7%;
  }
}
.banner-video-body {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
}
.banner-video-body::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.6;
  background: linear-gradient(to bottom, transparent 5%, var(--color-dark) 100%);
}
.banner-video-cta {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding-inline: 1em;
  padding-block: 1.25em;
  z-index: 1;
  pointer-events: none;
  font-size: 14px;
}
.banner-video-cta.video-button {
  display: block;
}
@media only screen and (min-width: 768px) {
  .banner-video .video-button {
    --video-button-size: 58px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-video .video-button {
    --video-button-size: 76px;
  }
  .banner-video .video-thumbnail {
    width: 350px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-video .video-button {
    --video-button-size: 70px;
  }
  .banner-video .video-thumbnail {
    width: 392px;
  }
  .banner-video-cta {
    padding-block: 1.75em;
    font-size: 15px;
  }
}
@media only screen and (min-width: 1900px) {
  .banner-video .video-button {
    --video-button-size: 84px;
  }
}
.banner-has-background-image .banner-video {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-video {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Content (Optional depending on comps)
--------------------------------------------------------------- */
.banner-content {
  width: 90%;
  margin-inline: auto;
}
.banner-has-background-image .banner-content {
  /* Styles specific for when banner has background image */
  color: var(--color-accent);
}
.banner-no-background-image .banner-content {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Buttons
--------------------------------------------------------------- */
.banner-buttons {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.banner-buttons-touch {
  text-align: inherit;
  margin-top: 3.25rem;
  margin-bottom: 55px;
}
.banner-buttons-touch:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .banner-button-shift .banner-buttons-touch, .banner-has-h1.banner-button-shift .banner-buttons-touch + hr {
    /* hide buttons outside of banner */
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .banner-buttons-touch {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .banner-button-shift .layout-banner .banner-buttons {
    /* hide buttons inside of banner */
    display: none;
  }
}

/* Banner Form
--------------------------------------------------------------- */
#banner-form .field-form {
  margin-left: auto;
  margin-right: auto;
}
#banner-form .gform_title:last-child {
  margin-bottom: 0;
}
#banner-form .gform_description {
  max-width: 80ch;
}
#banner-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#banner-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#banner-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#banner-form .field-form-body {
  position: relative;
  padding-bottom: 2rem;
}
#banner-form.required-message {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 100%;
}
@media only screen and (max-width: 1199px) {
  #banner-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 767px) {
  #banner-form .field-form-body {
    position: relative;
    padding-bottom: 2rem;
  }
  #banner-form .gfield.required-message {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 100%;
  }
}

/* ================================================================================
* Sidebar
================================================================================ */
/* Layout Sidebar https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/sidebar.md
--------------------------------------------------------------- */
/* Sidebar Form
--------------------------------------------------------------- */
#sidebar-form {
  background: linear-gradient(to bottom, var(--color-accent-gradient-start), var(--color-accent-gradient-end));
  color: var(--color-light);
  --widget-padding-x: 28px;
  --widget-padding-top: 20px;
  --widget-padding-bottom: 56px;
  --fancy-box-pseudo-background: var(--color-dark);
  --fancy-box-pseudo-offset-top: -190px;
  --fancy-box-pseudo-offset-bottom: -25px;
  --fancy-box-pseudo-offset: 25px;
  max-width: 363px !important;
}
#sidebar-form::after {
  left: -25px;
  right: -25px;
}
#sidebar-form .gform_title {
  font-size: 40px;
  line-height: 50px;
  margin-inline: -1rem;
}
#sidebar-form .gform_title:last-child {
  margin-bottom: 0;
}
#sidebar-form .gform_description {
  max-width: 80ch;
}
#sidebar-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#sidebar-form .gform_button {
  --button-padding-x: 35px;
}
#sidebar-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 1.5rem;
}
#sidebar-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#sidebar-form .field-form-body {
  position: relative;
}
@media only screen and (min-width: 1400px) {
  #sidebar-form {
    --widget-padding-x: 40px;
    max-width: 394px !important;
  }
  #sidebar-form .gform_fields {
    gap: 1.25rem;
  }
}
@media only screen and (min-width: 1900px) {
  #sidebar-form {
    --widget-padding-x: 45px;
  }
}
/* ================================================================================
Contact Info
================================================================================ */
/* Layout Contact https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/contact.md
-------------------------------------------------------------------------------- */
/* Contact  Related Classes

Note: 
This file is for styles applied globally for the contact information globally

For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Contact Page only overrides for the contact informatio, apply styles to templates/template-contact.scss -> #contact-page
For Footer section only overrides for the contact informatio, apply styles to layout/layout-footer.scss -> .footer-contact styles section
-------------------------------------------------------------------------------- */
/* Global Stylees - Numbers (eg. header phone number, footer phone number, etc.)
-------------------------------------------------------------------------------- */
.number-link {
  font-size: 1.25rem;
  line-height: calc(1em + 10px);
  color: inherit;
  display: inline-block;
}
/* Global Stylees - Locations
-------------------------------------------------------------------------------- */
/* Global Stylees - Social Links (ie. firm social media, blog share icons, etc)
-------------------------------------------------------------------------------- */
.social {
  font-size: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.375em;
  color: var(--scheme-sb, inherit);
}
.social li {
  list-style: none;
}
.social li a {
  color: inherit;
}
.social li a svg * {
  fill: currentColor;
}
.social li:is(:hover, :focus) {
  color: var(--color-secondary);
}
/* Confact Info Block - Titles
-------------------------------------------------------------------------------- */
.contact-block-title {
  font-size: 20px;
  line-height: 32px;
  color: var(--color-secondary);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
}
.contact-block-title > span {
  font-weight: 400;
  font-size: 16px;
}
.contact-block-title.fancy-border {
  margin-bottom: var(--fancy-border-margin-y, 1.25rem);
  --fancy-border-margin-y: .65em;
}
/* Confact Info Block - Basic Text Content
-------------------------------------------------------------------------------- */
.contact-block-content {
  flex: 1 1;
  font-size: 18px;
  line-height: 32px;
}
.contact-block-content ~ .contact-block-content {
  margin-top: 2.625rem;
}
:where(.contact-block-content :where(a)) {
  color: inherit;
  text-decoration: none;
}
:where(.contact-block-content :where(a)):where(:hover, :focus) {
  text-decoration: underline;
}

:where(.contact-block-content :where(p, address):where(:nth-last-child(n+2))) {
  margin-bottom: 1.25em;
}

/* Confact Info Block - Grid setup
-------------------------------------------------------------------------------- */
.contact-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  justify-content: center;
  text-align: center;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
  row-gap: 55px;
  align-items: stretch;
}
.contact-block, .contact-blocks {
  min-width: 0;
}
.contact-block {
  width: 100%;
}
.contact-block:is(:only-child, :only-of-type) {
  grid-column: 1/-1;
}
.contact-block, .contact-block-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .contact-blocks {
    grid-template-columns: repeat(2, auto);
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
  .contact-block:where(:last-child:nth-last-child(odd)) {
    grid-column: 1/-1;
  }
}
.contact-block.contact-special {
  text-align: center;
  max-width: 100%;
  align-items: center;
  align-self: center;
}
.contact-block.contact-special .logo {
  margin: 0 auto;
}
@media only screen and (max-width: 1199px) {
  .contact-block.contact-special {
    grid-column: 1/-1;
    order: 9999;
  }
}
.contact-block:is(.contact-number, .contact-numbers) {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.contact-block:is(.contact-number, .contact-numbers) .number-title {
  font-size: 14px;
  color: var(--color-secondary);
  letter-spacing: 0.09em;
  font-weight: 700;
}
.contact-block:is(.contact-number, .contact-numbers) .number-link {
  font-size: 22px;
}
.contact-block.contact-number {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.contact-block.contact-numbers {
  /*
  @Variation B: One block
  Requires PHP: templates/template-contact.php - @Variation B: One block
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numbersColumn / @Variation B: One block
  */
}
.contact-block.contact-numbers .contact-numbers-content {
  flex: 0 0;
  row-gap: 0.25rem;
  display: grid;
}
.contact-block:is(.contact-location, .contact-locations) .location-directions {
  margin-top: 0;
}
.contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
.contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
.contact-block.contact-locations .contact-locations-content {
  row-gap: 4rem;
  display: grid;
}
.contact-block:is(.contact-list, .contact-lists) {
  max-width: -moz-max-content;
  max-width: max-content;
}
.contact-block:is(.contact-list, .contact-lists) .list-block-items {
  display: flex;
  flex-direction: column;
}
.contact-list-email {
  /* This is an example and can be omitted if not needed. each column added here will be separated by a class named after the block's title, unless the corresponding layout-contact.php markup has been modified.  */
  font-size: 1.5em;
  font-family: var(--font-secondary);
}

.contact-block.contact-lists .contact-lists-content {
  row-gap: 4rem;
  display: grid;
}
/* ================================================================================
* Footer
================================================================================ */
/* Layout Footer https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/footer.md
--------------------------------------------------------------- */
:root {
  --layout-footer-offset: 193px;
}
@media only screen and (min-width: 1400px) {
  :root {
    --layout-footer-offset: 210px;
  }
}
/* CSS offset to avoid footer + main template overlap that only applies when header-overlay-on-footer class is added: pseudo element that always matches the offset. All templates main/ first sections should have this on a clean build, but you can move this class around elements as needed. You can also apply this to a page's first section if there is not footer present. set this only once to avoid shifting the document on scroll. and move to proper media query as needed
--------------------------------------------------------------- */
.footer-has-form .has-layout-footer-offset:is(:is(.template-wrapper > :last-child):not(:has(.has-layout-footer-offset)),
:is(.main, main) > :last-child,
:is(.main, main) > :last-child *)::after {
  content: "";
  flex: 0 0 auto;
  height: var(--layout-footer-offset);
  display: block;
  width: 100%;
}

/* CSS offset class to apply to element within the banner that will overlap things
--------------------------------------------------------------- */
.template-wrapper:not(:has(.layout-banner:last-child)) + .layout-footer .layout-footer-offset-element {
  background: linear-gradient(to bottom, var(--color-accent-gradient-start), var(--color-accent-gradient-end));
  margin-top: calc((var(--layout-footer-offset) + var(--negative-pusher)) * -1);
  position: relative;
  z-index: 1;
}

/* Branding logo sizes
--------------------------------------------------------------- */
:is(.ilawyer-legacy, .ilawyer, .onep21, .ihealth) {
  color: inherit;
}

.ilawyer-legacy,
.ilawyer {
  font-size: 18px;
}

.onep21 {
  font-size: 50px;
}

.ihealth {
  font-size: 34px;
}

/* Layout Footer
--------------------------------------------------------------- */
.layout-footer {
  background-color: var(--scheme-bg, var(--color-dark));
  color: var(--scheme-fg, var(--color-light));
  padding-top: var(var(--negative-pusher));
}
@media only screen and (max-width: 767px) {
  .layout-footer {
    /* allow more space for mobile only because the design said so */
  }
  .layout-footer-container {
    --container-fallback: 10px;
  }
}
.footer-no-contact .layout-footer {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact .layout-footer {
  /* Styles/Selectors for when nested layout-contact is enabled */
}

/* Footer Split - Top
--------------------------------------------------------------- */
.footer-top {
  padding-block: 40px;
}
@media only screen and (min-width: 768px) {
  .footer-top {
    padding-block: 65px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-top {
    padding-block: 4.5rem;
  }
  .footer-top-container {
    --container-gutter: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-top {
    padding-block: 6.5rem;
  }
}
.footer-no-contact .footer-top {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact .footer-top {
  /* Styles/Selectors for when nested layout-contact is hidden*/
  padding-bottom: 0;
}
.footer-has-contact .footer-top-container {
  --container-gutter: 15px;
}
@media only screen and (min-width: 768px) {
  .footer-has-contact .footer-top-container {
    --container-gutter: 32px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-has-contact .footer-top-container {
    --container-gutter: 48px;
  }
}
/* Footer Form
--------------------------------------------------------------- */
#footer-form {
  width: 1120px;
  max-width: 100%;
  margin-inline: auto;
}
#footer-form .gform_description {
  font-weight: 700;
}
#footer-form .gform_description:is(.h1) {
  font-size: 40px;
  line-height: 50px;
}
#footer-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#footer-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#footer-form .gform_button {
  min-width: 208px;
  --button-padding-x: 1.5em;
}
#footer-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (min-width: 768px) {
  #footer-form .gform_heading {
    margin-bottom: 4rem;
  }
  #footer-form .gform_title.fancy-border {
    --fancy-border-width: 271px;
  }
  #footer-form .gform_description:is(.h1) {
    font-size: 50px;
    line-height: 60px;
  }
  #footer-form .gform_fields {
    row-gap: 28px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
  #footer-form .gform_footer {
    margin-top: 0.5rem;
  }
  #footer-form .gfield.required-message {
    margin-top: -1em;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form .gform_fields {
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  #footer-form .gform_description:is(.h1) {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  #footer-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: span 6;
  }
  #footer-form .gform_fields .gfield:not(.gfield-width-full).gfield--type-textarea {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 767px) {
  #footer-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
.footer-no-contact #footer-form {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact #footer-form {
  /* Styles/Selectors for when nested layout-contact is enabled */
}

/* Footer Contact

Note: 
This file is for Footer only overrides for the contact information
For Footer section only overrides for the contact informatio, apply styles to layout/layout-footer.scss -> .footer-contact styles section
For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Contact Page only overrides for the contact informatio, apply styles to templates/template-contact.scss -> #contact-page
--------------------------------------------------------------- */
.footer-contact {
  padding-block: 4rem;
}
@media only screen and (min-width: 768px) {
  .footer-contact {
    padding-block: 60px 65px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-contact {
    padding-block: 75px 90px;
    padding-inline: 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-contact {
    padding-block: 100px 110px;
    padding-inline: 5rem;
  }
}
@media only screen and (min-width: 1900px) {
  .footer-contact {
    padding-inline: 18rem;
  }
}
@media only screen and (min-width: 768px) {
  .footer-contact .contact-blocks {
    row-gap: 2.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-contact .contact-blocks {
    grid-template-columns: repeat(3, auto);
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: space-between;
  }
  .footer-contact .contact-block:where(:last-child:nth-last-child(odd)) {
    grid-column: auto;
  }
}
.footer-contact .contact-block:is(.contact-number, .contact-numbers) {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.footer-contact .contact-block:is(.contact-number, .contact-numbers) .number-link {
  font-size: 18px;
}
.footer-contact .contact-block.contact-numbers {
  /* Phone number - Contact Block Grid */
  /*
  @Variation B One Block
  Requires PHP: templates/template-contact.php - @Variation B One Block
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation B One Block
  */
}
.footer-contact .contact-block.contact-number {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.footer-contact .contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
.footer-contact .contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
/* Footer Split - Bottom
--------------------------------------------------------------- */
.footer-no-contact .footer-bottom {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact .footer-bottom {
  /* Styles/Selectors for when nested layout-contact is enabled */
}

/* Footer utility
--------------------------------------------------------------- */
.footer-utility {
  padding-block: 30px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 500;
  /* border separation */
}
.footer-utility:nth-child(n+2) {
  border-top: 1px solid;
  margin-top: 4rem;
}
.footer-utility-blocks {
  display: grid;
  row-gap: 30px;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
.footer-utility-content :is(li) {
  display: inline;
  margin: 0;
}
.footer-utility-content :is(li):nth-child(n+2)::before {
  content: "\2022\FE0E";
  display: inline-block;
  margin: 0 0.5em 0 0.25em;
}
@media only screen and (min-width: 768px) {
  .footer-utility-blocks {
    row-gap: 18px;
  }
  .footer-utility-content :is(p:not(.footer-disclaimer),
  ul) {
    display: inline;
    margin: 0;
  }
  .footer-utility-content :is(p:not(.footer-disclaimer),
  ul):nth-child(n+2)::before {
    content: "\2022\FE0E";
    display: inline-block;
    margin: 0 0.5em 0 0.25em;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-utility-blocks {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-utility-content {
    margin-right: auto;
    order: -1;
  }
  .footer-utility-content:first-child:nth-last-child(2) {
    grid-column: span 2;
  }
  .footer-utility .social {
    text-align: center;
  }
  .footer-utility .social::before {
    content: none;
  }
  .footer-utility :is(.ilawyer-legacy, .ilawyer, .onep21, .ihealth) {
    order: 99;
    justify-self: self-end;
    align-self: center;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-utility-blocks {
    text-align: center;
    justify-content: center;
    justify-items: center;
  }
}
.footer-no-contact .footer-utility {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact .footer-utility {
  /* Styles/Selectors for when nested layout-contact is enabled */
}

/* Footer logo
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .footer-brand-logo {
    justify-self: self-end;
  }
}
/* Footer disclaimer
--------------------------------------------------------------- */
.footer-disclaimer {
  margin-top: 1em;
}
/* ================================================================================
* Internals/ Default
================================================================================ */
/*!
* Default Sections: Main + Aside: Can also be reused on other templates with similar wireframes (eg. Profile Page, etc.)
-------------------------------------------------------------------------------- */
/* Default Sections: Main + Aside: Skeletons - no need to edit
--------------------------------------------------------------- */
.default-sections {
  gap: var(--default-gap-y) var(--default-gap-x);
}
.default-sections, .default-section, .default-section-main, .default-section-sidebar {
  min-width: 0; /* grid/flex fixes*/
  max-width: 100%;
}
.default-section-main {
  width: 100%;
}
.default-section-sidebar {
  width: var(--default-sidebar-width);
  padding-top: 18rem;
}
.default-sections.default-sections-float :where(.default-section, .default-section-main, .default-section-sidebar) {
  margin-left: auto;
  margin-right: auto;
}
.default-sections.default-sections-float :where(.default-section, .default-section-main, .default-section-sidebar):where(:nth-last-child(n+2)) {
  margin-bottom: var(--default-gap-y);
}
.default-sections:is(.default-sections-split, .default-sections-full) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.default-sections.default-sections-grid {
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  .default-section {
    /* 2 column styles. move to media queries by design as needed */
  }
  .default-section-main {
    max-width: calc(var(--comp) - var(--default-sidebar-width) - var(--container-gutter, 0px) * 2 - var(--default-gap-x));
  }
  .default-section-sidebar {
    order: 9;
  }
  .default-sections:is(.default-sections-split, .default-sections-full) {
    flex-direction: row;
    align-items: normal;
    justify-content: center;
  }
  .default-sections.default-sections-reverse .default-section-sidebar {
    order: -1;
  }
  .default-sections.default-sections-reverse .default-section-main {
    order: 9;
  }
  .default-sections.default-sections-float::after {
    content: "";
    font-size: 0;
    visibility: hidden;
    height: 0;
    clear: both;
    display: table;
    width: 100%;
    flex: 0 0 auto;
  }
  .default-sections.default-sections-float .default-section-sidebar {
    float: right;
    clear: right;
  }
  .default-sections.default-sections-float .default-section-main {
    float: left;
    clear: left;
    width: calc(100% - (var(--default-sidebar-width)) - var(--default-gap-x));
  }
  .default-sections.default-sections-float .default-section-main:only-child {
    /* no sidebar adjust */
    float: none;
  }
  .default-sections.default-sections-float.default-sections-reverse .default-section-sidebar {
    float: left;
    clear: left;
  }
  .default-sections.default-sections-float.default-sections-reverse .default-section-main {
    float: right;
    clear: right;
  }
  .default-sections:is(.default-sections-split, .default-sections-full) .default-section-sidebar {
    flex: 0 0 auto;
  }
  .default-sections:is(.default-sections-split, .default-sections-full) .default-section-main {
    flex: 1 1;
  }
  .default-sections.default-sections-full {
    --default-gap-x: 0rem;
  }
  .default-sections.default-sections-full .default-section-main {
    margin-left: auto;
    margin-right: auto;
  }
  .default-sections.default-sections-grid {
    grid-template-columns: 1fr var(--default-sidebar-width);
    grid-column-gap: var(--default-gap-x);
  }
  .default-sections.default-sections-grid .default-section-main {
    justify-self: center;
    grid-column: 1;
  }
  .default-sections.default-sections-grid:not(.default-sections-no-autocenter) .default-section-main:only-child {
    /* no sidebar adjust */
    grid-column: span 2 !important;
  }
  .default-sections.default-sections-grid .default-section-sidebar {
    grid-column: 2;
  }
  .default-sections.default-sections-grid .default-section-main, .default-sections.default-sections-grid .default-section-sidebar {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }
  .default-sections.default-sections-grid.default-sections-reverse {
    grid-template-columns: var(--default-sidebar-width) 1fr;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-main {
    grid-column: 2;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-sidebar {
    grid-column: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .default-sections.default-sections-full .default-section-sidebar {
    align-self: stretch;
    width: 100%;
  }
  .default-sections:not(.default-sections-full) > .default-section:is(aside, .aside):not(:only-child) {
    padding-top: 0;
  }
  .default-sections:not(.default-sections-full) > .default-section:is(main, .main):not(:only-child) {
    padding-bottom: 0;
  }
}

/* Default Sections Customizations
--------------------------------------------------------------- */
.default-sections {
  --default-sidebar-width: 100%;
  --default-gap-x: 60px;
  --default-gap-y: 3.4375rem;
}
@media only screen and (min-width: 768px) {
  .default-sections {
    --default-gap-y: 4.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .default-sections {
    --default-sidebar-width: 410px;
    --default-gap-x: 60px;
    --default-gap-y: 7.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .default-sections {
    --default-sidebar-width: 443px;
    --default-gap-x: 66px;
    --default-gap-y: 7rem;
  }
}
@media only screen and (min-width: 1900px) {
  .default-sections {
    --default-gap-x: 115px;
  }
}
@media only screen and (min-width: 1200px) {
  .default-sections.default-sections-split .default-section-sidebar-container {
    --container-gutter: 1rem;
  }
}
.default-sections.default-sections-full .default-section-sidebar {
  background: var(--scheme-bg-contrast, var(--color-light-alt));
}
@media only screen and (min-width: 1200px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 120px;
  }
}
@media only screen and (min-width: 1900px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 250px;
  }
}
/* Default Entries
-------------------------------------------------------------------------------- */
.entry-thumbnail {
  --entry-thumbnail-aspect-w: 648;
  --entry-thumbnail-aspect-l: 260;
  display: block;
  margin-bottom: 2rem;
}
.entry-thumbnail:nth-child(n+2) {
  margin-top: 2rem;
}
.entry-thumbnail:is(a) {
  color: inherit;
}
.entry-thumbnail-img {
  position: relative;
  overflow: hidden;
  background: var(--scheme-bg-contrast, var(--color-light-alt));
}
.entry-thumbnail-img::before {
  content: "";
  display: block;
  padding-top: calc(100% * var(--entry-thumbnail-aspect-l) / var(--entry-thumbnail-aspect-w));
}
.entry-thumbnail-img::after {
  content: "No Image Available";
  opacity: 0.2;
  font-size: 1.5rem;
  line-height: 1.125;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2em;
}
.entry-thumbnail-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
  z-index: 1;
}
.entry-meta {
  font-size: 15px;
  letter-spacing: 0em;
  text-transform: none;
  margin-bottom: 15px;
}
.entry-meta-category::before {
  display: inline-block;
  content: "\25CF\FE0E";
  font-size: 13px;
  margin-inline: 11px;
  vertical-align: middle;
  color: var(--color-secondary-alt);
}
.entry-meta-category a:not(:hover, :focus) {
  text-decoration: underline;
  color: var(--color-primary);
}
.entry-meta-category a:is(:hover, :focus) {
  color: var(--color-primary);
}
.entry-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.entry-read-more {
  font-size: 13px;
}
.entries .entry {
  display: grid;
  justify-content: space-between;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 2rem;
}
.entries .entry:nth-child(n+2) {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color-neutral-light);
}
.entries .entry-thumbnail {
  margin-bottom: 0;
}
.entries .entry-thumbnail, .entries .entry-body {
  /* grid fix */
  min-width: 0;
}
@media only screen and (min-width: 1400px) {
  .entries .entry {
    grid-template-columns: 250px 1fr;
  }
  .entries .entry-thumbnail {
    --entry-thumbnail-aspect-w: 250;
    --entry-thumbnail-aspect-l: 200;
  }
  .entries .entry-body {
    align-self: center;
  }
  .entries .entry-body:only-child {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 1199px) {
  .entry-thumbnail {
    --entry-thumbnail-aspect-w: 648;
    --entry-thumbnail-aspect-l: 260;
  }
}
/*!
* Default Header
-------------------------------------------------------------------------------- */
.default-header :is(*.h1, :where(h1)) {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .banner-has-h1.banner-button-shift .default-header {
    margin-bottom: 0;
  }
}
/*
* Default Layout/Template https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/default.md
-------------------------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  .layout-default-sections-simple .layout-default-aside {
    max-width: var(--default-sidebar-width);
  }
}
/*!
* Default Heading
-------------------------------------------------------------------------------- */
.default-heading {
  margin-bottom: 2rem;
}
/*!
* Default Divider - Optional
-------------------------------------------------------------------------------- */
.default-divider {
  --fancy-border-margin-y: 2.25rem;
}
@media only screen and (min-width: 768px) {
  .default-divider {
    --fancy-border-margin-y: 30px;
  }
}
/*!
* Search Form
* Although optional, some builds may include this OR request this in the long run. Since it's built in to wordpress, we might as well at least give it some basic styles. Overhaul as needed
-------------------------------------------------------------------------------- */
.searchform {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}
.searchform:nth-last-child(n+2) {
  margin-bottom: 2rem;
}
.searchform .button {
  order: 99;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.searchform input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=image]):not([type=file]) {
  --field-border-radius: .5rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.blog .default-section-sidebar {
  padding-top: 90px;
}

/* ================================================================================
* Home Template
================================================================================ */
/* Template Home https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/home.md
-------------------------------------------------------------------------------- */
/*
* Home Related Classes
-------------------------------------------------------------------------------- */
:where(.home-section):where(:not(.banner-no-background-image :is(main, .main, aside, .aside))) {
  padding-block: 3.25rem 90px;
}
:where(.home-section):where(:has(.section-body:where(.scheme-applied-contrast-bg))) {
  padding-block: calc(var(--negative-pusher));
}
@media only screen and (max-width: 1199px) {
  :where(.home-section) .section-body:where(.scheme-applied-contrast-bg) {
    margin-inline: calc(var(--container-gutter) * -1);
  }
}
:where(.home-section) .section-header, :where(.home-section) .section-footer {
  /* set centering as a scaffolding setting for all sections */
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
:where(.home-section) .section-header:where(:nth-last-child(n+2)) {
  margin-bottom: 2rem;
}
:where(.home-section) .section-header:where(:nth-last-child(n+2)):where(.fancy-border-after) {
  margin-bottom: var(--fancy-border-margin-y, 2rem);
}
:where(.home-section) .section-image {
  max-width: 100%;
}
:where(.home-section) .section-image :where(img, picture) {
  display: block;
  width: 100%;
}
:where(.home-section) .section-blocks {
  display: grid;
  grid-template-columns: 100%;
  gap: 2rem;
}
:where(.home-section) .section-block:where(.section-header) {
  margin-bottom: 0;
}
:where(.home-section) .section-block:where(.section-footer) {
  margin-top: 0;
}
:where(.home-section) .section-block:where(:only-child) {
  grid-column: 1/-1;
}
:where(.home-section) .section-block, :where(.home-section) .section-blocks {
  min-width: 0;
}
:where(.home-section) .section-content > .content:only-child {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
:where(.home-section) .section-content:where(.columns) {
  justify-content: center;
}
:where(.home-section) .section-content:where(.columns-grid) {
  justify-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
:where(.home-section) .section-content:where(.columns-grid) > .content:only-child {
  grid-column: 1/-1;
}
:where(.home-section) .section-content:where(.columns-grid) > .content:not(:only-child) {
  max-width: 33em;
}
:where(.home-section) .section-footer:where(:nth-child(n+2)) {
  margin-top: 2rem;
}
:where(.home-section) .section-heading:where(:last-child) {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  :where(.home-section) .section-header, :where(.home-section) .section-footer {
    /* set centering as a scaffolding setting for all sections */
    text-align: center;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
* Home Template
-------------------------------------------------------------------------------- */
body.onep21-template-home {
  /* body selector for home template */
  --layout-banner-offset: 275px;
}
@media only screen and (min-width: 768px) {
  body.onep21-template-home {
    --layout-banner-offset: 190px;
  }
}
@media only screen and (min-width: 1400px) {
  body.onep21-template-home {
    --layout-banner-offset: 210px;
  }
}
#home-banner .banner-background .responsive-background-bg::after {
  content: none;
}
#home-banner .container {
  --container-fallback: 10px;
}
#home-banner .banner-main {
  min-height: 860px;
  padding-block: 20px 3rem;
  background: linear-gradient(to bottom, var(--color-accent-gradient-start), var(--color-accent-gradient-end));
}
#home-banner .secondary-heading {
  color: var(--color-secondary);
}
#home-banner .secondary-heading::after {
  display: none;
}
#home-banner .secondary-heading > span {
  display: flex;
  gap: 8px;
}
#home-banner .secondary-heading > span:before {
  content: "\25CF\FE0E";
  font-size: 0.75em;
  color: var(--color-light);
  font-style: normal;
}
#home-banner .primary-heading {
  font-size: 32px;
  line-height: 42px;
  margin-top: -0.25rem;
}
#home-banner .banner-buttons {
  margin-top: 0.75rem;
}
#home-banner .result-value {
  color: inherit;
}
#home-banner .result-type {
  font-weight: 400;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  #home-banner .container {
    --container-fallback: 28px;
  }
  #home-banner .banner-main {
    min-height: 813px;
    padding-block: 55px 60px;
  }
  #home-banner .banner-main-container {
    --container-gutter: 40px;
  }
  #home-banner .banner-main-block {
    gap: 0.5rem;
  }
  #home-banner .banner-main-blocks {
    row-gap: 50px;
  }
  #home-banner .secondary-heading {
    font-size: 16px;
  }
  #home-banner .secondary-heading span:first-child:before {
    display: none;
  }
  #home-banner .secondary-heading span::before {
    margin-inline: 5px;
  }
  #home-banner .primary-heading {
    font-size: 40px;
    line-height: 55px;
  }
  #home-banner .banner-buttons {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .banner-main {
    padding-block: 75px 85px;
    justify-content: center;
    align-items: start;
  }
  #home-banner .banner-main-container {
    --container-gutter: 55px;
  }
  #home-banner .banner-main-block:only-child {
    justify-self: self-start;
  }
  #home-banner .banner-main-blocks {
    row-gap: 30px;
  }
  #home-banner .banner-slider {
    margin-top: 3rem;
  }
  #home-banner .banner-body {
    gap: 1.875rem;
  }
  #home-banner .secondary-heading {
    justify-content: flex-start;
  }
  #home-banner .secondary-heading > span {
    gap: 5px;
  }
  #home-banner .primary-heading {
    font-size: 50px;
    line-height: 65px;
  }
  #home-banner .banner-buttons {
    margin-top: 1rem;
  }
  #home-banner .banner-buttons .button {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .container {
    --container-fallback: 40px;
  }
  #home-banner .banner-main {
    min-height: 846px;
    padding-block: 4.25rem;
  }
  #home-banner .banner-main-container {
    --container-gutter: 45px;
  }
  #home-banner .banner-main-blocks {
    row-gap: 20px;
  }
  #home-banner .secondary-heading {
    font-size: 18px;
  }
  #home-banner .primary-heading {
    max-width: 730px;
    font-size: 55px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 1900px) {
  #home-banner .container {
    --container-fallback: 98px;
  }
  #home-banner .banner-main {
    padding-block: 3.75rem 65px;
  }
  #home-banner .banner-main-blocks {
    row-gap: 10px;
  }
  #home-banner .banner-main-container {
    --container-gutter: 90px;
  }
  #home-banner .banner-body {
    gap: 2.25rem;
    padding-right: 100px;
  }
  #home-banner .banner-slider {
    margin-top: 5rem;
  }
  #home-banner .secondary-heading {
    font-size: 20px;
  }
  #home-banner .primary-heading {
    max-width: 915px;
    font-size: 60px;
    line-height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  #home-banner .secondary-heading {
    margin-inline: 30px auto;
  }
}

#home-page {
  padding-top: 0;
  padding-bottom: 0;
}
/*
* Home Section 1
-------------------------------------------------------------------------------- */
.home-section-1 .section-body {
  background-color: var(--scheme-bg, var(--color-light-alt));
  padding-block: 3.5rem 50px;
}
.home-section-1 .section-body-container {
  --container-gutter: 54px;
}
.home-section-1 .section-header {
  margin-bottom: 55px;
}
@media only screen and (min-width: 768px) {
  .home-section-1 .swiper {
    --swiper-pagination-bottom: 63px;
  }
  .home-section-1 .section-body {
    padding-block: 55px 60px;
  }
  .home-section-1 .section-body-container {
    --container-gutter: 89px;
  }
  .home-section-1 .section-header {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-1 .section-body {
    padding-block: 5.5rem 80px;
    margin-left: calc(var(--container-gutter) * -1);
  }
  .home-section-1 .section-body-container {
    --container-gutter: 110px;
  }
  .home-section-1 .section-header {
    padding-left: 30px;
    margin-bottom: 4rem;
  }
  .home-section-1 .section-heading {
    font-size: 16px;
  }
  .home-section-1 .testimonial-highlight {
    max-width: 250px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-1 .section-body {
    padding-block: 5.25rem 90px;
  }
  .home-section-1 .section-body-container {
    --container-gutter: 179px;
  }
  .home-section-1 .section-header {
    padding-left: 40px;
  }
  .home-section-1 .swiper {
    --swiper-pagination-bottom: 86px;
  }
  .home-section-1 .testimonial-highlight {
    max-width: 260px;
  }
}
@media only screen and (min-width: 1900px) {
  .home-section-1 .section-body {
    padding-block: 6.25rem 100px;
  }
  .home-section-1 .section-body-container {
    --container-gutter: 264px;
  }
  .home-section-1 .section-header {
    padding-left: 90px;
  }
  .home-section-1 .swiper {
    margin-right: -10rem;
  }
}
/*
* Home Section 2
-------------------------------------------------------------------------------- */
.home-section-2 .section-divider {
  --fancy-border-width: 120px;
  --fancy-border-margin-y: 2rem;
}
.home-section-2 .section-heading {
  font-size: 42px;
  line-height: 52px;
}
.home-section-2 .section-heading:nth-last-child(n+2) {
  margin-bottom: 1.25rem;
}
.home-section-2 .section-lead {
  margin-inline: auto;
  max-width: 76.4ch;
}
.home-section-2 .section-decor {
  --fancy-pattern-t: -160px;
  --fancy-pattern-l: -60px;
  --fancy-pattern-transform: rotate(0deg) scaleX(1);
}
.home-section-2 .section-blocks {
  gap: 60px;
}
.home-section-2 .section-images {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  justify-self: center;
  align-self: center;
}
.home-section-2 .section-images :where(img) {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.home-section-2 .section-image-back {
  width: 276px;
  margin-right: 40px;
}
.home-section-2 .section-image-front {
  width: 185px;
  margin-left: auto;
  margin-top: -160px;
  box-shadow: 0px 2px 9px rgba(21, 16, 20, 0.3019607843);
}
.home-section-2 .section-footer {
  margin-top: 5rem;
}
@media only screen and (min-width: 768px) {
  .home-section-2:not(.banner-no-background-image :is(main, .main, aside, .aside)) {
    padding-block: 70px;
  }
  .home-section-2 .section-container {
    --container-gutter: 60px;
  }
  .home-section-2 .section-heading {
    font-size: 60px;
    line-height: 70px;
    margin-inline: 2rem;
  }
  .home-section-2 .section-heading:nth-last-child(n+2) {
    margin-bottom: 2.75rem;
  }
  .home-section-2 .section-blocks {
    gap: 80px;
  }
  .home-section-2 .section-lead {
    max-width: 42.4ch;
  }
  .home-section-2 .section-decor {
    --fancy-pattern-height: 935px;
    --fancy-pattern-t: -220px;
    --fancy-pattern-l: -110px;
  }
  .home-section-2 .section-image-back {
    width: 384px;
    margin-right: 54px;
  }
  .home-section-2 .section-image-back:is(.fancy-picture) {
    --fancy-picture-delay: .25s;
  }
  .home-section-2 .section-image-front {
    width: 254px;
    margin-top: -220px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-2:not(.banner-no-background-image :is(main, .main, aside, .aside)) {
    padding-block: 90px;
  }
  .home-section-2 .section-container {
    --container-gutter: 53px;
  }
  .home-section-2 .section-header {
    margin-bottom: 30px;
  }
  .home-section-2 .section-divider {
    --fancy-border-margin-y: 80px;
  }
  .home-section-2 .section-heading {
    font-size: 65px;
    line-height: 75px;
  }
  .home-section-2 .section-heading:nth-last-child(n+2) {
    margin-bottom: 1.375rem;
  }
  .home-section-2 .section-lead {
    max-width: 53ch;
  }
  .home-section-2 .section-blocks {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 65px;
  }
  .home-section-2 .section-block:is(.section-images) {
    order: -1;
    align-self: flex-start;
  }
  .home-section-2 .section-content {
    margin-right: 2rem;
  }
  .home-section-2 .section-decor {
    --fancy-pattern-height: 1305px;
    --fancy-pattern-t: -415px;
    --fancy-pattern-l: -240px;
  }
  .home-section-2 .section-image-back {
    width: 372px;
  }
  .home-section-2 .section-image-front {
    width: 247px;
    margin-top: -217px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-2:not(.banner-no-background-image :is(main, .main, aside, .aside)) {
    padding-block: 120px;
  }
  .home-section-2 .section-container {
    --container-gutter: 75px;
  }
  .home-section-2 .section-header {
    margin-bottom: 100px;
  }
  .home-section-2 .section-heading {
    font-size: 70px;
    line-height: 80px;
  }
  .home-section-2 .section-content :is(.section-divider) {
    --fancy-border-margin-l: -2.25rem;
    --fancy-border-margin-y: 30px;
  }
  .home-section-2 .section-decor {
    --fancy-pattern-height: 1404px;
    --fancy-pattern-t: -480px;
    --fancy-pattern-l: -180px;
  }
  .home-section-2 .section-blocks {
    gap: 5.25rem;
  }
  .home-section-2 .section-images {
    margin-top: 40px;
  }
  .home-section-2 .section-image-back {
    width: 382px;
    margin-right: 127px;
  }
  .home-section-2 .section-image-front {
    width: 254px;
    margin-top: -260px;
  }
  .home-section-2 .section-content {
    margin-right: initial;
  }
  .home-section-2 .section-footer {
    margin-top: 12.25rem;
  }
}
@media only screen and (min-width: 1900px) {
  .home-section-2:not(.banner-no-background-image :is(main, .main, aside, .aside)) {
    padding-block: 130px;
  }
  .home-section-2 .section-container {
    --container-gutter: 194px;
  }
  .home-section-2 .section-header {
    margin-bottom: 100px;
  }
  .home-section-2 .section-divider {
    --fancy-border-margin-y: 2.75rem;
  }
  .home-section-2 .section-content :is(.section-divider) {
    --fancy-border-margin-l: -2.25rem;
  }
  .home-section-2 .section-heading {
    font-size: 75px;
    line-height: 85px;
  }
  .home-section-2 .section-heading:nth-last-child(n+2) {
    margin-bottom: 2.5rem;
  }
  .home-section-2 .section-decor {
    --fancy-pattern-height: 1456px;
    --fancy-pattern-t: -500px;
    --fancy-pattern-l: -130px;
  }
  .home-section-2 .section-blocks {
    gap: 156px;
  }
  .home-section-2 .section-images {
    margin-top: 0;
  }
  .home-section-2 .section-image-back {
    width: 470px;
    margin-right: 157px;
  }
  .home-section-2 .section-image-front {
    width: 314px;
    margin-top: -321px;
  }
  .home-section-2 .section-content {
    align-self: self-start;
  }
}
/*
* Home Section 3
-------------------------------------------------------------------------------- */
.home-section-3 .section-body {
  padding-block: 55px 3.5rem;
  background: var(--color-light-alt);
}
.home-section-3 .section-lead {
  margin-block: 0;
  max-width: 61ch;
}
.home-section-3 .section-header {
  margin-inline: 0;
  text-align: initial;
}
.home-section-3 .section-blocks {
  gap: 60px;
  justify-content: center;
  justify-items: center;
}
.home-section-3 .section-lead {
  display: block;
  font-size: 28px;
  line-height: 40px;
}
.home-section-3 .section-lead:before {
  display: none;
}
.home-section-3 .section-image {
  width: 302px;
}
@media only screen and (min-width: 768px) {
  .home-section-3 .section-body {
    padding-block: 75px 5rem;
  }
  .home-section-3 .section-body-container {
    --container-gutter: 60px;
  }
  .home-section-3 .section-blocks {
    gap: 50px;
  }
  .home-section-3 .section-lead {
    line-height: 42px;
  }
  .home-section-3 .section-image {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-3 .section-container {
    --container-gutter: 30px;
  }
  .home-section-3 .section-body {
    padding-block: 90px 6.25rem;
    margin-right: calc(var(--container-gutter) * -1);
  }
  .home-section-3 .section-body-container {
    --container-gutter: 50px;
  }
  .home-section-3 .section-blocks {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3.25rem 4.25rem;
  }
  .home-section-3 .section-block:is(.section-header) {
    grid-column: 1/-1;
    justify-self: self-start;
  }
  .home-section-3 .section-lead {
    font-size: 32px;
    line-height: 45px;
    max-width: 53ch;
  }
  .home-section-3 .section-image {
    margin-top: -4.5rem;
    margin-right: 1.125rem;
    width: 360px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-3 .section-container {
    --container-gutter: 40px;
  }
  .home-section-3 .section-body {
    padding-block: 120px 6.75rem;
  }
  .home-section-3 .section-body-container {
    --container-gutter: 35px;
  }
  .home-section-3 .section-blocks {
    gap: 60px 68px;
  }
  .home-section-3 .section-lead {
    font-size: 36px;
    line-height: 50px;
  }
  .home-section-3 .section-image {
    width: 433px;
    margin-top: -2rem;
    margin-right: 3rem;
  }
}
@media only screen and (min-width: 1900px) {
  .home-section-3 .section-container {
    --container-gutter: 96px;
  }
  .home-section-3 .section-body-container {
    --container-gutter: 193px;
  }
  .home-section-3 .section-blocks {
    gap: 3.5rem 12rem;
  }
  .home-section-3 .section-lead {
    margin-left: 60px;
  }
  .home-section-3 .section-image {
    margin-right: 0;
  }
  .home-section-3 .section-content {
    margin-left: 60px;
  }
}
/*
* Home Section 4
-------------------------------------------------------------------------------- */
/*
* Section Offset Demo: Feel free to copy/paste/comment out as needed. Find and replace `home-section-4` to rename variables and sections appropriately
-------------------------------------------------------------------------------- */
:root {
  --home-section-4-offset: 200px;
}
@media only screen and (min-width: 768px) {
  :root {
    --home-section-4-offset: 185px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --home-section-4-offset: 190px;
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    --home-section-4-offset: 160px;
  }
}
.home-section-4-offset-element {
  position: relative;
  z-index: 1;
  margin-top: calc(var(--home-section-4-offset) * -1);
}

.has-home-section-4-offset:is(.template-wrapper:has(:is(main, .main) > .home-section-4:first-child) + .banner-main,
.home-section:not(.home-section-4):has(+ .home-section-4),
.home-section:not(.home-section-4):has(+ .home-section-4) *)::after {
  content: "";
  height: var(--home-section-4-offset);
  display: block;
  flex: 0 0 auto;
  width: 100%;
}

.home-section-4 {
  background: var(--color-dark);
  padding-block: var(--negative-pusher);
}
.home-section-4 .swiper {
  --swiper-pagination-bottom: 36px;
  --swiper-custom-arrow-offset-x: 0;
  --swiper-pagination-bullet-inactive-color: var(--color-light);
}
.home-section-4 .testimonial-container {
  --container-gutter: 0px;
}
.home-section-4 .testimonial-highlight {
  display: block;
  font-weight: 400;
}
.home-section-4 .testimonial-highlight:before {
  display: none;
}
.home-section-4 .testimonial-source {
  color: var(--color-secondary);
  font-size: 15px;
}
.home-section-4 .section-box {
  background: linear-gradient(to bottom, var(--color-accent-gradient-start), var(--color-accent-gradient-end));
  color: var(--color-light);
  text-align: center;
  padding-block: 3rem 53px;
}
.home-section-4 .section-box-container {
  --container-gutter: 25px;
}
.home-section-4 .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.home-section-4 .section-icon {
  font-size: 110px;
  margin-bottom: 40px;
}
.home-section-4 .section-footer {
  margin-top: 0;
  padding-block: 35px;
  color: var(--color-light);
}
@media only screen and (min-width: 768px) {
  .home-section-4 .swiper .button-slider-glyph::after {
    border-width: 2px;
  }
  .home-section-4 .testimonial-container {
    --container-gutter: 60px;
  }
  .home-section-4 .testimonial-highlight {
    font-size: 22px;
    line-height: 38px;
    margin-bottom: 40px;
  }
  .home-section-4 .testimonial-source {
    font-size: 17px;
  }
  .home-section-4 .section-box {
    padding-block: 3rem 64px;
  }
  .home-section-4 .section-box-container {
    --container-gutter: 20px;
  }
  .home-section-4 .section-header {
    margin-bottom: 1.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-4 .testimonial-container {
    --container-gutter: 104px;
  }
  .home-section-4 .testimonial-highlight {
    font-size: 28px;
    line-height: 45px;
    margin-bottom: 75px;
  }
  .home-section-4 .testimonial-source {
    font-size: 18px;
  }
  .home-section-4 .section-box {
    padding-block: 75px 88px;
  }
  .home-section-4 .section-box-container {
    --container-gutter: 50px;
  }
  .home-section-4 .section-header {
    margin-bottom: 30px;
  }
  .home-section-4 .section-icon {
    font-size: 127px;
  }
  .home-section-4 .section-button .button {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-4 .testimonial-container {
    --container-gutter: 73px;
  }
  .home-section-4 .testimonial-icon {
    margin-bottom: 60px;
  }
  .home-section-4 .testimonial-highlight {
    font-size: 32px;
    line-height: 51px;
    margin-bottom: 65px;
  }
  .home-section-4 .section-box {
    padding-block: 6.25rem 6.5rem;
  }
  .home-section-4 .section-box-container {
    --container-gutter: 100px;
  }
  .home-section-4 .section-header {
    margin-bottom: 3.5rem;
  }
  .home-section-4 .section-footer {
    padding-block: 40px;
  }
  .home-section-4 .swiper {
    --swiper-custom-arrow-offset-x: 2rem;
  }
}
@media only screen and (min-width: 1900px) {
  .home-section-4 .swiper {
    --swiper-custom-arrow-offset-x: 0rem;
  }
  .home-section-4 .testimonial-container {
    --container-gutter: 186px;
  }
  .home-section-4 .section-box-container {
    --container-gutter: 190px;
  }
}
@media only screen and (max-width: 1199px) {
  .home-section-4 .section-box {
    max-width: 648px;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 767px) {
  .home-section-4 .section-icon {
    margin-inline: auto;
    display: flex;
  }
  .home-section-4 .section-box {
    text-align: left;
  }
}

/*
* Home Section 5
-------------------------------------------------------------------------------- */
.home-section-5 {
  padding-block: 40px 60px;
  overflow: hidden;
}
.home-section-5 .swiper {
  --swiper-pagination-bottom: 2.825rem;
}
.home-section-5 .sp, .home-section-5 .sp-container {
  max-width: 100%;
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
  align-items: start;
}
.home-section-5 .sp-icon {
  font-size: 55px;
  margin-bottom: 20px;
}
.home-section-5 .sp-title {
  margin-bottom: 0.75rem;
}
.home-section-5 .sp-description {
  line-height: 32px;
  max-width: 21ch;
  flex: 1 1;
  margin-bottom: 1.5rem;
}
.home-section-5 .sp-link {
  font-size: 13px;
}
.home-section-5 .section-header {
  margin: 0;
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
  gap: 1rem;
}
.home-section-5 .section-heading {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 0;
}
.home-section-5 .section-lead {
  font-size: 18px;
  line-height: 30px;
  max-width: 50ch;
  margin-bottom: 1rem;
}
.home-section-5 .section-block, .home-section-5 .section-blocks {
  min-width: 0;
}
.home-section-5 .section-blocks {
  display: grid;
  row-gap: 70px;
  -moz-column-gap: 5.3125rem;
       column-gap: 5.3125rem;
}
.home-section-5 .section-footer {
  margin-top: 0rem;
  margin-inline: 0;
}
.home-section-5 .section-button .button {
  font-size: 16px;
  --button-padding-x: 40px;
  --button-height: 60px;
}
@media only screen and (min-width: 768px) {
  .home-section-5 {
    padding-block: 5.125rem 80px;
  }
  .home-section-5 .swiper {
    --swiper-pagination-bottom: 4.25rem;
  }
  .home-section-5 .section-container {
    --container-gutter: 75px;
  }
  .home-section-5 .section-blocks {
    row-gap: 75px;
  }
  .home-section-5 .section-heading {
    font-size: 40px;
  }
  .home-section-5 .section-lead {
    font-size: 20px;
    line-height: 34px;
    max-width: 46ch;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-5 {
    padding-block: 90px 6.75rem;
  }
  .home-section-5 .section-container {
    --container-gutter: 73px;
  }
  .home-section-5 .section-decor {
    --fancy-pattern-height: 1372px;
    --fancy-pattern-t: -574px;
    --fancy-pattern-r: 75px;
    --fancy-pattern-transform: rotate(0deg) scaleX(1);
  }
  .doc-images-loaded .home-section-5 .section-decor:after {
    -webkit-mask-image: url(/wp-content/themes/1p21-pql36/images/bg-gfx-pattern-02.svg);
            mask-image: url(/wp-content/themes/1p21-pql36/images/bg-gfx-pattern-02.svg);
    opacity: 0.5;
  }
  .home-section-5 .section-blocks {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 77px;
    -moz-column-gap: 44px;
         column-gap: 44px;
  }
  .home-section-5 .section-block:is(.section-header) {
    align-self: end;
    margin-inline: 0;
  }
  .home-section-5 .section-block:is(.section-footer, .section-header) {
    text-align: left;
    justify-self: self-start;
  }
  .home-section-5 .section-block:is(.section-item:nth-child(-n+4), .section-header) {
    order: -99;
  }
  .home-section-5 .section-header {
    text-align: left;
    gap: 1.125rem;
  }
  .home-section-5 .section-heading {
    font-size: 45px;
    margin-bottom: 0.25rem;
  }
  .home-section-5 .section-lead {
    max-width: 47ch;
    font-size: 21px;
    line-height: 34px;
  }
  .home-section-5 .section-footer {
    margin-top: 0;
  }
  .home-section-5 .sp-description {
    max-width: 30ch;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-5 {
    padding-block: 100px 120px;
  }
  .home-section-5 .sp-icon {
    font-size: 60px;
  }
  .home-section-5 .section-container {
    --container-gutter: 75px;
  }
  .home-section-5 .section-decor {
    --fancy-pattern-height:1372px;
    --fancy-pattern-t: -570px;
    --fancy-pattern-r: -110px;
  }
  .home-section-5 .section-header {
    gap: 1.75rem;
  }
  .home-section-5 .section-heading {
    font-size: 50px;
    line-height: 60px;
  }
  .home-section-5 .section-lead {
    max-width: 30.3ch;
    margin-bottom: 0;
  }
  .home-section-5 .section-blocks {
    row-gap: 100px;
    -moz-column-gap: 140px;
         column-gap: 140px;
  }
  .home-section-5 .section-block:is(.section-header) {
    margin-inline: 0 -5rem;
  }
  .home-section-5 .section-block:is(.section-item:nth-child(-n+4)) {
    padding-top: 7.375rem;
  }
}
@media only screen and (min-width: 1900px) {
  .home-section-5 {
    padding-block: 165px 130px;
  }
  .home-section-5 .section-container {
    --container-gutter: 264px;
  }
  .home-section-5 .section-decor {
    --fancy-pattern-t: -574px;
    --fancy-pattern-r: 50px;
  }
  .home-section-5 .section-heading {
    font-size: 60px;
    line-height: 70px;
  }
  .home-section-5 .section-lead {
    max-width: 34ch;
  }
  .home-section-5 .section-blocks {
    -moz-column-gap: 206px;
         column-gap: 206px;
    row-gap: 106px;
  }
  .home-section-5 .section-block:is(.section-header) {
    margin-inline: -4.5rem -3rem;
  }
}
@media only screen and (max-width: 1399px) {
  .home-section-5 .section-block:is(.section-header, .section-footer) {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 1199px) {
  .home-section-5 .section-block:is(.section-header, .section-footer) {
    justify-self: center;
  }
}
@media only screen and (max-width: 767px) {
  .home-section-5 .sp {
    text-align: center;
  }
  .home-section-5 .sp, .home-section-5 .sp-container {
    align-items: center;
  }
}

/*
* Home Section 6
-------------------------------------------------------------------------------- */
.home-section-6 {
  padding-block: 60px;
  background: var(--color-light-alt);
}
.home-section-6 .section-blocks {
  justify-content: center;
  justify-items: center;
  gap: 55px;
}
.home-section-6 .section-header {
  margin-bottom: 50px;
  text-align: initial;
}
.home-section-6 .section-divider {
  --fancy-border-width: 120px;
  --fancy-border-margin-l: -25px;
}
.home-section-6 .section-lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-inline: 0;
  max-width: 270px;
}
.home-section-6 .section-images {
  max-width: 100%;
  width: 320px;
  margin-inline: auto;
}
.home-section-6 .section-content .content {
  max-width: 815px;
}
.home-section-6 .section-content .content blockquote {
  display: block;
}
.home-section-6 .section-content .content blockquote::before {
  display: none;
}
.home-section-6 .section-footer {
  margin-top: 0;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .home-section-6 {
    padding-block: 80px 4rem;
  }
  .home-section-6 .section-container {
    --container-gutter: 60px;
  }
  .home-section-6 .section-blocks {
    gap: 70px;
  }
  .home-section-6 .section-header {
    margin-bottom: 50px;
  }
  .home-section-6 .section-decor {
    --fancy-pattern-t: -173px;
    --fancy-pattern-l: -27px;
    --fancy-pattern-height: 1097px;
    --fancy-pattern-transform: rotate(0deg) scaleX(-1);
  }
  .home-section-6 .section-divider {
    --fancy-border-margin-l: -15px;
    --fancy-border-margin-y: 30px;
  }
  .home-section-6 .section-lead {
    max-width: 29ch;
    padding-left: 0;
  }
  .home-section-6 .section-content .content blockquote {
    max-width: 39ch;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-6 {
    padding-block: 105px 4.25rem;
  }
  .home-section-6 .section-container {
    --container-gutter: 50px;
  }
  .home-section-6 .section-blocks {
    grid-template-columns: auto 1fr;
    gap: 90px 70px;
  }
  .home-section-6 .section-block:is(.section-footer) {
    grid-column: 1/-1;
  }
  .home-section-6 .section-divider {
    --fancy-border-margin-l: -23px;
  }
  .home-section-6 .section-decor {
    --fancy-pattern-t: -260px;
    --fancy-pattern-l: -107px;
    --fancy-pattern-height: 1300px;
  }
  .home-section-6 .section-header {
    margin-bottom: 3.75rem;
    margin-inline: 1rem 0;
  }
  .home-section-6 .section-lead {
    max-width: 317px;
    padding-left: 6px;
  }
  .home-section-6 .section-images {
    width: 347px;
  }
  .home-section-6 .section-content {
    margin-right: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-6 {
    padding-block: 115px 5.25rem;
  }
  .home-section-6 .section-container {
    --container-gutter: 75px;
  }
  .home-section-6 .section-blocks {
    gap: 90px 55px;
  }
  .home-section-6 .section-divider {
    --fancy-border-margin-l: -35px;
  }
  .home-section-6 .section-header {
    margin-left: 35px;
  }
  .home-section-6 .section-lead {
    padding-left: 0;
    max-width: 406px;
  }
  .home-section-6 .section-images {
    width: 435px;
  }
  .home-section-6 .section-decor {
    --fancy-pattern-t: -214px;
    --fancy-pattern-l: -157px;
    --fancy-pattern-height: 1316px;
  }
  .home-section-6 .section-content {
    margin-right: 0;
  }
  .home-section-6 .section-footer .awards-slider {
    margin-inline: 0;
  }
}
@media only screen and (min-width: 1900px) {
  .home-section-6 {
    padding-bottom: 6.25rem;
  }
  .home-section-6 .section-container {
    --container-gutter: 195px;
  }
  .home-section-6 .section-blocks {
    -moz-column-gap: 75px;
         column-gap: 75px;
    row-gap: 130px;
  }
  .home-section-6 .section-header {
    margin-left: 0rem;
    margin-bottom: 70px;
  }
  .home-section-6 .section-lead {
    max-width: 410px;
  }
  .home-section-6 .section-decor {
    --fancy-pattern-t: -247px;
    --fancy-pattern-l: -150px;
    --fancy-pattern-height: 1390px;
  }
  .home-section-6 .section-content :is(.content :where(li, dd, dt)) {
    font-weight: 400;
  }
  .home-section-6 .section-footer .awards-slider {
    margin-inline: -2rem;
  }
}
/*
* Home Section 7
-------------------------------------------------------------------------------- */
#home-section-7 {
  background-color: var(--scheme-bg-contrast, var(--color-light-alt));
}
/* ================================================================================
Contact Template
================================================================================ */
/* Template Contact  https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/contact.md
-------------------------------------------------------------------------------- */
/*
Note: 
This file is for Contact Page only overrides for the contact information
For Contact Page only overrides for the contact informatio, apply styles to templates/template-contact.scss -> #contact-page
For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Footer section only overrides for the contact informatio, apply styles to layout/layout-footer.scss -> .footer-contact styles section
-------------------------------------------------------------------------------- */
body.onep21-template-contact {
  /* body selector for contact template */
}

#contact-banner {
  /* selector for contact banner if enabled */
}
@media only screen and (min-width: 1200px) {
  #contact-banner .banner-main {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1900px) {
  #contact-banner .banner-main {
    padding-bottom: 160px;
  }
}
@media only screen and (max-width: 767px) {
  #contact-banner .banner-main {
    padding-bottom: 3rem;
  }
}

#contact-page {
  /* template main styles */
  padding-bottom: 0;
}
#contact-page .fancy-pattern {
  --fancy-pattern-t: -165px;
  --fancy-pattern-l: -88px;
  --fancy-pattern-height: 645px;
}
#contact-page .section-image {
  max-width: 244px;
  display: block;
  padding-bottom: 6rem;
}
#contact-page .section-block, #contact-page .section-blocks {
  min-width: 0;
}
#contact-page .section-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  gap: 5.375rem;
}
@media only screen and (min-width: 1200px) {
  #contact-page {
    padding-bottom: 60px;
  }
  #contact-page .fancy-pattern {
    --fancy-pattern-t: -300px;
    --fancy-pattern-l: -80px;
    --fancy-pattern-height: 1150px;
  }
  #contact-page .section-image {
    max-width: 435px;
    margin-left: 33px;
  }
  #contact-page .section-blocks {
    gap: 9rem;
  }
}
@media only screen and (min-width: 1400px) {
  #contact-page .section-blocks {
    grid-template-columns: auto 1fr;
  }
  #contact-page .section-image {
    order: -99;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1900px) {
  #contact-page {
    padding-bottom: 200px;
  }
  #contact-page .fancy-pattern {
    --fancy-pattern-t: -370px;
    --fancy-pattern-l: -110px;
    --fancy-pattern-height: 1350px;
  }
  #contact-page .section-blocks {
    gap: 118px;
  }
  #contact-page .section-image {
    margin-left: 4rem;
  }
}
#contact-page .contact-block-title {
  color: var(--color-primary);
}
#contact-page .contact-block-content .number-title {
  color: var(--color-primary-alt);
}
#contact-page .contact-block-content .number-link {
  font-size: 18px;
}
@media only screen and (min-width: 1200px) {
  #contact-page .contact-blocks {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
}
@media only screen and (min-width: 1400px) {
  #contact-page .contact-blocks {
    margin-top: 1.5rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
  }
}
@media only screen and (min-width: 1900px) {
  #contact-page .contact-blocks {
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
}
#contact-page .contact-block.contact-number {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
#contact-page .contact-block.contact-numbers {
  /*
  @Variation B: One block
  Requires PHP: templates/template-contact.php - @Variation B: One block
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numbersColumn / @Variation B: One block
  */
}
#contact-page .contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
#contact-page .contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
#contact-page .social li:is(:hover, :focus) {
  color: var(--color-accent-alt);
}

/* ================================================================================
* 404
================================================================================ */
/* Template 404 https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/404.md
-------------------------------------------------------------------------------- */
/*
* 404 Related Classes
-------------------------------------------------------------------------------- */
/*
* 404 Page
-------------------------------------------------------------------------------- */
body.error404 {
  /* body selector for 404 template */
}

#error404-page {
  text-align: center;
}
/* ================================================================================
* About Template
================================================================================ */
/* Template About https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/about.md
-------------------------------------------------------------------------------- */
/*
* About Related Classes
-------------------------------------------------------------------------------- */
.about-section .section-heading:last-child:not(.primary-heading) {
  margin-bottom: 0;
}
/*
* About Template
-------------------------------------------------------------------------------- */
body.onep21-template-about {
  /* body selector for about template */
}

#about-banner {
  /* selector about banner if enabled */
}
@media only screen and (min-width: 1900px) {
  #about-banner .banner-main {
    padding-bottom: 120px;
  }
}
#about-page .section-content {
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  #about-page {
    padding-block: 1rem 5rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #about-page .section-container {
    --container-gutter: 75px;
  }
  #about-page .section-blocks {
    grid-template-columns: 100%;
    row-gap: 167px;
    max-width: 850px;
    margin-inline: auto;
  }
  #about-page .section-decor {
    --fancy-pattern-t: -334px;
    --fancy-pattern-l: -97px;
  }
  #about-page .section-images {
    order: unset;
  }
  #about-page .section-content {
    margin-right: 0;
  }
  #about-page .section-image-back {
    width: 471px;
  }
  #about-page .section-image-front {
    width: 314px;
    margin-top: -317px;
    margin-right: -6rem;
  }
  #about-page .section-footer {
    margin-top: 200px;
  }
}
@media only screen and (min-width: 1400px) {
  #about-page {
    padding-block: 60px 100px;
  }
  #about-page .about-page {
    grid-template-columns: auto 1fr;
  }
  #about-page .section-images {
    margin-top: 0rem;
  }
  #about-page .section-footer {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 1900px) {
  #about-page {
    padding-block: 0 120px;
  }
  #about-page .section-container {
    --container-gutter: 233px;
  }
  #about-page .section-blocks {
    gap: 97px;
  }
  #about-page .section-decor {
    --fancy-pattern-t: -490px;
    --fancy-pattern-l: -140px;
  }
  #about-page .section-footer {
    margin-top: 175px;
  }
}
/*
* About Section 1
-------------------------------------------------------------------------------- */
/*
* About Section 2
-------------------------------------------------------------------------------- */
.about-section-2 {
  background-color: var(--scheme-bg, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
/*
* About Section 3
-------------------------------------------------------------------------------- */
/* ================================================================================
FAQs Template
================================================================================ */
/* Template FAQs https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/faqs.md
-------------------------------------------------------------------------------- */
body.onep21-template-faqs {
  /* body selector for faqs template */
}

#faqs-banner {
  /* selector for faqs banner if enabled */
}
#faqs-page {
  /* template main styles */
}
/* ================================================================================
* Practice Areas Template
================================================================================ */
/* Template Practice Areas https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/practice-areas.md
-------------------------------------------------------------------------------- */
/*
* Practice Areas Grid Template
-------------------------------------------------------------------------------- */
body.onep21-template-practice-areas {
  /* body selector for practice-areas template */
}

#practice-areas-banner {
  /* selector for practice-areas banner if enabled */
}
#practice-areas-page {
  /* template main styles */
}
#practice-areas-page .practice-area-menu:is(.columns) {
  --columns-gap-x: 3rem;
  justify-content: center;
  justify-items: center;
}
#practice-areas-page .practice-area {
  margin-inline: auto;
  max-width: 1560px;
}
#practice-areas-page .practice-area:nth-last-child(n+2) {
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 2;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+2) {
    border-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 3;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
}
@media only screen and (min-width: 1400px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-gap-x: 4.75rem;
  }
  #practice-areas-page .practice-area:nth-last-child(n+2) {
    margin-bottom: 8.25rem;
  }
}
@media only screen and (min-width: 1900px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 4;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+4) {
    border-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  #practice-areas-page .practice-area-container {
    text-align: center;
  }
}

/* ================================================================================
* Case Results Template
================================================================================ */
/* Template Results https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/results.md
-------------------------------------------------------------------------------- */
/*
* Results Template
-------------------------------------------------------------------------------- */
body.onep21-template-results {
  /* body selector for results template */
}

#results-banner {
  /* selector for results banner if enabled */
}
@media only screen and (min-width: 1900px) {
  #results-banner .banner-main {
    padding-bottom: 120px;
  }
}
#results-page {
  /* template main styles */
}
#results-page .results:is(.columns) {
  --columns-gap-x: 4rem;
  --columns-gap-y: 3rem;
  justify-content: center;
  justify-items: center;
}
#results-page .result {
  max-width: 473px;
}
#results-page .result-container {
  --fancy-box-background: var(--color-light);
  border: 2px solid var(--color-neutral);
}
#results-page .result:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
#results-page .result-value {
  color: var(--color-primary);
}
#results-page .result-type {
  font-weight: 600;
  color: var(--color-primary-alt);
  max-width: none;
}
@media only screen and (min-width: 1200px) {
  #results-page .results:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1400px) {
  #results-page .results:is(.columns) {
    --columns-number: 3;
    --columns-gap-y: 150px;
  }
}
@media only screen and (max-width: 767px) {
  #results-page {
    padding-bottom: 80px;
  }
}

/* ================================================================================
* Profiles/ Team Grid Template
================================================================================ */
/* Template Team https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/team.md
-------------------------------------------------------------------------------- */
/*
* Team/Profiles Groups - Optional
-------------------------------------------------------------------------------- */
.team-group:nth-child(n+2) {
  margin-top: 4rem;
}
@media only screen and (min-width: 1200px) {
  .team-group:nth-child(n+2) {
    margin-top: 13rem;
  }
}
.team-group-title {
  margin-bottom: 2rem;
}
/*
* Team/Profiles Page
-------------------------------------------------------------------------------- */
body.onep21-template-team {
  /* body selector for team template */
}

#team-banner {
  /* selector for team banner if enabled */
}
@media only screen and (min-width: 1900px) {
  #team-banner .banner-main {
    padding-bottom: 120px;
  }
}
#team-page {
  /* template main styles */
}
#team-page .profiles:is(.columns) {
  --columns-gap-x: 4.875rem;
  --columns-gap-y: 4.875rem;
  justify-items: center;
  justify-content: center;
}
#team-page .profile {
  max-width: 400px;
}
@media only screen and (min-width: 768px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #team-page .profile:last-child {
    max-width: 317px;
    grid-column: 1/-1;
  }
}
@media only screen and (min-width: 1200px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 3;
    --columns-gap-y: 140px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1900px) {
  #team-page .profiles:is(.columns) {
    max-width: 1350px;
  }
}
@media only screen and (max-width: 767px) {
  #team-page {
    padding-bottom: 80px;
  }
}

/* ================================================================================
* Testimonials Template
================================================================================ */
/* Template Testimonials Areas https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/testimonials.md
-------------------------------------------------------------------------------- */
/*
* Testimonials Template
-------------------------------------------------------------------------------- */
body.onep21-template-testimonials {
  /* body selector for testimonials template */
}

#testimonials-banner {
  /* selector for testimonials banner if enabled */
}
@media only screen and (min-width: 1900px) {
  #testimonials-banner .banner-main {
    padding-bottom: 120px;
  }
}
#testimonials-page {
  /* template main styles */
}
#testimonials-page .testimonials:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
  justify-content: center;
  justify-items: center;
}
#testimonials-page .testimonials:is(.columns):nth-child(n+2) {
  margin-top: var(--columns-gap-y);
}
#testimonials-page .testimonial {
  text-align: center;
  max-width: 982px;
  margin-inline: auto;
}
#testimonials-page .testimonial:is(.fancy-border) {
  --fancy-border-margin-y: var(--columns-gap-y);
}
#testimonials-page .testimonial:not(.fancy-border):nth-last-child(n+2) {
  padding-bottom: var(--columns-gap-y);
  border-bottom: 2px solid var(--scheme-bg-bias);
}
#testimonials-page .testimonial:last-child:after {
  display: none;
}
#testimonials-page .testimonial :where(.testimonial-highlight, .testimonial-quote) {
  margin-left: auto;
  margin-right: auto;
}
#testimonials-page .testimonial .testimonial-stars {
  font-size: 30px;
  margin-bottom: 40px;
}
#testimonials-page .testimonial .testimonial-highlight {
  display: block;
  max-width: 906px;
  font-size: 26px;
  line-height: 45px;
  font-weight: 400;
  margin-bottom: 40px;
}
#testimonials-page .testimonial .testimonial-highlight:before {
  display: none;
}
#testimonials-page .testimonial .testimonial-source {
  font-size: 17px;
  color: var(--color-primary);
}
@media only screen and (min-width: 1200px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-y: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  #testimonials-page {
    padding-bottom: 80px;
  }
  #testimonials-page .testimonial .testimonial-stars {
    font-size: 26px;
    margin-bottom: 30px;
  }
  #testimonials-page .testimonial .testimonial-highlight {
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}

/* ================================================================================
* Videos Template
================================================================================ */
/* Template Videos https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/videos.md
-------------------------------------------------------------------------------- */
/*
* Videos Template
-------------------------------------------------------------------------------- */
body.onep21-template-videos {
  /* body selector for videos template */
}

#videos-banner {
  /* selector for videos banner if enabled */
}
@media only screen and (min-width: 1900px) {
  #videos-banner .banner-main {
    padding-bottom: 7.5rem;
  }
}
#videos-page {
  /* template main styles */
}
#videos-page .videos:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 4rem;
  justify-content: center;
  justify-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
#videos-page .video {
  max-width: 427px;
}
#videos-page .video-button-default {
  --video-button-size: 84px;
}
#videos-page .video-title {
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 3;
  }
}
@media only screen and (min-width: 1400px) {
  #videos-page .videos:is(.columns) {
    --columns-gap-x: 7.25rem;
    --columns-gap-y: 6rem;
  }
}
/* ================================================================================
* Profile Detail Template
================================================================================ */
/* Template Profile Areas https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/profile.md
-------------------------------------------------------------------------------- */
/*
* Profile Contact Info
-------------------------------------------------------------------------------- */
.profile-contact a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}
.profile-contact-item-label {
  margin-right: 0.5em;
}
/*
* Profile Detail Template
-------------------------------------------------------------------------------- */
body.onep21-template-profile {
  /* body selector for profile template */
}

#profile-banner {
  /* selector for profile banner if enabled */
}
#profile-page {
  /* template main styles */
  padding-block: 55px 50px;
  /* 
  Profile Page Template 
  	@Variation A: Simple
  	Requires PHP: templates/template-profile.php - @Variation A: Simple
  	Requires SCSS: scss/templates/profile.scss - @Variation A: Simple
  */
}
#profile-page .profile-image:is(.fancy-box) {
  --fancy-box-pseudo-offset: 15px;
  --fancy-box-pseudo-offset-top: 15px;
}
#profile-page .profile-image:is(.fancy-box)::after {
  z-index: 0;
}
#profile-page .default-sections {
  --default-gap-y: 1.5rem;
}
#profile-page .section-header {
  margin-bottom: 1rem;
}
#profile-page .section-heading {
  font-size: 40px;
  margin-bottom: 0.25rem;
  max-width: none;
}
#profile-page .section-image {
  padding-block: var(--negative-pusher);
}
#profile-page .section-subheader {
  margin-bottom: 2rem;
}
#profile-page .section-subheading {
  margin-inline: 3rem;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-primary-alt);
}
#profile-page .section-divider {
  --fancy-border-margin-y: 32px;
}
#profile-page .section-list-title:is(.fancy-border) {
  --fancy-border-margin-y: 1rem;
  margin-bottom: var(--fancy-border-margin-y);
}
#profile-page .section-list:nth-child(n+2) {
  margin-top: 2.625rem;
}
#profile-page .section-awards {
  margin-top: 3.375rem;
}
#profile-page .section-awards .swiper {
  --swiper-pagination-bottom: 3rem;
}
#profile-page .section-awards .awards-title {
  font-size: 16px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  #profile-page {
    padding-block: 78px;
  }
  #profile-page .profile-image:is(.fancy-box) {
    --fancy-box-pseudo-offset: 25px;
    --fancy-box-pseudo-offset-top: 20px;
  }
  #profile-page .default-sections {
    --default-gap-y: 35px;
  }
  #profile-page .section-container {
    --container-gutter: 60px;
  }
  #profile-page .section-heading {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 0.5rem;
  }
  #profile-page .section-subheading {
    font-size: 24px;
    line-height: 34px;
  }
  #profile-page .section-divider {
    --fancy-border-margin-y: 40px;
  }
  #profile-page .section-awards {
    margin-top: 70px;
  }
  #profile-page .section-awards .awards-title {
    margin-bottom: 45px;
  }
  #profile-page .section-awards .swiper {
    --swiper-pagination-bottom: 55px;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-page {
    padding-block: 90px;
  }
  #profile-page .default-sections {
    --default-sidebar-width: 423px;
    --default-gap-x: 107px;
    --default-gap-y: 55px;
  }
  #profile-page .section-container {
    --container-gutter: 64px;
  }
  #profile-page .section-header {
    margin-bottom: 0;
  }
  #profile-page .section-heading {
    font-size: 60px;
    margin-bottom: 1rem;
  }
  #profile-page .section-subheading {
    font-size: 24px;
    margin-inline: 0 auto;
  }
  #profile-page .section-divider {
    --fancy-border-margin-y: 30px;
  }
  #profile-page .section-body {
    margin-bottom: 0;
  }
  #profile-page .section-lists {
    padding-top: 0rem;
  }
  #profile-page .section-list:nth-child(n+2) {
    margin-top: 50px;
  }
  #profile-page .section-awards .awards-title {
    margin-left: 0;
    margin-bottom: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-page {
    padding-block: 130px 120px;
  }
  #profile-page .default-sections {
    --default-gap-x: 154px;
  }
  #profile-page .section-container {
    --container-gutter: 73px;
  }
  #profile-page .section-heading {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1900px) {
  #profile-page {
    padding-bottom: 150px;
  }
  #profile-page .default-sections {
    --default-gap-x: 178px;
  }
  #profile-page .section-container {
    --container-gutter: 308px;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-page .section-image {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  #profile-page .section-awards, #profile-page .section-header {
    text-align: center;
  }
  #profile-page .section-lists {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #profile-page .section-lists {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-page.profile-page-simple .section-image {
    max-width: 423px;
    margin-bottom: 70px;
  }
  #profile-page.profile-page-simple .section-divider {
    --fancy-border-width: min(100%,545px);
  }
}
@media only screen and (max-width: 767px) {
  #profile-page.profile-page-simple .section-image {
    margin-bottom: 42px;
  }
}

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