/*! 
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: 1919px;
  --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: Manrope, Helvetica, Arial, sans-serif;
  --font-secondary: var(--font-primary);
  --font-accent: Barlow, Helvetica, Arial, sans-serif;
  --font-monospace: monospace;
  /* Styleguide - colors */
  --color-dark: #1A1A1A;
  --color-dark-alt: #0C1726;
  --color-light: #FFFFFF;
  --color-light-alt: #F7F7FA;
  --color-primary: #102569;
  --color-primary-alt: var(--color-primary);
  --color-primary-gradient-start: #1E9654;
  --color-primary-gradient-end: var(--color-secondary);
  --color-secondary: #31D179;
  --color-secondary-alt: var(--color-secondary);
  --color-secondary-gradient-start: var(--color-secondary);
  --color-secondary-gradient-end: #2929A3;
  --color-accent: #037344;
  --color-accent-alt: var(--color-accent);
  --color-accent-gradient-start: var(--color-accent);
  --color-accent-gradient-end: var(--color-accent-alt);
  --color-neutral: #DEDEDE;
  --color-neutral-light: rgba(0, 0, 0, 0.2);
  --color-neutral-lighter: rgba(255, 255, 255, 0.7);
  --color-neutral-lightest: rgba(255, 255, 255, 0.3);
  --color-neutral-dark: rgba(0, 0, 0, 0.35);
  --color-neutral-darker: #3D4551;
  --color-neutral-darkest: var(--color-neutral-darker);
  --color-success: #00CC00;
  --color-caution: #CC6600;
  --color-error: #CC0000;
  /* add more native vars as needed */
}
@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: 1920px) {
  :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));
  /* 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(:is([type=checkbox], [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;
}

:is(a, button):hover {
  cursor: pointer;
}

button {
  border: none;
}

/* Remove default ugly blue links. NOTE: Make sure to style a tags appropiately for accessibility while maintianing styleguide
--------------------------------------------------------------- */
:where(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
--------------------------------------------------------------- */
:is(main, .main,
aside, .aside) {
  padding-block: 2.125rem 3.125rem;
}
@media only screen and (min-width: 768px) {
  :is(main, .main,
  aside, .aside) {
    padding-block: 3.5rem 65px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(main, .main,
  aside, .aside) {
    padding-block: 76px 84px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(main, .main,
  aside, .aside) {
    padding-block: 95px;
  }
}
.banner-no-background-image :is(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 - 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]) {
  color: var(--color-light);
}

.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;
}
.gform_wrapper.gravity-theme .gfield :is(.gfield_radio, .gfield_checkbox) label {
  font: unset;
  line-height: unset;
}

/* 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: 67px;
  /* border width. This will be accounted for in calculating the form field height as well */
  --field-border-width: 1px;
  /* duh */
  --field-border-radius: 0px;
  /* horizontal padding for the form field */
  --field-padding-x: 1rem;
  /* color for required indicators */
  --field-required-color: var(--color-secondary);
  /* color for errors */
  --field-error-color: var(--color-secondary);
  /* 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: 1rem;
  line-height: var(--field-line-height, 1.125);
}
:is(form, .gfield) select:has(option.gf_placeholder:checked) {
  color: var(--color-neutral) !important;
}
: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-light);
}

: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(--color-secondary);
}

/*  .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: 8rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select).medium {
  height: 7rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select).small {
  height: 6rem;
}
/*  .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 */
  line-height: var(--field-line-height, inherit);
  font-family: var(--font-accent);
  font-weight: 700;
  margin-bottom: 0.75em;
  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: 1.375rem;
}

/* .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;
  align-self: center;
  padding: 0;
  margin: 0;
  order: 99;
}
/* custom helpers - Required Message
--------------------------------------------------------------- */
.required-message {
  font-size: 12px;
  color: var(--field-required-color);
  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;
  }
}

/* Inline Choice Form controls
--------------------------------------------------------------- */
.gfield.gfield-custom-inline-choices :is(.gfield_radio) {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}
.gfield.gfield-custom-inline-choices :is(.gchoice) {
  display: inline-flex;
  gap: 1ch;
}
.gfield.gfield-custom-inline-choices :is(.gfield-choice-input + label) {
  flex: 0 0 auto;
  max-width: none;
}

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

/* custom styles by type
--------------------------------------------------------------- */
/* Vendor - Swiper
--------------------------------------------------------------- */
/* Swiper Customizations
Variable docs: https://oxygen4fun.supadezign.com/tips/swiperjs-tips-and-good-practice/#customcss
--------------------------------------------------------------- */
.swiper {
  --swiper-theme-color: var(--scheme-sp, var(--color-secondary));
  --swiper-navigation-sides-offset: 0px;
  --swiper-pagination-bottom: 1.5rem;
  --swiper-pagination-top: auto;
  --swiper-pagination-right: 1rem;
  --swiper-pagination-left: auto;
  --swiper-pagination-bullet-size: .425rem;
  --swiper-pagination-bullet-width: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-border-radius: 9999em;
  --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(--color-neutral-light);
  --swiper-pagination-progressbar-size: var(--swiper-pagination-bullet-size);
  --swiper-pagination-progressbar-bg-color: var(--color-neutral-lighter);
  --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(--color-neutral);
  --swiper-scrollbar-size: 2px;
  --swiper-scrollbar-sides-offset: 1rem;
  --swiper-scrollbar-bottom: 1.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. */
}
:where(.content-palette-dark) .swiper {
  --swiper-theme-color: currentColor;
}
/* Swiper Enhancements
--------------------------------------------------------------- */
.swiper {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
  padding-inline: var(--swiper-custom-arrow-offset-x, var(--container-fallback));
  margin-inline: calc(var(--swiper-custom-arrow-offset-x-negate, var(--swiper-custom-arrow-offset-x, var(--container-fallback))) * -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: calc(var(--swiper-scrollbar-size) * 2);
  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-bottom: var(--swiper-scrollbar-size);
  margin-inline: auto;
  margin-left: var(--swiper-scrollbar-sides-offset, 1%);
}
.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-ticker {
  --swiper-wrapper-transition-timing-function: linear;
}
@media only screen and (min-width: 1200px) {
  .swiper-custom-stagger :where(.swiper-slide > :only-child) {
    transition-duration: 0.1s;
    transition-property: transform, opacity;
    opacity: 0;
    transform: translateX(50px);
  }
  .swiper-custom-stagger.visible :where(.swiper-slide > :only-child) {
    transition-duration: 1s;
    transition-delay: calc(1s + 0.25s * var(--swiper-custom-slide-i, 0));
    opacity: 1;
    transform: translateX(0px);
  }
}
.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 (min-width: 1200px) {
  .swiper-custom-equal-heights-nontouch .swiper-slide {
    height: auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .swiper-custom-equal-heights-nontouch .swiper-slide > :where(:only-child) {
    flex: 1 1;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-equal-heights-touch .swiper-slide, .swiper-custom-equal-heights-sm .swiper-slide {
    height: auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
  }
  .swiper-custom-equal-heights-touch .swiper-slide > :where(:only-child), .swiper-custom-equal-heights-sm .swiper-slide > :where(:only-child) {
    flex: 1 1;
  }
}
@media only screen and (max-width: 767px) {
  .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-wrapper {
  height: auto;
}
.swiper-custom-buttons-static .swiper-custom-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.swiper-custom-buttons-static .swiper-custom-buttons .swiper-button-prev, .swiper-custom-buttons-static .swiper-custom-buttons .swiper-button-next {
  margin-inline: 0;
}
.swiper-custom-buttons-static .swiper-button-next, .swiper-custom-buttons-static .swiper-button-prev {
  position: static;
  transform: none;
  margin: 0;
}
.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.375rem;
}
.swiper-custom-buttons-static .swiper-button-next {
  margin-left: 0.375rem;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-buttons-static-sm .swiper-wrapper {
    height: auto;
  }
  .swiper-custom-buttons-static-sm .swiper-custom-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
  }
  .swiper-custom-buttons-static-sm .swiper-custom-buttons .swiper-button-prev, .swiper-custom-buttons-static-sm .swiper-custom-buttons .swiper-button-next {
    margin-inline: 0;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next, .swiper-custom-buttons-static-sm .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
  }
  .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.375rem;
  }
  .swiper-custom-buttons-static-sm .swiper-button-next {
    margin-left: 0.375rem;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-custom-buttons-static-xs .swiper-wrapper {
    height: auto;
  }
  .swiper-custom-buttons-static-xs .swiper-custom-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
  }
  .swiper-custom-buttons-static-xs .swiper-custom-buttons .swiper-button-prev, .swiper-custom-buttons-static-xs .swiper-custom-buttons .swiper-button-next {
    margin-inline: 0;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next, .swiper-custom-buttons-static-xs .swiper-button-prev {
    position: static;
    transform: none;
    margin: 0;
  }
  .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.375rem;
  }
  .swiper-custom-buttons-static-xs .swiper-button-next {
    margin-left: 0.375rem;
  }
}

/* ================================================================================
* Content Styles
================================================================================ */
/* Schemes https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/schemes.md
--------------------------------------------------------------- */
/* H tag scaffolding
--------------------------------------------------------------- */
:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6) {
  margin-bottom: var(--fancy-border-margin-y, 0);
}

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

/* H1 - can be reused by section titles, primary-heading etc.
--------------------------------------------------------------- */
:where(*.h1, :is(.content, .editor-styles-wrapper) :where(h1)) {
  font-size: 38px;
  line-height: 44px;
  color: var(--scheme-fg-contrast, var(--color-primary));
  letter-spacing: 0em;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 800;
}
:where(.content-palette-dark) :where(*.h1, :is(.content, .editor-styles-wrapper) :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) {
  :where(*.h1, :is(.content, .editor-styles-wrapper) :where(h1)) {
    font-size: 52px;
    line-height: 62px;
  }
}
@media only screen and (min-width: 1400px) {
  :where(*.h1, :is(.content, .editor-styles-wrapper) :where(h1)) {
    font-size: 55px;
    line-height: 65px;
  }
}
/* H2 - can be reused by certain titles
--------------------------------------------------------------- */
:where(*.h2, :is(.content, .editor-styles-wrapper) :where(h2)) {
  font-size: 23px;
  line-height: 32px;
  color: var(--scheme-sp, var(--color-accent));
  letter-spacing: 0.01em;
  text-transform: none;
  font-style: normal;
  font-weight: 800;
}
:where(.content-palette-dark) :where(*.h2, :is(.content, .editor-styles-wrapper) :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 */
  color: var(--scheme-sp, var(--color-accent));
}
@media only screen and (min-width: 768px) {
  :where(*.h2, :is(.content, .editor-styles-wrapper) :where(h2)) {
    font-size: 25px;
    line-height: 34px;
  }
}
@media only screen and (min-width: 1920px) {
  :where(*.h2, :is(.content, .editor-styles-wrapper) :where(h2)) {
    font-size: 27px;
    line-height: 38px;
  }
}

/* H3 - can be reused by certain titles
--------------------------------------------------------------- */
:where(*.h3, :is(.content, .editor-styles-wrapper) :where(h3)) {
  font-size: 20px;
  line-height: 28px;
  font-family: var(--font-accent);
  color: var(--scheme-sp, var(--color-primary));
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
}
:where(.content-palette-dark) :where(*.h3, :is(.content, .editor-styles-wrapper) :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 */
  color: var(--scheme-sp, var(--color-accent));
}
/* 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
--------------------------------------------------------------- */
:where(*.h4, :is(.content, .editor-styles-wrapper) :where(h4)) {
  font-size: 18px;
  line-height: 25px;
  color: var(--scheme-fg, inherit);
  letter-spacing: 0em;
  font-style: normal;
  font-weight: 700;
}
:where(.content-palette-dark) :where(*.h4, :is(.content, .editor-styles-wrapper) :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
--------------------------------------------------------------- */
:where(*.h5, :is(.content, .editor-styles-wrapper) :where(h5)) {
  font-size: 17px;
  line-height: 20px;
  font-family: var(--font-accent);
  color: var(--scheme-fg, inherit);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}
:where(.content-palette-dark) :where(*.h5, :is(.content, .editor-styles-wrapper) :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 */
}
/* H6s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly contact info titles, etc
--------------------------------------------------------------- */
:where(*.h6, :is(.content, .editor-styles-wrapper) :where(h6)) {
  font-size: 0.8125rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: var(--scheme-fg, inherit);
  letter-spacing: 0em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}
:where(.content-palette-dark) :where(*.h6, :is(.content, .editor-styles-wrapper) :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.
--------------------------------------------------------------- */
:where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)) {
  font-size: 28px;
  line-height: 40px;
  color: var(--scheme-sb-contrast, var(--color-primary));
  font-style: normal;
  font-weight: 800;
  margin-inline: auto;
  margin-block: var(--fancy-border-margin-y, 0);
  padding-inline: 1em;
}
:where(.content-palette-dark) :where(*.blockquote, :is(.content, .editor-styles-wrapper) :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 */
  color: var(--scheme-sb-contrast, inherit);
}
:where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)):is(.has-text-align-center) {
  border-left: 0;
  padding-left: 0;
  text-align: center;
}
:where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)):is(.has-text-align-left) {
  text-align: left;
}
:where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)):is(.has-text-align-right) {
  border-left: 0;
  padding-left: 0;
  text-align: right;
}
:where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)) > p {
  font: inherit;
  color: inherit;
  margin-block: 0 0.5em;
  padding: 0;
}
:where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)) > p:is(:last-child, :has(+ cite)) {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  :where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)) {
    font-size: 33px;
    line-height: 50px;
    padding-inline: 0;
  }
}
@media only screen and (min-width: 1920px) {
  :where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)) {
    font-size: 35px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  :where(*.blockquote, :is(.content, .editor-styles-wrapper) :where(blockquote)) {
    padding-inline: 0;
  }
}

/* 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.
--------------------------------------------------------------- */
:where(*.cite, :is(.content, .editor-styles-wrapper) :where(cite)) {
  font-size: 1rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-primary);
  color: var(--scheme-sp, var(--color-primary));
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  text-align: inherit;
  display: inline-block;
}
:where(.content-palette-dark) :where(*.cite, :is(.content, .editor-styles-wrapper) :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: var(--scheme-sp, var(--color-accent));
}
/* Lead - Optional
Note: Some designs may include another style for a little bit fancier body text that may not be tagged as a normal html element like blockquote or h tag
Use this if it helps
--------------------------------------------------------------- */
*.lead {
  color: var(--scheme-fg, inherit);
}
: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-contrast, inherit);
}
/* Content - Anchor links
--------------------------------------------------------------- */
:where(:is(.content, .editor-styles-wrapper) :where(a)) {
  color: var(--scheme-sp, var(--color-accent));
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
:where(:is(.content, .editor-styles-wrapper) :where(a)):where(:hover, :focus) {
  color: var(--scheme-sp, var(--color-primary));
}
:where(.content-palette-dark) :where(:is(.content, .editor-styles-wrapper) :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) :where(:is(.content, .editor-styles-wrapper) :where(a)):not(:where(:hover, :focus)) {
  color: var(--scheme-sp, var(--color-accent));
  text-decoration: none;
}
:where(.content-palette-dark) :where(:is(.content, .editor-styles-wrapper) :where(a)):where(:hover, :focus) {
  color: var(--scheme-sp, inherit);
  text-decoration: underline;
}

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

/* The Content - List Items
--------------------------------------------------------------- */
:is(:is(.content, .editor-styles-wrapper) :where(li, dd, dt)) {
  list-style: inherit;
  position: relative;
}
:is(:is(.content, .editor-styles-wrapper) :where(li, dd, dt)) :where(ul, ol, dd), :is(:is(.content, .editor-styles-wrapper) :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.125em;
}
:is(:is(.content, .editor-styles-wrapper) :where(li, dd, dt)):last-child > *:last-child {
  margin-bottom: 0;
}

/* The Content - List Items Bulleted
--------------------------------------------------------------- */
:is(:is(.content, .editor-styles-wrapper) :where(li))::marker, :is(:is(.content, .editor-styles-wrapper) :where(li))::before {
  color: var(--scheme-sp, var(--color-accent));
  font-size: 17px;
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-accent);
}
:where(.content-palette-dark) :is(:is(.content, .editor-styles-wrapper) :where(li))::marker, :where(.content-palette-dark) :is(:is(.content, .editor-styles-wrapper) :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 */
  color: var(--scheme-sp, var(--color-secondary));
}
:is(:is(.content, .editor-styles-wrapper) :where(li))::before {
  position: absolute;
  right: 100%;
  top: -0.125em;
  padding-right: 1.5ch;
}

/* The Content - Unordered List
--------------------------------------------------------------- */
:is(:is(.content, .editor-styles-wrapper) :where(ul)) > li::before {
  content: "\25CF\FE0E";
  font-size: 0.75em;
  margin-right: 0.75em;
}
:where(.content-palette-dark) :is(:is(.content, .editor-styles-wrapper) :where(ul)) > li::marker, :where(.content-palette-dark) :is(:is(.content, .editor-styles-wrapper) :where(ul)) > 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(:is(.content, .editor-styles-wrapper) :where(ul)) > li > ul > li::before {
  content: "\2014\FE0E";
  font-size: 1em;
  margin-right: 0;
  top: 0em;
}

/* The Content - Ordered List
--------------------------------------------------------------- */
:is(:is(.content, .editor-styles-wrapper) :where(ol)) {
  counter-reset: listItem;
}
:is(:is(.content, .editor-styles-wrapper) :where(ol)) > li {
  counter-increment: listItem;
}
:is(:is(.content, .editor-styles-wrapper) :where(ol)) > li::before {
  content: counter(listItem) ". ";
}
:where(.content-palette-dark) :is(:is(.content, .editor-styles-wrapper) :where(ol)) > li::marker, :where(.content-palette-dark) :is(:is(.content, .editor-styles-wrapper) :where(ol)) > 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 */
}

