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

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

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
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

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

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

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

/* ================================================================================
* Native CSS Variables
================================================================================ */
/* css vars because internet explorer can no longer hold us back <3 */
:root {
  /* 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: 1799px;
  --br-xl: 2879px;
  --br-xxl: 3839px;
  /* Design Reference: Comps */
  --comp: 360px;
  /* Styleguide - Fonts */
  --font-primary: Roboto, sans-serif;
  --font-secondary: Zodiak, serif;
  --font-accent: var(--font-primary);
  --font-monospace: monospace;
  /* Styleguide - colors */
  --color-dark: #000814;
  --color-dark-alt: #001A48;
  --color-light: #FFFFFF;
  --color-light-alt: #F5F0E7;
  --color-primary: #9B6D19;
  --color-primary-alt: #CCA359;
  --color-primary-gradient-start: #FCD46F;
  --color-primary-gradient-end: #865A38;
  --color-secondary: #3768C1;
  --color-secondary-alt: #7EA6F0;
  --color-secondary-gradient-start: var(--color-secondary);
  --color-secondary-gradient-end: var(--color-secondary-alt);
  --color-accent: #002467;
  --color-accent-alt: var(--color-accent);
  --color-accent-gradient-start: var(--color-accent);
  --color-accent-gradient-end: var(--color-accent-alt);
  --color-neutral: rgba(99, 117, 141, 0.3098039216);
  --color-neutral-light: var(--color-neutral);
  --color-neutral-lighter: var(--color-neutral-light);
  --color-neutral-lightest: var(--color-neutral-lighter);
  --color-neutral-dark: var(--color-neutral);
  --color-neutral-darker: var(--color-neutral-dark);
  --color-neutral-darkest: var(--color-neutral-darker);
  --color-success: #0C0;
  --color-caution: #C60;
  --color-error: var(--color-primary);
  /* add more native vars as needed */
}

@media only screen and (min-width: 768px) {
  :root {
    --comp: 768px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --comp: 1200px;
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    --comp: 1400px;
  }
}
@media only screen and (min-width: 1800px) {
  :root {
    --comp: 1920px;
  }
}
/* ================================================================================
* Vendor Overrides ( CSS Library/ Plugin related stuff. EG: animated,slick,gravity forms etc. )
================================================================================ */
/* animated and wow stuff --------------------------------------------------------------- */
@media only screen and (max-width: 1199px) {
  /* Turn off all animations on sm and below */
  .animate__animated {
    transition-property: none !important;
    transform: none !important;
    animation: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  .animate__animated-custom-entranceReady {
    /* hide animation on init. may or may not be necessary */
    opacity: 0;
    transition: none;
  }
  .visible .animate__animated-custom-entranceReady {
    opacity: 1;
  }
}
/* 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-left: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-right: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-top: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * var(--field-baseline-offset, 0.5));
  padding-bottom: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * (1 - var(--field-baseline-offset, 0.5)));
  background: none;
  background-size: calc(100% + var(--field-border-width, 1px) * 2) calc(100% + var(--field-border-width, 1px) * 2);
  background-position: calc(var(--field-border-width, 1px) * -1) calc(var(--field-border-width, 1px) * -1);
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

/*  .gfield - multiline
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select) {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .gfield:is(.gfield--type-textarea,
.gfield--type-multiselect) :is(textarea, select).large {
  height: 9.375rem;
}
.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: 5.375rem;
}
/*  .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-weight: normal;
  margin-bottom: 0.8em;
  display: flex;
}
.gform_wrapper.gravity-theme .gfield_label > .gfield_required {
  margin-left: 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.125rem;
}

/* .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;
  padding: 0;
  margin: 0;
  order: 99;
}

/* custom helpers - Required Message
--------------------------------------------------------------- */
.required-message {
  font-size: 0.9375rem;
  color: inherit;
  text-transform: lowercase;
}

/* 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-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 */
/* single line select indicator */
.gfield--type-select .ginput_container::before {
  content: "\25BC\FE0E";
  font-size: 0.75em;
  align-self: center;
}

/* 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: -webkit-max-content;
  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: -webkit-max-content;
    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;
    border-top: 0;
  }
}

/* includes/field-form
--------------------------------------------------------------- */
.field-form {
  max-width: 100%;
}
.field-form :where(.faux-gform_wrapper) :is(.gform_title,
.gform_description,
.gform_footer,
.gform_body) {
  margin: 0;
  padding: 0;
}
.field-form :where(.faux-gform_wrapper) .gform_heading {
  /* gform heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  text-align: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 2rem;
}
.field-form :where(.faux-gform_wrapper) .gform_title:where(.h5) {
  margin-bottom: 1em;
}
.field-form :where(.faux-gform_wrapper) .gform_description {
  /* gform heading: gforms generated or template custom ones */
}
.field-form :where(.faux-gform_wrapper) .gform_description:where(.h1) {
  font-size: 2.5rem;
  line-height: calc(1em + 10px);
}
.field-form :where(.faux-gform_wrapper) :where(.gform_heading,
.gform_title,
.gform_description) {
  /* everything inside the heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  margin-left: auto;
  margin-right: auto;
}
.field-form :is(.faux-gform_wrapper) :is(.gform_title, .gform_description):last-child {
  margin-bottom: 0;
}
.field-form :is(.gform_wrapper) .gform_body {
  /* body: gforms generated or template custom ones */
}
.field-form :is(.gform_wrapper) .gform_footer {
  /* footer: gforms generated or template custom ones */
  /* reset margin and padding and add  one margin to keep spacing simple to setup. Gravity forms man. */
  padding: 0;
  margin: 0;
  margin-top: 1.25rem;
}
.field-form :is(.gform_wrapper) .gform_footer :is(.gform_button) {
  /* that goes for the button too */
  margin-bottom: 0;
}
.field-form-body :is(.gform_wrapper) .gform_heading {
  /* in case gravity forms decides to add more ugly things */
  display: 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;
}

/* Swiper Customizations
Variable docs: https://oxygen4fun.supadezign.com/tips/swiperjs-tips-and-good-practice/#customcss
--------------------------------------------------------------- */
:root {
  --swiper-theme-color: var(--scheme-sp,var(--color-primary));
  --swiper-navigation-sides-offset: 0rem;
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bottom: 1.5rem;
  --swiper-pagination-top: auto;
  --swiper-pagination-right: 1rem;
  --swiper-pagination-left: auto;
  --swiper-pagination-bullet-size: .375rem;
  --swiper-pagination-bullet-width: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-horizontal-gap: calc(var(--swiper-pagination-bullet-size) * 3);
  --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: currentColor;
  --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-sides-offset: 1rem;
  --swiper-scrollbar-bottom: 1.5rem;
  --swiper-scrollbar-top: auto;
  --swiper-custom-arrow-offset-x: 55px;
  /* distance of arrows from the slider. set as a padding  */
  /* distance to compensate the arrow distance against the width of the .carousels and the width of the component's container
  Tip: setting equal to --swiper-custom-arrow-offset-x will align the slides to the container. so pretty. */
}
/* Swiper Enhancements
--------------------------------------------------------------- */
.swiper {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
  padding-left: var(--swiper-custom-arrow-offset-x);
  margin-left: calc(var(--swiper-custom-arrow-offset-x-negate, var(--swiper-custom-arrow-offset-x)) * -1);
  padding-right: var(--swiper-custom-arrow-offset-x);
  margin-right: calc(var(--swiper-custom-arrow-offset-x-negate, var(--swiper-custom-arrow-offset-x)) * -1);
}
.swiper.swiper-initialized {
  opacity: 1;
}
:is(:where(.swiper-horizontal) > .swiper-pagination-bullets, .swiper-pagination-bullets:where(.swiper-pagination-horizontal), .swiper-pagination-custom, .swiper-pagination-fraction):not(.swiper-pagination-lock) {
  bottom: var(--swiper-pagination-bottom);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--swiper-pagination-bullet-horizontal-gap);
}

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

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

/* ================================================================================
* 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);
  color: var(--scheme-fg, var(--color-dark));
  background: var(--scheme-bg, var(--color-light));
  background-attachment: fixed;
  /* make sure there are no edge case words that overflow the layout or make blocks too wide*/
  word-wrap: break-word;
  /* smoothen scroll */
  scroll-behavior: smooth;
  /* mobile viewport bug fix */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* accent color for form stuff */
  accent-color: var(--color-primary);
  /* pad scroll for jump links */
  scroll-padding: var(--layout-header-height);
}

/* 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.
--------------------------------------------------------------- */
html {
  /* Safari fix */
  overflow-y: scroll;
  overflow-x: hidden;
}

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

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

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

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

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

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

button {
  border: none;
  cursor: pointer;
}

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

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

code,
kbd,
tt {
  padding: 0.125em;
}

pre {
  padding: 1em;
  max-width: 100%;
  line-height: 1;
  overflow: auto;
}

pre * {
  border: 0;
  margin: 0;
  padding: 0;
}

/* Other critical element styles
--------------------------------------------------------------- */
strong,
b {
  font-family: inherit;
  font-weight: bold;
}

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

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

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

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

hr {
  outline: 0;
  border: 0;
  display: block;
  margin: 0;
}

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

img {
  height: auto;
}

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

/* 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
--------------------------------------------------------------- */
main, .main,
aside, .aside {
  padding-top: 2.25rem;
  padding-bottom: 4.5rem;
}
@media only screen and (min-width: 768px) {
  main, .main,
  aside, .aside {
    padding-top: 3.5rem;
    padding-bottom: 7.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  main, .main,
  aside, .aside {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media only screen and (min-width: 1400px) {
  main, .main,
  aside, .aside {
    padding-bottom: 5.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  main, .main,
  aside, .aside {
    padding-top: 6.25rem;
    padding-bottom: 8.75rem;
  }
}

/* ...Or separate normalize template main and asides' vertical padding.
--------------------------------------------------------------- */
.banner-no-background-image main, .banner-no-background-image .main {
  padding-top: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}

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

/* Catch fancy/weird/whatever positioned elements into custom templates' content area only + prevent clipping issues
--------------------------------------------------------------- */
.template-wrapper {
  position: relative;
  overflow-x: hidden;
}

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

/* H1 - can be reused by section titles, primary-heading etc.
--------------------------------------------------------------- */
:is(:where(*.h1), .content :where(h1)) {
  font-size: 2.1875rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-secondary);
  color: var(--color-dark-alt);
  letter-spacing: 0em;
  text-transform: capitalize;
  font-style: normal;
  font-weight: normal;
  margin-bottom: 0.75rem;
}
:where(.content-palette-dark) :is(:where(*.h1), .content :where(h1)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-fg, inherit);
}
@media only screen and (min-width: 768px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 3.4375rem;
    line-height: calc(1em + 9px);
  }
}

/* H2 - can be reused by certain titles
--------------------------------------------------------------- */
:is(:where(*.h2), .content :where(h2)) {
  font-size: 1.5rem;
  line-height: calc(1em + 10px);
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}
:where(.content-palette-dark) :is(:where(*.h2), .content :where(h2)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-sp, var(--color-primary-alt));
}
/* H3 - can be reused by certain titles
--------------------------------------------------------------- */
:is(:where(*.h3), .content :where(h3)) {
  font-size: 1.3125rem;
  line-height: calc(1em + 9px);
  font-family: var(--font-accent);
  color: var(--color-accent);
  letter-spacing: 0em;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
:where(.content-palette-dark) :is(:where(*.h3), .content :where(h3)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-sp, var(--color-light-alt));
}
/* H4s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly case result types/titles, blog post meta, etc
--------------------------------------------------------------- */
:is(:where(*.h4), .content :where(h4)) {
  font-size: 1.0625rem;
  line-height: calc(1em + 6px);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0em;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
:where(.content-palette-dark) :is(:where(*.h4), .content :where(h4)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
/* H5s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly testimonial quote sources, contact info titles, etc
--------------------------------------------------------------- */
:is(:where(*.h5), .content :where(h5)) {
  font-size: 1rem;
  line-height: calc(1em + 3px);
  font-family: var(--font-accent);
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
:where(.content-palette-dark) :is(:where(*.h5), .content :where(h5)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-fg, var(--color-secondary-alt));
}
@media only screen and (min-width: 768px) {
  :is(:where(*.h5), .content :where(h5)) {
    font-size: 1rem;
  }
}
/* H6s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly contact info titles, etc
--------------------------------------------------------------- */
:is(:where(*.h6), .content :where(h6)) {
  font-size: 0.9375rem;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
:where(.content-palette-dark) :is(:where(*.h6), .content :where(h6)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
/* Blockquote -  can be reused in testimonial-highlights, long call to action sections, any general quote, etc.
--------------------------------------------------------------- */
:is(:where(*.blockquote), .content :where(blockquote)) {
  font-size: 1.5625rem;
  line-height: 1.37;
  font-family: var(--font-secondary);
  color: var(--color-accent);
  text-transform: none;
  font-style: italic;
  font-weight: normal;
  text-align: center;
  margin-inline: auto;
  max-width: 60ch;
  margin-block: 2.5rem;
}
:where(.content-palette-dark) :is(:where(*.blockquote), .content :where(blockquote)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-fg-contrast, var(--color-light-alt));
}
:is(:where(*.blockquote), .content :where(blockquote)) > * {
  font: inherit;
  color: inherit;
  margin-top: 0;
  padding: 0;
}
:is(:where(*.blockquote), .content :where(blockquote)) > *:last-child {
  margin-bottom: 0;
}
:is(:where(*.blockquote), .content :where(blockquote)) em {
  color: var(--color-secondary);
}
@media only screen and (min-width: 768px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 1.875rem;
    margin-block: 2.875rem 3.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    margin-block: 3.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 2.1875rem;
    margin-block: 4.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    font-size: 2.8125rem;
  }
}
/* Cite /  Blockquote Source - Optional
Note: Some designs may include a blockquote quote source. suprise, there's an html tag for that (:
can be reused in testimonial-source, any general quote source, etc.
--------------------------------------------------------------- */
:is(:where(*.cite), .content :where(cite)) {
  font-size: 0.875rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-primary);
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 900;
  text-align: center;
  display: inline-block;
}
:where(.content-palette-dark) :is(:where(*.cite), .content :where(cite)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-sp, inherit);
}
:is(blockquote, *.blockquote) :is(:where(*.cite), .content :where(cite)) {
  margin-top: 1.25em;
}
/* Lead - Optional
Note: Some designs may include another style for a little bit fancier basic text that may not be tagged as a normal html element like blockquote or h tag
Use this if it helps
--------------------------------------------------------------- */
:where(.content-palette-dark) *.lead {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
  color: var(--scheme-sp, var(--color-accent));
}
/* The Content - Scaffolding + spacing
--------------------------------------------------------------- */
.content {
  font-size: 1.0625rem;
  line-height: 1.7647058824;
  font-family: var(--font-primary);
  color: inherit;
}
.content :where(:not(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6,
*.blockquote, blockquote)) + *):where(*.h1, *.h2, *.h3, h1, h2, h3), .content.content-style-apply-h-first-margin > :where(:first-child):where(*.h1, *.h2, *.h3, h1, h2, h3) {
  margin-top: 2rem;
}
@media only screen and (min-width: 1200px) {
  .content :where(:not(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6,
  *.blockquote, blockquote)) + *):where(*.h1, *.h2, *.h3, h1, h2, h3), .content.content-style-apply-h-first-margin > :where(:first-child):where(*.h1, *.h2, *.h3, h1, h2, h3) {
    margin-top: 2rem;
  }
}
.content :where(:not(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6,
*.blockquote, blockquote)) + *):where(*.h4, *.h5, *.h6, h4, h5, h6), .content.content-style-apply-h-first-margin > :where(:first-child):where(*.h4, *.h5, *.h6, h4, h5, h6) {
  margin-top: 1rem;
}
@media only screen and (min-width: 1200px) {
  .content :where(:not(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6,
  *.blockquote, blockquote)) + *):where(*.h4, *.h5, *.h6, h4, h5, h6), .content.content-style-apply-h-first-margin > :where(:first-child):where(*.h4, *.h5, *.h6, h4, h5, h6) {
    margin-top: 1.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .content :where(:not(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6,
  *.blockquote, blockquote)) + *):where(*.h4, *.h5, *.h6, h4, h5, h6), .content.content-style-apply-h-first-margin > :where(:first-child):where(*.h4, *.h5, *.h6, h4, h5, h6) {
    margin-top: 2.5rem;
  }
}
.content :where(p,
ul,
ol,
dl,
input:not([type=checkbox]):not([type=radio]):not([type=submit]),
select,
textarea,
form,
pre,
.table-wrapper,
table,
.wistia_responsive_padding) {
  margin-bottom: 1.25em;
}
.content :where(hr) {
  margin-top: 1.25em;
}

/* Content - Anchor links
--------------------------------------------------------------- */
:is(.content :where(a)) {
  color: var(--scheme-sp, var(--color-primary));
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
:is(.content :where(a)):where(:hover, :focus) {
  color: var(--scheme-sp, var(--color-secondary));
  text-decoration: none;
}
:where(.content-palette-dark) :is(.content :where(a)) {
  /* modify colors on dark mode. will only apply if there are styles within the selector and a) content-palette-dark and or b) schemes component classes are enabled and dark helpers are applied */
}
:where(.content-palette-dark) :is(.content :where(a)):not(:where(:hover, :focus)) {
  color: var(--scheme-sp, var(--color-accent));
}
:where(.content-palette-dark) :is(.content :where(a)):where(:hover, :focus) {
  color: var(--scheme-sp, var(--color-accent-alt));
}

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

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

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

/* The Content - Unordered List
--------------------------------------------------------------- */
:is(.content :where(ul)) > li::marker, :is(.content :where(ul)) > li::before {
  color: var(--scheme-sp, var(--color-secondary-alt));
  margin-right: 0.7em;
  top: 0.2em;
}
:where(.content-palette-dark) :is(.content :where(ul)) > li::marker, :where(.content-palette-dark) :is(.content :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 */
  color: var(--scheme-sp, var(--color-secondary));
}
:is(.content :where(ul)) > li::before {
  font-size: 0.8em;
  content: "\25CF\FE0E";
}
:is(.content :where(ul)) > li > ul > li::before {
  content: "-";
}

/* The Content - Ordered List
--------------------------------------------------------------- */
:is(.content :where(ol)) {
  counter-reset: listItem;
}
:is(.content :where(ol)) > li::before {
  content: counter(listItem) ". ";
  counter-increment: listItem;
  color: var(--scheme-sp, var(--color-secondary));
}
:where(.content-palette-dark) :is(.content :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(.content table) {
  border-collapse: collapse;
  table-layout: fixed;
  -webkit-hyphens: auto;
          hyphens: auto;
  font: inherit;
  border-color: var(--table-border-color);
  border-width: var(--table-border-width-y) var(--table-border-width-x);
}

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

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

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

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

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

/* Content Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/global/content.md#content-palette-name
--------------------------------------------------------------- */
/* 
support content styles for dark schemes. 
Note: To aply dark mode styles, use @extends to select optional scheme component.
example of styles:

h2 {
	color: something;

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

*/
.content-palette-dark {
  /* inherit white color: NOTE: for this to work, best practice is for a) text color to be modified alongside dark background styles of containing section for accessibility/ and or b) Use and enabling _schemes.scss */
  color: var(--scheme-fg, inherit);
}
.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;
}

/* for instances of content with less line-height or vertical spacing. Usually lists */
.content.content-style-compact {
  line-height: 1.15;
}
.content.content-style-compact li, .content.content-style-compact li :where(ul, ol) {
  margin-top: 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: 1799px) {
  .content.content-style-no-first-margin-lg > :where(*:first-child) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1800px) 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: 1799px) {
  .content.content-style-no-last-margin-lg > :where(*:last-child) {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1800px) 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;
}
.content.content-style-thick-list :where(li, dd, dt) {
  font-weight: 500;
}
/* ================================================================================
* Supported WP Core Classes/ Styles
================================================================================ */
/* Wordpress Core Classes
--------------------------------------------------------------- */
/* Align Classes */
*.alignleft,
*.alignright,
*.aligncenter,
*.alignnone {
  margin-bottom: 0.5em;
  max-width: 100%;
  height: auto;
}

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

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

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

Note: Styles already prebuilt in this section must not be omitted
--------------------------------------------------------------- */
/* Clearfix stuff
--------------------------------------------------------------- */
.container::after, .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, .screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

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

/* wrap svgs in this helper to control sizing like font glyphs. Sets an svg to align to the bottom left. Set a font size to it to align heights. ie Case Results Icon, Selling Points, Testimonial stars, Social Media, iLawyer Logo, etc.
--------------------------------------------------------------- */
.content-icon {
  height: 1em;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 0 0 auto;
  width: -webkit-max-content;
  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: -webkit-max-content;
  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	1799px
xl: 	hd			1800px	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: 1800px) {
  .xl-only {
    display: block !important;
  }
  .xl-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1799px) {
  .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 Skeletons. do not edit 
--------------------------------------------------------------- */
.button {
  border: var(--button-border-width) solid;
  padding-inline: calc(var(--button-padding-x) - var(--button-border-width));
  padding-block: calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * var(--button-baseline-offset)) calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * (1 - var(--button-baseline-offset)));
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 100%;
  background: none;
  text-align: center;
  transition: all 0.125s ease-in-out;
  min-height: var(--button-height);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  background-size: calc(100% + var(--button-border-width) * 2) calc(100% + var(--button-border-width) * 2);
  background-position: calc(var(--button-border-width) * -1) calc(var(--button-border-width) * -1);
  background-clip: border-box;
  background-origin: border-box;
  line-height: var(--button-line-height);
}
.button, .button:is(:hover, :focus) {
  text-decoration: none;
}