/* The Content - Tables Skeletons. Do not edit
--------------------------------------------------------------- */
:where(:is(.content, .editor-styles-wrapper) 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(:is(.content, .editor-styles-wrapper) :where(table, th, td)) {
  border-style: solid;
}

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

:where(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :where(th, td)):nth-last-child(n+2) {
  border-right-color: var(--table-cell-border-color-x);
}
:where(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) 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-md-bg, var(--color-neutral-lighter));
  /* background color for cells */
  --table-cell-background: var(--scheme-bg,var(--color-light));
  /* 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(:is(.content, .editor-styles-wrapper) table) :where(th, td) {
  padding-block: 0.5em;
  padding-inline: 1em;
}
:where(:is(.content, .editor-styles-wrapper) 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(:is(.content, .editor-styles-wrapper) 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-contrast, transparent);
  --table-cell-border-color-x: var(--scheme-bg-contrast, rgba(127, 127, 127, 0.3));
  color: var(--scheme-fg, inherit);
}
:where(:is(.content, .editor-styles-wrapper) table) :where(caption) {
  padding: 0.5em;
}

/* The Content - Other Obscure tags in case it can be utilized for design
--------------------------------------------------------------- */
/* images.
- NOTE: DO NOT MANIPULATE THE MARGIN, PADDING, DISPLAY PROPERTIES. THIS WILL BREAK THE CORE CLASSES AND ANY OTHER CONTENT RELATED STYLES 
- USE TO ONLY PIZZAZZ THE IMAGES ACCORDING TO DESIGN
*/
:where(:is(.content, .editor-styles-wrapper) :where(img)) {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

/* bold, strong */
:where(.content-palette-dark) :where(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :where(del, s)) {
  text-decoration: line-through;
}
:where(.content-palette-dark) :where(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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(:is(.content, .editor-styles-wrapper) :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, .editor-styles-wrapper) {
  font-size: 18px;
  line-height: 32px;
  font-family: var(--font-primary);
  color: inherit;
  font-weight: 500;
}
:where(.content, .editor-styles-wrapper) :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: 30px;
}
:where(.content, .editor-styles-wrapper) :where(hr:nth-last-child(n+2)) {
  margin-bottom: 2em;
}
:where(.content, .editor-styles-wrapper) :where(hr:nth-child(n+2)) {
  margin-top: 2em;
}
:where(.content, .editor-styles-wrapper) :where(:not(:where(*.h1, *.h2, *.h3,
*.h4, *.h5, *.h6,
h1, h2, h3,
h4, h5, h6,
hr,
*.blockquote,
blockquote,
hr)) + *):where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6, hr), :where(.content, .editor-styles-wrapper).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, .editor-styles-wrapper) :where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6) {
  margin-bottom: 1rem;
}
:where(.content, .editor-styles-wrapper) :where(*.blockquote, blockquote) {
  margin-block: 30px;
}
:where(.content, .editor-styles-wrapper) :where(*.blockquote, blockquote) :where(cite, *.cite) {
  margin-top: 1.25em;
}
@media only screen and (min-width: 768px) {
  :where(.content, .editor-styles-wrapper) :where(*.blockquote, blockquote) {
    margin-block: 45px;
  }
}
@media only screen and (min-width: 1920px) {
  :where(.content, .editor-styles-wrapper) :where(*.blockquote, blockquote) {
    margin-block: 55px 50px;
  }
}

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

*/
:where(.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);
}
.content-palette-dark table {
  --table-border-color: var(--color-neutral-darkest);
}

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

/* no list styles */
.content.content-style-no-list :is(.content :where(ol, ul, dd)) {
  padding-left: 0;
  list-style: none;
}
.content.content-style-no-list :is(.content :where(li, dd, dt))::before {
  content: none !important;
}

/* for instances of content with less line-height or vertical spacing. Usually lists */
.content.content-style-compact {
  line-height: 1.29;
}
.content.content-style-compact li, .content.content-style-compact li :where(ul, ol) {
  margin-block: 0;
}

/* 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: 1919px) {
  .content.content-style-no-first-margin-lg > :where(*:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1920px) 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: 1919px) {
  .content.content-style-no-last-margin-lg > :where(*:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1920px) 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: 1.25em;
  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: 1.25em;
    margin-top: 1.25em;
  }
  *.alignright,
  *.align-right {
    display: inline;
    float: right;
    clear: right;
    margin-left: 1.25em;
    margin-top: 1.25em;
  }
  *.aligncenter,
  *.align-center {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
/* 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-dark);
  position: fixed;
  display: block;
  font-size: 1em;
  height: auto;
  left: 0.25rem;
  line-height: normal;
  padding-inline: 0.5rem;
  padding-block: 0.25rem;
  text-decoration: none;
  top: 4rem;
  width: auto;
  z-index: 9999999;
  pointer-events: none;
}

/* Gutenberg classes */
.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.wp-block-cover, .wp-block-cover-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  min-height: 430px;
  overflow: clip;
  padding: 1em;
  position: relative;
}

/* ================================================================================
* 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 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 1px !important;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

/* emulate background cover on image tags
--------------------------------------------------------------- */
.cover {
  /* containing element */
}
.cover {
  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 */
}
@supports not (aspect-ratio: var(--cover-aspect-w, 4)/var(--cover-aspect-l, 3)) {
  .cover.cover-constricted::before {
    content: "";
    display: block;
    padding-bottom: calc(100% * var(--cover-aspect-l, 3) / var(--cover-aspect-w, 4));
  }
}
@supports (aspect-ratio: var(--cover-aspect-w, 4)/var(--cover-aspect-l, 3)) {
  .cover.cover-constricted {
    aspect-ratio: var(--cover-aspect-w, 4)/var(--cover-aspect-l, 3);
  }
}
.cover > *, .cover-child {
  /* element to emulate background-size cover. Add important in case wistia is somehow in this descendancy */
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block !important;
}

/* 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	1919px
xl: 	hd			1920px	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: 1920px) {
  .xl-only {
    display: block !important;
  }
  .xl-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .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);
  border-radius: var(--button-border-radius);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  gap: 0.25em;
  background-clip: border-box;
  background-origin: border-box;
}
.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: 56px;
  /* 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: 2.5px;
  /* border width. This will be accounted for in calculating the button height as well */
  --button-border-radius: 0px;
  /* button radius */
  --button-padding-x: 17px;
  /* 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) */
  box-shadow: 2px 1px 9px var(--color-neutral-dark);
  font-size: 14px;
  line-height: var(--button-line-height);
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0.185em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  text-decoration: none;
  min-width: 12ch;
}
@media only screen and (min-width: 768px) {
  .button {
    --button-padding-x: 25px;
  }
}
/* 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: 0.875rem;
  --button-height: 3em;
}
/* button w/ a height slightly larger than the default height but it's not that big */
.button.button-size-medium {
  --button-height: 56px;
}
@media only screen and (min-width: 768px) {
  .button.button-size-medium {
    font-size: 15px;
  }
}
/* button w/ a height larger than the default height */
.button.button-size-large {
  --button-height: 56px;
}
@media only screen and (min-width: 768px) {
  .button.button-size-large {
    --button-height: 59px;
  }
}
@media only screen and (min-width: 1200px) {
  .button.button-size-large {
    font-size: 16px;
    --button-height: 61px;
    --button-padding-x: 28px;
  }
}
@media only screen and (min-width: 1400px) {
  .button.button-size-large {
    --button-height: 68px;
  }
}
/* button w/ a height that's even larger for no reason than the larger height */
.button.button-size-larger {
  font-size: 16px;
  --button-padding-x: 33px;
}
@media only screen and (min-width: 768px) {
  .button.button-size-larger {
    font-size: 17px;
    --button-height: 70px;
    --button-padding-x: 43px;
  }
}
/* constricts the width equal to whatever size height is set*/
.button.button-size-equal {
  --button-padding-x: 0;
  min-width: 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(to top, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
  background-color: var(--color-primary-gradient-start);
  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-primary-gradient-start);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-minimal {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: transparent;
}
.button.button-palette-minimal:is(:hover, :focus) {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-sp, var(--color-primary));
  border-color: transparent;
}
.button.button-palette-outline {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: currentColor;
  box-shadow: none;
}
.button.button-palette-outline:is(:hover, :focus) {
  background-color: transparent;
  background-image: none;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/*
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
*/
/*
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;
  flex-direction: row;
  flex-wrap: nowrap;
}
.button.button-style-special::after {
  content: "";
  transition: box-shadow 0.125s ease-in-out;
  display: inline-block;
  align-self: center;
  margin-inline: auto;
  width: 31px;
  height: var(--button-border-width);
  background: currentColor;
}
.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;
}
@media only screen and (min-width: 1200px) {
  .button.button-style-special {
    gap: 13px;
  }
}
/* link style button. Usually the maps link or read more text for blog posts */
.button.button-style-link {
  --button-border-width: 0px;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  background: none;
  box-shadow: none;
  min-height: 0;
  min-width: 0;
  font-size: 15px;
  font-family: var(--font-accent);
  color: var(--color-accent);
  letter-spacing: 0.125em;
  text-transform: uppercase;
  text-decoration: underline;
}
.button.button-style-link:is(:hover, :focus) {
  background: none;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* 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: calc(var(--button-height) * .5);
}

/* very corners for the button. only pointy bbies */
.button.button-style-sharp {
  --button-border-radius: 0em;
}

/* 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.button-palette-minimal {
  --button-height: 2.5em;
  --button-padding-x: .4em;
}
/* 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 {
  font-size: 11px;
}
.button-slider-glyph:empty::after {
  display: inline-block;
  order: 9;
  align-self: center;
  transform-origin: center center;
  /* slider glyph border arrow styles */
  content: "";
  width: 1em;
  height: 1em;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  flex: 0 0 auto;
  margin-left: -0.375em;
}
:is(.prev,
[rel=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;
  grid-column: 1/-1;
  /* 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: 30px;
  /* 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 */
  --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);
  /* the value to constrain the container's horizontal space. you will mostly modify this variable. */
}
@media only screen and (min-width: 768px) {
  .container {
    --container-fallback: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    --container-fallback: 125px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    --container-fallback: 115px;
  }
}
/* on some cases container query support is a conflict of interest and makes positioned/flex/grid children act weird. use this helper if you dont need container queries */
.container.container-style-normal {
  /* container query support */
  container-type: normal;
}

/* 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 */
.container.container-size-default {
  --container-gutter: 30px;
}
@media only screen and (min-width: 768px) {
  .container.container-size-default {
    --container-gutter: 55px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-default {
    --container-gutter: 75px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-default {
    --container-gutter: 100px;
  }
}
@media only screen and (min-width: 1920px) {
  .container.container-size-default {
    --container-gutter: 190px;
  }
}

/* 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;
  }
}
/* 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: 1920px) {
  .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: 1200px) {
  .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 > :where(*) {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}
.columns:where(.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:where(.columns-flex) > :where(*) {
  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:where(.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-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 > :where(*) {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.columns.columns-masonry > :where(*):nth-child(n+2) {
  margin-top: var(--columns-gap-y);
}

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

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

.popup {
  display: none;
  overflow-y: auto;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  background: none !important;
}
.popup.active {
  display: block;
}
.popup-overlay {
  min-height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.popup-frame {
  position: relative;
}
.popup:has(.popup-constrict) .popup-frame {
  height: 80vh;
  width: 100%;
  max-width: -moz-max-content;
  max-width: max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  align-self: center;
  margin-inline: auto;
}
.popup:has(.popup-constrict) .popup-frame > *:not(.popup-destroy) {
  flex: 1 1;
  max-height: -moz-max-content;
  max-height: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  height: 100%;
}
.popup:has(.popup-constrict) .popup-frame > *:not(.popup-destroy) :nth-child(n+2) {
  display: none;
}
.popup:has(.popup-constrict) .popup-body {
  padding-block: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

/* Popup Customizations
--------------------------------------------------------------- */
.popup {
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.popup-overlay {
  background: var(--color-dark);
  opacity: 0.8;
}
.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);
  padding-block: 4.875rem;
  padding-inline: 32px;
}
.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: 1em;
  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);
}
.popup:has(.popup-constricted) .popup-frame {
  padding: 0;
  background: none;
  box-shadow: none;
}
.popup:has(.popup-constricted) .popup-close-button {
  top: -0.5em;
  right: -0.5em;
  margin-top: 0;
  width: 1.5em;
  height: 1.5em;
  padding: 0.5em;
  background: var(--color-light);
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 1400px) {
  .popup-container {
    --container-gutter: 200px;
  }
}
@media only screen and (min-width: 1920px) {
  .popup-container {
    --container-gutter: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .popup-frame {
    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;
  overflow: hidden;
}
.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) {
  max-width: none;
}
.widget > :where(ul, .widget-content, .menu, div):last-child, .widget > :where(ul, .widget-content, .menu, div):not(.content) > li {
  margin-inline: calc(var(--widget-padding-x) * -1);
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) :where(ul, .sub-menu) {
  margin-inline: var(--widget-dropdown-margin-x);
}
: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 > :is(a, :only-child) {
  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-inline: calc(var(--widget-dropdown-padding-x) + var(--widget-dropdown-offset)) var(--widget-dropdown-padding-x);
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) ul li > :is(a, :only-child) {
  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 > :is(a, :only-child) {
  line-height: var(--widget-item-line-height) !important;
  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;
}
.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
--------------------------------------------------------------- */
.widgets-wrapper {
  display: flex;
  flex-direction: column;
  gap: min(var(--default-gap-y, 3.75rem), 3.75rem);
}

.widget {
  --widget-padding-x: 40px;
  /* 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: 2rem;
  /* Yes */
  --widget-padding-bottom: 30px;
  /* Yes */
  --widget-dropdown-padding-top: 0rem;
  /* 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: 0rem;
  /* 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: 38px;
  /* 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: 8px;
  /* Padding to distance between only the anchor tags' and parent widget li item.
  Not affected by `--widget-padding-x` */
  --widget-dropdown-margin-x: calc(var(--widget-padding-x) * -1);
  /* margin to offset dropdown. set to negative paddix x to flush, 0 to contain, whatever
  not affected by --widget-padding-x */
  --widget-dropdown-padding-x: var(--widget-padding-x);
  /* padding for dropdow
  not affected by --widget-padding-x */
  --widget-dropdown-offset: 1em;
  /* 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.75rem;
  /* margin distance between the widget title and the widget contents */
  --widget-content-margin-bottom: -30px;
  /* margin distance between the widget title and the widget contents */
  --widget-content-padding-top: 1.5rem;
  /* 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: 2rem;
  /* 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.5;
  /* 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 */
  background-color: var(--scheme-bg, var(--color-light));
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.widget > :where(ul, .widget-content):not(.content) {
  background: var(--color-light-alt);
  padding-bottom: 30px;
  font-size: 18px;
  color: var(--scheme-fg, var(--color-dark));
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}
.widget > :where(ul, .widget-content):not(.content) li:is(.open, :hover, :focus-within) > a {
  color: var(--scheme-sp, var(--color-accent));
  text-decoration: underline;
}
.widget > :where(ul, .widget-content):not(.content) li:is(.open, :hover, :focus-within) > a::before {
  background: var(--color-accent);
}
.widget > :where(ul, .widget-content):not(.content) li ul {
  background-color: var(--scheme-bg-contrast, var(--color-light-alt));
  text-align: left;
}
.widget > :where(ul, .widget-content):not(.content) li ul ul {
  background-color: rgba(0, 0, 0, 0.01);
}
.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;
}
/* Widget Title
--------------------------------------------------------------- */
:is(.widget_title, .widget-title, .widgettitle) {
  color: var(--color-primary);
  flex-wrap: wrap;
}
:is(.widget_title, .widget-title, .widgettitle):is(.fancy-border) {
  --fancy-border-width: 2rem;
  --fancy-border-margin-y: var(--widget-content-margin-top);
  --fancy-border-margin-l: 0;
}
:is(.widget_title, .widget-title, .widgettitle):is(.fancy-border-before)::before, :is(.widget_title, .widget-title, .widgettitle):is(.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):is(.fancy-border) {
  --fancy-border-margin-y: 0rem;
  --fancy-border-height: 0rem;
}
/* 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;
  justify-content: space-between;
}
.widget-toggle > * {
  min-width: 0;
}
.widget-toggle::before {
  display: inline-block;
  order: 9;
  align-self: center;
  flex: 0 0 auto;
  content: "";
  height: 0.475em;
  width: 0.75em;
  vertical-align: middle;
  background: var(--color-secondary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.open > .widget-toggle::before {
  transform: rotate(180deg);
}
/* 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: 24px;
  --fancy-border-margin-r: auto;
  --fancy-border-margin-l: auto;
  --fancy-border-height: 2px;
  --fancy-border-background: currentColor;
}
:where(hr), .fancy-border.fancy-border-before::before, .fancy-border.fancy-border-after::after {
  height: var(--fancy-border-height, 3px);
  width: var(--fancy-border-width, 100%);
  background: var(--fancy-border-background, var(--color-neutral));
  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-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-style-grow {
  --fancy-border-margin-x: 1.25rem;
  --fancy-border-margin-y: .75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: var(--fancy-border-margin-x);
       column-gap: var(--fancy-border-margin-x);
  row-gap: var(--fancy-border-margin-y);
}
hr.fancy-border-style-grow, .fancy-border-style-grow.fancy-border-before::before, .fancy-border-style-grow.fancy-border-after::after {
  margin: 0;
  flex: 1 1;
}

.fancy-border-style-round {
  border-radius: 999em;
}
.fancy-border-style-thin {
  --fancy-border-height: 1px;
}
.fancy-border-style-alignleft {
  --fancy-border-margin-r: auto;
  --fancy-border-margin-l: 0;
}
.fancy-border-style-alignright {
  --fancy-border-margin-r: 0;
  --fancy-border-margin-l: auto;
}
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.fancy-border-before::before, .fancy-border-style-inline.fancy-border-after::after {
  flex: 1 1;
  margin-block: 0 !important;
  align-self: center;
}
/* 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;
}
/* 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-laurel-reference {
  position: relative;
  font-size: 12px;
  line-height: 14px;
  color: inherit;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 2.125em;
}
.fancy-laurel:before, .fancy-laurel:after {
  content: "";
  position: absolute;
  display: block;
  font-size: 1rem;
  width: 23px;
  height: 47px;
  background-color: var(--color-secondary);
  -webkit-mask-image: url(images/laurel.svg);
          mask-image: url(images/laurel.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transform-origin: center center;
  bottom: -100%;
  top: -100%;
  margin: auto;
}
.fancy-laurel:before {
  left: -2.25em;
  transform: scaleX(-1);
}
.fancy-laurel:after {
  right: -2.25em;
}
.fancy-stars {
  pointer-events: none;
}
.fancy-stars-reference {
  position: relative;
}
.fancy-stars:after {
  font-size: 102px;
  content: "";
  display: block;
  width: 0.96774em;
  height: 1em;
  position: absolute;
  top: -0.5em;
  left: -0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(images/stars.svg);
}
@media only screen and (min-width: 1400px) {
  .fancy-stars:after {
    left: -0.6em;
  }
}
/* 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;
  border-bottom: 1px solid var(--color-neutral);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  padding-right: 1.5rem;
}
.accordion-trigger > * {
  pointer-events: none;
}
.accordion-trigger::after {
  content: "+";
}
.accordion-trigger.open {
  color: var(--color-primary);
}
.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(.gform_wrapper) :is(.gform_title,
.gform_description,
.gform_footer,
.gform_page_footer,
.gform_body) {
  margin: 0;
  padding: 0;
}
.field-form :where(.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: 10px;
}
.field-form :where(.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(.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 */
}
.field-form :is(.gform_wrapper) :is(.gform_footer, .gform_page_footer) {
  /* reset margin and padding and add  one margin to keep spacing simple to setup. Gravity forms man. */
  padding: 0;
  margin: 0;
  margin-top: 2rem;
}
.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 :is(.gform_wrapper) :is(.gform_footer, .gform_page_footer):not(:has(.gform_button)) {
  display: none;
}
.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-alt));
}
.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
--------------------------------------------------------------- */
:where(.swiper, .slick) {
  /* 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: 3rem;
  margin-bottom: 1rem;
}
/*
* Case Result Value
-------------------------------------------------------------------------------- */
.result-value {
  font-size: 55px;
  color: var(--color-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.result-value-confidential {
  font-size: 0.6em;
}
.result-value-number-long {
  font-size: 0.75em;
}
@media only screen and (min-width: 1920px) {
  .result-value {
    font-size: 63px;
    margin-bottom: 0.5rem;
  }
}
/*
* Case Result Type
-------------------------------------------------------------------------------- */
/*
* Case Result Title - Optional
-------------------------------------------------------------------------------- */
.result-title {
  color: var(--color-secondary);
}
.result-title:after {
  margin-top: 0.5rem;
  content: "\25CF\FE0E" "\25CF\FE0E" "\25CF\FE0E";
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.825em;
}
/*
* Case Result Description
-------------------------------------------------------------------------------- */
/*
* Case Result Learn More - Optional
-------------------------------------------------------------------------------- */
.result-learn-more {
  margin-top: 2rem;
  align-self: center;
}
/*
* Case Result Description + Details Split. Useful for popups/ hovers
-------------------------------------------------------------------------------- */
.result-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.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-hover .result-title {
  font-size: 16px;
  margin-bottom: 20px;
}
.result-details-hover .result-title::after {
  display: none;
}
.result-details-hover .result-content {
  font-size: 16px;
  line-height: 30px;
}
.result-details-popup .result-value {
  text-align: center;
}
/*
* includes/repeater-result
-------------------------------------------------------------------------------- */
.result {
  /* styles when the profile has a link */
}
.result {
  max-width: 100%;
}
.result, .result-container {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.result-container {
  width: 100%;
  flex: 1 1;
}
.result :where(.result-description, .result-content) {
  margin-left: auto;
  margin-right: auto;
}
.result-pointer-reference:has(.result-details, [href]):is(:hover, :focus-within) .result-content {
  max-width: 50ch;
}
.result-summary {
  text-align: center;
}
.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;
  width: 100%;
  height: 100%;
  margin: auto;
  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: 3rem 2rem 2rem;
  opacity: 1;
  text-align: center;
}
.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: 768px) {
  .result-details-hover {
    padding-top: 3.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .result-details-hover {
    transform: scale(1.25);
    padding: 0.825rem;
  }
}
/* 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:is(.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;
  line-height: var(--pa-item-line-height);
}
.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: 0.5rem;
  /* 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: 4.375rem;
  /* 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.75;
  /* 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 */
}
@media only screen and (min-width: 768px) {
  .practice-area {
    min-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .practice-area {
    /* reset heights to normal flow */
  }
}

/*
* Practice Area Category Title
-------------------------------------------------------------------------------- */
.practice-area-title {
  font-size: 16px;
  color: var(--color-primary);
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .practice-area-title {
    letter-spacing: 0.05em;
  }
  .practice-area-title::before {
    left: -1.75em;
  }
  .practice-area-title::after {
    right: -1.75em;
  }
}

/*
* Practice Area Menu
-------------------------------------------------------------------------------- */
.practice-area-menu {
  font-size: 18px;
  font-weight: 500;
}
.practice-area-menu li {
  border-top: 1px solid var(--color-neutral);
}
.practice-area-menu li:nth-child(-n+1) {
  border-top: 0;
}
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--color-primary);
}
/*
* includes/repeater-practice-area
-------------------------------------------------------------------------------- */
.practice-area {
  max-width: 100%;
}
.practice-area, .practice-area-container {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.practice-area-container {
  width: 100%;
  flex: 1 1;
}
/* 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 (min-width: 768px) {
  .pagination {
    align-items: center;
    justify-content: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
@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;
  }
  .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;
  color: var(--color-primary);
  border-top: 2px solid var(--color-neutral-light);
  padding-top: 24px;
  margin-top: 58px;
  margin-bottom: 0;
  width: 100%;
  max-width: calc(var(--comp) - var(--container-gutter, 30px));
}
.pagination .current,
.pagination a:is(:hover, :focus) {
  color: var(--color-accent);
}
.pagination-num-list a,
.pagination-num-list span {
  margin-inline: 0.25em;
}
.pagination-nav-link :where(a) {
  display: inline-flex;
  align-items: center;
}
.pagination-nav-link .prev .button-slick-glyph:after,
.pagination-nav-link .next .button-slick-glyph:before {
  display: inline-block;
  order: 9;
  align-self: center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.625rem;
  transform-origin: 40% 40%;
  width: 1em;
  height: 1em;
  border: 1.5px solid currentColor;
  border-top: 0;
  border-left: 0;
}
.pagination-nav-link .next {
  --button-border-width: 1.5px;
}
.pagination-nav-link .next .button-slick-glyph::before {
  transform: rotate(-45deg);
  margin-left: -0.5em;
}
.pagination-nav-link .prev {
  --button-border-width: 1.5px;
}
.pagination-nav-link .prev .button-slick-glyph:after {
  transform: rotate(135deg);
  margin-right: -0.75em;
}

/* Profile https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/profile.md
-------------------------------------------------------------------------------- */
/* Profile Image Skeletons. No need to edit 
--------------------------------------------------------------- */
.profile-image {
  width: 100%;
  display: block;
  position: relative;
  overflow: clip;
}
.profile-image-placeholder {
  display: flex;
}
.profile-image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-image::before {
  /* aspect ratio keeper + hover overlay */
  content: "";
  display: block;
  position: relative;
  background: var(--profile-image-overlay-background);
  z-index: 1;
  padding-top: calc(100% * var(--profile-image-aspect-l) / var(--profile-image-aspect-w));
  opacity: 0;
}
:is(.profile-image-img,
.profile-image-placeholder,
.profile-image-placeholder-img) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

:is(.profile-image-img,
.profile-image-placeholder-img) {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--profile-image-position);
     object-position: var(--profile-image-position);
}

.profile-image[href]::before,
.profile-image[href] .profile-view {
  pointer-events: none;
}
.profile-image[href]::before {
  opacity: var(--profile-image-overlay-opacity);
  mix-blend-mode: var(--profile-image-mix-blend);
  -webkit-backdrop-filter: var(--profile-image-backdrop-filter);
          backdrop-filter: var(--profile-image-backdrop-filter);
  pointer-events: auto;
}
.profile-image[href] .profile-view {
  opacity: 0;
}
.profile-image[href]:is(:hover, :focus-within)::before,
.profile-image[href]:is(:hover, :focus-within) .profile-view, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href]::before,
.profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-view {
  pointer-events: auto;
}
.profile-image[href]:is(:hover, :focus-within) .profile-view, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-view {
  opacity: 1;
}
.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;
  font-size: 15px;
  --button-border-width: 1px;
  --button-height: 56px;
}
.profile-image[href] .profile-view:hover {
  border-color: var(--color-light);
  color: var(--color-light);
}
@media only screen and (min-width: 1400px) {
  .profile-image[href] .profile-view {
    font-size: 16px;
    --button-height: 67px;
  }
}