/* Button Customizations
--------------------------------------------------------------- */
:is(.content .button, .button) {
  /* Vars Reference: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md#css-vars */
  --button-height: 3.125rem;
  --button-border-width: 1px;
  --button-border-radius: 50px;
  --button-padding-x: 1.5em;
  --button-lines: 1;
  --button-baseline-offset: 0.55;
  --button-line-height: 1.125;
  font-size: 1rem;
  line-height: var(--button-line-height);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--button-border-radius);
}
/* 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.button-size-small {
  font-size: 0.8125rem;
  --button-height: 2.625em;
}
.button.button-size-large {
  font-size: 1.1875rem;
  --button-height: 3.5rem;
  --button-baseline-offset: 0.5;
  text-transform: capitalize;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  .button.button-size-large {
    --button-height: 3.875rem;
  }
}
.button.button-size-equal {
  --button-padding-x: 0;
  width: var(--button-height);
}

/* 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
--------------------------------------------------------------- */
.button.button-palette-default.button-size-large {
  letter-spacing: 0em;
  text-transform: none;
}
.button.button-palette-default, .button.button-palette-reverse:is(:hover, :focus) {
  background-image: linear-gradient(to bottom, var(--color-primary-gradient-start) 0%, var(--color-primary-gradient-end) 100%);
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-default:is(:hover, :focus), .button.button-palette-reverse {
  background-image: none;
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-outline {
  background-color: transparent;
  color: var(--color-accent);
  border-color: currentColor;
}
:where(.content-palette-dark) .button.button-palette-outline-outline:not(:is(:hover, :focus)) {
  color: inherit;
}
.button.button-palette-outline:is(:hover, :focus) {
  color: var(--color-primary);
}
.button.button-palette-lite, .button.button-palette-lite-reverse:is(:hover, :focus) {
  color: var(--color-accent);
  border-color: transparent;
  background-color: transparent;
}
:where(.content-palette-dark) .button.button-palette-lite, :where(.content-palette-dark) .button.button-palette-lite-reverse:is(:hover, :focus) {
  background-color: var(--color-light);
}
.button.button-palette-lite-reverse, .button.button-palette-lite:is(:hover, :focus) {
  background-color: transparent;
  color: var(--color-primary);
  border-color: transparent;
}
:where(.content-palette-dark) .button.button-palette-lite-reverse, :where(.content-palette-dark) .button.button-palette-lite:is(:hover, :focus) {
  background-color: var(--color-light);
}

/* Buttons Variations Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-style-name
--------------------------------------------------------------- */
.button.button-style-special {
  position: relative;
  z-index: 1;
  --button-style-special-offset: .5em;
}
.button.button-style-special::before, .button.button-style-special::after {
  content: "";
  transition: box-shadow 0.125s ease-in-out;
}
.button.button-style-special::before {
  display: inline-block;
  align-self: center;
  margin-right: 1.5em;
  margin-left: 0.375em;
  margin-bottom: 0.375em;
  width: 1.5rem;
  height: var(--button-border-width);
  background: currentColor;
  box-shadow: 0em -0.375em 0 0, -0.375em 0 0 0, 0.375em 0 0 0, 0em 0.375em 0 0;
}
.button.button-style-special::after {
  top: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  bottom: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  left: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  right: calc(var(--button-style-special-offset) * -1 - var(--button-border-width) * 2);
  border: var(--button-border-width) solid var(--color-accent);
  border-radius: calc(var(--button-border-radius) * 2);
  display: block;
  position: absolute;
  box-shadow: inset 0 0 0 var(--button-style-special-offset) rgba(255, 255, 255, 0.1333333333);
  mix-blend-mode: screen;
}
.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;
}
.button.button-style-special:is(:hover, :focus)::after {
  border-color: var(--color-primary);
}
.button.button-style-minimal {
  border-color: transparent;
}
.button.button-style-link {
  --button-border-width: 0px;
  background: none;
  font-family: inherit;
  color: var(--color-primary-alt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
}
.button.button-style-link.button-size-large {
  font-size: 1.1875rem;
}
.button.button-style-link:is(:hover, :focus) {
  background: var(--color-primary-alt);
  border-color: var(--color-primary-alt);
  color: var(--color-light);
}
.button.button-style-slider {
  --button-height: 2.25em;
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .button.button-style-slider {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1400px) {
  .button.button-style-slider {
    font-size: 2.1875rem;
  }
}
@media only screen and (min-width: 768px) {
  .button.button-style-slider.button-size-large {
    font-size: 2.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .button.button-style-slider.button-size-large {
    font-size: 2.25rem;
  }
}
.button.button-style-slider.button-size-larger {
  font-size: 1.75rem;
}
@media only screen and (min-width: 768px) {
  .button.button-style-slider.button-size-larger {
    font-size: 2.0625rem;
  }
}
.button.button-style-slider.button-size-small {
  font-size: 1.5rem;
}
.button.button-style-flat {
  background-image: none;
}
.button.button-style-no-radius {
  --button-border-radius: 0;
}
.button.button-style-round {
  --button-border-radius: 999em;
}
.button.button-style-thick-borders {
  --button-border-width: 4px;
}
.button.button-style-thin-borders {
  --button-border-width: .5px;
}
@supports ((-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0)) or (clip-path: polygon(0 0, 0 0, 0 0, 0 0))) {
  .button.button-style-diamond {
    overflow: hidden;
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
            clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }
}
/* Misc Button stuff. Add as needed
--------------------------------------------------------------- */
/* little arrow indicator for slider arrows: .button.button-size-equal.button-palette-default > i.button-slider-glyph */
.button-slider-glyph:empty::after {
  display: inline-block;
  order: 9;
  align-self: center;
  transform-origin: center center;
  /* slider glyph border arrow styles */
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask-image: url(/wp-content/themes/pql25/images/icon-arrow.svg);
          mask-image: url(/wp-content/themes/pql25/images/icon-arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  color: var(--color-dark-alt);
  left: 0.1em;
  position: relative;
}
:is(.prev,
.slick-prev,
.swpier-button-prev) .button-slider-glyph {
  transform: scaleX(-1);
}

/* Container: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md
--------------------------------------------------------------- */
/* Container Skeletons. do not edit 
--------------------------------------------------------------- */
.container {
  max-width: 100%;
  width: calc(100% - max(var(--container-gutter) - var(--container-fallback), 0rem) * 2);
  padding-inline: var(--container-fallback);
  margin-inline: auto;
  min-width: 0;
  flex: 0 0 auto;
}

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

/* Container Maxed XS: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-maxed-xs
--------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .container.container-maxed-xs {
    max-width: 480px;
  }
}

/* Container Wide XS: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-wide-xs
--------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .container.container-wide-xs {
    --container-fallback: 15px;
    --container-gutter: var(--container-fallback);
  }
}

/* Container Wide SM: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-wide-xs
--------------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .container.container-wide-sm {
    --container-fallback: 30px;
    --container-gutter: var(--container-fallback);
  }
}

/* Custom Container Gutter Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-name
--------------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  .container.container-default {
    --container-gutter: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-default {
    --container-gutter: 75px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-default {
    --container-gutter: 100px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-default {
    --container-gutter: 275px;
  }
}

.container.container- {
  --container-gutter: px;
}
@media only screen and (min-width: 768px) {
  .container.container- {
    --container-gutter: px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container- {
    --container-gutter: px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container- {
    --container-gutter: px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container- {
    --container-gutter: px;
  }
}

/* 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 */
  max-width: none;
  width: auto;
  min-width: 0;
}
.columns, .columns > * {
  min-width: 0;
}
.columns.columns-flex {
  display: flex;
  flex-wrap: wrap;
  row-gap: var(--columns-gap-y);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
}
.columns.columns-flex > * {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100% / var(--columns-number) - var(--columns-gap-x) * (var(--columns-number) - 1) / var(--columns-number));
}
.columns.columns-grid {
  display: grid;
  row-gap: var(--columns-gap-y);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
  grid-template-columns: repeat(var(--columns-number), 1fr);
}
.columns.columns-grid > * {
  width: 100%;
}
.columns.columns-masonry {
  -moz-column-count: var(--columns-number);
       column-count: var(--columns-number);
  -webkit-column-count: var(--columns-number);
  -moz-column-gap: var(--columns-gap-x);
       column-gap: var(--columns-gap-x);
  -webkit-column-gap: var(--columns-gap-x);
}
.columns.columns-masonry > * {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.columns.columns-masonry > *:nth-child(n+2) {
  margin-top: var(--columns-gap-y);
}

/* Graphic/ design related styles or decoration styles here. Essentially, the fancy stuff enhances the gucciness of the site
--------------------------------------------------------------- */
/* Fancy Borders + HR: /* https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/fancy.md#fancy-border-css-vars
--------------------------------------------------------------- */
:where(hr),
.fancy-border {
  clear: both;
  outline: none;
  border: none;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}

.fancy-border {
  --fancy-border-margin-y: 1.5rem;
  --fancy-border-margin-r: auto;
  --fancy-border-margin-l: auto;
  --fancy-border-height: 3px;
  --fancy-border-width: auto;
  --fancy-border-background: currentColor;
}
:where(hr), .fancy-border.fancy-border-before::before, .fancy-border.fancy-border-after::after {
  height: var(--fancy-border-height, 3px);
  background: var(--fancy-border-background, var(--color-neutral));
  width: var(--fancy-border-width, 100%);
  margin-left: var(--fancy-border-margin-l);
  margin-right: var(--fancy-border-margin-r);
}

.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-neutral {
  --fancy-border-background: var(--color-neutral);
}
.fancy-border-style-thin {
  --fancy-border-height: 1px;
}
hr.fancy-border-style-flat, .fancy-border-style-flat.fancy-border-before::before, .fancy-border-style-flat.fancy-border-after::after {
  background-image: none !important;
}

.fancy-border-style-inline {
  --fancy-border-margin-l: .5em;
  display: flex;
  flex-wrap: nowrap;
  row-gap: var(--fancy-border-margin-y);
  -moz-column-gap: var(--fancy-border-margin-l);
       column-gap: var(--fancy-border-margin-l);
}
.fancy-border-style-inline:before, .fancy-border-style-inline:after {
  flex: 1 1;
  margin-block: 0 !important;
  align-self: center;
}
/* 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%;
  }
}

/* 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-center-width: 100%;
  --fancy-icon-menu-bar-bottom-width: 100%;
  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%;
  margin: auto;
  transition: all 0.375s ease-in-out;
}
.fancy-icon-menu span:first-child {
  bottom: auto;
  width: var(--fancy-icon-menu-bar-top-width);
}
.fancy-icon-menu span:last-child {
  top: auto;
  width: var(--fancy-icon-menu-bar-bottom-width);
}
.fancy-icon-menu span:nth-child(2), .fancy-icon-menu span:nth-child(3) {
  width: var(--fancy-icon-menu-bar-center-width);
}
.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:nth-child(2), .open .fancy-icon-menu span:nth-child(3) {
  width: 100%;
}
.open .fancy-icon-menu span:first-child, .open .fancy-icon-menu span:last-child {
  width: 0;
}
/* Fancy Text Animation by Mr. Garrett but Sam added tweaks
--------------------------------------------------------------- */
/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
.fancy-box {
  --fancy-box-border-radius: 1rem;
  --fancy-box-gutter: .875rem;
  --fancy-box-border-color: transparent;
  --fancy-box-outer-shadow-color: transparent;
  --fancy-box-outer-shadow-blur: 0px;
  --fancy-box-inner-shadow-color: transparent;
  --fancy-box-inner-shadow-blur: 0px;
  border-radius: var(--fancy-box-border-radius);
  border: var(--fancy-box-gutter) solid var(--fancy-box-border-color);
  position: relative;
  box-shadow: 0 0 var(--fancy-box-outer-shadow-blur) 1px var(--fancy-box-outer-shadow-color);
}
.fancy-box > :where(*),
.fancy-box :where(img) {
  border-radius: inherit;
  overflow: hidden;
}
.fancy-box > :where(picture) {
  display: block;
}
.fancy-box::before {
  pointer-events: none;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: inherit;
}
.fancy-box.fancy-box-style-default {
  --fancy-box-outer-shadow-color: rgba(0,0,0,.2);
  --fancy-box-outer-shadow-blur: 10px;
  --fancy-box-inner-shadow-color: rgba(127,127,127,.2);
  background-color: var(--color-light);
  color: var(--color-dark);
}
.fancy-box.fancy-box-style-default:before {
  box-shadow: inset 0 0 var(--fancy-box-inner-shadow-blur) 1px var(--fancy-box-inner-shadow-color);
}
.fancy-box.fancy-box-style-glass {
  --fancy-box-outer-shadow-color: rgba(255,255,255,.3);
  --fancy-box-inner-shadow-color: rgba(0,0,0,.5);
  --fancy-box-inner-shadow-blur: 10px;
  background-color: var(--color-dark-alt);
  color: var(--color-light);
  background-clip: padding-box !important;
}
.fancy-box.fancy-box-style-glass::before {
  box-shadow: 0 0 var(--fancy-box-inner-shadow-blur) 1px var(--fancy-box-inner-shadow-color);
}
.fancy-box.fancy-box-style-contrast {
  background: var(--color-light-alt);
  --fancy-box-outer-shadow-color: transparent;
}
:where(.content-palette-dark) .fancy-box.fancy-box-style-contrast {
  background: var(--color-dark);
}
/* 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-top: var(--widget-padding-top);
  padding-bottom: var(--widget-padding-bottom);
  padding-inline: var(--widget-padding-x);
  position: relative;
  max-width: none;
  width: auto;
}
.widget,
.widget > :where(ul, .widget-content, .menu, div):not(.content),
.widget > :where(ul, .widget-content, .menu, div):not(.content) li {
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
}
.widget > :where(ul, .widget-content, .menu, div) {
  padding-top: var(--widget-content-padding-top);
  padding-bottom: var(--widget-content-padding-bottom);
  margin-top: var(--widget-content-margin-top);
  margin-bottom: var(--widget-content-margin-bottom);
}
.widget > :where(ul, .widget-content, .menu, div):last-child, .widget > :where(ul, .widget-content, .menu, div):not(.content) > li, .widget > :where(ul, .widget-content, .menu, div):not(.content) :where(ul, .sub-menu) {
  margin-inline: calc(var(--widget-padding-x) * -1);
  max-width: none;
}
:is(.widget-title, .widget-title, .widgettitle) {
  padding-inline: var(--widget-title-padding-x);
  margin-bottom: 0;
  margin-top: 0;
}

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

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

/* Widget Customizations https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md#css-vars
--------------------------------------------------------------- */
.widget {
  --widget-padding-x: 0px;
  --widget-padding-top: 0;
  --widget-padding-bottom: var(--widget-padding-top);
  --widget-list-offset-x: var(--widget-padding-x);
  --widget-dropdown-padding-top: 0;
  --widget-dropdown-padding-bottom: var(--widget-dropdown-padding-top);
  --widget-dropdown-margin-top: 0rem;
  --widget-dropdown-margin-bottom: var(--widget-dropdown-margin-top);
  --widget-item-height: 3.5rem;
  --widget-item-border-width: 1px;
  --widget-item-lines: 1;
  /* Padding to distance between only the anchor tags' and parent widget li item. Neither affected by --widget-padding-x or --widget-offset-x. NOTE: li is being padded with --widget-padding-x to align the padding perfectly with the title, li, and uls/content block */
  --widget-item-padding-x: 8px;
  /* 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-baseline-offset: 0.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 */
  --widget-item-line-height: 1.5;
  text-align: center;
}
.widget:nth-last-child(n+2) {
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .widget {
    width: 100%;
    margin: 0 auto;
  }
}
.widget-title {
  font-size: 2.375rem;
  line-height: 1.5;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  letter-spacing: 0em;
  text-transform: none;
  font-weight: normal;
  margin-bottom: 0;
}
.widget-title::before {
  display: none !important;
}
.widget-toggle {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.widget-toggle::before {
  display: inline-block;
  order: 9;
  align-self: center;
  margin-left: 0.75em;
  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-secondary-alt);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.open > .widget-toggle::before {
  transform: rotate(-135deg);
}
li > .widget-toggle::before {
  margin-right: calc(var(--widget-item-padding-x) * -1);
}
.widget > :where(ul, .widget-content):not(.content) {
  font-size: 0.9375rem;
  line-height: var(--widget-item-line-height);
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}
.widget > :where(ul, .widget-content):not(.content) li > a {
  border-bottom: var(--widget-item-border-width) solid var(--color-neutral-light);
}
.widget > :where(ul, .widget-content):not(.content) li > a {
  justify-content: center;
}
.widget > :where(ul, .widget-content):not(.content) li:is(.open, :hover, :focus-within) > a {
  color: var(--color-secondary);
}
.widget > :where(ul, .widget-content):not(.content) li ul {
  background: var(--color-light-alt);
  border-color: var(--color-neutral-lighter);
  text-align: left;
}
.widget > :where(ul, .widget-content):not(.content) li ul ul {
  background: rgba(255, 255, 255, 0.6);
}
.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;
}
/*
https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/popup.md
--------------------------------------------------------------- */
.doc-popup-active {
  overflow-y: hidden;
}

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

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

/* ================================================================================
* Header
================================================================================ */
/* Layout Header
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: 100px;
  /* height of the whole header at a given state or layout */
  --layout-header-offset: 0px;
  /* How far off the header is from the top of the viewport. This is specially useful for .header-overlay-on-banner styles before sticky-ing */
  --layout-header-logo-height: var(--layout-header-height);
  /* height of logo including its padding at a given state or layout. */
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1800px) {
  :root {
    --layout-header-height: 88px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    /* Touch Devices Header Styles Start */
    --layout-header-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --layout-header-height: 120px;
    --layout-header-logo-height: 80px;
    /* header: one top value might work for the design. NOTE: adjust ilawyer alertbar settings accordingly if enabled (dynamic margin, offset to bottom on touch devices, position, etc.) */
  }
}

.doc-header-not-sticky .header-overlay-on-banner {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    /* override logo height apart form the header height on this state only. Adjust as needed */
    --layout-header-offset: 5px;
  }
}
.doc-header-not-sticky {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
  /* remove dropdown shadow on all devices when not scrolling yet */
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky {
    /* reset offset when no scrolling yet */
    --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 {
    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: var(--layout-header-height) !important;
}

/* helper to offset any section using pseudo element
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .banner-has-background-image.header-overlay-on-banner .layout-header-offset::before {
    content: "";
    flex: 0 0 auto;
    height: var(--layout-header-height);
    display: block;
    width: 100%;
  }
}

/* Layout Header Itself
--------------------------------------------------------------- */
.layout-header {
  /* Note: position must be set initially, NOT based on whether or not a scroll has occured (sticky vs not-sticky class). This is to prevent layout jumps on scroll */
  position: -webkit-sticky;
  position: sticky;
  top: var(--layout-header-offset);
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--color-light);
  color: var(--color-dark);
  transition: 0.25s top ease-in-out;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 1200px) {
  .layout-header {
    /* Non-touch Devices Header Styles Start */
  }
  .layout-header-container {
    --container-fallback: 25px;
  }
}
@media only screen and (min-width: 1400px) {
  .layout-header-container {
    --container-fallback: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .layout-header {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .doc-header-not-sticky .header-overlay-on-banner.no-banner .layout-header {
    background-color: var(--color-dark-alt);
  }
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner.no-banner .layout-header {
    /* remove background */
    background: transparent;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .layout-header {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header {
    /* remove background */
    background: transparent;
  }
}
.doc-header-not-sticky .layout-header {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
  /* remove dropdown shadow on all devices when not scrolling yet */
}
.doc-header-menu-open .layout-header {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.header-overlay-on-banner .layout-header {
  /* Overlay header on header-overlay-on-banner. best for setting position on large devices AND NOTHING ELSE */
}
@media only screen and (min-width: 1200px) {
  .header-overlay-on-banner .layout-header {
    position: fixed;
  }
}

/* Header Blocks
--------------------------------------------------------------- */
.header-blocks {
  display: grid;
  -moz-column-gap: 1.625rem;
       column-gap: 1.625rem;
  row-gap: 0rem;
  grid-template-areas: "logo nav translate cta" "border border border border";
  grid-template-columns: auto 1fr auto auto;
  justify-content: space-between;
  justify-items: space-between;
  /* set as min instead in case alertbar needs to be added within header */
  min-height: var(--layout-header-height);
}
.header-blocks, .header-blocks > * {
  min-width: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-blocks {
    grid-template-rows: 1fr auto auto;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo translate cta" "logo nav nav" "border border border";
  }
}
@media only screen and (min-width: 1800px) {
  .header-blocks {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-blocks {
    /* Touch Devices Header Styles Start */
    margin-inline: calc(var(--container-gutter) * -1);
    grid-template-columns: 1fr auto auto auto;
    grid-template-areas: "logo translate cta toggle-menu" "border border border border";
  }
}
@media only screen and (max-width: 767px) {
  .header-blocks {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "logo translate toggle-menu" "cta cta cta" "border border border";
    gap: 0;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-blocks {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-overlay-on-banner .header-blocks:after {
  content: "";
  display: block;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  margin: auto;
  pointer-events: none;
  order: 99;
  grid-area: border;
  justify-self: stretch;
  min-width: 100%;
}
.doc-header-not-sticky .header-blocks {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.header-blocks .doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Logo
--------------------------------------------------------------- */
.header-logo {
  padding-block: 1.5rem;
  height: var(--layout-header-logo-height);
  flex: 0 0 auto;
  grid-area: logo;
  /* support logo offseting on overlay banner + not sticky state. comment if not needed */
  position: relative;
}
.header-logo .logo-wrapper-touch, .header-logo .logo-wrapper-before-sticky {
  /* hide possible variations of logo */
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-logo {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1800px) {
  .header-logo {
    padding-block: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo {
    /* Touch Devices Header Styles Start */
    padding-block: 1.05rem;
    padding-inline: 1.25rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    padding-block: 1.25rem;
    padding-inline: 2rem;
    grid-column: span 2;
    width: 100%;
    justify-self: stretch;
    max-width: 100%;
  }
  .header-translate ~ .header-logo {
    grid-column: auto;
  }
  .header-logo .logo-wrapper-touch {
    /* show  */
    display: block;
  }
  .header-logo .logo-wrapper-touch ~ .logo-wrapper-nontouch {
    display: none;
  }
}
.ilaw-has-translate .header-logo {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .ilaw-has-translate .header-logo {
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
  .ilaw-has-translate .header-logo .logo-wrapper-sticky {
    /* hide default logo on before sticky */
    display: none;
  }
  .ilaw-has-translate .header-logo .logo-wrapper-before-sticky {
    /* show  */
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .ilaw-has-translate .header-logo {
    grid-column: 1;
    width: auto;
    justify-self: start;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-logo {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-sticky {
    /* hide default logo on before sticky */
    display: none;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-before-sticky {
    /* show  */
    display: block;
  }
}
.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
--------------------------------------------------------------- */
.header-toggle {
  width: var(--layout-header-height);
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  grid-area: toggle-menu;
}
.header-toggle-menu {
  background: var(--color-dark-alt);
  color: var(--color-light);
  position: relative;
  z-index: 99999;
  top: 0;
  transition: 0.375s all ease-in-out;
}
.header-toggle-menu-icon {
  --fancy-icon-menu-width: 40px;
  --fancy-icon-menu-height: 22px;
  --fancy-icon-menu-bar-height: 4px;
}
.header-toggle-menu.open .header-toggle-menu-icon {
  color: inherit;
  --fancy-icon-menu-width: 38px;
}
.header-toggle-menu-label {
  font-size: 1rem;
  text-transform: lowercase;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-top: 0.25em;
  transition: 0.375s all ease-in-out;
}
@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 */
  }
}
@media only screen and (max-width: 767px) {
  .header-toggle-menu {
    width: var(--layout-header-logo-height);
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-toggle {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.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;
  grid-area: cta;
  gap: 0rem;
}
@media only screen and (min-width: 1200px) {
  .header-cta {
    /* Non-touch Devices Header Styles Start */
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-cta {
    align-self: self-end;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1800px) {
  .header-cta {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-cta {
    text-align: left;
    align-items: center;
    flex-direction: row;
    flex: 1 1;
    font-size: 0.75rem;
    padding: 0.25rem 2.25rem;
    gap: 0.75rem;
    background-color: var(--color-light-alt);
    width: 100%;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.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: 1.125rem;
  line-height: 1.5;
  font-family: var(--font-accent);
  color: var(--color-secondary);
  text-transform: capitalize;
  font-weight: 700;
}
.header-cta-text > span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--color-primary);
  margin: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .header-cta-text {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1800px) {
  .header-cta-text {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta-text {
    /* Touch Devices Header Styles Start */
    font-size: 1.0625rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-cta-text {
    font-size: 0.875rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta-text {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.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: 1.5rem;
}
.header-numbers .number-link {
  font-size: 1.875rem;
  line-height: 1.25;
  font-family: var(--font-secondary);
  color: var(--color-primary);
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  .header-numbers {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1400px) {
  .header-numbers .number-link {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-numbers .number-link {
    font-size: 2.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-numbers {
    /* Touch Devices Header Styles Start */
  }
  .header-numbers .number-link {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-numbers .number-link {
    font-size: 1.375rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-numbers {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.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 Translation
--------------------------------------------------------------- */
.header-translate {
  align-self: center;
  justify-self: self-end;
  grid-area: translate;
}
.header-translate:is(.button) {
  --button-border-width: 1px;
}
@media only screen and (max-width: 1799px) {
  .header-translate:is(.button) {
    --button-height: 2.125rem;
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 1399px) {
  .header-translate:is(.button) {
    --button-height: 2rem;
    font-size: 0.6875rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-translate {
    margin-right: 1rem;
  }
}

/* Header Navigation
--------------------------------------------------------------- */
.header-nav {
  grid-area: nav;
}
@media only screen and (min-width: 1200px) {
  .header-nav {
    /* Non-touch Devices Header Styles Start */
    display: flex;
    justify-content: center;
    align-self: stretch;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-nav {
    justify-self: self-end;
    align-self: stretch;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav {
    /* Touch Devices Header Styles Start */
    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-height);
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 1800px) {
  .ilaw-has-translate .header-nav {
    padding-left: 14.5rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav {
    color: inherit;
  }
}
.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 */
}
@media only screen and (max-width: 1199px) {
  .doc-header-not-sticky .header-nav {
    top: var(--layout-header-height);
  }
}
.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: 0rem;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-dropdown-padding-x: 0rem;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-current-height: 0px;
  /* current item border indicator height */
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.25;
  font-family: var(--font-primary);
  color: inherit;
  font-weight: 700;
}
.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: 0.85em 1.75rem;
  display: inline-flex;
  align-items: center;
  transition: 0.125s ease-in-out all;
  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.menu-item-has-children > a::after {
  display: inline-block;
  align-self: center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.5rem;
  margin-left: 1em;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 2px solid var(--color-secondary-alt);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.header-nav .menu ul {
  background-color: var(--color-accent);
  color: var(--color-light);
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu {
    gap: 1.4em;
    display: flex;
    justify-content: space-between;
  }
  .header-nav .menu li:not(:hover, :focus-within) > ul {
    display: none;
  }
  .header-nav .menu li {
    position: relative;
    padding-left: var(--layout-header-menu-nontouch-dropdown-padding-x);
    padding-right: var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li > a {
    padding: 0.67em 1.375rem;
    flex: 1 1;
    /* flush dropdown indicator and text to the left */
    justify-content: flex-start;
  }
  .header-nav .menu li:is(:hover, :focus-within) > a {
    /* activated styles upon interaction for nontouch */
    color: var(--color-primary-alt);
    background-color: var(--color-accent);
  }
  .header-nav .menu li.menu-item-special > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
    width: 600px;
    padding: 2rem var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li.menu-item-special > ul li {
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu li.menu-item-special > ul li.view-all {
    grid-column: span 3;
  }
  .header-nav .menu li.menu-item-special > ul ul {
    display: block !important;
    position: static;
    background: none;
    padding: 0;
    width: auto;
  }
  .header-nav .menu ul {
    width: 260px;
    top: 0;
    left: 100%;
    /* Take dropdowns out of doc flow + setup for hover/focus effects */
    position: absolute;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .header-nav .menu ul > li.menu-item-has-children > a::after {
    transform: rotate(-45deg);
    border-color: currentColor;
  }
  .header-nav .menu > li {
    align-items: center;
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu > li, .header-nav .menu > li > a {
    /* undo fanciness from non-media query scaffolding for top level menu item and its child a tag */
    border: none;
    background: none;
    margin: 0;
  }
  .header-nav .menu > li > a {
    padding: 0.875rem 0;
  }
  .header-nav .menu > li > a::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-primary);
  }
  .header-nav .menu > li:is(:hover, :focus-within) > a {
    background: transparent;
    color: var(--color-primary);
  }
  .header-nav .menu > li:is(.current-menu-item, .current-menu-ancestor, :hover, :focus-within) > a::before {
    /* current menu item indicator if active */
    width: 100%;
  }
  .header-nav .menu > li > ul {
    background-color: var(--color-dark-alt);
    top: 100%;
    left: 0;
  }
  .header-nav .menu > li > ul ul {
    color: var(--color-light);
  }
  .header-nav .menu > li > ul ul li:is(:hover, :focus-within) > a {
    color: var(--color-primary-alt);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-nav .menu > li:nth-last-child(-n+2) > ul {
    /* top level level dropdown edge case dropdown fix */
    left: auto;
    transform: none;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1799px) {
  .header-nav .menu > li:nth-last-child(-n+2) > ul ul,
  .header-nav .menu ul ul ul {
    /* deep deep deep inner level dropdown edge case dropdown fix */
    left: 25%;
  }
}
@media only screen and (min-width: 1400px) {
  .header-nav .menu {
    gap: 1.8em;
  }
}
@media only screen and (min-width: 1800px) {
  .header-nav .menu {
    gap: 1.7em;
  }
  .header-nav .menu ul {
    font-size: 1.0625rem;
    width: 290px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .menu {
    background: var(--color-dark-alt);
    color: var(--color-light);
    font-weight: 700;
    text-align: center;
    padding-block: 1.375rem;
    width: 100%;
    /* shift menu to the right edge and limit width. comment if not needed*/
    margin-left: auto;
  }
  .header-nav .menu li:not(.open) > ul {
    display: none;
  }
  .header-nav .menu li {
    padding-left: var(--layout-header-menu-touch-menu-padding-x);
    padding-right: var(--layout-header-menu-touch-menu-padding-x);
  }
  .header-nav .menu li > a {
    flex: 1 0 100%;
    padding-inline: 7.5rem;
    justify-content: center;
  }
  .header-nav .menu li:is(.open, :hover, :focus-within) > a {
    /* activated styles upon interaction for touch */
    color: var(--color-primary-alt);
  }
  .header-nav .menu li:is(.open, :hover, :focus-within).menu-item-has-children > a::after {
    border-color: currentColor;
  }
  .header-nav .menu li:is(:hover, :focus-within) > a {
    /* activated styles upon interaction for touch */
  }
  .header-nav .menu li.menu-item-has-children > a::after {
    margin-right: -2em;
  }
  .header-nav .menu ul {
    color: var(--color-light);
    align-self: stretch;
    order: 99;
    flex: 1 0 100%;
    margin-left: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
    margin-right: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
  }
  .header-nav .menu ul li > a {
    border-color: transparent;
  }
  .header-nav .menu > li > ul ul {
    background-color: rgba(255, 255, 255, 0.16);
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .menu {
    max-width: 100%;
  }
  .header-nav .menu li > a {
    padding-inline: 3.375rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-nav .menu {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-nav .menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.doc-header-menu-open.doc-header-not-sticky .header-nav .menu {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Form
--------------------------------------------------------------- */
#header-form .gform_wrapper {
  position: relative;
}
#header-form .gform_title:last-child {
  margin-bottom: 0;
}
#header-form .gform_description {
  max-width: 80ch;
}
#header-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#header-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#header-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (max-width: 1199px) {
  #header-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
/* ================================================================================
* Banner
================================================================================ */
/* Layout Banner
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .layout-banner .container, .layout-banner-container {
    --container-gutter: 98px;
  }
}
@media only screen and (min-width: 1400px) {
  .layout-banner .container, .layout-banner-container {
    --container-gutter: 85px;
  }
}
@media only screen and (min-width: 1800px) {
  .layout-banner .container, .layout-banner-container {
    --container-gutter: 208px;
  }
}
.layout-banner .banner-background .background-block-bg {
  background-position: center top;
}
.banner-has-background-image .layout-banner {
  /* Styles specific for when banner has background image */
  background-color: var(--scheme-bg-contrast, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
.banner-no-background-image .layout-banner {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Main
--------------------------------------------------------------- */
.banner-main {
  padding-block: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-main-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-items: center;
  align-items: center;
}
.banner-main-block, .banner-main-blocks {
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .banner-main {
    padding-block: 5rem 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-main {
    padding-block: 6.5rem 5rem;
  }
  .banner-main-blocks {
    grid-template-columns: 1fr auto;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
  }
  .banner-main-block:only-child {
    flex: 1 1;
    grid-column: span 2;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-main {
    padding-block: 7.5rem 5.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .banner-main {
    padding-block: 8.75rem 5.75rem;
  }
}
.banner-has-background-image .banner-main {
  /* Styles specific for when banner has background image */
  padding: 2rem 0;
  min-height: 160px;
}
@media only screen and (min-width: 768px) {
  .banner-has-background-image .banner-main {
    min-height: 250px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-main {
    min-height: 315px;
    /* align-items: flex-end; */
  }
}
.banner-has-background-image.header-overlay-on-banner .banner-main {
  /* Styles specific for when banner has the header overlay before scroll + Styles specific for when banner has background image */
}
.banner-no-background-image .banner-main {
  /* Styles specific for when banner doesnt support background image OR global fallback heading*/
}
/* Banner Body
--------------------------------------------------------------- */
.banner-body {
  text-align: center;
  justify-self: stretch;
}
.banner-has-background-image .banner-body {
  /* Styles specific for when banner has background image */
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-body {
    text-align: left;
  }
}
.banner-no-background-image .banner-body {
  /* Styles specific for when banner doesnt support background image */
}
@media only screen and (min-width: 1200px) {
  .banner-no-background-image .banner-body {
    max-width: none !important;
    margin: 0 auto;
  }
}
/* Secondary Heading
--------------------------------------------------------------- */
.secondary-heading {
  margin-bottom: 0.75em;
}
.secondary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
.secondary-heading > span {
  /* split words */
}
.secondary-heading > span::before {
  content: "\25CF\FE0E";
  color: var(--color-primary-alt);
  margin: 0 0.5em;
  font-size: 0.65em;
  vertical-align: middle;
}
@media only screen and (min-width: 1400px) {
  .secondary-heading {
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 1800px) {
  .secondary-heading > span:first-child::before {
    content: none;
  }
}
@media only screen and (max-width: 1799px) {
  .secondary-heading > span {
    display: block;
  }
  .secondary-heading > span:nth-child(n+2) {
    margin-top: 0.25em;
  }
}
.has-banner .secondary-heading {
  margin-left: auto;
  margin-right: auto;
}
.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 */
}
/* 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: 2.25rem;
  line-height: calc(1em + 5px);
  margin-bottom: 0;
}
.primary-heading em {
  /* emphasized words */
  color: var(--color-secondary);
  font-style: italic;
}
:where(.content-palette-dark) .primary-heading em {
  /* 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(--color-secondary-alt);
}
@media only screen and (min-width: 768px) {
  .primary-heading {
    font-size: 3.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading {
    font-size: 3.625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading {
    font-size: 4.375rem;
  }
}
.primary-heading.primary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
  font-size: 1.5625rem;
}
@media only screen and (min-width: 768px) {
  .primary-heading.primary-heading-default {
    font-size: 2.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading.primary-heading-default {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading.primary-heading-default {
    font-size: 2.625rem;
  }
}
.primary-heading.primary-heading-default-h1 {
  /* Styles specific for default template primary heading set as an h1 (Single Post, Single Page) */
}
@media only screen and (max-width: 767px) {
  .primary-heading.primary-heading-default-h1 {
    font-size: 1.5rem;
  }
}
.primary-heading.primary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.primary-heading.primary-heading-blog-title {
  /* Styles specific for blog post/ blog archive custom primary heading set as blog page's title eg 'Our Blog', 'Firm Blog', etc... Note: This will be an H1 on Blog/Archive but not in Single Posts for SEO (Single Posts, Blog/ Archive) */
}
.layout-banner .primary-heading {
  /* Styles specific for when it's inside a banner */
}
.primary-heading.h1-fallback-heading {
  /* Styles specific for when banner does not exist/ rendered as a helper class for the fallback h1 */
  display: inline-block;
  margin-bottom: max(0.2em, 0.4375rem);
}
.banner-has-background-image .primary-heading {
  /* Styles specific for when banner has background image */
  color: inherit;
}
.layout-banner .banner-has-background-image .primary-heading {
  text-shadow: 0 2px 0.125em var(--scheme-bg, var(--color-dark));
}
.banner-no-background-image .primary-heading {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner video (Optional depending on comps)
--------------------------------------------------------------- */
.banner-video {
  margin-bottom: 2rem;
}
.banner-video .video-button {
  margin-bottom: 1rem;
}
.banner-video-cta.video-button {
  display: block;
}
.banner-has-background-image .banner-video {
  /* Styles specific for when banner has background image */
  color: var(--color-accent);
}
.banner-no-background-image .banner-video {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Content (Optional depending on comps)
--------------------------------------------------------------- */
.banner-content {
  width: 90%;
}
.banner-has-background-image .banner-content {
  /* Styles specific for when banner has background image */
  color: var(--color-accent);
}
.banner-no-background-image .banner-content {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Buttons
--------------------------------------------------------------- */
.banner-buttons {
  margin-top: 0.938rem;
}
.banner-buttons-touch {
  text-align: center;
}
.banner-buttons-touch:first-child {
  margin-top: -1rem;
}
.banner-buttons-touch:nth-last-child(n+2) {
  display: none;
}
@media only screen and (min-width: 768px) {
  .banner-buttons {
    margin-top: 0.75rem;
  }
  .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 (min-width: 1200px) {
  .banner-buttons {
    margin-top: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
  }
  .banner-buttons .button:nth-child(n+2) {
    margin-top: 1rem;
  }
  .banner-button-shift .layout-banner .banner-buttons {
    /* hide buttons inside of banner */
    display: none;
  }
}

/* Banner Form
--------------------------------------------------------------- */
#banner-form {
  padding-block: 3rem;
  padding-inline: 2.5rem;
  align-self: self-start;
}
#banner-form .gform_title:is(.h5) {
  color: var(--color-primary-alt);
}
#banner-form .gform_description {
  font-size: 2rem;
}
#banner-form .gform_footer {
  justify-content: flex-end;
}
#banner-form .gfield.gfield_type_textarea textarea, #banner-form .gfield.gfield_type_multiselect select {
  /* set heights of multiline textareas */
}
#banner-form .field-form-body {
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  #banner-form {
    padding-block: 4rem;
  }
  #banner-form .gform_description {
    font-size: 2.625rem;
  }
  #banner-form .gform_footer {
    margin-top: -1rem;
  }
}
@media only screen and (min-width: 1200px) {
  #banner-form {
    padding-block: 3.75rem 2.75rem;
  }
  #banner-form .field-form-body {
    max-width: 390px;
  }
  #banner-form .gform_title {
    margin-bottom: 0.5em;
  }
  #banner-form .gform_description {
    font-size: 2.375rem;
  }
  #banner-form .gform_heading {
    margin-bottom: 1.25rem;
  }
  #banner-form .gfield {
    --field-height: 3.125rem;
    font-size: 0.9375rem;
  }
  #banner-form .gfield_label {
    font-size: 0.875rem;
  }
  #banner-form.banner-form-within {
    width: 500px;
  }
}
@media only screen and (min-width: 1400px) {
  #banner-form {
    padding-inline: 2rem;
    padding-block: 4.5rem 5.25rem;
  }
  #banner-form .gform_description {
    font-size: 2.5625rem;
  }
  #banner-form .gform_heading {
    margin-bottom: 2rem;
  }
  #banner-form .gfield_label {
    font-size: 0.9375rem;
  }
  #banner-form.banner-form-within {
    width: 520px;
  }
}
@media only screen and (min-width: 1800px) {
  #banner-form .field-form-body {
    max-width: 410px;
  }
  #banner-form.banner-form-within {
    width: 595px;
  }
}
@media only screen and (max-width: 1199px) {
  #banner-form.fancy-box {
    box-shadow: none;
  }
  #banner-form.fancy-box::before {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  #banner-form .gform_footer {
    justify-content: center;
  }
}

/* ================================================================================
* Sidebar
================================================================================ */
/* Layout Sidebar
--------------------------------------------------------------- */
.sidebar-inserts {
  text-align: center;
}

.sidebar-img {
  font-size: 6.9375rem;
}

.sidebar-button {
  margin-top: 1em;
}

/* Sidebar Form
--------------------------------------------------------------- */
#sidebar-form {
  background-color: var(--color-dark-alt);
  color: var(--color-light);
  --widget-padding-x: 2rem;
  --widget-padding-top: 3rem;
  --widget-padding-bottom: calc(var(--widget-padding-top) + 0rem);
}
@media only screen and (min-width: 1400px) {
  #sidebar-form {
    --widget-padding-x: 1.5rem;
  }
}
#sidebar-form .sidebar-field-form .gform_wrapper {
  position: relative;
}
#sidebar-form .sidebar-field-form .gform_heading {
  margin-bottom: 2rem;
}
#sidebar-form .sidebar-field-form .gform_title {
  line-height: calc;
}
#sidebar-form .sidebar-field-form .gform_title:last-child {
  margin-bottom: 0;
}
#sidebar-form .sidebar-field-form .gform_description {
  color: inherit;
  max-width: 80ch;
}
#sidebar-form .sidebar-field-form .gform_body {
  margin-left: auto;
  margin-right: auto;
  text-align: initial;
}
#sidebar-form .sidebar-field-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}
#sidebar-form .sidebar-field-form .gform_footer button {
  margin-top: 2rem;
}
#sidebar-form .sidebar-field-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#sidebar-form .sidebar-field-form .gfield.required-message {
  position: absolute;
  top: 83%;
  left: 0;
  right: 0;
  text-align: left;
  margin-top: 1em;
}
@media only screen and (min-width: 1400px) {
  #sidebar-form .sidebar-field-form .gform_description p {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  #sidebar-form .sidebar-field-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;
  }
}
/* ================================================================================
Contact Template
================================================================================ */
/* Layout Contact https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/layout/contact.md
-------------------------------------------------------------------------------- */
/* Contact  Related Classes

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

For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Contact Page only overrides for the contact informatio, apply styles to templates/template-contact.scss -> #contact-page
For Footer section only overrides for the contact informatio, apply styles to layout/layout-footer.scss -> .footer-contact styles section
-------------------------------------------------------------------------------- */
/* Global Stylees - Numbers (eg. header phone number, footer phone number, etc.)
-------------------------------------------------------------------------------- */
.number-link {
  display: inline-block;
}
/* Global Stylees - Locations
-------------------------------------------------------------------------------- */
.location-number-link {
  font-size: 1.375rem;
  color: var(--color-accent);
  font-weight: 500;
}
/* Global Stylees - Social Links (ie. firm social media, blog share icons, etc)
-------------------------------------------------------------------------------- */
.social {
  font-size: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.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-primary));
}
/* Confact Info Block - Titles
-------------------------------------------------------------------------------- */
.contact-block-title {
  color: var(--color-accent);
}
.contact-block-title.fancy-border {
  margin-bottom: var(--fancy-border-margin-y, 0.75rem);
}
/* Confact Info Block - Basic Text Content
-------------------------------------------------------------------------------- */
.contact-block-content {
  flex: 1 1;
  font-size: 1.1875rem;
  line-height: calc(1em + 9px);
}
:where(.contact-block-content :where(a)) {
  color: inherit;
  text-decoration: none;
}
:where(.contact-block-content :where(a)):where(:hover, :focus) {
  text-decoration: underline;
}

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

@media only screen and (min-width: 1200px) {
  .contact-block-content {
    font-size: 1.3125rem;
  }
}
@media only screen and (min-width: 1800px) {
  .contact-block-content {
    font-size: 1.375rem;
  }
}

/* Confact Info Block - Grid setup
-------------------------------------------------------------------------------- */
.contact-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-content: center;
  -moz-column-gap: 4.5rem;
       column-gap: 4.5rem;
  row-gap: 2.9rem;
  align-items: stretch;
}
.contact-block, .contact-blocks {
  min-width: 0;
}
.contact-block {
  width: 100%;
}
.contact-block :only-child {
  grid-column: 1/-1;
}
.contact-block, .contact-block-content {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .contact-blocks {
    grid-template-columns: repeat(3, auto);
    row-gap: 3.9rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-blocks {
    -moz-column-gap: 9.125rem;
         column-gap: 9.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-blocks {
    -moz-column-gap: 11rem;
         column-gap: 11rem;
  }
}
@media only screen and (max-width: 767px) {
  .contact-blocks {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact-block.contact-special {
  grid-column: 1/-1;
  text-align: center;
  max-width: 100%;
  align-items: center;
  align-self: center;
}
.contact-block.contact-special .logo {
  margin: 0 auto;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .contact-block.contact-special .logo {
    height: 58px;
  }
}
@media only screen and (min-width: 1800px) {
  .contact-block.contact-special .logo {
    height: 68px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-block.contact-special {
    margin-inline: -5em;
    max-width: none;
    width: auto;
  }
}
.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;
}
.contact-block:is(.contact-number, .contact-numbers) .number-link {
  font-size: 1.3125rem;
}
@media only screen and (min-width: 1800px) {
  .contact-block:is(.contact-number, .contact-numbers) .number-link {
    font-size: 1.4375rem;
  }
}
.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: 1.75rem;
  display: grid;
}
.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: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.contact-block:is(.contact-list, .contact-lists) .list-block-items {
  display: flex;
  flex-direction: column;
}
.contact-list-email {
  /* This is an example and can be omitted if not needed. each column added here will be separated by a class named after the block's title, unless the corresponding layout-contact.php markup has been modified.  */
  font-size: 1.5em;
  font-family: var(--font-secondary);
}

.contact-block.contact-lists .contact-lists-content {
  row-gap: 4rem;
  display: grid;
}
/* ================================================================================
* Footer
================================================================================ */
/* Branding logo sizes
--------------------------------------------------------------- */
.ilawyer-legacy,
.ilawyer,
.onep21 {
  color: inherit;
}

.ilawyer-legacy,
.ilawyer {
  font-size: 1.125rem;
  margin-top: 5px;
}
@media only screen and (min-width: 1200px) {
  .ilawyer-legacy,
  .ilawyer {
    margin-top: 0;
  }
}

.onep21 {
  font-size: 3.125rem;
}

/* Layout Footer
--------------------------------------------------------------- */
/* Footer Split - Top
--------------------------------------------------------------- */
/* Footer Form
--------------------------------------------------------------- */
#footer-form {
  padding-block: 4rem;
  background-color: var(--color-dark-alt);
  color: var(--color-light);
}
@media only screen and (min-width: 768px) {
  #footer-form {
    padding-block: 7rem 5.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form {
    padding-block: 6rem 5.75rem;
  }
}
#footer-form .footer-field-form {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
#footer-form .footer-field-form .gform_title:last-child {
  margin-bottom: 0;
}
#footer-form .footer-field-form .gform_description {
  font-size: 2.5rem;
  line-height: 1.125;
  text-align: center;
  max-width: 80ch;
}
#footer-form .footer-field-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#footer-form .footer-field-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#footer-form .footer-field-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (min-width: 768px) {
  #footer-form .footer-field-form .gform_description {
    font-size: 3.1875rem;
  }
  #footer-form .footer-field-form .gform_footer {
    margin-top: -1rem;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form .footer-field-form .gform_description {
    font-size: 3.5625rem;
  }
  #footer-form .footer-field-form .gform_footer {
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1400px) {
  #footer-form .footer-field-form .gform_description {
    margin-bottom: 3rem;
  }
  #footer-form .footer-field-form .gform_fields {
    row-gap: 1.65rem;
  }
  #footer-form .footer-field-form .gform_footer {
    margin-top: -1.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  #footer-form .footer-field-form .gform_description {
    margin-inline: calc(var(--container-gutter) * -0.5);
  }
}
/* Footer Contact

Note: 
This file is for Contact Page only overrides for the contact information
For styles applied globally for the contact information, apply styles to layouts/layout-contact.scss
For Footer section only overrides for the contact information, apply styles to layout/layout-footer.scss -> .footer-contact styles section
--------------------------------------------------------------- */
.footer-contact {
  background-color: var(--color-light-alt);
  padding-block: 4.75rem 4rem;
}
@media only screen and (min-width: 768px) {
  .footer-contact {
    padding-block: 6.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-contact {
    padding-block: 7.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-contact {
    padding-block: 5.25rem;
  }
  .footer-contact-container {
    --container-gutter: 105px;
  }
}
@media only screen and (min-width: 1800px) {
  .footer-contact-container {
    --container-gutter: 210px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-contact .contact-blocks {
    grid-template-columns: 1fr repeat(3, auto);
    -moz-column-gap: 5rem;
         column-gap: 5rem;
  }
}
@media only screen and (min-width: 1800px) {
  .footer-contact .contact-blocks {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
  }
}
.footer-contact .contact-block.contact-special {
  width: auto;
}
@media only screen and (min-width: 1400px) {
  .footer-contact .contact-block.contact-special {
    grid-column: auto;
    justify-self: self-start;
  }
}
.footer-contact .contact-block:is(.contact-number, .contact-numbers) {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.footer-contact .contact-block:is(.contact-number, .contact-numbers) .number-title {
  display: block;
}
.footer-contact .contact-block.contact-number {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
.footer-contact .contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
.footer-contact .contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
/* Footer Split - Bottom
--------------------------------------------------------------- */
.footer-bottom {
  /* border separation all the way to the edge */
}
/* Footer utility
--------------------------------------------------------------- */
.footer-utility {
  padding: 1rem 0;
  /* border separation */
  font-size: 0.875rem;
  line-height: calc(1em + 4px);
  color: var(--color-dark);
  font-weight: 500;
}
.footer-utility-blocks {
  display: block;
  row-gap: 1.5rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
}
.footer-utility-content li {
  display: inline;
  margin: 0;
}
.footer-utility-content li:nth-child(n+2)::before {
  content: " | ";
  display: inline-block;
  margin: 0 0.5em 0 0.25em;
}
@media only screen and (min-width: 768px) {
  .footer-utility {
    padding: 1.5rem 0;
  }
  .footer-utility-blocks {
    display: flex;
  }
  .footer-utility-content p:not(.footer-disclaimer),
  .footer-utility-content ul,
  .footer-utility-content li {
    display: inline;
  }
  .footer-utility-content p:not(.footer-disclaimer):nth-child(n+2)::before,
  .footer-utility-content ul:nth-child(n+2)::before {
    content: " | ";
    display: inline-block;
    margin: 0 0.5em 0 0.25em;
  }
  .footer-utility .social {
    margin-right: 2rem;
  }
  .footer-utility .social::before {
    content: none;
  }
  .footer-utility :is(.ilawyer-legacy, .ilawyer, .onep21) {
    order: 99;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-utility {
    padding: 2rem 0;
  }
  .footer-utility-content {
    margin-right: auto;
    order: -1;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-utility {
    font-size: 0.8125rem;
    padding: 1.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-utility-blocks {
    text-align: center;
    justify-content: center;
    justify-items: center;
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 500;
  }
  .footer-utility .footer-copyright {
    margin-bottom: 2px;
  }
  .footer-utility .footer-copyright .divider {
    margin: 0 4px;
  }
}

/* ================================================================================
* Internals/ Default
================================================================================ */
/*!
* Default Layout/Template
-------------------------------------------------------------------------------- */
/* Default Entries
-------------------------------------------------------------------------------- */
.entry-thumbnail {
  --entry-thumbnail-aspect-w: 648;
  --entry-thumbnail-aspect-l: 260;
  padding-bottom: 2rem;
  display: block;
}
.entry-thumbnail:is(a) {
  color: inherit;
}
.entry-thumbnail-img {
  position: relative;
  overflow: hidden;
  background: var(--scheme-bg-contrast, var(--color-light-alt));
}
.entry-thumbnail-img::before {
  content: "";
  display: block;
  padding-top: calc(100% * var(--entry-thumbnail-aspect-l) / var(--entry-thumbnail-aspect-w));
}
.entry-thumbnail-img::after {
  content: "No Image Available";
  opacity: 0.2;
  font-size: 1.5rem;
  line-height: 1.125;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2em 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 > :nth-child(n+2)::before {
  content: "|";
  margin-inline: 0.5em;
  color: var(--color-secondary-alt);
}
.entry-meta a:is(:hover, :focus) {
  text-decoration: underline;
  color: var(--color-primary);
}
.entry-buttons .button:nth-child(n+2) {
  margin-left: 1em;
}
.entries .entry {
  display: grid;
  justify-content: space-between;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.entries .entry:nth-child(n+2) {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--color-neutral-light);
}
.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 {
    margin-bottom: 0;
    --entry-thumbnail-aspect-w: 250;
    --entry-thumbnail-aspect-l: 200;
  }
  .entries .entry-body {
    align-self: center;
  }
  .entries .entry-body:first-child:last-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 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 {
  --default-sidebar-width: 100%;
  --default-gap-x: 45px;
  --default-gap-y: 1.3rem;
  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: 0rem;
  }
  .default-sections.default-sections-full .default-section-main {
    margin-left: auto;
    margin-right: auto;
  }
  .default-sections.default-sections-grid {
    grid-template-columns: 1fr var(--default-sidebar-width);
    grid-column-gap: var(--default-gap-x);
  }
  .default-sections.default-sections-grid .default-section-main {
    justify-self: center;
    grid-column: 1;
  }
  .default-sections.default-sections-grid .default-section-main:only-child {
    /* no sidebar adjust */
    grid-column: span 2 !important;
  }
  .default-sections.default-sections-grid .default-section-sidebar {
    grid-column: 2;
  }
  .default-sections.default-sections-grid .default-section-main, .default-sections.default-sections-grid .default-section-sidebar {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }
  .default-sections.default-sections-grid.default-sections-reverse {
    grid-template-columns: var(--default-sidebar-width) 1fr;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-main {
    grid-column: 2;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-sidebar {
    grid-column: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .default-sections.default-sections-full .default-section-sidebar {
    align-self: stretch;
    width: 100%;
  }
  .default-sections:not(.default-sections-full) > .default-section:is(aside, .aside):not(:only-child) {
    padding-top: 0;
  }
  .default-sections:not(.default-sections-full) > .default-section:is(main, .main):not(:only-child) {
    padding-bottom: 0;
  }
}

/* Default Sections Customizations
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .default-sections {
    --default-sidebar-width: 360px;
    --default-gap-x: 45px;
  }
}
@media only screen and (min-width: 1400px) {
  .default-sections {
    --default-gap-x: 80px;
  }
}
@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(--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: 1800px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 250px;
  }
}
/*!
* Default Header
-------------------------------------------------------------------------------- */
.default-header {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .banner-has-h1.banner-button-shift .default-header {
    margin-bottom: 0;
  }
}
/*!
* Default Heading
-------------------------------------------------------------------------------- */
/*!
* Default Divider - Optional
-------------------------------------------------------------------------------- */
/* ================================================================================
* Includes 
================================================================================ */
/* Awards slider
--------------------------------------------------------------- */
.carousel {
  /* height of award. best to set to the tallest award logo provided  */
  --carousel-arrow-offset-x: 1rem;
  /* distance of arrows from the slider  */
  --carousel-arrow-offset-x-negate: var(--carousel-arrow-offset-x);
  /* distance to compensate the arrow distance against the width of the .carousel element's parent  */
  /* distance of dots to the awards */
  --slick-custom-dots-margin-to: 2rem;
}
.carousel .swiper {
  padding-left: var(--carousel-arrow-offset-x);
  margin-left: calc(var(--carousel-arrow-offset-x-negate) * -1);
  padding-right: var(--carousel-arrow-offset-x);
  margin-right: calc(var(--carousel-arrow-offset-x-negate) * -1);
}
.carousel-slide {
  text-align: center;
}
.carousel-image, .carousel-image picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.carousel-image :where(picture, object, svg) {
  height: -webkit-max-content !important;
  height: -moz-max-content !important;
  height: max-content !important;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}
.carousel-image img {
  height: auto !important;
  width: auto !important;
}
.carousel-image :where(img, svg, object, picture) {
  max-width: 100% !important;
  max-height: 100% !important;
  align-self: center;
  flex: 0 0 auto;
}
/* Custom Helpers
--------------------------------------------------------------- */
/* remove jpg white backgrounds. This fix will only work if the awards are on light backgrounds */
.carousel.carousel-remove-background .carousel-slider {
  mix-blend-mode: multiply;
}

/* Background Block: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/partials/background-block
--------------------------------------------------------------- */
.background-block {
  pointer-events: none;
  overflow: hidden;
  transform-style: preserve-3d;
}
.background-block:last-child:nth-child(n+2) {
  z-index: -1;
}
.background-block-container {
  position: relative;
  z-index: 0;
}
.background-block, .background-block-bg {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.background-block-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: center center;
  /* Note: Best practice to add fallback background-colors to your background images */
  background-color: var(--color-base-alt);
}
@media only screen and (min-width: 1200px) {
  .background-block-animated-on-loaded .background-block-bg, .background-block-animated-on-visible.visible .background-block-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;
  }
  body:not(.images-loaded) .background-block-animated-on-loaded .background-block-bg, .background-block-animated-on-visible .background-block-bg {
    /* hide if not ready to let the world to know got to let it show */
    opacity: 0;
    transform: scale(1.125);
  }
}

/* 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: 2.5rem;
  margin-bottom: 1.375rem;
}
@media only screen and (min-width: 768px) {
  .result-icon {
    font-size: 3.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  .result-icon {
    margin-bottom: 1.75rem;
  }
}
/*
* Case Result Value
-------------------------------------------------------------------------------- */
.result-value {
  font-size: 3rem;
  line-height: 0.75;
  font-family: var(--font-secondary);
  color: var(--color-dark-alt);
  text-transform: uppercase;
  margin-bottom: 1.625rem;
}
.result-value.fancy-border-after {
  --fancy-border-background: var(--color-primary-alt);
  --fancy-border-width: 62px;
  margin-bottom: var(--fancy-border-margin-y);
}
.result-value-confidential {
  font-size: 0.6em;
}
.result-value-number-long {
  font-size: 0.75em;
}
@media only screen and (min-width: 1200px) {
  .result-value {
    font-size: 4.0625rem;
    margin-bottom: 1.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .result-value {
    font-size: 3.75rem;
  }
}
/*
* Case Result Type
-------------------------------------------------------------------------------- */
/*
* Case Result Title - Optional
-------------------------------------------------------------------------------- */
/*
* Case Result Description
-------------------------------------------------------------------------------- */
/*
* Case Result Learn More - Optional
-------------------------------------------------------------------------------- */
.result-learn-more {
  margin-top: 2rem;
}
/*
* Case Result Description + Details Split. Useful for popups/ hovers
-------------------------------------------------------------------------------- */
.result-summary:nth-last-child(n+2) {
  margin-bottom: auto;
}
.result-details .result-value.fancy-border-after {
  --fancy-border-background: var(--color-primary-alt);
  --fancy-border-margin-l: 0;
  margin-bottom: var(--fancy-border-margin-y);
}
.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;
}
@media only screen and (min-width: 768px) {
  .result-details .result-value {
    font-size: 4.6875rem;
  }
  .result-details .result-title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .result-details .result-value {
    font-size: 4.6875rem;
  }
}
/*
* includes/repeater-result
-------------------------------------------------------------------------------- */
.result {
  text-align: center;
  position: relative;
  padding-block: 3.5rem 4.25rem;
}
.result, .result-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.result-container {
  width: 100%;
  padding-inline: 1rem;
}
.result :where(.result-description, .result-content) {
  margin-left: auto;
  margin-right: auto;
}
.result-details-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}
.result-details-default .result-description {
  flex: 1 1;
}
.result-details-default .result-learn-more:first-child {
  margin-top: auto;
}
.result-details-hover {
  max-width: none;
  position: absolute;
  background-color: var(--color-dark-alt);
  color: var(--color-light);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  scrollbar-width: none;
  overflow-y: scroll;
  transition: 0.25s all ease-in-out;
  padding: 2rem;
  opacity: 1;
}
.result-details-hover::-webkit-scrollbar {
  display: none;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
@media only screen and (min-width: 1200px) {
  .result {
    padding-block: 4.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .result {
    padding-block: 3.75rem;
    --fancy-box-gutter: 1rem;
  }
}
@media only screen and (min-width: 1800px) {
  .result {
    padding-block: 4rem 5rem;
  }
}
/* Practice Areas https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/practice-area.md
-------------------------------------------------------------------------------- */
/*
* Practice Area Skeleton. Do not Edit
-------------------------------------------------------------------------------- */
.practice-area-title {
  padding-inline: var(--pa-title-padding-x);
}
.practice-area-title.fancy-border-after:after {
  --fancy-border-margin-l: calc(var(--pa-title-padding-x) * -1);
  --fancy-border-margin-r: calc(var(--pa-title-padding-x) * -1);
}
.practice-area-menu li,
.practice-area-menu li a {
  display: flex;
  flex-direction: column;
}
.practice-area-menu li:nth-child(-n+1) {
  border-top: 0;
}
.practice-area-menu li a {
  justify-content: center;
  flex: 1 1;
  padding-block: calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * var(--pa-item-baseline-offset)) calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * (1 - var(--pa-item-baseline-offset)));
  padding-inline: var(--pa-item-padding-x);
  min-height: var(--pa-item-height);
}
@media only screen and (max-width: 767px) {
  .practice-area-menu li a {
    min-height: 0;
  }
}

/*
* Practice Area Vars/ Scaffolding
-------------------------------------------------------------------------------- */
.practice-area {
  /* horizontal padding for the practice area item */
  --pa-item-padding-x: 0;
  /* 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: 55px;
  /* Note: this value has to be unitless for calc values to work.
  	* Number of lines to compensate for the item height */
  --pa-item-lines: 2;
  /* 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-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work.
  	* Formula is line-height-px / font-size-px */
  --pa-item-line-height: 1.5;
  line-height: var(--pa-item-line-height);
  text-align: center;
}
@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 */
    --pa-item-lines: 1;
  }
}

/*
* Practice Area Category Title
-------------------------------------------------------------------------------- */
/*
* Practice Area Menu
-------------------------------------------------------------------------------- */
.practice-area-menu {
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.practice-area-menu li {
  border-top: 1px solid var(--color-neutral-light);
}
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--color-secondary);
}
/*
* includes/repeater-practice-area
-------------------------------------------------------------------------------- */
.practice-area {
  width: 100%;
}
.practice-area, .practice-area-container {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.practice-area-container {
  flex: 1 1;
}
/* Pagination
-------------------------------------------------------------------------------- */
/* pagination skeletion. no need to edit */
.pagination {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  text-align: center;
  clear: both;
}
.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;
  font-size: 17px;
  text-transform: capitalize;
}
.pagination-block-right span {
  margin-inline: 4px;
  color: var(--color-neutral-darkest);
}
.pagination-block-right .next::after {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.6em;
  transform: rotate(45deg);
  vertical-align: top;
  width: 0.45em;
  margin-left: 0.25em;
  color: var(--color-primary-alt);
}
.pagination-block-right .prev::before {
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.6em;
  transform: rotate(-135deg);
  vertical-align: top;
  width: 0.45em;
  margin-right: 0.25em;
  color: var(--color-primary-alt);
}
.pagination-block-right .prev span {
  color: var(--color-primary);
  margin: 0 0.25em;
}
.pagination-num-list.pagination-block-left span:first-child,
.pagination-num-list.pagination-block-left a:first-child {
  margin-left: 0;
}
.pagination-num-list.pagination-block-right span:last-child,
.pagination-num-list.pagination-block-right a:last-child {
  margin-left: 0;
}
@media only screen and (max-width: 1199px) {
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
  }
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) a:nth-last-child(n+2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) a:nth-last-child(n+2) {
    margin-right: 0.5em;
  }
}
/* pagination styles. customize as needed */
.pagination {
  border-top: 2px solid rgba(99, 117, 141, 0.2901960784);
  padding-top: 2rem;
  margin-top: 3rem;
}
.pagination .current,
.pagination a:is(:hover, :focus) {
  color: var(--color-primary-alt);
}
.pagination-num-list a,
.pagination-num-list span {
  margin: 0 0.1em;
}
/* Profile https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/repeater/profile.md
-------------------------------------------------------------------------------- */
/*
* Profile Image
-------------------------------------------------------------------------------- */
.profile-image {
  --profile-image-aspect-w: 410;
  --profile-image-aspect-l: 445;
  --profile-image-position: 50% 15%;
  --profile-image-overlay-background: var(--color-dark-alt) linear-gradient(to bottom right, var(--color-dark), var(--color-dark-alt));
  --profile-image-overlay-opacity: .8;
  max-width: 100%;
  width: 100%;
  display: block;
  position: relative;
}
.profile-image::before {
  /* aspect ratio keeper + hover overlay */
  content: "";
  display: block;
  position: relative;
  padding-top: calc(100% * var(--profile-image-aspect-l) / var(--profile-image-aspect-w));
}
@media only screen and (min-width: 1800px) {
  .profile-image.fancy-box {
    --fancy-box-gutter: 1.125rem;
  }
}
.profile-image-img, .profile-image-placeholder, .profile-image-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.profile-image-img, .profile-image-placeholder-img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--profile-image-position);
     object-position: var(--profile-image-position);
}
.profile-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--color-neutral-lighter);
  background-color: var(--color-dark);
  background-image: linear-gradient(to bottom right, var(--color-dark), var(--color-dark-alt));
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .profile-image-placeholder.fancy-box {
    --fancy-box-gutter: .625rem;
  }
}
.profile-image-placeholder-icon {
  font-size: 8rem;
  margin-bottom: 1rem;
}
.profile-image-placeholder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
* Profile Image Pseudos: wheh linking to a bio page only
-------------------------------------------------------------------------------- */
.profile-image[href]:is(:hover, :focus-within)::before, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href]::before {
  opacity: var(--profile-image-overlay-opacity);
  pointer-events: auto;
}
.profile-image[href]:is(:hover, :focus-within) .profile-view, .profile-pointer-reference:is(:hover, :focus-within) .profile-image[href] .profile-view {
  opacity: 1;
  pointer-events: auto;
}
.profile-image[href]::before,
.profile-image[href] .profile-view {
  transition: 0.5s ease-in-out all;
  opacity: 0;
  pointer-events: none;
}
.profile-image[href]::before {
  /* Overlay effect */
  z-index: 1;
  background: var(--profile-image-overlay-background);
  mix-blend-mode: multiply;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.profile-image[href] .profile-view {
  /*  */
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

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

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

/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-info-name {
  font-size: 1.8rem;
  color: var(--color-accent);
  align-content: center;
  margin-bottom: 0.25em;
}
@media only screen and (min-width: 1400px) {
  .profile-info-name {
    font-size: 2.375rem;
  }
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-info-position {
  margin-bottom: 0;
}
.profile-info-position:is(.h5) {
  color: var(--color-primary);
  letter-spacing: 0.15em;
  font-weight: 700;
}
/*
* includes/repeater-profile
-------------------------------------------------------------------------------- */
.profile {
  align-self: stretch;
}
.profile:is(:hover, :focus-within) {
  /* styles when the profile has a link */
}
.profile, .profile-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.profile-container {
  width: 100%;
  gap: 1.875rem;
}
.profile-info {
  flex: 1 1;
}
.profile-info {
  text-align: center;
  display: flex;
  flex-direction: column;
}
/*
* Testimonial Stars
-------------------------------------------------------------------------------- */
.testimonial-stars {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .testimonial-stars {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-stars {
    margin-bottom: 1.375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-stars {
    font-size: 3.875rem;
  }
}
/*
* Testimonial Highlight / Main quote
-------------------------------------------------------------------------------- */
.testimonial-highlight {
  font-size: 1.4375rem;
  text-align: inherit;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .testimonial-highlight {
    font-size: 1.9375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-highlight {
    margin-bottom: 0.625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-highlight {
    font-size: 2.0625rem;
  }
}
/*
* Testimonial Quote Body / other parts of the quote
-------------------------------------------------------------------------------- */
.testimonial-quote {
  font-size: 1rem;
  line-height: calc(1em + 15px);
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-quote {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
/*
* Testimonial Divider - Optional
-------------------------------------------------------------------------------- */
.testimonial-divider {
  --fancy-border-width: 58px;
  --fancy-border-margin-y: 1rem;
  --fancy-border-background: var(--color-secondary-alt);
}
@media only screen and (min-width: 768px) {
  .testimonial-divider {
    --fancy-border-margin-y: 1.75rem;
  }
}
/*
* Testimonial Source
-------------------------------------------------------------------------------- */
.testimonial-source {
  border: none;
  margin-bottom: 0;
}
.testimonial-source span:nth-child(n+2)::before {
  content: "●︎";
  color: var(--color-primary);
  margin: 0 0.25em;
}
@media only screen and (min-width: 768px) {
  .testimonial-source {
    font-size: 0.875rem;
  }
}
/*
* includes/repeater-testimonial
-------------------------------------------------------------------------------- */
.testimonial, .testimonial-container {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.testimonial-container {
  flex: 1 1;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 2rem;
}
.testimonial :where(.testimonial-stars, .testimonial-highlight, .testimonial-quote, .testimonial-divider),
.testimonial :not(.testimonial-divider) + .testimonial-source {
  margin-top: auto;
}
.testimonial, .testimonial-container {
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .testimonial :where(.testimonial-highlight, .testimonial-quote) {
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-container {
    padding-inline: 3rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-container {
    padding-inline: 3.5rem;
  }
}
/* Video Button - Default (One that doesnt have custom markup in it, just the usual one with a play symbol)
https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/includes/helper/video-button.md#css-vars
--------------------------------------------------------------- */
.video-button-default {
  --video-button-size: 75px;
  /* size of video button by height and or width */
  --video-button-text-svg-radius-ratio: 1.25;
  /*  ratio of svg path for rounded text. */
  --video-button-glyph-height: 0.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.19em;
  /* width for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-color: currentColor;
  /* color of the video button glyph. Used as a background-color so it can take gradients too */
  display: inline-flex;
  width: 1em;
  height: 1em;
  position: relative;
  font-size: var(--video-button-size);
  z-index: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.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;
}
@media only screen and (min-width: 1400px) {
  .video-button-default {
    --video-button-size: 100px;
  }
  .video-thumbnail .video-button-default {
    --video-button-size: 81px;
  }
}
.video-button-default, .video-button-default-image, .video-button-default-text, .video-button-default::before, .video-button-default::after, .video-button-default-thumbnail-markup::after {
  transition: 0.25s ease-in-out all;
}
.video-button-default-image, .video-button-default-text, .video-button-default-text-svg, .video-button-default-text span, .video-button-default::before, .video-button-default::after {
  position: absolute;
  margin: auto;
  pointer-events: none;
}
.video-button-default-text, .video-button-default-image {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.video-button-default.video-button-default-no-icon::before, .video-button-default.video-button-default-no-icon::after {
  content: "";
  display: block;
}
.video-button-default > .wistia_click_to_play {
  position: static !important;
  width: auto !important;
  height: auto !important;
}
.video-button-default-glyph {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.video-button-default-glyph::before {
  content: "";
  display: block;
  width: var(--video-button-glyph-width);
  height: var(--video-button-glyph-height);
  background: var(--video-button-glyph-color, currentColor);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-button-default-glyph:not(.video-button-default-glyph-has-text) {
  padding-left: calc(var(--video-button-glyph-width) * 0.25);
}
.video-button-default-glyph-has-text::before {
  content: none;
}
.video-button-default-glyph-text {
  font-size: var(--video-button-glyph-height);
}
.video-button-default-text {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-neutral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-button-default-text-svg {
  transform-style: preserve-3d;
  max-width: none;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  font-size: calc(1em * 1 / var(--video-button-text-svg-radius-ratio));
  width: calc(200% * var(--video-button-text-svg-radius-ratio));
  height: calc(200% * var(--video-button-text-svg-radius-ratio));
}
.video-button-default-text-svg path {
  transform-origin: center center;
}
.video-button-default-text-html span {
  top: 0;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.video-button-default-text-html span:nth-child(odd) {
  right: 100%;
  margin-right: 1em;
}
.video-button-default-text-html span:nth-child(even) {
  left: 100%;
  margin-left: 1em;
}
.video-button-default-image {
  transition: all 0.25s ease-in-out;
}
.video-button-default-image-init, .video-button-default:is(:hover, :focus) .video-button-default-image-hover, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-hover {
  opacity: 1;
}

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

.video-button-default.video-button-default-no-icon {
  /* tru element/background */
  /* these are basic styles. overhaul as needed */
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--color-light);
}
.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: var(--color-light);
  z-index: -1;
  top: 4px;
  bottom: 4px;
  left: 4px;
  right: 4px;
}
.video-button-default.video-button-default-no-icon::after {
  /* other element for fx */
  /* these are basic styles. overhaul as needed */
}
.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-light);
}
.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: linear-gradient(to bottom, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
}
.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 */
  transform: scale(0.98);
}

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

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

/* includes/repeater-video
--------------------------------------------------------------- */
.video, .video-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.video-container {
  width: 100%;
}
.video-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.1875rem;
  line-height: 1.5789473684;
  text-align: center;
  margin-top: 1.625rem;
  padding-inline: 1em;
}
/* ================================================================================
* Parts 
================================================================================ */
/* Review Us Page
--------------------------------------------------------------- */
.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 slider
--------------------------------------------------------------- */
.awards {
  /* height of award. best to set to the tallest award logo provided  */
  --awards-slide-height: 150px;
  /* distance of dots to the awards */
  --slick-custom-dots-margin-to: 2rem;
  /* remove jpg white backgrounds. This fix will only work if the awards are on light backgrounds */
  mix-blend-mode: multiply;
}
.awards .swiper-wrapper {
  transition-timing-function: linear !important;
}
.awards-title {
  text-align: center;
  margin-bottom: 3rem;
}
.award {
  height: var(--awards-slide-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-slide {
  opacity: 1 !important;
}
.award,
.award picture {
  display: flex;
  align-items: center;
  justify-content: center;
}
.award picture {
  height: 100% !important;
}
.award svg,
.award object,
.award img {
  height: auto !important;
}
.award img,
.award svg,
.award object,
.award picture {
  width: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  align-self: center;
  flex: 0 0 auto;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .awards {
    --awards-slide-height: 95px;
  }
  .awards-slider {
    --carousel-arrow-offset-x: 5rem;
    --carousel-arrow-offset-x-negate: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .awards {
    --awards-slide-height: 130px;
  }
}
@media only screen and (min-width: 1400px) {
  .awards {
    --awards-slide-height: 137px;
  }
}
@media only screen and (min-width: 1800px) {
  .awards {
    --awards-slide-height: 150px;
  }
}
/* ================================================================================
* Home Template
================================================================================ */
/*
* Home Related Classes
-------------------------------------------------------------------------------- */
:where(.home-section) {
  padding-block: 3.75rem;
}
:where(.home-section) .section-header, :where(.home-section) .section-footer {
  /* set centering as a scaffolding setting for all sections */
  text-align: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
:where(.home-section) .section-header {
  margin-bottom: 2rem;
}
:where(.home-section) .section-footer {
  margin-top: 2rem;
}
:where(.home-section) .section-heading {
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  :where(.home-section) .section-header, :where(.home-section) .section-footer {
    /* set centering as a scaffolding setting for all sections */
    text-align: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
* Home Template
-------------------------------------------------------------------------------- */
body.ilaw-template-home {
  /* body selector for home template */
}

#home-template {
  --banner-offset:0px;
}
#home-banner .banner-main:after {
  content: "";
  height: var(--banner-offset);
  display: block;
  flex: 0 0 auto;
  width: 100%;
}
#home-banner + main > .home-section:first-child {
  position: relative;
  margin-top: calc(var(--banner-offset) * -1);
}

#home-banner .banner-main {
  min-height: 737px;
}
#home-banner .primary-heading {
  font-size: 2.0625rem;
}
@media only screen and (min-width: 768px) {
  #home-banner .secondary-heading {
    font-size: 1.0625rem;
  }
  #home-banner .primary-heading {
    font-size: 3.6875rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .layout-banner-container {
    --container-gutter: 70px;
  }
  #home-banner .banner-main {
    padding-block: 2.125rem;
  }
  #home-banner .banner-main-block:only-child {
    justify-self: self-start;
  }
  #home-banner .banner-body {
    text-align: left;
    align-items: flex-start;
  }
  #home-banner .secondary-heading {
    font-size: 1.25rem;
  }
  #home-banner .primary-heading {
    font-size: 3.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .banner-main {
    min-height: 847px;
    padding-block: 5rem 6rem;
  }
  #home-banner .banner-main-blocks {
    gap: 5rem;
  }
  #home-banner .primary-heading {
    font-size: 3.6875rem;
  }
}
@media only screen and (min-width: 1800px) {
  #home-banner .layout-banner-container {
    --container-gutter: 170px;
  }
  #home-banner .banner-main {
    min-height: 860px;
    padding-block: 3rem 6rem;
  }
  #home-banner .banner-body {
    margin-bottom: 4rem;
  }
  #home-banner .primary-heading {
    font-size: 4.875rem;
  }
}
@media only screen and (max-width: 1199px) {
  #home-banner .layout-banner-container {
    max-width: 100%;
  }
  #home-banner .banner-main {
    padding: 0;
  }
  #home-banner .banner-main-block {
    padding-inline: var(--container-gutter);
    margin-inline: calc(var(--container-gutter) * -1);
  }
  #home-banner .banner-body {
    position: relative;
    z-index: 1;
    padding-block: 16.75rem 3rem;
  }
  #home-banner .primary-heading {
    text-wrap: balance;
  }
  #home-banner .banner-text {
    margin-inline: -1rem;
  }
  #home-banner #banner-form {
    background: none;
    justify-self: stretch;
    padding-inline: var(--container-gutter);
  }
  #home-banner #banner-form .field-form-header {
    margin-inline: -2rem;
  }
  #home-banner #banner-form.fancy-box {
    --fancy-box-gutter: 0rem;
  }
}
@media only screen and (max-width: 767px) {
  #home-banner .banner-body {
    padding-block: 11.5rem 2.5rem;
  }
}