/*
* Profile Image. Customizations https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/profile.md#css-vars
-------------------------------------------------------------------------------- */
.profile-image {
  --profile-image-aspect-w: 364;
  --profile-image-aspect-l: 454;
  --profile-image-position: 50% 15%;
  --profile-image-overlay-background: linear-gradient(to top, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
  --profile-image-overlay-opacity: 0;
  --profile-image-backdrop-filter: blur(1px);
}
/*
* Profile Placeholder. Customizations https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/profile.md#css-vars
-------------------------------------------------------------------------------- */
.profile-image-placeholder {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--color-neutral-lighter);
  background: var(--color-dark-alt);
  font-size: 1.5rem;
  font-family: var(--font-secondary);
  color: var(--color-light);
  text-align: center;
}
.profile-image-placeholder::after {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-width: 15px;
  border-style: solid;
  border-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color-neutral-darker);
}
.profile-image-placeholder-icon {
  font-size: 8rem;
  margin-bottom: 1rem;
}
/*
* Profile Image Pseudos: wheh linking to a bio page only
-------------------------------------------------------------------------------- */
.profile-image[href]::before,
.profile-image[href] .profile-view {
  transition: 0.5s ease-in-out all;
}
.profile-image[href]:is(:hover, :focus-within), .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] {
  --profile-image-overlay-opacity: .8;
}
.profile-image[href]:is(:hover, :focus-within):has(.profile-image-placeholder), .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href]:has(.profile-image-placeholder) {
  --profile-image-overlay-opacity: 1;
}

/*
* 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. No need to edit 
--------------------------------------------------------------- */
.profile-details {
  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;
}
.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 Additional Details Customizations
-------------------------------------------------------------------------------- */
.profile-details {
  /* view profile hit space/ additional details container */
}
.profile-details {
  padding-block: 2rem;
  padding-inline: 1rem;
  transition: 0.5s ease-in-out all;
  background: var(--color-dark-alt);
  color: var(--color-light);
}
.profile-details-body + .profile-details-footer {
  padding-top: 2rem;
  align-self: stretch;
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-info-name {
  align-content: center;
  margin-bottom: 0.25em;
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-info-position {
  font-size: 16px;
  font-family: var(--font-accent);
  color: var(--color-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 0;
}
/*
* includes/repeater-profile
-------------------------------------------------------------------------------- */
.profile {
  /* styles when the profile has a link */
}
.profile {
  background: var(--color-light-alt);
  align-self: stretch;
}
.profile:has([href]):is(.profile-pointer-reference):is(:hover, :focus-within) {
  background: var(--color-neutral);
}
.profile {
  max-width: 100%;
}
.profile, .profile-container {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.profile-container {
  width: 100%;
  flex: 1 1;
  padding: 1.5rem;
  gap: 1.5rem;
}
.profile-info {
  flex: 1 1;
}
.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: 2rem;
  margin-bottom: 2rem;
}
/*
* Testimonial Highlight / Main quote
-------------------------------------------------------------------------------- */
.testimonial-highlight {
  font-size: 20px;
  line-height: 30px;
  color: inherit;
  text-transform: none;
  font-weight: 500;
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .testimonial-highlight {
    font-size: 24px;
    line-height: 38px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-highlight {
    font-size: 25px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-highlight {
    font-size: 27px;
    line-height: 43px;
  }
}
/*
* Testimonial Quote Body / other parts of the quote
-------------------------------------------------------------------------------- */
.testimonial-quote {
  margin-top: 0;
  margin-bottom: 2rem;
}
/*
* Testimonial Divider - Optional
-------------------------------------------------------------------------------- */
/*
* Testimonial Source + Optional Icon
-------------------------------------------------------------------------------- */
.testimonial-source {
  font-size: 14px;
  line-height: 20px;
  color: var(--color-neutral-lighter);
  letter-spacing: 0.18em;
  text-align: left;
  margin-bottom: 0;
}
.testimonial-source span:nth-last-child(n+2)::after {
  content: "|";
  color: var(--color-secondary);
  letter-spacing: 0em;
  margin: 0.25em 0.5em;
}
:where(.content-palette-dark) .testimonial-source {
  /* 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, inherit);
}
@media only screen and (min-width: 768px) {
  .testimonial-source {
    color: var(--color-primary);
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-source {
    font-size: 15px;
  }
}
.testimonial-source-icon {
  font-size: 1.25em;
}

/*
* includes/repeater-testimonial
-------------------------------------------------------------------------------- */
.testimonial {
  max-width: 100%;
}
.testimonial, .testimonial-container {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.testimonial-container {
  width: 100%;
  flex: 1 1;
}
.testimonial :not(.testimonial-divider) + .testimonial-source {
  margin-top: auto;
}
:is(.testimonial-highlight, .testimonial-quote):has(+ .testimonial-divider) {
  margin-bottom: 0;
}

.testimonial {
  text-align: left;
}
.testimonial-container {
  align-items: left;
  align-content: center;
}
.testimonial :where(.testimonial-highlight, .testimonial-quote) {
  margin-left: 0;
  margin-right: auto;
}
.testimonial .testimonial-quote {
  width: 80%;
  max-width: 87ch;
}
/* 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
--------------------------------------------------------------- */
/* Video Button Skeletons. No need to edit 
--------------------------------------------------------------- */
@keyframes video-button-default-text-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.video-button-default {
  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;
}
.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;
  --video-button-size: 70px;
}
.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;
}
.video-button-default > .wistia_click_to_play {
  position: static !important;
  width: auto !important;
  height: auto !important;
}
.video-button-default-glyph {
  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-text {
  font-size: var(--video-button-glyph-height);
}
.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:not(.video-button-default-text-html-separator):first-child {
  right: 100%;
  margin-right: 1em;
}
.video-button-default-text-html span:not(.video-button-default-text-html-separator):last-child {
  left: 100%;
  margin-left: 1em;
}
.video-button-default-image-init:not(:only-child), .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:not(:only-child), .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-init:not(:only-child) {
  opacity: 0;
}

/* Video Button Customizations: 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: 80px;
  /* 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-text-svg-start-offset: 50%;
  /*  offset of svg text */
  --video-button-glyph-height: 0.24em;
  /* 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.16em;
  /* width for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-color: currentColor;
  /* color of the video button glyph. Used as a background-color so it can take gradients too */
  color: var(--color-light);
}
.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-duration: 0.25s;
  transition-timing-function: ease-in-out;
}
.video-button-default, .video-button-default-image, .video-button-default-text, .video-button-default-thumbnail-markup::after {
  transition-property: opacity, left, top, bottom, right, width, height;
}
.video-button-default::before, .video-button-default::after {
  transition-property: all;
}
.video-thumbnail .video-button-default {
  /* customize instances of video button within thumbnail*/
  --video-button-size: 53px;
}
.video-thumbnail .video-button-default:is(:hover, :focus), .video-pointer-reference:is(:hover, :focus-within) .video-thumbnail .video-button-default {
  --video-thumbnail-overlay-opacity: .8;
}
@media only screen and (min-width: 768px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 42px;
  }
}
@media only screen and (min-width: 1200px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 80px;
  }
}
@media only screen and (min-width: 1920px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 92px;
  }
}
.video-button-default-glyph {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-button-default-glyph::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-button-default-text {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-neutral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-button-default-text-separator {
  color: inherit;
}
.video-button-default-text-svg {
  transform: rotate(32deg);
  color: inherit;
}
.video-button-default-text-html > span {
  top: 0;
  bottom: 0;
}
.video-button-default.video-button-default-no-icon {
  /* tru element/background */
  /* these are basic styles. overhaul as needed */
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}
.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: linear-gradient(to top, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
  z-index: -1;
  top: 0.1em;
  bottom: 0.1em;
  left: 0.1em;
  right: 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-glyph-color: var(--color-secondary);
  /* these are basic styles. overhaul as needed */
}
.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-light);
}
.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-thumbnail .video-button-default.video-button-default-no-icon:is(:hover, :focus), .video-pointer-reference:has(.video-thumbnail .video-button-default.video-button-default-no-icon):is(:hover, :focus-within) .video-button-default.video-button-default-no-icon {
  /* these are basic styles. overhaul as needed */
}
.video-thumbnail .video-button-default.video-button-default-no-icon:is(:hover, :focus)::before, .video-pointer-reference:has(.video-thumbnail .video-button-default.video-button-default-no-icon):is(:hover, :focus-within) .video-button-default.video-button-default-no-icon::before {
  /* these are basic styles. overhaul as needed */
}
.video-thumbnail .video-button-default.video-button-default-no-icon:is(:hover, :focus)::after, .video-pointer-reference:has(.video-thumbnail .video-button-default.video-button-default-no-icon):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
--------------------------------------------------------------- */
/* Video Thumbnail Skeletons. No need to edit 
--------------------------------------------------------------- */
.video-thumbnail {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--color-light-alt);
  border-radius: inherit;
  overflow: hidden;
}
.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 {
  border-radius: inherit;
  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: var(--video-thumbnail-overlay-background);
  opacity: var(--video-thumbnail-overlay-opacity);
}
.video-thumbnail-markup-img img {
  max-width: none;
}

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

/* 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: 320;
  --video-thumbnail-aspect-l: 180;
  --video-thumbnail-overlay-background: var(--color-dark-alt);
  --video-thumbnail-overlay-opacity: 0;
}
.video-thumbnail:is(:hover, :focus), .video-pointer-reference:is(:hover, :focus-within) .video-thumbnail {
  --video-thumbnail-overlay-opacity: .5;
}
.video-thumbnail-markup[href]::after, .video-thumbnail-markup.wistia_embed::after {
  /* overlay */
  mix-blend-mode: multiply;
  transition: 0.25s ease-in-out all;
}

/* includes/repeater-video
--------------------------------------------------------------- */
.video {
  /* styles when the video has a link */
}
.video {
  max-width: 100%;
}
.video, .video-container {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.video-container {
  width: 100%;
  flex: 1 1;
}
.video-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-primary);
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
  padding: 25px 10px;
  border-bottom: 2px solid var(--color-neutral);
}
@media only screen and (min-width: 1400px) {
  .video-title {
    font-size: 20px;
    line-height: 28px;
    padding-inline: 30px;
  }
}
/* ================================================================================
* 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-header {
  margin-block: 55px 30px;
}
.awards-title {
  font-size: 15px;
  letter-spacing: 0.18em;
}
.awards :is(.swiper) {
  --carousel-height: 150px;
}
@media only screen and (min-width: 768px) {
  .awards-header {
    margin-block: 100px 60px;
  }
  .awards :is(.swiper) {
    --swiper-pagination-bottom: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .awards-header {
    margin-block: 110px 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .awards-header {
    margin-block: 120px 70px;
  }
  .awards-title {
    font-size: 16px;
  }
  .awards :is(.swiper) {
    --carousel-height: 160px;
  }
}
@media only screen and (min-width: 1920px) {
  .awards-title {
    font-size: 17px;
  }
}
/* ================================================================================
* 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: 75px;
  /* 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-can-overlap styles before sticky-ing */
  --layout-header-logo-height: var(--layout-header-height);
  /* height of logo including its padding at a given state or layout. */
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    --layout-header-height: 85px;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --layout-header-height: 87px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    /* Touch Devices Header Styles Start */
    --layout-header-height: 66px;
    /* 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: 130px;
    --layout-header-logo-height: 70px;
    /* 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-can-overlap {
  /* 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 */
  /* Top: Avoid changing the --layout-header-height in this state to prevent the document from shifting on scroll */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-can-overlap {
    /* override logo height apart form the header height on this state only. Adjust as needed */
    --layout-header-logo-height: 150px;
    --layout-header-offset: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .doc-header-not-sticky .header-can-overlap {
    --layout-header-offset: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-can-overlap {
    /* 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, 0px)) !important;
}

/* Layout Header Overlaps
	NOTE: Classes to use:
		.has-layout-header-offset => the element within the layout that will have the negative margins to overlap itself
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .header-can-overlap .has-layout-header-offset:not(:has(.has-layout-header-offset)):is(:is(.template-wrapper > :first-child),
  :is(.template-wrapper > :first-child) *)::before {
    content: "";
    flex: 0 0 auto;
    grid-column: 1/-1;
    height: var(--layout-header-height);
    display: block;
    width: 100%;
  }
  .header-can-overlap:has(.has-layout-header-offset) .layout-header {
    position: fixed;
  }
}
/* 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, 0px);
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--scheme-bg, var(--color-dark-alt));
  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-gutter: 14px;
}
@media only screen and (min-width: 768px) {
  .layout-header {
    background-color: var(--scheme-bg, var(--color-light));
  }
}
@media only screen and (min-width: 1200px) {
  .layout-header {
    /* Non-touch Devices Header Styles Start */
  }
  .layout-header-container {
    --container-gutter: 15px;
  }
}
@media only screen and (min-width: 1400px) {
  .layout-header-container {
    --container-gutter: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .layout-header {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-can-overlap .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-can-overlap .layout-header {
    /* remove background */
    background: transparent;
    /* remove dropdown shadow on all devices when not scrolling yet */
    box-shadow: none;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-can-overlap .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 */
}
@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-can-overlap .layout-header {
  /* Overlay header on header-can-overlap. best for setting position on large devices AND NOTHING ELSE */
}
/* Header Blocks - How elements will be layed out in the header
--------------------------------------------------------------- */
:where(.header-block, .header-blocks) {
  /* uncomment if flex/grid is causing any issues*/
  min-width: 0;
}

.header-blocks {
  justify-content: center;
  align-items: center;
  -moz-column-gap: var(--container-gutter);
       column-gap: var(--container-gutter);
  row-gap: 0rem;
  display: grid;
  min-height: var(--layout-header-height);
}
.header-block:is(.header-logo) {
  grid-area: logo;
  justify-self: self-start;
  height: var(--layout-header-logo-height);
}
.header-block:is(.header-nav) {
  grid-area: nav;
}
.header-block:is(.header-cta) {
  grid-area: cta;
}
.header-block:is(.header-toggle-menu) {
  grid-area: toggle-menu;
  align-self: stretch;
}
@media only screen and (min-width: 1200px) {
  .header-block {
    /* Non-touch Devices Header Styles Start */
  }
  .header-blocks {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav cta";
  }
  .header-block:is(.header-logo) {
    margin-bottom: min(0px, (var(--layout-header-logo-height) - var(--layout-header-height)) * -1);
  }
  .header-block:is(.header-nav) {
    align-self: stretch;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .header-blocks {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo cta" "logo nav";
    row-gap: 0em;
  }
  .header-block:is(.header-nav) {
    justify-self: self-end;
    align-self: stretch;
  }
  .header-block:is(.header-cta) {
    justify-self: self-end;
  }
}
@media only screen and (max-width: 1199px) {
  .header-block {
    /* Touch Devices Header Styles Start */
  }
  .header-blocks {
    margin-inline: calc(var(--container-gutter, 0px) * -1);
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo cta toggle-menu";
  }
  .header-block:is(.header-cta) {
    justify-self: self-end;
  }
}
@media only screen and (max-width: 767px) {
  .header-blocks {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: "logo logo" "cta toggle-menu";
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .header-block:is(.header-logo) {
    justify-self: stretch;
  }
  .header-block:is(.header-cta) {
    justify-self: stretch;
    align-self: stretch;
  }
}
.doc-header-not-sticky .header-can-overlap .header-block {
  /* 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-can-overlap .header-block:is(.header-nav) {
    align-self: self-end;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .doc-header-not-sticky .header-can-overlap .header-block:is(.header-nav) {
    align-self: stretch;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-can-overlap .header-block {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-block {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.header-block .doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Logo
--------------------------------------------------------------- */
.header-logo {
  padding-block: 9px;
  flex: 0 0 auto;
  /* 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 */
    margin-left: calc(var(--container-gutter, 0px) * -1);
    padding-inline: var(--container-gutter, 1.5rem);
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo {
    /* Touch Devices Header Styles Start */
    padding-block: 0.4rem;
    padding-inline: var(--container-gutter, 1rem);
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    padding-block: 0.5rem;
    max-width: 100%;
    width: 100%;
    background-color: var(--color-light);
  }
  .header-logo .logo-wrapper-br {
    /* show  */
    display: block;
  }
  .header-logo .logo-wrapper-br ~ .logo-wrapper-nonbr {
    display: none;
  }
}
.doc-header-not-sticky .header-can-overlap .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-can-overlap .header-logo {
    background-color: transparent;
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
  .doc-header-not-sticky .header-can-overlap .header-logo .logo-wrapper-sticky, .doc-header-not-sticky .header-can-overlap .header-logo .logo-wrapper-before-sticky ~ .logo-wrapper-br {
    /* hide default logo on before sticky */
    display: none;
  }
  .doc-header-not-sticky .header-can-overlap .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-can-overlap .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: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .header-toggle {
    width: 66px;
  }
}
@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-can-overlap .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-can-overlap .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: var(--color-primary) linear-gradient(to top, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
  color: inherit;
  position: relative;
  z-index: 99999;
  top: 0;
  transition: 0.375s all ease-in-out;
  order: 99;
}
.header-toggle-menu-icon {
  --fancy-icon-menu-width: 32px;
  --fancy-icon-menu-height: 15px;
  --fancy-icon-menu-bar-height: 3px;
}
.header-toggle-menu.open .header-toggle-menu-icon {
  color: inherit;
}
.header-toggle-menu-label {
  font-size: 12px;
  font-family: var(--font-accent);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-top: 0.25em;
  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: 768px) {
  .header-toggle-menu-icon {
    --fancy-icon-menu-width: 35px;
  }
  .header-toggle-menu-label {
    font-size: 13px;
  }
}
@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 */
  }
}
@media only screen and (max-width: 767px) {
  .header-toggle-menu {
    --layout-header-menu-toggle-open-offset: calc(var(--layout-header-logo-height) * -1);
  }
}
.doc-header-not-sticky .header-can-overlap .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-can-overlap .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-can-overlap .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-can-overlap .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 CTA
--------------------------------------------------------------- */
.header-cta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1rem;
}
@media only screen and (min-width: 1200px) {
  .header-cta {
    /* Non-touch Devices Header Styles Start */
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .header-cta {
    flex-direction: row;
    align-items: center;
    padding-inline: 0;
    gap: 0.5rem;
  }
}
@media only screen and (min-width: 1920px) {
  .header-cta {
    margin-left: 1.75rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta {
    /* Touch Devices Header Styles Start */
    gap: 0.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-cta {
    text-align: center;
    align-items: flex-start;
    flex: 1 1;
    padding-inline: var(--container-gutter);
  }
}
.doc-header-not-sticky .header-can-overlap .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-can-overlap .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: 13px;
  line-height: 1;
  font-family: var(--font-accent);
  text-transform: capitalize;
}
.header-cta-text > span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--color-primary);
  letter-spacing: 0em;
  margin: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .header-cta-text {
    /* Non-touch Devices Header Styles Start */
    font-size: 15px;
    color: var(--color-dark);
  }
}
@media only screen and (min-width: 1200px) {
  .header-cta-text {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .header-cta-text {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1920px) {
  .header-cta-text {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta-text {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-can-overlap .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 (min-width: 1200px) {
  .doc-header-not-sticky .header-can-overlap .header-cta-text {
    color: inherit;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-can-overlap .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: 24px;
  color: var(--color-secondary);
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  .header-numbers .number-link {
    color: var(--color-accent);
  }
}
@media only screen and (min-width: 1200px) {
  .header-numbers {
    /* Non-touch Devices Header Styles Start */
  }
  .header-numbers .number-link {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1400px) {
  .header-numbers .number-link {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1920px) {
  .header-numbers .number-link {
    font-size: 29px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-numbers {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-numbers .number-link {
    margin-left: -3px;
  }
}
.doc-header-not-sticky .header-can-overlap .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-can-overlap .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 */
}
@media only screen and (min-width: 1200px) {
  .header-nav {
    /* Non-touch Devices Header Styles Start */
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-self: stretch;
    flex: 1 1;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .header-nav {
    justify-content: flex-end;
    flex: 0 0 auto;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav {
    /* Touch Devices Header Styles Start */
    --layout-header-menu-touch-offset: var(--layout-header-height);
    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(0, 0, 0, 0.8);
    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);
    box-shadow: inset 0 5px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
}
.doc-header-not-sticky .header-can-overlap .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-can-overlap .header-nav {
    color: inherit;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-can-overlap .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;
  }
}
.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: var(--container-gutter,2rem);
  /* 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: 3px;
  /* current item border indicator height */
  font-size: 16px;
  line-height: 1.125;
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.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: 1em;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  transition: 0.125s ease-in-out all;
  gap: 0.5em;
  flex: 1 0;
  /* comment out if borders are not desired */
  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: "";
  height: 0.4em;
  width: 0.625em;
  vertical-align: middle;
  background: var(--color-secondary);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.header-nav .menu ul {
  background-color: var(--color-light-alt);
  color: var(--color-dark);
}
.header-nav .menu ul:is(.menu-item-has-children) > a::after {
  color: inherit;
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu {
    font-size: 14px;
    color: var(--color-dark);
    gap: 24px;
    display: flex;
    justify-content: space-between;
    position: relative;
    /* 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 !important;
  }
  .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 {
    padding-block: 0.625em;
    flex: 1 1;
    gap: 5px;
    /* 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(--scheme-sp, var(--color-accent));
  }
  .header-nav .menu li:is(:hover, :focus-within) > a::after {
    background: var(--color-accent);
  }
  .header-nav .menu li:is(.menu-item-special) > ul {
    width: 40em;
    right: -4em;
    left: auto;
  }
  .header-nav .menu li:is(.menu-item-special) > ul li {
    flex-direction: column;
    border-block: 0;
  }
  .header-nav .menu li:is(.menu-item-special) > ul li.view-all {
    align-items: flex-end;
  }
  .header-nav .menu li:is(.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:is(.menu-item-special) > ul li ul li > a {
    padding-block: 0.5em;
  }
  .header-nav .menu li:is(.menu-item-special) > ul > li {
    margin-bottom: 2rem;
  }
  .header-nav .menu ul {
    background-color: var(--color-light);
    font-size: 15px;
    font-family: var(--font-secondary);
    letter-spacing: 0em;
    text-transform: none;
    font-weight: 500;
    width: 230px;
    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.5);
    z-index: 1;
    padding-block: 1em;
    /* additional border styles + align to current item indicator. comment out if not needed */
  }
  .header-nav .menu ul li:is(.menu-item-has-children) > a::after {
    transform-origin: center center;
    height: 0.4em;
    width: 0.65em;
  }
  .header-nav .menu > li {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu > li > a {
    padding-block: 0.875rem;
    border: none;
  }
  .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), .header-nav .menu > li:is(:hover, :focus-within) > a {
    /* undo fanciness from non-media query scaffolding for top level menu item and its child a tag */
    border: none;
    background: none;
    color: var(--color-accent);
    margin: 0;
  }
  .header-nav .menu > li:is(:hover, :focus-within)::before {
    /* current menu item indicator if active */
  }
  .header-nav .menu > li:is(.current-menu-item, .current-menu-ancestor)::before {
    /* current menu item indicator if active */
  }
  .header-nav .menu > li:is(.menu-item-has-children) > a::after {
    color: var(--color-primary);
  }
  .header-nav .menu > li > ul {
    top: 100%;
    left: 0;
  }
  .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: 1919px) {
  .header-nav .menu > li > a {
    padding-top: 0;
  }
  .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 {
    font-size: 16px;
    gap: 26px;
  }
  .header-nav .menu ul {
    font-size: 17px;
    line-height: 26px;
    width: 270px;
  }
}
@media only screen and (min-width: 1920px) {
  .header-nav .menu {
    gap: 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .menu {
    background: var(--color-light);
    color: var(--color-dark);
    padding-top: 2rem;
    padding-bottom: 6rem;
    width: 100%;
    box-shadow: inherit;
  }
  .header-nav .menu li:not(.open) > ul {
    display: none;
  }
  .header-nav .menu li {
    padding-left: 72px;
    padding-right: 72px;
  }
  .header-nav .menu li ul {
    margin-left: calc(var(--layout-header-menu-touch-menu-padding-x) * -5);
    margin-right: calc(var(--layout-header-menu-touch-menu-padding-x) * -5);
  }
  .header-nav .menu li > a {
    flex: 1 0 100%;
    padding-block: 0.75em;
    /* distance both dropdown indicator and menu text to the edge */
  }
  .header-nav .menu li:is(:hover, :focus-within, .open) > a {
    /* activated styles upon interaction for touch */
    color: var(--scheme-sp, var(--color-accent));
  }
  .header-nav .menu li:is(:hover, :focus-within, .open) > a::after {
    background-color: var(--color-accent);
  }
  .header-nav .menu li:is(.open) {
    border-bottom: 0;
  }
  .header-nav .menu li:is(.open) > a {
    border-bottom: 0;
  }
  .header-nav .menu ul {
    background-color: var(--color-light-alt);
    font-size: 17px;
    font-family: var(--font-primary);
    color: inherit;
    letter-spacing: 0em;
    text-transform: none;
    align-self: stretch;
    order: 99;
    flex: 1 0 100%;
    /* basic borders to contrast multiple dropdown levels */
    padding-block: 0.5rem;
    margin-block: 0.5rem;
  }
  .header-nav .menu ul:has(> li:last-child.open) {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .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%;
    padding-block: 1.5rem;
  }
  .header-nav .menu li {
    padding-left: 34px;
    padding-right: 34px;
  }
  .header-nav .menu li ul {
    margin-left: calc(var(--layout-header-menu-touch-menu-padding-x) * -2.5);
    margin-right: calc(var(--layout-header-menu-touch-menu-padding-x) * -2.5);
  }
}
.doc-header-not-sticky .header-can-overlap .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 (min-width: 1200px) {
  .doc-header-not-sticky .header-can-overlap .header-nav .menu:after {
    content: "";
    display: block;
    height: 1px;
    width: 100vw;
    background: currentColor;
    opacity: 0.2;
    position: absolute;
    pointer-events: none;
    top: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-can-overlap .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 {
  grid-area: 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
--------------------------------------------------------------- */
/* Layout Banner Variables
--------------------------------------------------------------- */
/* In case banner is also as crazy as the header */
/* 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. */
.banner-has-background-image {
  /* Styles specific for when banner supports background image */
}
.banner-no-background-image {
  /* Styles specific for when banner doesnt support background image */
}
/* Layout Banner Overlaps
	NOTE: Classes to use:
		.layout-banner-offset-element => the element within the layout that will have the negative margins to overlap itself
		.has-layout-banner-offset => the adjacent layouts/ child of adjacent layouts that will have the pseudo element to adjust itself if the `layout-banner-offset-element` is next to it
--------------------------------------------------------------- */
.banner-can-overlap:has(.has-layout-banner-offset) :is(.layout-banner .layout-banner-offset-element)::after {
  content: "";
  flex: 0 0 auto;
  grid-column: 1/-1;
  height: var(--layout-banner-offset, 0px);
  display: block;
  width: 100%;
}
.banner-can-overlap .has-layout-banner-offset:not(:has(.has-layout-banner-offset)):is(:is(.layout-banner + *),
:is(.main, main, .aside, aside):first-child,
.layout-banner + :is(.main, main) > :first-child,
.layout-banner + :is(.main, main) > :first-child *) {
  isolation: isolate;
}
.banner-can-overlap:has(.has-layout-banner-offset) .layout-banner-offset-element:is(.layout-banner > :last-child,
.layout-banner > :last-child *) {
  margin-bottom: calc((var(--layout-banner-offset, 0px) + var(--overlap-buffer)) * -1);
}
.banner-can-overlap:has(.has-layout-banner-offset) .layout-banner:has(.layout-banner-offset-element) {
  padding-bottom: var(--overlap-buffer);
}

/* Layout Banner Itself
--------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .layout-banner {
    /* allow more space for mobile only because the design said so */
  }
  .layout-banner-container {
    --container-gutter: 10px;
  }
}
.banner-has-background-image .layout-banner {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .layout-banner {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Background
--------------------------------------------------------------- */
.banner-background {
  --responsive-background-overlay-mix-blend: multiply;
  --responsive-background-overlay-background: rgba(0, 0, 0,.5);
  --responsive-background-overlay-opacity: 0;
  --responsive-background-bg-position: center top;
}
@media only screen and (min-width: 768px) {
  .banner-background {
    --responsive-background-overlay-background:
    	/* example of gradient to contrast header further */
    	linear-gradient(
    		to bottom,
    		rgba(0, 0, 0, .8) 0,
    		transparent calc(var(--layout-header-height,0) * 1.5)
    	),
    	/* example of gradient to keep contrats on text. TIP: calculating from the center of the viewport width retains the gradients alignment to the text like in the comps */
    	linear-gradient(
    		45deg,
    		var(--color-dark) calc(50vw - min(480px,25%)),
    		transparent calc(50vw + min(480px,25%))
    	) ;
  }
}
/* Banner Main
--------------------------------------------------------------- */
.banner-main {
  padding-block: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.banner-main-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.banner-main-block, .banner-main-blocks {
  min-width: 0;
  max-width: 100%;
}
.banner-main-block:only-child {
  flex: 1 1;
  grid-column: 1/-1;
  grid-row: 1/-1;
  justify-self: stretch;
}
@media only screen and (min-width: 1200px) {
  .banner-main {
    padding-block: 5rem 4rem;
  }
  .banner-main-blocks {
    grid-template-columns: 1fr auto;
  }
}
.banner-has-background-image .banner-main {
  /* Styles specific for when banner has background image */
}
.banner-has-background-image .banner-main {
  padding-block: 1.5rem;
  background-color: var(--scheme-bg, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
  min-height: 130px;
  position: relative;
}
.banner-has-background-image .banner-main::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(to bottom, transparent, var(--color-neutral-dark));
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .banner-has-background-image .banner-main {
    min-height: 220px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-main {
    padding-block: 60px;
    min-height: 330px;
  }
  .banner-has-background-image .banner-main-container {
    --container-gutter: 255px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-has-background-image .banner-main {
    padding-block: 55px;
  }
  .banner-has-background-image .banner-main-container {
    --container-gutter: 380px;
  }
}
@media only screen and (min-width: 1920px) {
  .banner-has-background-image .banner-main-container {
    --container-gutter: 600px;
  }
}
.banner-has-background-image.header-can-overlap .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-no-background-image .banner-main {
  padding-bottom: 55px;
}
@media only screen and (min-width: 768px) {
  .banner-no-background-image .banner-main {
    padding-block: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-no-background-image .banner-main {
    padding-top: 80px;
    padding-bottom: 65px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-no-background-image .banner-main {
    padding-top: 95px;
  }
}
/* Banner Body
--------------------------------------------------------------- */
.banner-body, .banner-body-blocks {
  display: grid;
  grid-template-columns: 100%;
  align-items: inherit;
  justify-content: inherit;
  justify-items: inherit;
}
.banner-body-block, .banner-body-blocks {
  min-width: 0;
  max-width: 100%;
}
.banner-body-blocks {
  gap: 2.125rem;
}
@media only screen and (min-width: 1200px) {
  .banner-body-blocks {
    gap: 13px;
  }
}
.banner-has-background-image .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-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: 14px;
  line-height: 18px;
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: inherit;
  padding-left: 1rem;
}
.secondary-heading em {
  /* emphasized words */
  color: var(--scheme-sp, var(--color-accent));
  letter-spacing: 0em;
  font-style: normal;
}
.secondary-heading > span {
  position: relative;
  margin-bottom: 0.35em;
  display: block;
}
.secondary-heading > span::before {
  color: var(--scheme-sb, var(--color-secondary));
  font-style: normal;
  font-weight: 700;
  content: "\25CF\FE0E";
  margin-inline: 0.25em;
  position: absolute;
  right: 100%;
  top: 0em;
  padding-right: 0.125ch;
}
@media only screen and (min-width: 768px) {
  .secondary-heading {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .secondary-heading > span {
    display: inline-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) and blog post titles*/
}
.secondary-heading.secondary-heading-blog-posts {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.secondary-heading.secondary-heading-blog-post-title {
  /* Styles specific for the blog post title*/
}
/* 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: 40px;
  line-height: calc(1em + 5px);
  text-transform: none;
  font-weight: 800;
  margin-bottom: 0;
  --fancy-border-width: 73px;
}
.primary-heading em {
  /* emphasized words */
  color: var(--scheme-sp, var(--color-accent));
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  .primary-heading {
    font-size: 55px;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading {
    font-size: 60px;
  }
}
.primary-heading.primary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
  text-transform: capitalize;
  font-size: 22px;
  line-height: 26px;
}
@media only screen and (min-width: 768px) {
  .primary-heading.primary-heading-default {
    font-size: 34px;
    line-height: 41px;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading.primary-heading-default {
    font-size: 50px;
    line-height: 58px;
  }
}
.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) and blog post titles*/
}
.primary-heading.primary-heading-blog-posts {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.primary-heading.primary-heading-blog-post-title {
  /* Styles specific for the blog post title*/
}
.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;
  z-index: 1;
}
.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 */
}
/* Banner video (Optional depending on comps)
--------------------------------------------------------------- */
.banner-video .video-thumbnail {
  width: 300px;
}
.banner-video-cta.video-button:not(.video-button-default-has-text) {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .banner-video {
    order: 99;
  }
}
.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 {
  text-wrap: balance;
  max-width: 90ch;
}
.banner-has-background-image .banner-content {
  /* Styles specific for when banner has background image */
}
.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: inherit;
  text-align: inherit;
  justify-content: inherit;
}
.banner-buttons-touch {
  margin-top: 20px;
}
.banner-buttons-touch:first-child {
  margin-top: -1rem;
}
@media only screen and (min-width: 1200px) {
  .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: 1199px) {
  .banner-button-shift .layout-banner .banner-buttons {
    /* hide buttons inside of banner */
    display: none;
  }
  .banner-buttons, .banner-buttons-touch {
    flex-direction: column;
  }
  .banner-buttons-touch {
    width: 100%;
    align-items: stretch;
    max-width: 337px;
  }
  .h1-fallback-heading:has(+ .banner-buttons-touch) {
    margin-bottom: 0;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .banner-buttons-touch {
    max-width: 310px;
  }
}

/* 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
--------------------------------------------------------------- */
/* Layout Sidebar Variables
--------------------------------------------------------------- */
/* In case banner is also as crazy as the header */
/* 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. */
/* Layout sidebar Overlaps
	NOTE: Classes to use:
		.layout-sidebar-offset-element => the element within the layout that will have the negative margins to overlap itself
		.has-layout-sidebar-offset => the adjacent layouts/ child of adjacent layouts that will have the pseudo element to adjust itself if the `layout-sidebar-offset-element` is next to it
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .sidebar-can-overlap .has-layout-sidebar-offset:not(:has(.has-layout-sidebar-offset)):is(.template-wrapper > :first-child,
  .template-wrapper > :first-child *)::after {
    content: "";
    flex: 0 0 auto;
    height: 100%;
    display: block;
    width: 100%;
  }
  .sidebar-can-overlap:has(.has-layout-sidebar-offset) .layout-sidebar-offset-element {
    margin-top: calc((var(--layout-sidebar-offset, 0px) + var(--overlap-buffer)) * -1);
  }
}
/* Layout Sidebar
--------------------------------------------------------------- */
/* Sidebar Form
--------------------------------------------------------------- */
#sidebar-form {
  background: var(--scheme-bg, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
  --widget-padding-top: 2rem;
  --widget-padding-bottom: calc(var(--widget-padding-top) + 2rem);
  --widget-content-margin-top: 0rem;
}
#sidebar-form .gform_title {
  font-size: 2rem;
}
#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_footer {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}
#sidebar-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#sidebar-form .field-form-body {
  position: relative;
}
#sidebar-form .gfield.required-message {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 100%;
}
/* ================================================================================
Contact Info
================================================================================ */
/* Layout Contact https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/contact.md
-------------------------------------------------------------------------------- */
/* Layout contact Variables
--------------------------------------------------------------- */
/* In case contact is also as crazy as the header */
/* 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-contact-offset: 100px;
}
/* Layout contact Overlaps
	NOTE: Classes to use:
		.layout-contact-offset-element => the element within the layout that will have the negative margins to overlap itself
		.has-layout-contact-offset => the adjacent layouts/ child of adjacent layouts that will have the pseudo element to adjust itself if the `layout-contact-offset-element` is next to it
--------------------------------------------------------------- */
.contact-can-overlap:has(.has-layout-contact-offset) .layout-contact:has(.layout-contact-offset-element) {
  isolation: isolate;
}
.contact-can-overlap .has-layout-contact-offset:not(:has(.has-layout-contact-offset)):is(.footer-top:has(+ .footer-bottom .footer-contact:first-child),
.footer-top:has(+ .footer-bottom .footer-contact:first-child) + *,
.template-wrapper:has(:is(.main, main) .layout-contact:nth-child(n+2)))::after {
  content: "";
  flex: 0 0 auto;
  grid-column: 1/-1;
  height: var(--layout-contact-offset, 0px);
  display: block;
  width: 100%;
}
.contact-can-overlap:has(.has-layout-contact-offset) .layout-contact-offset-element:is(.layout-contact > :last-child,
.layout-contact > :last-child *) {
  margin-top: calc((var(--layout-contact-offset, 0px) + var(--overlap-buffer)) * -1);
}
.contact-can-overlap:has(.has-layout-contact-offset) .layout-contact:has(.layout-contact-offset-element),
.contact-can-overlap:has(.has-layout-contact-offset) :is(main, .main):has(.layout-contact) {
  padding-top: var(--overlap-buffer) !important;
}

/* Contact Main
-------------------------------------------------------------------------------- */
.contact-main {
  padding-block: 56px 60px;
}
@media only screen and (min-width: 768px) {
  .contact-main {
    padding-block: 85px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-main {
    padding-block: 80px 88px;
  }
}
.footer-no-contact .contact-main {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact .contact-main {
  /* Styles/Selectors for when nested layout-contact is enabled */
}

/* 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: 18px;
  font-family: var(--font-secondary);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
/* Global Stylees - Locations
-------------------------------------------------------------------------------- */
/* Global Stylees - Social Links (ie. firm social media, blog share icons, etc)
-------------------------------------------------------------------------------- */
.social {
  font-size: 1.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.125em;
}
.social li {
  list-style: none;
}
.social li a {
  color: inherit;
}
.social li a svg * {
  fill: currentColor;
}
.social li:is(:hover, :focus) {
  color: var(--scheme-sp, var(--color-secondary));
}
/* Confact Info Block - Titles
-------------------------------------------------------------------------------- */
.contact-block-title:not(.contact-block-title-custom) {
  color: var(--color-primary);
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 15px;
}
.contact-block-title:is(.fancy-border-after) {
  margin-bottom: var(--fancy-border-margin-y);
}
@media only screen and (min-width: 1200px) {
  .contact-block-title:not(.contact-block-title-custom) {
    font-size: 23px;
  }
}
/* Confact Info Block - Basic Text Content
-------------------------------------------------------------------------------- */
.contact-block-content:not(.contact-block-content-custom) {
  line-height: 26px;
  text-align: initial;
}
:where(.contact-block-content:not(.contact-block-content-custom) :where(a)) {
  color: inherit;
  text-decoration: none;
}
:where(.contact-block-content:not(.contact-block-content-custom) :where(a)):where(:hover, :focus) {
  text-decoration: underline;
}

.contact-block-content:not(.contact-block-content-custom) address {
  margin-bottom: 1rem;
}
:where(.contact-block-content:not(.contact-block-content-custom) :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-content: space-between;
  grid-auto-flow: dense;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  row-gap: 44px;
  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-content:not(.contact-block-content-custom) .contact-block {
  display: flex;
  flex-direction: column;
}
.contact-block:is(.contact-special) {
  justify-self: center;
}
@media only screen and (min-width: 768px) {
  .contact-blocks {
    row-gap: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-blocks {
    grid-template-columns: repeat(3, auto);
    row-gap: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-blocks {
    grid-template-columns: repeat(4, auto);
  }
}
@media only screen and (max-width: 1199px) {
  .contact-blocks {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .contact-blocks {
    justify-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .contact-block, .contact-blocks {
    align-items: center;
    align-content: center;
  }
  .contact-block:is(.contact-special) {
    justify-self: stretch;
  }
}
.contact-block.contact-special {
  text-align: center;
  max-width: 100%;
  align-items: center;
}
.contact-block.contact-special .contact-logo {
  margin: 0 auto;
  height: 85px;
}
@media only screen and (min-width: 768px) {
  .contact-block.contact-special .contact-logo {
    height: 98px;
  }
}
.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 {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
  font-family: inherit;
  text-transform: none;
  font-weight: 800;
}
.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: 1rem;
  display: grid;
}
.contact-block.contact-numbers .number-block {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact-block:is(.contact-location, .contact-locations) .location-directions {
  margin-top: auto;
}
.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;
}
/* Contact Form
--------------------------------------------------------------- */
#contact-form .gform_title:last-child {
  margin-bottom: 0;
}
#contact-form .gform_description {
  max-width: 80ch;
}
#contact-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
}
@media only screen and (max-width: 1199px) {
  #contact-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
================================================================================ */
/* Layout Footer https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/footer.md
--------------------------------------------------------------- */
/* Layout Footer Variables
--------------------------------------------------------------- */
/* In case footer is also as crazy as the header */
/* 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. */
/* Layout Footer Overlaps
	NOTE: Classes to use:
		.layout-footer-offset-element => the element within the layout that will have the negative margins to overlap itself
		.has-layout-footer-offset => the adjacent layouts/ child of adjacent layouts that will have the pseudo element to adjust itself if the `layout-footer-offset-element` is next to it
--------------------------------------------------------------- */
.footer-can-overlap:has(.has-layout-footer-offset) .layout-footer:has(.layout-footer-offset-element) {
  isolation: isolate;
}
.footer-can-overlap .has-layout-footer-offset:not(:has(.has-layout-footer-offset)):is(:has(+ .layout-footer),
.template-wrapper:has(+ .layout-footer) :is(.template-wrapper:has(+ .layout-footer) > :last-child,
:is(.main, main, .aside, aside):last-child,
:is(.main, main):last-child > :last-child,
:is(.main, main):last-child > :last-child *))::after {
  content: "";
  flex: 0 0 auto;
  grid-column: 1/-1;
  height: var(--layout-footer-offset, 0px);
  display: block;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .footer-can-overlap .has-layout-footer-offset:not(:has(.has-layout-footer-offset)):is(:is(.main, main):has(+ :is(.aside, aside):last-child),
  :is(.main, main):has(+ :is(.aside, aside):last-child) *)::after {
    content: "";
    flex: 0 0 auto;
    grid-column: 1/-1;
    height: var(--layout-footer-offset, 0px);
    display: block;
    width: 100%;
  }
}
.footer-can-overlap:has(.has-layout-footer-offset) .layout-footer-offset-element:is(.layout-footer > :first-child,
.layout-footer > :first-child *) {
  margin-top: calc((var(--layout-footer-offset, 0px) + var(--overlap-buffer)) * -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-alt));
  color: var(--scheme-fg, var(--color-light));
}
.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: 25px;
}
.footer-top-container {
  --container-gutter: 20px;
}
@media only screen and (min-width: 768px) {
  .footer-top {
    padding-block: 34px;
  }
  .footer-top-container {
    --container-gutter: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-top {
    padding-block: 50px;
  }
  .footer-top-container {
    --container-gutter: 45px;
  }
}
.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*/
}
/* Footer Form
--------------------------------------------------------------- */
#footer-form {
  border: 2.5px solid var(--color-neutral-darker);
  color: var(--scheme-fg, inherit);
  padding-block: 40px 45px;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}
#footer-form .field-form {
  padding-inline: 20px;
}
#footer-form .gform_title {
  font-size: 37px;
  line-height: 42px;
  font-family: var(--font-secondary);
  color: inherit;
  text-transform: capitalize;
  font-weight: 800;
}
#footer-form .gform_description {
  max-width: 80ch;
}
#footer-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#footer-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#footer-form .gfield {
  font-size: 18px;
}
#footer-form .gfield_label {
  font-size: 17px;
}
#footer-form .gfield.gfield--type-submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#footer-form .gfield.required-message {
  font-size: 14px;
  text-align: center;
  text-transform: lowercase;
  color: inherit;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  #footer-form {
    padding-block: 65px;
  }
  #footer-form .field-form {
    padding-inline: 107px;
  }
  #footer-form .gform_title {
    font-size: 44px;
    line-height: 54px;
    margin-inline: -1rem;
    margin-bottom: 1rem;
  }
  #footer-form .gform_fields {
    row-gap: 26px;
  }
  #footer-form .gform_footer {
    margin-top: 24px;
  }
  #footer-form .gfield.required-message {
    font-size: 16px;
    margin-bottom: -1rem;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form {
    padding-block: 105px 100px;
  }
  #footer-form .field-form {
    padding-inline: 93px;
  }
  #footer-form .gform_title {
    font-size: 59px;
    line-height: 73px;
    margin-bottom: 20px;
  }
  #footer-form .gform_fields {
    gap: 30px 25px;
  }
  #footer-form .gform_footer {
    justify-content: flex-end;
  }
  #footer-form .gfield_label {
    font-size: 18px;
  }
  #footer-form .gfield.required-message {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  #footer-form .field-form {
    padding-inline: 112px;
  }
  #footer-form .gform_title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1920px) {
  #footer-form {
    padding-block: 125px 105px;
  }
  #footer-form .field-form {
    padding-inline: 377px;
  }
  #footer-form .gfield.required-message {
    margin-bottom: 0.5rem;
  }
}
@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: 1/-1;
  }
}
@media only screen and (max-width: 767px) {
  #footer-form .field-form-body {
    position: relative;
  }
}
.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
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .footer-contact {
    max-width: 775px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-contact {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1920px) {
  .footer-contact {
    max-width: 1520px;
  }
}
.footer-contact .contact-block:is(.contact-special) {
  justify-self: center;
}
@media only screen and (min-width: 768px) {
  .footer-contact .contact-block:is(.contact-special) {
    grid-column: 1/-1;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-contact .contact-block:is(.contact-special) {
    align-self: center;
    grid-column: initial;
    padding-right: 90px;
  }
}
@media only screen and (min-width: 1920px) {
  .footer-contact .contact-block:is(.contact-special) {
    padding-right: 255px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-contact .contact-blocks {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: 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.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
  */
  max-width: 200px;
  margin-inline: auto;
  text-align: left;
}
.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
  */
  max-width: 200px;
  margin-inline: auto;
  text-align: left;
}
.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-contact .contact-block.contact-social {
  max-width: 200px;
  margin-inline: auto;
}
.footer-contact .contact-block.contact-social .contact-social-title {
  font-size: 15px;
  font-family: var(--font-accent);
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
/* Footer Split - Bottom
--------------------------------------------------------------- */
.footer-bottom {
  background-color: var(--scheme-bg-contrast, var(--color-light));
  color: var(--scheme-fg, var(--color-dark));
  /* border separation all the way to the edge */
}
.footer-bottom-container {
  --container-gutter: 0px;
}
.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 Sitemap
--------------------------------------------------------------- */
.footer-no-contact .footer-sitemap {
  /* Styles/Selectors for when nested layout-contact is hidden*/
}
.footer-has-contact .footer-sitemap {
  /* Styles/Selectors for when nested layout-contact is enabled */
}

/* Footer utility
--------------------------------------------------------------- */
.footer-utility {
  /* border separation */
}
.footer-utility {
  padding-block: 25px;
  background: var(--color-light-alt);
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-utility-blocks {
  display: grid;
  row-gap: 14px;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
.footer-utility-block:only-child {
  grid-column: 1/-1;
}
.footer-utility-content > * {
  display: inline;
}
.footer-utility-content :is(li) {
  display: inline;
  margin: 0;
}
.footer-utility-content :is(li):nth-child(n+2)::before {
  content: " | ";
  display: inline-block;
  margin: 0 0.5em 0 0.25em;
}
.footer-utility-content :is(a) {
  text-decoration: underline;
}
.footer-utility .footer-copyright::after {
  content: " | ";
  display: inline-block;
  margin: 0 0.5em;
}
.footer-utility .footer-copyright span {
  margin-inline: 0.25em;
}
@media only screen and (min-width: 768px) {
  .footer-utility {
    padding-block: 30px;
    padding-inline: 30px;
  }
  .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+3)::before {
    content: " | ";
    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 (min-width: 1400px) {
  .footer-utility {
    padding-inline: 38px;
  }
}
@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);
}
.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: 0px;
  }
  .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:not(:has(~ .default-section-sidebar)) {
    /* no sidebar adjust */
    grid-column: 1/-1 !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 (min-width: 1920px) {
  .default-section-main {
    padding-right: 185px;
  }
  .blog .default-section-main {
    padding-right: 132px;
  }
}
@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: 40px;
}
@media only screen and (min-width: 768px) {
  .default-sections {
    --default-gap-y: 65px;
  }
}
@media only screen and (min-width: 1200px) {
  .default-sections {
    --default-sidebar-width: 346px;
    --default-gap-y: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  .default-sections {
    --default-gap-x: 72px;
  }
}
@media only screen and (min-width: 1920px) {
  .default-sections {
    --default-gap-x: 112px;
  }
}
@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, 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: 1920px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 250px;
  }
}
@media only screen and (max-width: 1199px) {
  .default-sections.default-sections-full {
    --default-gap-y: 0rem;
  }
}
/* 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, 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: 17px;
  font-family: var(--font-accent);
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
}
.entry-meta a:is(:hover, :focus) {
  text-decoration: underline;
}
.entry-meta-category a:not(:hover, :focus) {
  color: var(--color-primary);
}
.entry-button.button {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 800;
}
.entry-button.button:is(:hover, :focus) {
  color: var(--color-accent);
}
.entry-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.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: 58px;
  margin-top: 58px;
  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
-------------------------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .default-header {
    --fancy-border-width: 73px;
    --fancy-border-margin-l: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .default-header {
    --fancy-border-margin-y: 34px;
  }
}
@media only screen and (max-width: 1199px) {
  .default-header {
    text-align: center;
    margin-bottom: 56px;
  }
  .default-header::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .default-header {
    margin-bottom: 33px;
  }
}
@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
-------------------------------------------------------------------------------- */
.layout-default :is(.gfield-custom-box-label-adjacent) .gfield_label,
.layout-default :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-dark);
}
.layout-default :is(.focus):is(.gfield-custom-box-label-adjacent):is(.focus) .gfield_label,
.layout-default :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(--color-secondary) !important;
}
.layout-default .gfield:is(.gfield-custom-box-label-inset) .gfield_label, .layout-default :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]) {
  color: var(--color-dark);
}
@media only screen and (max-width: 1199px) {
  .layout-default-sections-simple .layout-default-aside {
    max-width: var(--default-sidebar-width);
  }
}
@media only screen and (max-width: 767px) {
  .layout-default-sections-simple {
    --default-sidebar-width: auto;
  }
  .layout-default-sections-simple .layout-default-aside {
    padding-bottom: 33px;
  }
  .layout-default-sections-simple .layout-default-aside .widget {
    margin-bottom: 0;
    border-inline: 0;
    border-bottom: 0;
  }
}