#home-page {
  padding-top: 0;
  padding-bottom: 0;
}
/*
* Home Section 1
-------------------------------------------------------------------------------- */
.home-section-1 {
  padding-block: 3.25rem 3.75rem;
}
.home-section-1 .swiper {
  padding-block: 10px;
  margin-block: -10px;
  --swiper-custom-arrow-offset-x: 55px;
}
.home-section-1 .swiper-slide {
  display: flex;
  flex-direction: column;
}
.home-section-1 .section-container {
  --container-gutter: 50px;
}
@media only screen and (min-width: 768px) {
  .home-section-1 {
    padding-block: 6rem 7.5rem;
  }
  .home-section-1 .swiper {
    --swiper-custom-arrow-offset-x: 72px;
  }
  .home-section-1 .section-container {
    --container-gutter: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-1 {
    padding-block: 4.5rem 9.5rem;
  }
  .home-section-1 .section-container {
    --container-gutter: 100px;
  }
  .home-section-1 .section-container .cr-section {
    max-width: none;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-1 {
    padding-block: 3.75rem 10.75rem;
  }
  .home-section-1 .swiper {
    --swiper-custom-arrow-offset-x: 80px;
  }
  .home-section-1 .section-container {
    --container-gutter: 84px;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-1 {
    padding-block: 3.5rem 11.25rem;
  }
  .home-section-1 .swiper {
    --swiper-custom-arrow-offset-x: 90px;
  }
  .home-section-1 .section-container {
    --container-gutter: 125px;
  }
}
/*
* Home Section 2
-------------------------------------------------------------------------------- */
.home-section-2:where(:not(.about-page)) {
  padding-block: 0;
}
.home-section-2 .section-block, .home-section-2 .section-blocks {
  min-width: 0;
}
.home-section-2 .section-blocks {
  display: grid;
  grid-template-columns: 100%;
  grid-auto-flow: dense;
  row-gap: 1.5rem;
  -moz-column-gap: 5.25rem;
       column-gap: 5.25rem;
}
.home-section-2 .section-header, .home-section-2 .section-footer {
  grid-column: 1/-1;
}
.home-section-2 .section-header {
  margin-bottom: 0;
  order: -2;
}
.home-section-2 .section-heading {
  font-size: 2.4375rem;
  line-height: 1.2;
  color: var(--color-accent);
  text-transform: capitalize;
}
.home-section-2 .section-content {
  align-self: center;
}
.home-section-2 .section-img {
  overflow: hidden;
  max-width: 100%;
  justify-self: center;
  width: 310px;
  align-self: start;
}
.home-section-2 .section-img, .home-section-2 .section-img img {
  display: block;
}
.home-section-2 .section-quote {
  font-size: 1.875rem;
  position: relative;
  margin-top: 0.875rem;
  margin-bottom: 0;
  max-width: 32ch;
}
.home-section-2 .section-quote .quote-icon {
  font-size: 7em;
  margin: auto;
  position: absolute;
  top: -500vw;
  bottom: -500vw;
  left: -500vw;
  right: -500vw;
  z-index: -1;
}
.home-section-2 .section-footer {
  margin-top: 0;
  max-width: none;
}
.home-section-2 .section-awards {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 768px) {
  .home-section-2 .section-header {
    margin-bottom: 0.5rem;
  }
  .home-section-2 .section-blocks {
    row-gap: 3rem;
  }
  .home-section-2 .section-heading {
    font-size: 4.25rem;
  }
  .home-section-2 .section-img {
    width: 516px;
  }
  .home-section-2 .section-quote {
    font-size: 2.625rem;
  }
  .home-section-2 .section-awards {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-2 .section-container {
    --container-gutter: 150px;
  }
  .home-section-2 .section-blocks {
    row-gap: 4.5rem;
  }
  .home-section-2 .section-heading {
    max-width: 20ch;
  }
  .home-section-2 .section-footer {
    margin-inline: -2rem;
  }
  .home-section-2 .section-awards {
    margin-top: 6rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-2 .section-container {
    --container-gutter: 100px;
  }
  .home-section-2 .section-blocks {
    grid-template-columns: auto 1fr;
    row-gap: 3.75rem;
  }
  .home-section-2 .section-header {
    margin-bottom: 0.5rem;
  }
  .home-section-2 .section-heading {
    font-size: 4.6875rem;
  }
  .home-section-2 .section-img {
    order: -1;
  }
  .home-section-2 .section-awards {
    margin-top: 6rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-2 .section-container {
    --container-gutter: 235px;
  }
  .home-section-2 .section-blocks {
    -moz-column-gap: 7.25rem;
         column-gap: 7.25rem;
    row-gap: 4.25rem;
  }
  .home-section-2 .section-heading {
    font-size: 4.875rem;
  }
  .home-section-2 .section-img {
    width: 594px;
    --fancy-box-gutter: 1.125rem;
  }
  .home-section-2 .section-quote {
    font-size: 2.8125rem;
    margin-top: 4.25rem;
  }
  .home-section-2 .section-awards {
    margin-top: 9.5rem;
  }
}
@media only screen and (max-width: 1199px) {
  .home-section-2 .section-img {
    --fancy-box-gutter: .5rem;
  }
}
/*
* Home Section 3
-------------------------------------------------------------------------------- */
.home-section-3 {
  padding-block: 2.75rem 3rem;
  background-color: var(--color-light);
}
@media only screen and (min-width: 768px) {
  .home-section-3 {
    padding-block: 4rem 7.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-3 {
    padding-block: 7.5rem 7.75rem;
  }
  .home-section-3 .section-blocks {
    --default-sidebar-width: 335px;
    --default-gap-x: 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-3 {
    padding-block: 8.25rem 10.25rem;
  }
  .home-section-3 .section-container {
    --container-gutter: 85px;
  }
  .home-section-3 .section-blocks {
    --default-gap-x: 130px;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-3 {
    padding-block: 8.5rem 11rem;
  }
  .home-section-3 .section-container {
    --container-gutter: 275px;
  }
  .home-section-3 .section-blocks {
    --default-gap-x: 196px;
  }
  .home-section-3 .section-sidebar {
    margin-right: 2.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  .home-section-3 .section-sidebar {
    margin-top: 4rem;
  }
}
/*
* Home Section 4
-------------------------------------------------------------------------------- */
.home-section-4 .swiper {
  --swiper-custom-arrow-offset-x: var(--fancy-box-gutter);
  --swiper-custom-arrow-offset-x-negate: var(--fancy-box-gutter);
}
.home-section-4 .section-blocks {
  position: relative;
}
.home-section-4 .section-box {
  padding-block: 3rem;
  margin-inline: auto;
  max-width: 668px;
}
.home-section-4 .section-header {
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .home-section-4 {
    padding-block: 5rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 44px;
  }
  .home-section-4 .section-box {
    padding-block: 5.25rem;
    --fancy-box-gutter: 2rem;
  }
  .home-section-4 .section-footer {
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-4 {
    padding-block: 6.375rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 48px;
  }
  .home-section-4 .section-box {
    padding-block: 4rem 5rem;
    max-width: 870px;
  }
  .home-section-4 .section-footer {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-4 {
    padding-block: 6.5rem 5rem;
  }
  .home-section-4 .testimonial-container {
    padding-inline: 5.5rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 72px;
  }
  .home-section-4 .section-box {
    max-width: 968px;
    padding-block: 3rem 4.75rem;
  }
  .home-section-4 .section-footer {
    margin-toip: 2.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-4 {
    padding-block: 6.5rem 5.75rem;
  }
  .home-section-4 .testimonial-container {
    padding-inline: 9.5rem;
  }
  .home-section-4 .section-container {
    --container-gutter: 280px;
  }
  .home-section-4 .section-box {
    max-width: 1096px;
    padding-block: 3.5rem 4.75rem;
  }
}
@media only screen and (max-width: 1199px) {
  .home-section-4 .swiper {
    overflow: visible;
    --swiper-navigation-top-offset: 100%;
  }
  .home-section-4 .section-footer {
    max-width: 496px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .home-section-4 .section-footer .next {
    order: 99;
  }
  .home-section-4 .section-footer .button {
    margin: 0;
  }
}
/*
* Home Section 5
-------------------------------------------------------------------------------- */
.home-section-5 {
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
.home-section-5 .section-blocks {
  --columns-gap-x: 8rem;
}
.home-section-5 .section-content:only-child {
  grid-column: 1/-1;
  max-width: 800px;
  justify-self: center;
}
@media only screen and (min-width: 768px) {
  .home-section-5 {
    padding-block: 6rem;
  }
  .home-section-5 .section-footer {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-5 {
    padding-block: 8.5rem 7.5rem;
  }
  .home-section-5 .section-container {
    --container-gutter: 75px;
  }
  .home-section-5 .section-blocks {
    --columns-number: 2;
  }
  .home-section-5 .section-footer {
    margin-top: 3.375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-5 {
    padding-block: 10.5rem;
  }
  .home-section-5 .section-container {
    --container-gutter: 100px;
  }
  .home-section-5 .section-blocks {
    --columns-gap-x: 7rem;
  }
  .home-section-5 .section-footer {
    margin-top: 6.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-5 {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
  .home-section-5 .section-container {
    --container-gutter: 275px;
  }
  .home-section-5 .section-box {
    --columns-gap-x: 8.25rem;
  }
  .home-section-5 .section-footer {
    margin-top: 10rem;
  }
}
/* ================================================================================
* 404
================================================================================ */
/*
* 404 Related Classes
-------------------------------------------------------------------------------- */
/*
* 404 Page
-------------------------------------------------------------------------------- */
body.error404 {
  /* body selector for 404 template */
}

#error404-page {
  text-align: center;
}
#error404-page .section-header {
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (min-width: 1800px) {
  #error404-page {
    padding-top: 8.5rem;
  }
}
/* ================================================================================
* Case Results + 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 */
}
#results-page {
  /* template main styles */
}
#results-page .results:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
  justify-content: center;
  justify-items: center;
}
#results-page .result {
  padding-block: 5.75rem 1.25rem;
}
#results-page .result-learn-more {
  margin-top: 0.75rem;
}
#results-page .result:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
@media only screen and (min-width: 768px) {
  #results-page .results:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #results-page .results:is(.columns) {
    --columns-number: 2;
  }
  #results-page .result {
    padding-block: 8.75rem 2.25rem;
  }
  #results-page .result-learn-more {
    margin-top: 3rem;
  }
  #results-page .section-container {
    --container-gutter: 180px;
  }
}
@media only screen and (min-width: 1400px) {
  #results-page .result {
    --fancy-box-gutter: 1.25rem;
  }
  #results-page .result-value {
    font-size: 4.375rem;
  }
  #results-page .result-title {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  #results-page .results:is(.columns) {
    --columns-number: 3;
    --columns-gap-x: 4.625rem;
    --columns-gap-y: 4.375rem;
  }
  #results-page .section-container {
    --container-gutter: 230px;
  }
}
@media only screen and (max-width: 1199px) {
  #results-page .result {
    max-width: 500px;
  }
}
/* ================================================================================
* Practice Areas + Practice Areas Template
================================================================================ */
/*
* Practice Areas Grid Template
-------------------------------------------------------------------------------- */
body.ilaw-template-practice-areas {
  /* body selector for practice-areas template */
}

#practice-areas-banner {
  /* selector for practice-areas banner if enabled */
}
#practice-areas-page {
  /* template main styles */
}
#practice-areas-page .practice-area-menu:is(.columns) {
  --columns-gap-x: 3rem;
}
#practice-areas-page .practice-area:nth-last-child(n+2) {
  margin-bottom: 5rem;
}
@media only screen and (min-width: 768px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 2;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+2) {
    border-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 3;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
}
@media only screen and (min-width: 1800px) {
  #practice-areas-page {
    padding-top: 3.25rem;
  }
  #practice-areas-page .section-container {
    --container-gutter: 275px;
  }
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 3;
    --columns-gap-x: 10rem;
  }
}
/* ================================================================================
* Testimonials + Testimonial 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-page {
  /* template main styles */
}
#testimonials-page .testimonials:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
}
#testimonials-page .testimonial {
  max-width: 842px;
  margin-inline: auto;
}
#testimonials-page .testimonial:nth-last-child(n+2) {
  padding-bottom: var(--columns-gap-y);
  border-bottom: 1px solid var(--color-neutral-lighter);
}
@media only screen and (min-width: 1200px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-x: 5.9rem;
    --columns-gap-y: 5.9rem;
  }
  #testimonials-page .section-container {
    --container-gutter: 240px;
  }
}
@media only screen and (min-width: 1400px) {
  #testimonials-page .section-container {
    --container-gutter: 340px;
  }
}
@media only screen and (min-width: 1800px) {
  #testimonials-page .section-container {
    --container-gutter: 540px;
  }
}
/* ================================================================================
* Profiles/ Team Grid + Profiles/ Team Grid Template
================================================================================ */
/*
* Team/Profiles Groups - Optional
-------------------------------------------------------------------------------- */
.team-group:nth-child(n+2) {
  margin-top: 6.625rem;
}
.team-title {
  margin-bottom: 3.25rem;
}
.team-title.fancy-border {
  --fancy-border-margin-y: .875rem;
}
.team .profile {
  max-width: 440px;
}

/*
* Team/Profiles Page
-------------------------------------------------------------------------------- */
body.ilaw-template-team {
  /* body selector for team template */
}

#team-banner {
  /* selector for team banner if enabled */
}
#team-page {
  /* template main styles */
}
#team-page .profiles:is(.columns) {
  --columns-gap-x: 4rem;
  --columns-gap-y: 5rem;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 3;
  }
}
@media only screen and (min-width: 1800px) {
  #team-page .section-container {
    --container-gutter: 275px;
  }
}
@media only screen and (max-width: 767px) {
  #team-page .profile {
    max-width: 400px;
  }
}

/* ================================================================================
* Profile Detail Template
================================================================================ */
/* Template Profile Areas https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/template/profile.md
-------------------------------------------------------------------------------- */
/*
* Profile Contact Info
-------------------------------------------------------------------------------- */
.profile-contact a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}
.profile-contact-item-label {
  margin-right: 0.5em;
}
/*
* Profile Detail Template
-------------------------------------------------------------------------------- */
body.onep21-template-profile {
  /* body selector for profile template */
}

#profile-banner {
  /* selector for profile banner if enabled */
}
#profile-page {
  /* template main styles */
  /*
  Profile Page Template 
  	@Variation B: Split to top and bottom + profile image offset
  	Requires PHP: templates/template-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 .profile-image.fancy-box {
  --fancy-box-outer-shadow-color: transparent;
}
#profile-page .section-header {
  margin-bottom: 2rem;
}
#profile-page .section-heading {
  max-width: none;
}
#profile-page .section-subheading {
  font-size: 1.125rem;
  color: var(--color-secondary);
}
@media only screen and (min-width: 768px) {
  #profile-page .section-container {
    --container-gutter: 50px;
  }
  #profile-page .section-header {
    margin-bottom: 2.5rem;
  }
  #profile-page .section-subheading {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-page .default-sections {
    --default-sidebar-width: 410px;
    --default-gap-x: 70px;
  }
  #profile-page .section-container {
    --container-gutter: 67px;
  }
  #profile-page .section-header {
    margin-bottom: 5.375rem;
  }
  #profile-page .section-subheading {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-page .section-container {
    --container-gutter: 85px;
  }
  #profile-page .section-subheading {
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  #profile-page .default-sections {
    --default-sidebar-width: 410px;
  }
  #profile-page .section-container {
    --container-gutter: 275px;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-page .section-image {
    max-width: 410px;
    margin-inline: auto;
  }
  #profile-page .section-awards, #profile-page .section-header {
    text-align: center;
  }
}
#profile-page.profile-page-sections {
  padding: 0;
  --profile-image-offset: -150px;
}
#profile-page.profile-page-sections #profile-section-2 {
  position: relative;
  z-index: 1;
}
#profile-page.profile-page-sections #profile-section-1 {
  padding-bottom: 1px;
}
@media only screen and (min-width: 768px) {
  #profile-page.profile-page-sections {
    --profile-image-offset: -140px;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-page.profile-page-sections {
    --profile-image-offset: -130px;
    --profile-sidebar-offset: 7px;
  }
  #profile-page.profile-page-sections #profile-section-1 .section-block.default-section-sidebar {
    margin-bottom: var(--profile-image-offset);
  }
  #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);
    margin-bottom: calc(var(--profile-sidebar-offset) * -1);
  }
}
@media only screen and (min-width: 1400px) {
  #profile-page.profile-page-sections {
    --profile-sidebar-offset: -8px;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-page.profile-page-sections #profile-section-1 {
    padding-bottom: 1px;
  }
  #profile-page.profile-page-sections #profile-section-1 .section-container {
    margin-bottom: var(--profile-image-offset);
  }
  #profile-page.profile-page-sections #profile-section-2 {
    padding-top: 1px;
  }
  #profile-page.profile-page-sections #profile-section-2 .section-container {
    margin-top: calc((var(--profile-image-offset)) * -1);
  }
}
#profile-section-1 {
  padding-block: 1.5rem 3.5rem;
  position: relative;
  z-index: 1;
  background: var(--scheme-bg, var(--color-light-alt));
}
#profile-section-1 .section-blocks {
  --default-gap-y: 0px;
}
@media only screen and (min-width: 768px) {
  #profile-section-1 {
    padding-top: 3.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-section-1 {
    padding-top: 4.5rem;
  }
  #profile-section-1 .default-sections {
    align-items: end;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-section-1 {
    text-align: center;
  }
}
#profile-section-2 .list:nth-last-child(n+2) {
  margin-bottom: 2.875rem;
}
#profile-section-2 .list-item {
  font-size: 1.0625rem;
  line-height: 1.8823529412;
}
#profile-section-2 .list-item:is(.content) :is(:where(li, dd, dt) :where(ul, ol, dd),
:where(li, dd, dt)):nth-child(n+2) {
  margin-top: 0.5em;
}
#profile-section-2 .list-title.fancy-border {
  --fancy-border-margin-y: .5em;
  margin-bottom: 1.3rem;
}
@media only screen and (min-width: 768px) {
  #profile-section-2 {
    padding-top: 3.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-section-2 {
    padding-top: 3rem;
  }
}
@media only screen and (min-width: 1800px) {
  #profile-section-2 {
    padding-top: 4rem;
  }
  #profile-section-2 .list:nth-last-child(n+2) {
    margin-bottom: 4.25rem;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-section-2 .section-body {
    padding-top: 3.25rem;
  }
}
@media only screen and (max-width: 767px) {
  #profile-section-2 .section-body {
    padding-block: 1.25rem 3.625rem;
  }
}
@media only screen and (min-width: 768px) {
  #profile-section-3 {
    padding-bottom: 7rem;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-section-3 {
    padding-bottom: 7.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  #profile-section-3 {
    padding-bottom: 9.125rem;
  }
}

/* ================================================================================
* Videos + Video Template
================================================================================ */
/*
* Videos Template
-------------------------------------------------------------------------------- */
body.ilaw-template-videos {
  /* body selector for videos template */
}