/*!
* Default Heading
-------------------------------------------------------------------------------- */
.default-heading:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog .default-heading {
    text-align: center;
  }
}

/*!
* Default Divider - Optional
-------------------------------------------------------------------------------- */
.default-divider {
  --fancy-border-margin-y: 3rem;
}
/*!
* 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;
}

/* ================================================================================
* 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) {
  padding-block: 4rem;
}

:where(.home-section) .section-header, :where(.home-section) .section-footer {
  /* set centering as a scaffolding setting for all sections */
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
:where(.home-section) .section-header:where(:nth-last-child(n+2):not(.section-block)) {
  margin-bottom: 2rem;
}
:where(.home-section) .section-header:where(:nth-last-child(n+2):not(.section-block)):where(.fancy-border-after) {
  margin-bottom: var(--fancy-border-margin-y, 2rem);
}
:where(.home-section) .section-header > :where(:last-child) {
  margin-bottom: 0;
}
:where(.home-section) .section-blocks {
  gap: 2rem;
}
: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-footer > :where(:first-child) {
  margin-bottom: 0;
}
:where(.home-section) .section-subheading {
  line-height: 24px;
  letter-spacing: 0.18em;
}
@media only screen and (min-width: 1200px) {
  :where(.home-section) .section-subheading {
    font-size: 18px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 1920px) {
  :where(.home-section) .section-subheading {
    font-size: 20px;
    line-height: 25px;
  }
}
@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;
    justify-self: center;
    align-self: center;
  }
}

/*
* Home Template
-------------------------------------------------------------------------------- */
body.onep21-template-home {
  /* body selector for home template */
}
#home-banner {
  /* Banner Feature
  --------------------------------------------------------------- */
  /* Banner Selling Points
  --------------------------------------------------------------- */
}
#home-banner .banner-main {
  min-height: 336px;
  justify-content: flex-end;
  padding-block: 40px;
}
#home-banner .primary-heading {
  font-size: 29px;
  line-height: 33px;
}
#home-banner .banner-body-blocks {
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  #home-banner {
    display: flex;
    flex-wrap: wrap;
  }
  #home-banner .banner-main {
    min-height: 462px;
    padding-block: 70px;
    width: 100%;
  }
  #home-banner .banner-main-block {
    justify-items: flex-start;
  }
  #home-banner .primary-heading {
    text-align: left;
    font-size: 46px;
    line-height: 56px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .banner-main {
    min-height: 520px;
    text-align: initial;
    flex: 1 1;
    width: auto;
  }
  #home-banner .banner-main-container {
    --container-gutter: 60px;
  }
  #home-banner .banner-main-blocks {
    justify-items: start;
    justify-content: start;
    align-items: start;
  }
  #home-banner .primary-heading {
    font-size: 49px;
    line-height: 60px;
  }
  #home-banner .banner-background {
    --responsive-background-overlay-mix-blend: normal;
    --responsive-background-overlay-background:
    	/* example of gradient to contrast header further */
    	linear-gradient(
    		to bottom,
    		rgba(0, 0, 0, .8) 0,
    		transparent calc(var(--layout-header-height,0) * 1.5)
    	),
    	/* example of gradient to keep contrats on text. TIP: calculating from the center of the viewport width retains the gradients alignment to the text like in the comps */
    	linear-gradient(
    		60deg,
    		var(--color-dark) calc(50vw - 480px),
    		transparent calc(50vw + 480px)
    	) ;
    --responsive-background-overlay-opacity: 1;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .banner-main {
    min-height: 637px;
    padding-block: 80px;
  }
  #home-banner .banner-main-container {
    --container-gutter: 83px;
  }
  #home-banner .primary-heading {
    font-size: 58px;
    line-height: 70px;
  }
}
@media only screen and (min-width: 1920px) {
  #home-banner .banner-main {
    min-height: 705px;
    padding-block: 115px;
  }
  #home-banner .banner-main-container {
    --container-gutter: 112px;
  }
  #home-banner .primary-heading {
    font-size: 62px;
    line-height: 75px;
  }
}
@media only screen and (max-width: 767px) {
  #home-banner .banner-main-container {
    --container-fallback: 32px;
  }
}
#home-banner .banner-feature {
  background: var(--color-dark-alt);
  color: var(--color-light);
  padding: 1rem;
  text-align: center;
}
#home-banner .banner-feature-container {
  border: 2px solid var(--color-neutral-darker);
  padding: 45px 30px 25px;
}
#home-banner .banner-feature-video-cta {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  --fancy-border-margin-y: 6px;
  --fancy-border-height: 3px;
  --fancy-border-width: 240px;
}
#home-banner .banner-feature .video-thumbnail {
  --video-thumbnail-aspect-w: 179;
  --video-thumbnail-aspect-l: 105;
  max-width: 179px;
  margin-inline: auto;
  margin-bottom: 26px;
}
#home-banner .banner-feature-content {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  #home-banner .banner-feature {
    flex: 1 1;
    width: 50%;
  }
  #home-banner .banner-feature-container {
    padding-block: 30px 25px;
    --container-fallback: 28px;
  }
  #home-banner .banner-feature-video {
    justify-items: center;
  }
  #home-banner .banner-feature .video-thumbnail {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .banner-feature {
    display: flex;
    flex: 0 0 auto;
    width: 464px;
    align-items: center;
    padding: 25px;
  }
  #home-banner .banner-feature-container {
    padding-block: 40px;
    --container-fallback: 38px;
    --container-gutter: 38px;
  }
  #home-banner .banner-feature-heading {
    font-size: 14px;
    line-height: 17px;
  }
  #home-banner .banner-feature-heading:before, #home-banner .banner-feature-heading:after {
    width: 30px;
    height: 62px;
  }
  #home-banner .banner-feature-video-cta {
    font-size: 15px;
    --fancy-border-width: 270px;
    --fancy-border-height: 4px;
  }
  #home-banner .banner-feature-content {
    font-size: 16px;
    line-height: 25px;
  }
  #home-banner .banner-feature .video-thumbnail {
    max-width: 264px;
    margin-bottom: 23px;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .banner-feature {
    width: 475px;
    padding: 25px 22px;
  }
  #home-banner .banner-feature-container {
    padding-block: 70px;
    --container-fallback: 38px;
    --container-gutter: 38px;
  }
  #home-banner .banner-feature-heading {
    font-size: 16px;
    line-height: 19px;
    max-width: 226px;
    margin-bottom: 40px;
  }
  #home-banner .banner-feature-content {
    max-width: 334px;
    margin-inline: auto;
  }
  #home-banner .banner-feature .video-thumbnail {
    max-width: 293px;
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 1920px) {
  #home-banner .banner-feature {
    width: 658px;
  }
  #home-banner .banner-feature-container {
    padding-block: 70px;
    --container-fallback: 38px;
    --container-gutter: 38px;
  }
  #home-banner .banner-feature-heading {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 45px;
  }
  #home-banner .banner-feature-content {
    max-width: 396px;
    margin-top: 24px;
    font-size: 19px;
    line-height: 30px;
  }
  #home-banner .banner-feature-video-cta {
    font-size: 16px;
    --fancy-border-width: 290px;
  }
  #home-banner .banner-feature .video-thumbnail {
    max-width: 327px;
  }
}
#home-banner .banner-sp {
  background: var(--color-light-alt);
}
#home-banner .banner-sp-container {
  --container-fallback: 15px;
}
#home-banner .banner-sp .swiper {
  --swiper-pagination-bottom: 3.75rem;
  --swiper-pagination-bullet-size: .325rem;
  --swiper-pagination-bullet-horizontal-gap: calc(var(--swiper-pagination-bullet-size) * 1.5);
}
#home-banner .banner-sp .sp {
  margin-block: 25px 30px;
  background: var(--color-light);
  box-shadow: 0px 0px 15px #EBEBEB;
  padding: 35px 32px 45px;
}
#home-banner .banner-sp .sp-container {
  text-align: center;
}
#home-banner .banner-sp .sp-icon {
  font-size: 59px;
  margin-bottom: 1rem;
}
#home-banner .banner-sp .sp-title {
  color: var(--color-primary);
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
#home-banner .banner-sp .sp-description {
  font-size: 14px;
  line-height: 22px;
}
@media only screen and (min-width: 768px) {
  #home-banner .banner-sp {
    flex: 1 1;
    width: 50%;
  }
  #home-banner .banner-sp .swiper {
    --swiper-custom-arrow-offset-x: 15px;
  }
  #home-banner .banner-sp-container {
    --container-fallback: 23px;
  }
  #home-banner .banner-sp .sp {
    min-height: 330px;
    margin-block: 28px;
    padding-block: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .banner-sp {
    flex: 0 0 auto;
    width: 100%;
  }
  #home-banner .banner-sp-container {
    --container-gutter: 36px;
  }
  #home-banner .banner-sp .sp {
    margin-block: 40px;
    padding-block: 42px;
  }
  #home-banner .banner-sp .sp-description {
    font-size: 15px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .banner-sp-container {
    --container-gutter: 50px;
  }
  #home-banner .banner-sp .sp {
    margin-block: 50px;
    padding-block: 47px;
    padding-inline: 50px;
  }
  #home-banner .banner-sp .sp-icon {
    font-size: 68px;
  }
  #home-banner .banner-sp .sp-title {
    font-size: 26px;
    line-height: 33px;
  }
  #home-banner .banner-sp .sp-description {
    font-size: 17px;
    line-height: 27px;
  }
}
@media only screen and (min-width: 1920px) {
  #home-banner .banner-sp-container {
    --container-gutter: 90px;
  }
  #home-banner .banner-sp .sp {
    margin-block: 50px;
    padding-block: 83px 100px;
    padding-inline: 70px;
  }
  #home-banner .banner-sp .sp-icon {
    font-size: 90px;
    margin-bottom: 24px;
  }
  #home-banner .banner-sp .sp-title {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 22px;
  }
  #home-banner .banner-sp .sp-description {
    font-size: 18px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 767px) {
  #home-banner .banner-sp .sp {
    min-height: 330px;
  }
}

:is(.home-page, #home-page) {
  padding-top: 0;
  padding-bottom: 0;
}
/*
* Home Section 1
-------------------------------------------------------------------------------- */
/*
* Section Offset Demo: For overlapping the section or parts of it to adjacent sections/layouts Feel free to copy/paste/comment out as needed. Find and replace `home-section-1` to rename variables and sections appropriately
Example of usage: PQL36
-------------------------------------------------------------------------------- */
/*
* Section Offset Demo: Overlap this section and adjust it siblings and or the siblings' contents to it
	NOTE: To reuse on other elements, copy this css and replace `home-section-1` with `home-section-[DESIRED_NUMBER]`
	NOTE: Classes to use:
		.home-section-1-offset-element => the element within the section that will have the negative margins to overlap itself
		.has-home-section-1-offset => the adjacent sections/ child of adjacent sections that will have the pseudo element to adjust itself if the `home-section-1-offset-element` is next to it
-------------------------------------------------------------------------------- */
:is(.home-section-1, #home-section-1) {
  padding-block: 45px 60px;
}
:is(.home-section-1, #home-section-1) .section-header {
  text-align: left;
  --fancy-border-width: 73px;
  --fancy-border-margin-l: 0;
  --fancy-border-margin-y: 20px;
  margin-bottom: 20px;
}
:is(.home-section-1, #home-section-1) .section-body {
  background-color: var(--scheme-bg, var(--color-neutral));
}
:is(.home-section-1, #home-section-1) .section-heading {
  font-size: 40px;
  line-height: 42px;
}
@media only screen and (min-width: 768px) {
  :is(.home-section-1, #home-section-1) {
    padding-block: 100px;
  }
  :is(.home-section-1, #home-section-1) .section-heading {
    font-size: 58px;
    line-height: 66px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.home-section-1, #home-section-1) {
    padding-block: 110px;
  }
  :is(.home-section-1, #home-section-1) .section-header {
    margin-left: 0;
    --fancy-border-margin-y: 38px;
    margin-bottom: 38px;
  }
  :is(.home-section-1, #home-section-1) .section-heading {
    margin-bottom: 1rem;
    font-size: 63px;
    line-height: 72px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.home-section-1, #home-section-1) {
    padding-block: 100px 120px;
  }
  :is(.home-section-1, #home-section-1) .section-heading {
    font-size: 68px;
    line-height: 78px;
  }
  :is(.home-section-1, #home-section-1) .section-content {
    display: grid;
    grid-template-columns: 522px 513px;
    margin-inline: 33px;
    gap: 78px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.home-section-1, #home-section-1) {
    padding-block: 150px 135px;
  }
  :is(.home-section-1, #home-section-1) .section-container {
    --container-gutter: 221px;
  }
  :is(.home-section-1, #home-section-1) .section-header {
    margin-bottom: 45px;
  }
  :is(.home-section-1, #home-section-1) .section-heading {
    font-size: 83px;
    line-height: 100px;
    margin-bottom: 30px;
  }
  :is(.home-section-1, #home-section-1) .section-content {
    grid-template-columns: repeat(2, 600px);
    margin-inline: 88px;
    gap: 84px;
  }
}
/*
* Home Section 2
-------------------------------------------------------------------------------- */
:is(.home-section-2, #home-section-2) {
  background: var(--color-dark-alt);
  color: var(--color-light);
}
:is(.home-section-2, #home-section-2) .section-header {
  margin-bottom: 50px;
  margin-left: 35px;
}
:is(.home-section-2, #home-section-2) .section-heading {
  font-size: 16px;
  letter-spacing: 0.25em;
}
:is(.home-section-2, #home-section-2) .swiper {
  padding-block: 0 25px;
  --swiper-custom-arrow-offset-x: 0;
}
:is(.home-section-2, #home-section-2) .swiper .swiper-custom-buttons {
  margin-top: 30px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  color: var(--color-secondary);
  border-color: inherit;
}
:is(.home-section-2, #home-section-2) .swiper .swiper-custom-buttons .button {
  position: relative;
  --button-border-width: 1.5px;
  box-shadow: none;
}
@media only screen and (min-width: 768px) {
  :is(.home-section-2, #home-section-2) {
    padding-block: 45px 55px;
  }
  :is(.home-section-2, #home-section-2) .section-container {
    padding-block: 0px;
    --container-fallback: 77px;
  }
  :is(.home-section-2, #home-section-2) .section-header {
    display: flex;
    align-items: center;
    max-width: none;
    gap: 20px;
    margin-inline: auto;
    margin-bottom: 40px;
    --fancy-border-width: 408px;
    --fancy-border-margin-l: 0;
    --fancy-border-margin-y: 0;
  }
  :is(.home-section-2, #home-section-2) .section-testimonials {
    border: 2px solid var(--color-neutral-darker);
    padding: 15px;
  }
  :is(.home-section-2, #home-section-2) .swiper {
    background: var(--color-light);
    color: var(--color-dark);
    padding: 100px 60px 40px 105px;
  }
  :is(.home-section-2, #home-section-2) .swiper .swiper-custom-buttons {
    color: var(--color-primary);
  }
  :is(.home-section-2, #home-section-2) .swiper .swiper-custom-buttons .button {
    font-size: 18px;
    color: var(--color-primary);
    border-color: var(--color-primary);
  }
  :is(.home-section-2, #home-section-2) .swiper .swiper-custom-buttons .button:is(:hover) {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
  }
}
@media only screen and (min-width: 1200px) {
  :is(.home-section-2, #home-section-2) {
    padding-block: 60px;
    min-height: 580px;
  }
  :is(.home-section-2, #home-section-2) .section-container {
    --container-gutter: 105px;
  }
  :is(.home-section-2, #home-section-2) .section-header {
    max-width: 430px;
    margin-inline: 0 auto;
    gap: 12px;
    --fancy-border-width: 229px;
  }
  :is(.home-section-2, #home-section-2) .section-heading {
    font-size: 17px;
    text-wrap: nowrap;
  }
  :is(.home-section-2, #home-section-2) .section-testimonials {
    max-width: 725px;
    border-color: var(--color-neutral-lightest);
  }
  :is(.home-section-2, #home-section-2) .swiper {
    padding: 95px 75px 50px 105px;
    box-shadow: 0px 0px 21px var(--color-neutral-light);
  }
  :is(.home-section-2, #home-section-2) .responsive-background {
    max-width: 665px;
    margin-inline: auto 0;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.home-section-2, #home-section-2) {
    min-height: 612px;
  }
  :is(.home-section-2, #home-section-2) .section-container {
    --container-gutter: 115px;
  }
  :is(.home-section-2, #home-section-2) .section-header {
    gap: 20px;
    --fancy-border-width: 293px;
  }
  :is(.home-section-2, #home-section-2) .section-testimonials {
    max-width: 703px;
  }
  :is(.home-section-2, #home-section-2) .swiper {
    padding: 100px 50px 55px 95px;
  }
  :is(.home-section-2, #home-section-2) .responsive-background {
    max-width: 783px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.home-section-2, #home-section-2) {
    padding-block: 120px;
    min-height: 818px;
  }
  :is(.home-section-2, #home-section-2) .section-container {
    --container-gutter: 123px;
  }
  :is(.home-section-2, #home-section-2) .section-header {
    gap: 20px;
    --fancy-border-width: 321px;
  }
  :is(.home-section-2, #home-section-2) .section-testimonials {
    max-width: 752px;
  }
  :is(.home-section-2, #home-section-2) .swiper {
    padding: 130px 85px 60px 116px;
  }
  :is(.home-section-2, #home-section-2) .responsive-background {
    max-width: 1267px;
  }
}
@media only screen and (max-width: 767px) {
  :is(.home-section-2, #home-section-2) {
    padding: 23px 18px;
  }
  :is(.home-section-2, #home-section-2) .section-header:after {
    display: none;
  }
  :is(.home-section-2, #home-section-2) .section-container {
    border: 2px solid var(--color-neutral-darker);
    padding-block: 75px 0px;
    --container-fallback: 26px;
  }
  :is(.home-section-2, #home-section-2) .section-testimonials .testimonial-highlight .fancy-stars {
    display: none;
  }
}