#videos-banner {
  /* selector for videos banner if enabled */
}
#videos-page {
  /* template main styles */
}
#videos-page .videos:is(.columns) {
  --columns-gap-x: 3rem;
  --columns-gap-y: 3rem;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 2;
  }
  #videos-page .section-container {
    --container-gutter: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 3;
    --columns-gap-x: 2rem;
  }
  #videos-page .section-container {
    --container-gutter: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  #videos-page .videos:is(.columns) {
    --columns-gap-x: 5.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 3;
    --columns-gap-x: 5.5rem;
  }
  #videos-page .section-container {
    --container-gutter: 280px;
  }
}
@media only screen and (max-width: 767px) {
  #videos-page .video {
    max-width: 400px;
  }
}

/* ================================================================================
* About Template
================================================================================ */
/*
* About Related Classes
-------------------------------------------------------------------------------- */
.about-section .section-header:last-child:not(.primary-heading) {
  margin-bottom: 0;
}
/*
* About Template
-------------------------------------------------------------------------------- */
#about-banner {
  /* selector about banner if enabled */
}
/* ================================================================================
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 */
}
#contact-page {
  /* template main styles */
  text-align: center;
}
#contact-page .contact-block.contact-number {
  /* Phone number - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: templates/template-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numberColumn / @Variation A: Separate blocks
  */
}
#contact-page .contact-block.contact-numbers {
  /*
  @Variation B: One block
  Requires PHP: templates/template-contact.php - @Variation B: One block
  Requires SCSS: scss/layotemplatesuts/_contact.scss - @numbersColumn / @Variation B: One block
  */
}
#contact-page .contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
#contact-page .contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
#contact-page .section-header {
  margin-bottom: 3rem;
}
#contact-page .section-content {
  max-width: 59ch;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  #contact-page .section-header {
    margin-bottom: 4rem;
  }
}
@media only screen and (min-width: 1400px) {
  #contact-page .section-header {
    margin-bottom: 5rem;
  }
}
@media only screen and (min-width: 1800px) {
  #contact-page {
    padding-block: 8.25rem 10.75rem;
  }
}

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