/*
* Home Section 3
-------------------------------------------------------------------------------- */
:is(.home-section-3, #home-section-3) {
  background-color: var(--scheme-bg-contrast, var(--color-light-alt));
}
:is(.home-section-3, #home-section-3) .section-header {
  margin-bottom: 40px;
  --fancy-border-width: 187px;
  --fancy-border-margin-y: 30px;
}
:is(.home-section-3, #home-section-3) .section-heading {
  font-size: 18px;
  line-height: 27px;
  color: var(--color-primary);
  letter-spacing: 0.18em;
  max-width: 266px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  :is(.home-section-3, #home-section-3) {
    padding-block: 90px;
  }
  :is(.home-section-3, #home-section-3) .section-header {
    --fancy-border-margin-y: 44px;
    margin-bottom: 50px;
  }
  :is(.home-section-3, #home-section-3) .section-heading {
    max-width: none;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.home-section-3, #home-section-3) {
    padding-block: 125px 150px;
  }
  :is(.home-section-3, #home-section-3) .section-container {
    --container-gutter: 200px;
  }
  :is(.home-section-3, #home-section-3) .section-header {
    margin-bottom: 57px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.home-section-3, #home-section-3) {
    padding-block: 138px;
  }
  :is(.home-section-3, #home-section-3) .section-container {
    --container-gutter: 300px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.home-section-3, #home-section-3) {
    padding-block: 125px 160px;
  }
  :is(.home-section-3, #home-section-3) .section-container {
    --container-gutter: 462px;
  }
  :is(.home-section-3, #home-section-3) .section-heading {
    font-size: 19px;
  }
}
/*
* Home Section 4
-------------------------------------------------------------------------------- */
:is(.home-section-4, #home-section-4) {
  padding-block: 55px 70px;
}
:is(.home-section-4, #home-section-4) .section-header {
  text-align: left;
  margin-bottom: 20px;
}
:is(.home-section-4, #home-section-4) .section-heading {
  font-size: 35px;
  line-height: 45px;
  text-transform: none;
  margin-bottom: 20px;
}
:is(.home-section-4, #home-section-4) .section-lead {
  --fancy-border-width: 73px;
  --fancy-border-margin-l: 0;
}
:is(.home-section-4, #home-section-4) .section-image {
  max-width: 252px;
  margin-inline: auto;
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  :is(.home-section-4, #home-section-4) {
    padding-block: 90px 110px;
  }
  :is(.home-section-4, #home-section-4) .section-heading {
    font-size: 53px;
    line-height: 66px;
    margin-bottom: 30px;
  }
  :is(.home-section-4, #home-section-4) .section-lead {
    font-size: 23px;
    line-height: 32px;
  }
  :is(.home-section-4, #home-section-4) .section-image {
    max-width: 377px;
    margin-bottom: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.home-section-4, #home-section-4) {
    padding-block: 95px 120px;
  }
  :is(.home-section-4, #home-section-4) .section-container {
    --container-gutter: 90px;
  }
  :is(.home-section-4, #home-section-4) .section-image {
    margin-bottom: 0;
  }
  :is(.home-section-4, #home-section-4) .section-blocks {
    display: grid;
    grid-template-columns: 1fr 572px;
    gap: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.home-section-4, #home-section-4) {
    padding-block: 120px 145px;
  }
  :is(.home-section-4, #home-section-4) .section-container {
    --container-gutter: 125px;
  }
  :is(.home-section-4, #home-section-4) .section-heading {
    font-size: 56px;
    line-height: 70px;
  }
  :is(.home-section-4, #home-section-4) .section-lead {
    font-size: 25px;
    line-height: 34px;
  }
  :is(.home-section-4, #home-section-4) .section-image {
    max-width: 440px;
  }
  :is(.home-section-4, #home-section-4) .section-blocks {
    display: grid;
    grid-template-columns: 1fr 616px;
    gap: 93px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.home-section-4, #home-section-4) {
    padding-block: 150px;
  }
  :is(.home-section-4, #home-section-4) .section-container {
    --container-gutter: 188px;
  }
  :is(.home-section-4, #home-section-4) .section-header {
    margin-inline: 0 auto;
  }
  :is(.home-section-4, #home-section-4) .section-heading {
    font-size: 62px;
    line-height: 78px;
    max-width: 730px;
    margin-bottom: 45px;
  }
  :is(.home-section-4, #home-section-4) .section-lead {
    font-size: 27px;
    line-height: 38px;
    margin-left: 94px;
    max-width: 674px;
  }
  :is(.home-section-4, #home-section-4) .section-content {
    margin-left: 94px;
    max-width: 674px;
  }
  :is(.home-section-4, #home-section-4) .section-image {
    max-width: 615px;
  }
  :is(.home-section-4, #home-section-4) .section-blocks {
    display: grid;
    grid-template-columns: 1fr 809px;
    gap: 120px;
  }
}
/* ================================================================================
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 */
}
:is(.contact-page, #contact-page) {
  /* template main styles */
}
:is(.contact-page, #contact-page) .section-header {
  text-align: center;
}
:is(.contact-page, #contact-page) .section-heading {
  --fancy-border-width: 73px;
  margin-bottom: 30px;
}
:is(.contact-page, #contact-page) .contact-main {
  padding-block: 0;
}
@media only screen and (min-width: 1200px) {
  :is(.contact-page, #contact-page) {
    padding-block: 0;
  }
  :is(.contact-page, #contact-page) .section-container {
    --container-gutter: 80px;
  }
  :is(.contact-page, #contact-page) .section-header {
    text-align: left;
  }
  :is(.contact-page, #contact-page) .section-heading {
    --fancy-border-margin-l: 0;
  }
  :is(.contact-page, #contact-page) .section-blocks {
    display: grid;
    grid-template-columns: 1fr 555px;
  }
  :is(.contact-page, #contact-page) .section-block-left {
    margin-top: 70px;
  }
  :is(.contact-page, #contact-page) .section-block-right {
    min-height: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.contact-page, #contact-page) .section-heading {
    margin-bottom: 40px;
  }
  :is(.contact-page, #contact-page) .section-blocks {
    grid-template-columns: 1fr 700px;
  }
  :is(.contact-page, #contact-page) .section-block-left {
    margin-top: 125px;
  }
  :is(.contact-page, #contact-page) .section-block-right {
    min-height: 665px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.contact-page, #contact-page) .section-container {
    --container-gutter: 183px;
  }
  :is(.contact-page, #contact-page) .section-blocks {
    grid-template-columns: 1fr 1002px;
  }
}
:is(.contact-page, #contact-page) .contact-block-title {
  max-width: none;
  text-align: center;
}
:is(.contact-page, #contact-page) .contact-block-content {
  text-align: center;
}
:is(.contact-page, #contact-page) .contact-block:is(.contact-special) {
  justify-self: center;
}
:is(.contact-page, #contact-page) .contact-block:is(.contact-social) .contact-social-title {
  font-size: 15px;
  color: var(--color-accent);
}
@media only screen and (min-width: 1200px) {
  :is(.contact-page, #contact-page) .contact-blocks {
    grid-template-columns: repeat(2, auto);
    row-gap: 60px;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
    justify-content: flex-start;
  }
  :is(.contact-page, #contact-page) .contact-block-title {
    text-align: left;
  }
  :is(.contact-page, #contact-page) .contact-block-content {
    text-align: left;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.contact-page, #contact-page) .contact-blocks {
    -moz-column-gap: 9rem;
         column-gap: 9rem;
  }
}
@media only screen and (max-width: 1199px) {
  :is(.contact-page, #contact-page) .contact-blocks {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
:is(.contact-page, #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
  */
}
:is(.contact-page, #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
  */
}
:is(.contact-page, #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
  */
  order: 1;
}
:is(.contact-page, #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
  */
}
:is(.contact-page, #contact-page) .contact-block.contact-social {
  order: 2;
}
@media only screen and (min-width: 1200px) {
  :is(.contact-page, #contact-page) .contact-block.contact-social {
    margin-top: -5.5rem;
  }
}
/* ================================================================================
* 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 */
}
:is(.error404-page, #error404-page) {
  text-align: center;
}
:is(.error404-page, #error404-page) .section-heading {
  --fancy-border-width: 73px;
  margin-bottom: 30px;
}
:is(.error404-page, #error404-page) .section-content p {
  margin-bottom: 38px;
}
@media only screen and (min-width: 1200px) {
  :is(.error404-page, #error404-page) .section-content {
    max-width: 713px;
    margin-inline: auto;
  }
}
/* ================================================================================
* 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 */
}
:is(.about-page, #about-page) {
  padding-block: 0;
}
/*
* About Section 1
-------------------------------------------------------------------------------- */
:is(.about-section-1, #about-section-1) {
  padding-block: 30px 52px;
}
:is(.about-section-1, #about-section-1) .section-heading {
  margin-bottom: 12px;
  font-size: 40px;
}
:is(.about-section-1, #about-section-1) .section-subheading {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 35px;
  --fancy-border-width: 60px;
  --fancy-border-margin-y: 22px;
}
:is(.about-section-1, #about-section-1) .section-image {
  max-width: 302px;
  margin-inline: auto;
  margin-bottom: 35px;
}
:is(.about-section-1, #about-section-1) .section-blocks {
  text-align: center;
}
:is(.about-section-1, #about-section-1) .section-block {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  :is(.about-section-1, #about-section-1) {
    padding-block: 70px;
  }
  :is(.about-section-1, #about-section-1) .section-heading {
    font-size: 50px;
    margin-bottom: 20px;
  }
  :is(.about-section-1, #about-section-1) .section-image {
    max-width: 512px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.about-section-1, #about-section-1) .section-container {
    --container-gutter: 70px;
  }
  :is(.about-section-1, #about-section-1) .section-heading {
    font-size: 55px;
    margin-bottom: 30px;
  }
  :is(.about-section-1, #about-section-1) .section-subheading {
    max-width: 300px;
    --fancy-border-margin-l: 0;
    --fancy-border-margin-y: 40px;
    --fancy-border-width: 73px;
    margin-bottom: 54px;
  }
  :is(.about-section-1, #about-section-1) .section-subheading::before {
    display: none;
  }
  :is(.about-section-1, #about-section-1) .section-image {
    margin-bottom: 0;
    position: sticky;
    max-height: calc(77vh - var(--layout-header-height));
    right: 0;
    top: calc(var(--layout-header-height) + 10vh);
    align-self: self-start;
    margin-top: 0;
  }
  :is(.about-section-1, #about-section-1) .section-blocks {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 70px;
    text-align: left;
  }
  :is(.about-section-1, #about-section-1) .section-block-left {
    width: 350px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.about-section-1, #about-section-1) {
    padding-block: 90px;
  }
  :is(.about-section-1, #about-section-1) .section-container {
    --container-gutter: 140px;
  }
  :is(.about-section-1, #about-section-1) .section-heading {
    font-size: 60px;
  }
  :is(.about-section-1, #about-section-1) .section-subheading {
    max-width: none;
  }
  :is(.about-section-1, #about-section-1) .section-blocks {
    gap: 90px;
  }
  :is(.about-section-1, #about-section-1) .section-block-left {
    width: 480px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.about-section-1, #about-section-1) {
    padding-block: 125px;
  }
  :is(.about-section-1, #about-section-1) .section-container {
    --container-gutter: 317px;
  }
  :is(.about-section-1, #about-section-1) .section-blocks {
    gap: 131px;
  }
  :is(.about-section-1, #about-section-1) .section-block-left {
    width: 512px;
  }
}
@media only screen and (max-width: 1199px) {
  :is(.about-section-1, #about-section-1) .section-subheading::after {
    display: none;
  }
}
/*
* About Section 2
-------------------------------------------------------------------------------- */
:is(.about-section-2, #about-section-2) {
  padding-block: 65px 60px;
  min-height: 411px;
  background-color: var(--scheme-bg, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
:is(.about-section-2, #about-section-2) .section-lead {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}
:is(.about-section-2, #about-section-2) .section-button {
  text-align: center;
}
:is(.about-section-2, #about-section-2) .section-button .button {
  --button-height: 68px;
  --button-padding-x: 38px;
  font-size: 17px;
}
@media only screen and (min-width: 768px) {
  :is(.about-section-2, #about-section-2) {
    min-height: 500px;
    padding-block: 90px;
  }
  :is(.about-section-2, #about-section-2) .section-lead {
    font-size: 30px;
    line-height: 36px;
    max-width: 390px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.about-section-2, #about-section-2) {
    padding-block: 110px;
  }
  :is(.about-section-2, #about-section-2) .section-lead {
    font-size: 45px;
    line-height: 55px;
    max-width: 905px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.about-section-2, #about-section-2) {
    padding-block: 150px;
    min-height: 600px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.about-section-2, #about-section-2) {
    padding-block: 220px;
    min-width: 765px;
  }
}
/*
* About Section 3
-------------------------------------------------------------------------------- */
:is(.about-section-3, #about-section-3) .section-header {
  margin-bottom: 40px;
  --fancy-border-width: 187px;
  --fancy-border-margin-y: 30px;
}
:is(.about-section-3, #about-section-3) .section-heading {
  font-size: 18px;
  line-height: 27px;
  color: var(--color-primary);
  max-width: 266px;
}
@media only screen and (min-width: 768px) {
  :is(.about-section-3, #about-section-3) {
    padding-block: 95px;
  }
  :is(.about-section-3, #about-section-3) .section-header {
    margin-bottom: 60px;
  }
  :is(.about-section-3, #about-section-3) .section-heading {
    max-width: none;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.about-section-3, #about-section-3) .section-container {
    --container-gutter: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.about-section-3, #about-section-3) .section-container {
    --container-gutter: 140px;
  }
  :is(.about-section-3, #about-section-3) .section-header {
    --fancy-border-margin-y: 44px;
    margin-bottom: 50px;
  }
  :is(.about-section-3, #about-section-3) .section-heading {
    font-size: 19px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.about-section-3, #about-section-3) {
    padding-block: 158px;
  }
  :is(.about-section-3, #about-section-3) .section-container {
    --container-gutter: 185px;
  }
  :is(.about-section-3, #about-section-3) .section-header {
    --fancy-border-margin-y: 54px;
    margin-bottom: 60px;
  }
  :is(.about-section-3, #about-section-3) .section-content {
    max-width: 1000px;
    margin-inline: auto;
  }
}
/* ================================================================================
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 */
}
:is(.faqs-page, #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-banner .primary-heading {
  font-size: 30px;
}
#practice-areas-banner .banner-body-blocks {
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  #practice-areas-banner .primary-heading {
    font-size: 34px;
  }
}
@media only screen and (min-width: 1200px) {
  #practice-areas-banner .primary-heading {
    font-size: 55px;
  }
  #practice-areas-banner .banner-body-blocks {
    gap: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  #practice-areas-banner .primary-heading {
    font-size: 60px;
  }
}
:is(.practice-areas-page, #practice-areas-page) {
  /* template main styles */
  padding-bottom: 0;
}
:is(.practice-areas-page, #practice-areas-page) .practice-area-menu:is(.columns) {
  --columns-gap-x: 4rem;
  justify-content: center;
  justify-items: center;
  text-align: center;
}
:is(.practice-areas-page, #practice-areas-page) .practice-area {
  padding-block: 2rem;
}
:is(.practice-areas-page, #practice-areas-page) .practice-area:first-child {
  padding-top: 3rem;
}
:is(.practice-areas-page, #practice-areas-page) .practice-area:nth-last-child(n+2) {
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  :is(.practice-areas-page, #practice-areas-page) {
    padding-bottom: 40px;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area-menu:is(.columns) {
    --columns-number: 2;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area:first-child {
    padding-top: 2rem;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area:nth-last-child(n+2) {
    margin-bottom: 2rem;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area-menu li:nth-child(-n+2) {
    border-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.practice-areas-page, #practice-areas-page) .practice-area-menu:is(.columns) {
    --columns-number: 3;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.practice-areas-page, #practice-areas-page) {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.practice-areas-page, #practice-areas-page) {
    padding-bottom: 100px;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area-menu:is(.columns) {
    --columns-gap-x: 30px;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
  :is(.practice-areas-page, #practice-areas-page) .section-container {
    --container-gutter: 452px;
  }
}
@media only screen and (max-width: 767px) {
  :is(.practice-areas-page, #practice-areas-page) .practice-area {
    margin-left: calc(var(--container-gutter) * -1);
    margin-right: calc(var(--container-gutter) * -1);
    padding-left: var(--container-gutter);
    padding-right: var(--container-gutter);
    width: auto;
    max-width: none;
    text-align: center;
  }
  :is(.practice-areas-page, #practice-areas-page) .practice-area:nth-last-child(n+2) {
    margin-bottom: 0;
  }
}

/* ================================================================================
* 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 */
}
:is(.results-page, #results-page) {
  /* template main styles */
  padding-block: 60px 70px;
}
:is(.results-page, #results-page) .results:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 1rem;
  justify-content: center;
  justify-items: center;
}
:is(.results-page, #results-page) .result {
  padding: 12px 14px;
  background: var(--color-dark-alt);
  color: var(--color-light);
  width: 500px;
  min-height: 310px;
}
:is(.results-page, #results-page) .result-container {
  border: 1px solid var(--color-neutral-darker);
  padding: 70px 40px;
  justify-content: center;
}
:is(.results-page, #results-page) .result-pointer-reference:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
:is(.results-page, #results-page) .section-blocks {
  margin-bottom: 35px;
}
:is(.results-page, #results-page) .section-header {
  text-align: center;
}
:is(.results-page, #results-page) .section-heading {
  --fancy-border-width: 73px;
  margin-bottom: 24px;
}
:is(.results-page, #results-page) .section-content {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  :is(.results-page, #results-page) .results:is(.columns) {
    --columns-number: 1;
    --columns-gap-x: 2rem;
    --columns-gap-y: 2rem;
  }
  :is(.results-page, #results-page) .section-content {
    max-width: 500px;
    margin-inline: auto;
  }
  :is(.results-page, #results-page) .section-blocks {
    margin-bottom: 55px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.results-page, #results-page) {
    padding-block: 0 100px;
  }
  :is(.results-page, #results-page) .results:is(.columns) {
    --columns-number: 2;
    --columns-gap-y: 4.5rem;
  }
  :is(.results-page, #results-page) .result {
    max-width: 380px;
  }
  :is(.results-page, #results-page) .result-details-hover .result-hover-container {
    min-height: 258px;
    padding: 45px 30px;
    border: 1px solid var(--color-neutral-darker);
  }
  :is(.results-page, #results-page) .result-details-hover .result-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  :is(.results-page, #results-page) .result-details-hover .result-content {
    font-size: 14px;
    line-height: 25px;
  }
  :is(.results-page, #results-page) .section-container {
    --container-gutter: 160px;
  }
  :is(.results-page, #results-page) .section-heading {
    margin-left: 0;
    width: 100%;
    text-align: left;
    font-size: 55px;
    --fancy-border-margin-l: 0;
  }
  :is(.results-page, #results-page) .section-blocks {
    margin-bottom: 70px;
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 70px;
  }
  :is(.results-page, #results-page) .section-block-left {
    padding-block: 70px 30px;
    margin-left: 70px;
  }
  :is(.results-page, #results-page) .section-content {
    margin-left: 0;
    text-align: left;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.results-page, #results-page) {
    padding-block: 0 120px;
  }
  :is(.results-page, #results-page) .results:is(.columns) {
    --columns-number: 3;
    --columns-gap-x: 8rem;
    --columns-gap-y: 4.5rem;
  }
  :is(.results-page, #results-page) .result {
    width: 360px;
  }
  :is(.results-page, #results-page) .result-details-hover .result-hover-container {
    padding: 35px 30px 25px;
  }
  :is(.results-page, #results-page) .section-container {
    --container-gutter: 150px;
  }
  :is(.results-page, #results-page) .section-blocks {
    margin-bottom: 90px;
    grid-template-columns: 1fr 660px;
    min-height: 450px;
  }
  :is(.results-page, #results-page) .section-block-left {
    margin-left: 150px;
  }
  :is(.results-page, #results-page) .section-heading {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.results-page, #results-page) {
    padding-block: 0 130px;
  }
  :is(.results-page, #results-page) .results:is(.columns) {
    --columns-gap-x: 3rem;
  }
  :is(.results-page, #results-page) .result {
    width: 380px;
    min-height: 330px;
  }
  :is(.results-page, #results-page) .result-details-hover .result-title {
    margin-bottom: 20px;
  }
  :is(.results-page, #results-page) .result-details-hover .result-hover-container {
    min-height: 278px;
    padding-top: 45px;
  }
  :is(.results-page, #results-page) .section-container {
    --container-gutter: 320px;
  }
  :is(.results-page, #results-page) .section-blocks {
    margin-bottom: 90px;
    grid-template-columns: 1fr 1003px;
    min-height: 590px;
  }
  :is(.results-page, #results-page) .section-block-left {
    padding-block: 120px 0;
    margin-left: 310px;
  }
  :is(.results-page, #results-page) .section-heading {
    margin-bottom: 30px;
    --fancy-border-margin-y: 30px;
  }
}
@media only screen and (max-width: 767px) {
  :is(.results-page, #results-page) .section-content {
    max-width: 310px;
    margin-inline: auto;
  }
}

/* ================================================================================
* 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;
}
.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 */
}
:is(.team-page, #team-page) {
  /* template main styles */
}
:is(.team-page, #team-page) .profiles:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
  justify-content: center;
  justify-items: center;
}
:is(.team-page, #team-page) .profile {
  width: 400px;
  background-color: inherit;
}
:is(.team-page, #team-page) .profile-container {
  padding: 0;
}
:is(.team-page, #team-page) .profile-info-name {
  font-size: 28px;
  margin-bottom: 0.125em;
}
:is(.team-page, #team-page) .profile-info-position {
  font-size: 15px;
}
@media only screen and (min-width: 768px) {
  :is(.team-page, #team-page) .profiles:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.team-page, #team-page) .profiles:is(.columns) {
    --columns-number: 3;
    --columns-gap-y: 6rem;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.team-page, #team-page) {
    padding-bottom: 130px;
  }
  :is(.team-page, #team-page) .section-container {
    --container-gutter: 372px;
  }
}
/* ================================================================================
* 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 */
}
#testimonials-banner .primary-heading {
  font-size: 30px;
}
#testimonials-banner .banner-body-blocks {
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  #testimonials-banner .primary-heading {
    font-size: 34px;
  }
}
@media only screen and (min-width: 1200px) {
  #testimonials-banner .primary-heading {
    font-size: 55px;
  }
  #testimonials-banner .banner-body-blocks {
    gap: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  #testimonials-banner .primary-heading {
    font-size: 60px;
  }
}
:is(.testimonials-page, #testimonials-page) {
  /* template main styles */
}
:is(.testimonials-page, #testimonials-page) .testimonials:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
  justify-content: center;
  justify-items: center;
}
:is(.testimonials-page, #testimonials-page) .testimonials:is(.columns):nth-child(n+2) {
  margin-top: var(--columns-gap-y);
}
:is(.testimonials-page, #testimonials-page) .testimonial:nth-last-child(n+2) {
  padding-bottom: calc(var(--columns-gap-y) + 0.25rem);
  border-bottom: 2px solid var(--color-neutral);
}
:is(.testimonials-page, #testimonials-page) .testimonial-highlight {
  font-size: 24px;
  line-height: 36px;
  font-weight: 800;
  color: var(--color-primary);
}
:is(.testimonials-page, #testimonials-page) .testimonial-quote {
  width: 100%;
  margin-bottom: 20px;
}
:is(.testimonials-page, #testimonials-page) .testimonial-source {
  color: var(--color-dark);
}
@media only screen and (min-width: 1200px) {
  :is(.testimonials-page, #testimonials-page) {
    padding-block: 100px;
  }
  :is(.testimonials-page, #testimonials-page) .testimonials:is(.columns) {
    --columns-number: 1;
    --columns-gap-y: 80px;
  }
  :is(.testimonials-page, #testimonials-page) .testimonial-container {
    display: grid;
    grid-template-columns: 1fr 540px;
    gap: 90px;
  }
  :is(.testimonials-page, #testimonials-page) .testimonial-highlight {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.testimonials-page, #testimonials-page) .testimonial-container {
    grid-template-columns: 1fr 600px;
    gap: 80px;
  }
  :is(.testimonials-page, #testimonials-page) .testimonial-highlight {
    font-size: 28px;
    line-height: 40px;
    margin-left: 2rem;
  }
  :is(.testimonials-page, #testimonials-page) .testimonial-source {
    font-size: 14px;
  }
  :is(.testimonials-page, #testimonials-page) .section-container {
    --container-gutter: 200px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.testimonials-page, #testimonials-page) .testimonial-container {
    grid-template-columns: 1fr 750px;
    gap: 125px;
  }
  :is(.testimonials-page, #testimonials-page) .testimonial-highlight {
    margin-top: 3rem;
    margin-left: 4rem;
  }
  :is(.testimonials-page, #testimonials-page) .testimonial-quote {
    padding-right: 2rem;
  }
  :is(.testimonials-page, #testimonials-page) .section-container {
    --container-gutter: 320px;
  }
}
@media only screen and (max-width: 1199px) {
  :is(.testimonials-page, #testimonials-page) {
    padding-bottom: 70px;
  }
  :is(.testimonials-page, #testimonials-page) .fancy-stars {
    display: none;
  }
}
/* ================================================================================
* 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 */
}
:is(.videos-page, #videos-page) {
  /* template main styles */
}
:is(.videos-page, #videos-page) .videos:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 60px;
  justify-content: center;
  justify-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
:is(.videos-page, #videos-page) .video {
  width: 500px;
  border-bottom: 1px solid var(--color-neutral-lighter);
}
:is(.videos-page, #videos-page) .video-button-default {
  --video-button-size: 70px;
}
@media only screen and (min-width: 768px) {
  :is(.videos-page, #videos-page) .videos:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.videos-page, #videos-page) .videos:is(.columns) {
    --columns-number: 3;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.videos-page, #videos-page) {
    padding-bottom: 130px;
  }
  :is(.videos-page, #videos-page) .section-container {
    --container-gutter: 316px;
  }
}
/* ================================================================================
* 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-single-profile {
  /* body selector for profile template */
}
#profile-banner {
  /* selector for profile banner if enabled */
}
:is(.profile-page, #profile-page) {
  /* template main styles */
  padding-block: 40px 70px;
  /* 
  Profile Page Template 
  	@Variation A: Simple
  	Requires PHP: templates/template-single-profile.php - @Variation A: Simple
  	Requires SCSS: scss/templates/profile.scss - @Variation A: Simple
  */
  /*
  Profile Page Template 
  	@Variation B: Split to top and bottom + profile image offset
  	Requires PHP: templates/template-single-profile.php - @Variation B: Split to top and bottom + profile image offset
  	Requires SCSS: scss/templates/profile.scss - @Variation B: Split to top and bottom + profile image offset
  */
  /*
  Profile Page Template 
  @Variation C: Full Width layout
  Requires PHP: templates/template-single-profile.php - @Variation C: Full Width layout
  Requires SCSS: scss/templates/profile.scss - @Variation C: Full Width layout
  */
}
:is(.profile-page, #profile-page) .widget {
  box-shadow: none;
  padding: 0;
  border-bottom: 2px solid var(--color-neutral);
  padding-bottom: 33px;
  --widget-content-margin-top: 0;
  --widget-content-padding-top: 1rem;
}
:is(.profile-page, #profile-page) .widget-title {
  padding-inline: 0;
  font-size: 20px;
  line-height: 28px;
  text-transform: none;
  letter-spacing: 0;
}
:is(.profile-page, #profile-page) .section-heading {
  max-width: none;
  margin-bottom: 1rem;
}
:is(.profile-page, #profile-page) .section-image {
  position: relative;
  border: 40px solid var(--color-light-alt);
}
:is(.profile-page, #profile-page) .section-image-video {
  position: absolute;
  top: auto;
  bottom: 1.25rem;
  right: 1.25rem;
  left: auto;
  margin: auto;
}
:is(.profile-page, #profile-page) .section-subheader {
  margin-bottom: 2rem;
}
:is(.profile-page, #profile-page) .section-subheading {
  --fancy-border-width: 73px;
}
:is(.profile-page, #profile-page) .section-divider {
  --fancy-border-margin-y: var(--default-gap-y);
}
:is(.profile-page, #profile-page) .section-lists {
  gap: 33px;
}
:is(.profile-page, #profile-page) .video-thumbnail {
  --video-thumbnail-aspect-w: 364;
  --video-thumbnail-aspect-l: 454;
}
@media only screen and (min-width: 768px) {
  :is(.profile-page, #profile-page) {
    padding-block: 56px 80px;
  }
  :is(.profile-page, #profile-page) .default-sections {
    --default-gap-y: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.profile-page, #profile-page) {
    padding-block: 90px;
  }
  :is(.profile-page, #profile-page) .default-sections {
    --default-sidebar-width: 310px;
  }
  :is(.profile-page, #profile-page) .section-container {
    --container-gutter: 140px;
  }
  :is(.profile-page, #profile-page) .section-header {
    margin-bottom: 30px;
  }
  :is(.profile-page, #profile-page) .section-heading {
    font-size: 55px;
  }
  :is(.profile-page, #profile-page) .section-subheading {
    font-size: 17px;
    --fancy-border-margin-l: 0;
    --fancy-border-margin-y: 30px;
  }
  :is(.profile-page, #profile-page) .section-image {
    border-width: 30px;
  }
  :is(.profile-page, #profile-page) .section-body {
    margin-bottom: 0;
  }
  :is(.profile-page, #profile-page) .section-awards .awards-header {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  :is(.profile-page, #profile-page) {
    padding-block: 100px;
  }
  :is(.profile-page, #profile-page) .default-sections {
    --default-sidebar-width: 400px;
  }
  :is(.profile-page, #profile-page) .section-image {
    border-width: 50px;
  }
}
@media only screen and (min-width: 1920px) {
  :is(.profile-page, #profile-page) .default-sections {
    --default-sidebar-width: 487px;
    --default-gap-x: 84px;
  }
  :is(.profile-page, #profile-page) .section-container {
    --container-gutter: 253px;
  }
  :is(.profile-page, #profile-page) .section-header {
    padding-right: 0;
  }
  :is(.profile-page, #profile-page) .section-heading {
    font-size: 60px;
  }
  :is(.profile-page, #profile-page) .section-image {
    border-width: 57px;
    margin-bottom: 55px;
  }
  :is(.profile-page, #profile-page) .section-subheading {
    font-size: 18px;
  }
  :is(.profile-page, #profile-page) .section-body {
    padding-right: 0;
  }
  :is(.profile-page, #profile-page) .section-awards {
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  :is(.profile-page, #profile-page) .section-image {
    max-width: 450px;
    margin-inline: auto;
    margin-bottom: 60px;
  }
  :is(.profile-page, #profile-page) .section-awards:not(.widget), :is(.profile-page, #profile-page) .section-header {
    text-align: center;
  }
}
@media only screen and (min-width: 1200px) {
  :is(.profile-page, #profile-page).profile-page-simple .default-section-main:has(+ .default-section-sidebar:last-child) {
    margin-bottom: 0;
  }
}
:is(.profile-page, #profile-page).profile-page-sections {
  padding-block: 0;
  --profile-image-offset: -70px;
}
:is(.profile-page, #profile-page).profile-page-sections #profile-section-2 {
  position: relative;
  z-index: 1;
}
:is(.profile-page, #profile-page).profile-page-sections #profile-section-1 {
  padding-bottom: 1px;
}
@media only screen and (min-width: 1200px) {
  :is(.profile-page, #profile-page).profile-page-sections {
    --profile-image-offset: 200px;
    --profile-sidebar-offset: 0px;
  }
  :is(.profile-page, #profile-page).profile-page-sections #profile-section-1 .section-block.default-section-sidebar {
    margin-bottom: var(--profile-image-offset);
  }
  :is(.profile-page, #profile-page).profile-page-sections #profile-section-2 .section-block.default-section-sidebar {
    margin-top: calc(var(--profile-sidebar-offset) * -1);
  }
  :is(.profile-page, #profile-page).profile-page-sections #profile-section-2 .section-block.default-section-sidebar::before {
    content: "";
    display: block;
    height: 1px;
    margin-top: calc((var(--profile-image-offset) - 1px) * -1);
  }
}
@media only screen and (min-width: 1400px) {
  :is(.profile-page, #profile-page).profile-page-sections {
    --profile-image-offset: -110px;
  }
}
@media only screen and (max-width: 1199px) {
  :is(.profile-page, #profile-page).profile-page-sections #profile-section-1 {
    padding-bottom: 1px;
  }
  :is(.profile-page, #profile-page).profile-page-sections #profile-section-1 .section-container {
    margin-bottom: var(--profile-image-offset);
  }
  :is(.profile-page, #profile-page).profile-page-sections #profile-section-2 .section-container {
    margin-top: calc((var(--profile-image-offset)) * -1);
  }
}
#profile-section-1 {
  padding-top: 3rem;
  position: relative;
  z-index: 1;
  color: var(--scheme-fg, var(--color-light));
  background: var(--scheme-bg, var(--color-dark-alt));
}
#profile-section-1 .section-blocks {
  grid-template-rows: 1fr auto;
}
@media only screen and (min-width: 1200px) {
  #profile-section-1 {
    padding-top: 6rem;
  }
  #profile-section-1 .default-section-sidebar {
    align-self: end;
  }
  #profile-section-1 .default-section-main {
    align-self: center;
  }
  #profile-section-1 .section-image {
    grid-row: 1/-1;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-section-1 {
    text-align: center;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-section-2 .section-lists {
    padding-top: 0;
  }
}
:is(.profile-page, #profile-page).profile-page-full {
  padding-block: 0;
}
:is(.profile-page, #profile-page).profile-page-full .section-block:where(:nth-last-child(n+2)) {
  margin-bottom: 2rem;
}

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