/*! 
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 Custom CSS Properties
================================================================================ */
/* css vars because internet explorer can no longer hold us back <3 */
:root {
  /* Core Vars DO NOT EDIT. */
  /* Design Reference - Breakpoints This will be used by javascript to track media queries on stuff like sliders */
  --br-xxs: 359px;
  --br-xs: 767px;
  --br-sm: 1199px;
  --br-md: 1399px;
  --br-lg: 1799px;
  --br-xl: 2879px;
  --br-xxl: 3839px;
  /* Design Reference: Comps/Design Sizes based on given XD Files' artboards */
  --comp: 360px;
  /* Styleguide - Fonts */
  --font-primary: Public Sans, Helvetica, Arial, sans-serif;
  --font-secondary: Jost, Helvetica, Arial, sans-serif;
  --font-accent: Jost, Helvetica, Arial, sans-serif;
  --font-monospace: monospace;
  /* Styleguide - colors */
  --color-dark: #1D1E21;
  --color-dark-alt: #000000;
  --color-light: #FFFFFF;
  --color-light-alt: #F2F2F2;
  --color-primary: #96714A;
  --color-primary-alt: #E6CE94;
  --color-primary-gradient-start: var(--color-primary-alt);
  --color-primary-gradient-end: #87613A;
  --color-secondary: var(--color-dark-alt);
  --color-secondary-alt: var(--color-secondary);
  --color-secondary-gradient-start: var(--color-secondary);
  --color-secondary-gradient-end: var(--color-secondary-alt);
  --color-accent: var(--color-primary);
  --color-accent-alt: var(--color-accent);
  --color-accent-gradient-start: var(--color-accent);
  --color-accent-gradient-end: var(--color-accent-alt);
  --color-neutral: #C6C6C6;
  --color-neutral-light: var(--color-neutral);
  --color-neutral-lighter: var(--color-neutral-light);
  --color-neutral-lightest: var(--color-neutral-lighter);
  --color-neutral-dark: #AAAAAA;
  --color-neutral-darker: #707070;
  --color-neutral-darkest: #111D2A;
  --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 {
    /* Core Vars DO NOT EDIT. */
    --comp: 768px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1200px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1400px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1800px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1920px;
    /* add more native vars as needed */
  }
}

/* ================================================================================
* 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(.description,
.gfield_description,
.gsection_description,
.instruction), .gform_wrapper.gravity-theme .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: 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-size: calc(100% + var(--field-border-width, 1px) * 2) calc(100% + var(--field-border-width, 1px) * 2);
  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 :is(.description,
.gfield_description,
.gsection_description,
.instruction,
.gfield_validation_message,
.validation_message) {
  /* space out word stuff nicer */
  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;
}

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

/* Custom gravity forms and form control elements. Adjust as needed.
--------------------------------------------------------------- */
form {
  /* 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.125rem;
  /* border width. This will be accounted for in calculating the form field height as well */
  --field-border-width: 1px;
  /* duh */
  --field-border-radius: 0;
  /* horizontal padding for the form field */
  --field-padding-x: 1rem;
  /* color for required indicators */
  --field-required-color: var(--color-primary);
  /* 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;
}
/*  .gform_ scaffolding. 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;
}

/*  .ginput_ scaffolding. Adjust as needed
--------------------------------------------------------------- */
.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);
}
.gform_wrapper.gravity-theme .ginput_complex {
  align-items: center;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
  width: 100%;
}

/*  .gfield_ scaffolding. Adjust as needed
--------------------------------------------------------------- */
.gfield {
  font-size: 0.875rem;
  line-height: var(--field-line-height, 1.125);
  font-family: var(--font-primary);
}
.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-dark);
}

.gfield:is(.focus, .gfield_error), .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: 1px;
}

.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;
}

.gfield:is(.focus):is(.gfield-custom-box-label-adjacent):is(.focus) .gfield_label,
.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) {
  box-shadow: inset 0 -3px 0 0 var(--color-primary);
  border-bottom-color: var(--color-primary);
}

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

/*  .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: 10.25rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
.gfield_type_multiselect) :is(textarea, select).medium {
  height: 7.5rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
.gfield_type_multiselect) :is(textarea, select).small {
  height: 7.5rem;
}
/*  .gfield - label
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gfield_label {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
  /* customize type for .gfield and scaffolding for descending elements */
  /* custom font styles for gfield_label */
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8em;
}
/* .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: 1.125rem;
  line-height: 0.5;
  color: var(--field-required-color);
  font-style: normal;
  font-weight: 700;
  vertical-align: middle;
  align-self: center;
  padding: 0;
  margin: 0;
  order: 99;
}
/* Theme Options custom helpers - label required indicator
--------------------------------------------------------------- */
/* required and custom label indicator */
.gfield-custom-label-indicator:is(.ginput_container::before,
.ginput_container::after,
.gfield_label::after,
.gfield_label > .gfield_required) {
  display: block;
  pointer-events: none;
}
.ginput_container {
  position: relative;
}
.ginput_container::before, .ginput_container::after {
  position: absolute;
  right: var(--field-padding-x);
  top: calc((var(--field-height) - 1em * var(--field-line-height)) * 0.5);
  z-index: 3;
  pointer-events: none;
}

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

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

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

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

/* custom helpers - Required Message
--------------------------------------------------------------- */
.required-message {
  font-size: 0.875rem;
  font-weight: 700;
}
.required-message .required-glyph {
  font-size: 20px;
  margin-right: 0.25em;
}

/* custom helpers - Disclaimer Message
--------------------------------------------------------------- */
.disclaimer-message {
  font-size: 1rem;
}

/* includes/field-form
--------------------------------------------------------------- */
.field-form :where(.faux-gform_wrapper) .gform_heading {
  /* gform heading: gforms generated or template custom ones */
  /* center the heading stuff. or adjust as needed if that's not the case */
  text-align: center;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 2rem;
}
.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:where(.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: 2rem;
}
.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;
}

/* Swiper Customizations
Variable docs: https://oxygen4fun.supadezign.com/tips/swiperjs-tips-and-good-practice/#customcss
--------------------------------------------------------------- */
:root {
  --swiper-theme-color: var(--color-primary);
  --swiper-preloader-color: var(--swiper-theme-color);
  --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) * 1.5);
  --swiper-pagination-bullet-vertical-gap: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-inactive-color: currentColor;
  --swiper-pagination-margin: 40px;
}

/* Swiper Enhancements
--------------------------------------------------------------- */
.swiper {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}
.swiper.swiper-initialized {
  opacity: 1;
}
:is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction):not(.swiper-pagionation-lock) {
  bottom: var(--swiper-pagination-margin);
  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-prev, .swiper-button-rtl .swiper-button-next {
  left: 0;
}
.swiper-button-next, .swiper-button-rtl .swiper-button-prev {
  right: 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);
  height: auto;
  z-index: 1;
  width: auto;
}
.swiper-button-next::before, .swiper-button-next::after, .swiper-button-prev::before, .swiper-button-prev::after {
  content: none;
}
.swiper-button-prev .content-icon {
  transform: scaleX(-1);
}

/* Swiper Custom Helpers
--------------------------------------------------------------- */
.swiper-custom-pagination-static .swiper-pagination {
  position: static;
  margin-top: var(--swiper-pagination-margin);
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-sm .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-margin);
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-xs .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-margin);
  }
}
.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: 1199px) {
  .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-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;
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-equal-heights-xs .swiper-slide-slide {
    height: auto;
    align-self: stretch;
  }
}
.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-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-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);
  font-weight: 400;
  color: var(--scheme-fg, var(--color-dark));
  background: var(--scheme-bg, var(--color-light));
  background-attachment: fixed;
  /* make sure there are no edge case words that overflow the layout or make blocks too wide*/
  word-wrap: break-word;
  /* smoothen scroll */
  scroll-behavior: smooth;
  /* mobile viewport bug fix */
  min-height: 100vh;
  min-height: -webkit-fill-available;
  /* accent color for form stuff */
  accent-color: var(--color-primary);
}

/* position sticky friendly way to cut off any horizontal scrolls but also allow y to still scroll. Apply only on html element or everything will jiggle for safari ios.
--------------------------------------------------------------- */
html {
  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: bolder;
}

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 
--------------------------------------------------------------- */
:where(img, svg) {
  max-width: 100%;
}

:where(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
--------------------------------------------------------------- */
:where(main, .main,
aside, .aside) {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
@media only screen and (min-width: 1200px) {
  :where(main, .main,
  aside, .aside) {
    padding-top: 8.25rem;
    padding-bottom: 8.25rem;
  }
}
@media only screen and (min-width: 1800px) {
  :where(main, .main,
  aside, .aside) {
    padding-top: 10.25rem;
    padding-bottom: 15.25rem;
  }
}

/* ...Or separate normalize template main and asides' vertical padding.
--------------------------------------------------------------- */
.banner-no-background-image :where(main, .main) {
  padding-top: 0;
}
/* 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
--------------------------------------------------------------- */
:is(:is(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) a {
  font: inherit !important;
}
:is(:is(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}

/* H1 - can be reused by section titles, primary-heading etc.
--------------------------------------------------------------- */
:is(*.h1, .content :where(h1)) {
  font-size: 2.5rem;
  line-height: 0.9167;
  font-family: var(--font-secondary);
  color: inherit;
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  :is(*.h1, .content :where(h1)) {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.h1, .content :where(h1)) {
    font-size: 3.75rem;
  }
}

/* H2 - can be reused by certain titles
--------------------------------------------------------------- */
:is(*.h2, .content :where(h2)) {
  font-size: 1.25rem;
  line-height: 1.36;
  font-family: var(--font-primary);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
}
:is(.content-palette-dark) :is(*.h2, .content :where(h2)) {
  color: inherit;
}
@media only screen and (min-width: 1400px) {
  :is(*.h2, .content :where(h2)) {
    font-size: 1.375rem;
  }
}
/* H3 - can be reused by certain titles
--------------------------------------------------------------- */
:is(*.h3, .content :where(h3)) {
  font-size: 1rem;
  line-height: 1.44;
  font-family: var(--font-primary);
  color: var(--color-dark);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 23px;
}
:is(.content-palette-dark) :is(*.h3, .content :where(h3)) {
  color: var(--scheme-sp, var(--color-accent));
}
@media only screen and (min-width: 1800px) {
  :is(*.h3, .content :where(h3)) {
    font-size: 1.125rem;
  }
}

/* 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(*.h4, .content :where(h4)) {
  font-size: 1rem;
  line-height: calc(1em + 4px);
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  :is(*.h4, .content :where(h4)) {
    font-size: 1.0625rem;
    margin-bottom: 28px;
  }
}
/* 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(*.h5, .content :where(h5)) {
  font-size: 1rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: var(--color-dark-alt);
  letter-spacing: 0em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
:is(.content-palette-dark) :is(*.h5, .content :where(h5)) {
  color: var(--scheme-fg, inherit);
}
/* H6s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly contact info titles, etc
--------------------------------------------------------------- */
:is(*.h6, .content :where(h6)) {
  font-size: 0.9375rem;
  line-height: calc(1em + 11px);
  font-family: var(--font-primary);
  color: var(--color-primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
/* Blockquote -  can be reused in testimonial-highlights, long call to action sections, any general quote, etc.
--------------------------------------------------------------- */
:is(*.blockquote, .content :where(blockquote)) {
  font-size: 1.5625rem;
  line-height: 1.24;
  font-family: var(--font-secondary);
  color: var(--color-neutral-darkest);
  text-transform: none;
  font-style: normal;
  margin-block: 3rem;
}
:is(.content-palette-dark) :is(*.blockquote, .content :where(blockquote)) {
  color: var(--scheme-fg-contrast, inherit);
}
:is(*.blockquote, .content :where(blockquote)) > * {
  font: inherit;
  color: inherit;
  margin-top: 0;
  padding: 0;
}
:is(*.blockquote, .content :where(blockquote)) > *:nth-last-child(n+2) {
  margin-bottom: 0.85em;
}
:is(*.blockquote, .content :where(blockquote)) > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1400px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 2.1875rem;
    margin-block: 3.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.blockquote, .content :where(blockquote)) {
    font-size: 3.125rem;
    margin-block: 5.75rem;
  }
}
/* 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(*.cite, .content :where(cite)) {
  font-size: 1rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: var(--color-dark-alt);
  font-style: normal;
  font-weight: 700;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 1.5em;
}
:is(.content-palette-dark) :is(*.cite, .content :where(cite)) {
  color: var(--scheme-sp, var(--color-primary));
}
:is(*.cite, .content :where(cite))::before {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  display: block;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  :is(*.blockquote, .content :where(blockquote)) :where(cite, .cite) {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    border-top: 0;
  }
  :is(*.blockquote, .content :where(blockquote)) :where(cite, .cite)::before {
    content: "";
    width: 98px;
    height: 2px;
    background: var(--color-primary);
    display: block;
    margin-block: auto;
    margin-inline: 0;
    align-self: center;
  }
}
@media only screen and (min-width: 1800px) {
  :is(*.cite, .content :where(cite)) {
    font-size: 1.125rem;
  }
}
/* 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
--------------------------------------------------------------- */
:is(.content-palette-dark) *.lead {
  color: var(--scheme-sp, var(--color-accent));
}
/* The Content
--------------------------------------------------------------- */
.content {
  font-size: 1rem;
  line-height: 1.56;
  font-family: var(--font-primary);
  color: inherit;
}
@media only screen and (min-width: 1800px) {
  .content {
    font-size: 1.125rem;
  }
}
.content :where(p,
ul,
ol,
dl,
form,
pre,
.table-wrapper,
table,
.wistia_responsive_padding) + :where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6, h1, h2, h3, h4, h5, h6) {
  margin-top: 2.25em;
}
.content :where(p,
ul,
ol,
dl,
input:not([type=checkbox]):not([type=radio]):not([type=submit]),
select,
textarea,
form,
pre,
hr:not([class*=fancy-border]),
.table-wrapper,
table,
.wistia_responsive_padding) {
  margin-bottom: 1em;
}
.content :where(hr:not([class*=fancy-border])) {
  margin-top: 1.875em;
  background-color: var(--brand-neutral);
}
.content :where(a) {
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
.content :where(a):where(:hover, :focus) {
  color: var(--color-primary);
}
.content :where(ol, ul, dd) {
  list-style-type: revert;
  padding-left: 1em;
}
.content :where(ol, ul, dd) :where(ol, ul, dd) {
  margin-bottom: 0;
}
.content :where(ol, ul, dd).list-inline {
  list-style: none;
  padding-left: 0;
}
.content :where(ol, ul, dd).list-inline li {
  display: inline;
}
.content :where(li, dd, dt) {
  list-style: inherit;
  position: relative;
  /* space out each item. Note: some designs may or may not have this. comment out if not needed */
}
.content :where(li, dd, dt) :where(ul,
ol,
dd), .content :where(li, dd, dt):nth-child(n+2) {
  margin-top: 0.75em;
}
.content :where(li, dd, dt):last-child > *:last-child {
  margin-bottom: 0;
}
.content li::marker, .content li::before {
  color: var(--color-primary);
  font-size: 1em;
  display: inline-block;
  font-weight: 700;
}
/* 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-contrast,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-contrast,rgba(127, 127, 127, 0.3));
  color: var(--scheme-fg, inherit);
}
:where(.content table) :where(caption) {
  padding: 0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: Uses @extends to support optional scheme component. */
:is(.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 container for accessibility/ and or b) Use and enabling _schemes.scss */
  color: var(--scheme-fg, var(--color-light));
}
:is(.content-palette-dark) :where(ol, ul, table) {
  color: var(--scheme-fg, inherit);
}
:is(.content-palette-dark) table {
  border-color: var(--color-neutral-darkest);
}
:is(.content-palette-dark) :where(table, th, td) {
  border-style: solid;
}
:is(.content-palette-dark) :where(th, td) {
  border-color: var(--color-neutral-darkest);
}
:is(.content-palette-dark) th {
  color: var(--color-dark);
  background: var(--color-neutral-darkest);
}
:is(.content-palette-dark) th:nth-last-child(n+2) {
  border-right-color: var(--scheme-bg-contrast, var(--color-dark));
}
:is(.content-palette-dark) td {
  border-top-color: var(--scheme-bg, var(--color-dark-alt));
}
:is(.content-palette-dark) tr:nth-child(odd) td {
  background: var(--scheme-bg-contrast, var(--color-dark));
  border-top-color: var(--scheme-bg-contrast, var(--color-dark));
}
:is(.content-palette-dark) tr:nth-child(odd) td:nth-last-child(n+2) {
  border-right-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;
}

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

.content.content-style-small {
  font-size: 1rem;
  line-height: 1.375;
}

@media only screen and (min-width: 1800px) {
  .content.content-style-larger {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

/* for instances of content with less line-height or vertical spacing. Usually lists */
.content.content-style-compact {
  line-height: 1.25;
}
.content.content-style-compact li, .content.content-style-compact li :where(ul, ol) {
  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 > *:last-child {
  margin-bottom: 0;
}

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

@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;
  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;
}
.cover.cover-constricted {
  /* constrict element. all children will have to be absolute for this element to maintain its size */
  --cover-aspect-w: 3;
  --cover-aspect-l: 4;
}
.cover.cover-constricted::before {
  content: "";
  display: block;
  padding-bottom: calc(100% * var(--cover-aspect-l) / var(--cover-aspect-w));
}
.cover.cover-constricted > * {
  position: absolute;
}
.cover-child {
  /* element to emulate background-size cover */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

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

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

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

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

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

body:not(.ilaw-template-home) .internal-only {
  display: block !important;
}
body:not(.ilaw-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 {
  border: var(--button-border-width) solid;
  padding-left: calc(var(--button-padding-x) - var(--button-border-width));
  padding-right: calc(var(--button-padding-x) - var(--button-border-width));
  padding-top: calc((var(--button-height) - var(--button-border-width) * 2 - 1em * var(--button-lines) * var(--button-line-height)) * var(--button-baseline-offset));
  padding-bottom: 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;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  min-height: var(--button-height);
  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;
}
.button, .button:is(:hover, :focus) {
  text-decoration: none;
}

/* Button Customizations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md#css-vars 
--------------------------------------------------------------- */
.button {
  --button-height: 3.125rem;
  --button-border-width: 2px;
  --button-border-radius: 37px;
  --button-padding-x: 1.5em;
  --button-lines: 1;
  --button-baseline-offset: 0.5;
  --button-line-height: 1.125;
  font-size: 1rem;
  line-height: var(--button-line-height);
  font-family: var(--font-primary);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--button-border-radius);
}
@media only screen and (min-width: 1800px) {
  .button {
    font-size: 1.125rem;
  }
}

/* Buttons Sizing Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-size-name
--------------------------------------------------------------- */
/* button w/ a height smaller than the default height */
.button.button-size-small {
  font-size: 0.875rem;
}
@media only screen and (min-width: 1800px) {
  .button.button-size-small {
    font-size: 1rem;
  }
}

.button.button-size-micro {
  font-size: 1rem;
  --button-height: 2.5rem;
}
@media only screen and (min-width: 1800px) {
  .button.button-size-micro {
    font-size: 1rem;
  }
}

/* button w/ a height larger than the default height */
@media only screen and (min-width: 768px) {
  .button.button-size-large {
    font-size: 1.125rem;
    --button-height: 3.4375rem;
  }
}
/* button w/ a height larger than the default height */
.button.button-size-larger {
  --button-height: 3.125rem;
}
@media only screen and (min-width: 768px) {
  .button.button-size-larger {
    font-size: 1.125rem;
    --button-height: 3.4375rem;
  }
}
@media only screen and (min-width: 1400px) {
  .button.button-size-larger {
    font-size: 1.25rem;
    --button-height: 3.75rem;
  }
}
/* constricts the width equal to whatever size height is set*/
.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
--------------------------------------------------------------- */
/* 
* Default - most frequent button palette in the comps
* Invert - reuses default's colors but palettes for hover vs not hover are reversed
* Outline - text w/ border influencing text color
* Minimal - no colors except for the text
Adjust as needed.
*/
.button.button-palette-default, .button.button-palette-reverse:is(:hover, :focus) {
  background-image: linear-gradient(to bottom, #E6CE94, #87613A);
  background-color: var(--color-primary);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-default:is(:hover, :focus), .button.button-palette-outline:is(:hover, :focus), .button.button-palette-reverse {
  background-image: none;
  background-color: var(--color-primary);
  border-color: transparent;
}
.button.button-palette-minimal {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: transparent;
}
.button.button-palette-minimal:is(:hover, :focus) {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-sp, var(--color-primary));
  border-color: transparent;
}
.button.button-palette-outline {
  background-color: transparent;
  background-image: none;
  color: var(--color-primary);
  border-color: currentColor;
}
.button.button-palette-light {
  background-color: var(--color-light);
  color: var(--color-dark);
  border-color: transparent;
}
.button.button-palette-light:is(:hover, :focus) {
  background-color: var(--color-primary);
  color: var(--color-dark);
  border-color: transparent;
}

/* Other Buttons Variations Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-style-name
--------------------------------------------------------------- */
/* link style button. Usually the maps link or read more text for blog posts */
.button.button-style-link {
  --button-border-width: 0px;
  border-radius: 0;
  padding: 0em;
  border-width: 0 0 var(--button-border-width);
  background: none;
  font-size: 1rem;
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
.button.button-style-link:is(:hover, :focus), :where(.content-palette-dark) .button.button-style-link:not(:is(:hover, :focus)) {
  color: var(--color-primary-alt);
}
:where(.content-palette-dark) .button.button-style-link:is(:hover, :focus) {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.button.button-style-slider {
  --button-height: 4.375rem;
  --button-padding-x: .625em;
  font-size: 1rem;
}
/* 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 basic styles */
  content: "\25BA\FE0E";
  transform-origin: center center;
  margin-right: -0.25em;
}

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

/* Container 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: 35px;
  /* customizeable distance. Set as the `--container-fallback` by default. Can be customized depending on the design of a given section though 20px - 30px should be enough */
  --container-size-reference: var(--comp);
  /* window width or section width. you wont usually need to manipulate this value  unless complex split layout designs */
  --container-gutter: var(--container-fallback);
  /* the value to constrain the container's horizontal space. you will mostly modify this variable. */
}
@media only screen and (min-width: 768px) {
  .container {
    --container-fallback: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    --container-fallback: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .container {
    --container-fallback: 60px;
  }
}
/* Custom Container Size Variations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md#container-size-name
--------------------------------------------------------------- */
/* repeating/ internal page container sizing. sometimes designers will use the same gutter width for internals and or gridded template. this can be used so you dont have to copy paste identical styles to different selectos like 10 times */
.container.container-size-default {
  --container-fallback: 35px;
}
@media only screen and (min-width: 768px) {
  .container.container-size-default {
    --container-fallback: 84px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-default {
    --container-fallback: 110px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-default {
    --container-fallback: 231px;
  }
}

.container.container-size-compact {
  --container-gutter: 38px;
}
@media only screen and (min-width: 768px) {
  .container.container-size-compact {
    --container-gutter: 94px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-compact {
    --container-gutter: 98px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-compact {
    --container-gutter: 140px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-compact {
    --container-gutter: 364px;
  }
}

.container.container-size-wide {
  --container-gutter: 34px;
}
@media only screen and (min-width: 768px) {
  .container.container-size-wide {
    --container-gutter: 64px;
  }
}
@media only screen and (min-width: 1200px) {
  .container.container-size-wide {
    --container-gutter: 86px;
  }
}
@media only screen and (min-width: 1400px) {
  .container.container-size-wide {
    --container-gutter: 114px;
  }
}
@media only screen and (min-width: 1800px) {
  .container.container-size-wide {
    --container-gutter: 155px;
  }
}

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

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

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

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

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

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

/* Columns: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/columns.md
--------------------------------------------------------------- */
/* Column Skeletons. do not edit 
Vars: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/columns.md#css-vars
--------------------------------------------------------------- */
.columns {
  --columns-gap-x: 0px;
  --columns-gap-y: 0rem;
  --columns-number: 1;
  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%;
  margin: 0 auto;
}
.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
--------------------------------------------------------------- */
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: 4px;
  --fancy-border-width: auto;
}
hr, .fancy-border.fancy-border-before::before, .fancy-border.fancy-border-after::after {
  height: var(--fancy-border-height, 3px);
  background-color: currentColor;
  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: "";
}

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);
}

hr.fancy-border-palette-primary, .fancy-border-palette-primary.fancy-border-before::before, .fancy-border-palette-primary.fancy-border-after::after {
  background-color: var(--color-primary);
  background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 100%);
}

hr.fancy-border-palette-secondary, .fancy-border-palette-secondary.fancy-border-before::before, .fancy-border-palette-secondary.fancy-border-after::after {
  background-color: var(--color-secondary);
  background-image: linear-gradient(90deg, var(--color-secondary-gradient-start) 0%, var(--color-secondary-gradient-end) 100%);
}

hr.fancy-border-palette-accent, .fancy-border-palette-accent.fancy-border-before::before, .fancy-border-palette-accent.fancy-border-after::after {
  background-color: var(--color-accent);
  background-image: linear-gradient(90deg, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-end) 100%);
}

hr.fancy-border-palette-neutral, .fancy-border-palette-neutral.fancy-border-before::before, .fancy-border-palette-neutral.fancy-border-after::after {
  background-color: 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;
}

/* 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:is(hr, .fancy-border).fancy-border-animated, :is(hr, .fancy-border).fancy-border-animated.fancy-border-before::before, :is(hr, .fancy-border).fancy-border-animated.fancy-border-after::after {
    transition: width 1.5s ease-in-out;
  }
  :is(hr, .fancy-border).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
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .fancy-letters {
    /* Insert Mr Garrett's code here */
    --fancy-letters-factor: 0;
    --fancy-letters-factor-word: 0;
    --fancy-letters-factor-char: 0;
    --fancy-letters-delay: .02s;
    --fancy-letters-duration: 1.5s;
  }
  .fancy-letters.content {
    --fancy-letters-delay: .5s;
    --fancy-letters-factor: 1;
    transform: skewY(0deg) skewX(-4deg) rotate(-2deg) translateY(6rem);
  }
  .fancy-letters, .fancy-letters-word, .fancy-letters-char {
    transition-timing-function: 0.5, 0, 0, 1;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    padding-bottom: 0.5em;
    margin-bottom: -0.5em;
    opacity: 0;
    transition-property: opacity;
    transition-delay: 0s;
    transition-duration: 0.25s;
  }
  .fancy-letters {
    transform: skewY(0deg) skewX(-4deg) rotate(-2deg) translateY(50%);
  }
  .fancy-letters-word {
    transform: skewY(-10deg) skewX(0deg) rotate(0deg) translateY(100%);
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .fancy-letters-char {
    transform: skewY(10deg) skewX(0deg) rotate(10deg) translateY(100%);
  }
  .fancy-letters.visible,
  .fancy-letters.visible .fancy-letters-word,
  .fancy-letters.visible .fancy-letters-char, .visible .fancy-letters,
  .visible .fancy-letters .fancy-letters-word,
  .visible .fancy-letters .fancy-letters-char {
    transition-property: transform, opacity;
    transition-duration: var(--fancy-letters-duration);
    transform: skewY(0deg) skewX(0deg) rotate(0deg) translateY(0%);
    opacity: 1;
  }
  .fancy-letters.visible, .visible .fancy-letters {
    transition-delay: calc(var(--fancy-letters-delay) * var(--fancy-letters-factor));
    transform-origin: top left;
  }
  .fancy-letters.visible .fancy-letters-word, .visible .fancy-letters .fancy-letters-word {
    transition-delay: calc(var(--fancy-letters-delay) * 1.5 * var(--fancy-letters-factor-word));
    transform-origin: bottom right;
  }
  .fancy-letters.visible .fancy-letters-char, .visible .fancy-letters .fancy-letters-char {
    transition-delay: calc(var(--fancy-letters-delay) * 2.5 * var(--fancy-letters-factor-char));
    transform-origin: center center;
  }
}

/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
/* Widgets https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md
--------------------------------------------------------------- */
/* Widgets Skeleton. No need to Edit 
--------------------------------------------------------------- */
.widget {
  padding-top: var(--widget-padding-top);
  padding-bottom: var(--widget-padding-bottom);
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
  position: relative;
  max-width: 100%;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li {
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
}
.widget > :where(ul, .widget-content, .menu):not(.content) {
  margin-left: calc(var(--widget-padding-x) * -1);
  margin-right: calc(var(--widget-padding-x) * -1);
}
.widget > :where(ul, .widget-content, .menu):not(.content) :where(ul, .sub-menu) {
  margin-left: calc(var(--widget-padding-x) * -1);
  margin-right: calc(var(--widget-padding-x) * -1);
}
.widget > :where(ul, .widget-content, .menu):not(.content) :where(ul, .sub-menu) {
  margin-left: calc(var(--widget-padding-x) * -1);
  margin-right: calc(var(--widget-padding-x) * -1);
}
:is(.widget-title, .widget-title, .widgettitle) {
  padding-left: var(--widget-title-padding-x);
  padding-right: var(--widget-title-padding-x);
}

.widget > :where(ul, .widget-content, .menu):not(.content) li {
  margin: 0;
  list-style: none;
  clear: both;
  display: flex;
  flex-direction: column;
}
.widget > :where(ul, .widget-content, .menu):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)));
  padding-left: var(--widget-item-padding-x);
  padding-right: var(--widget-item-padding-x);
  color: inherit;
  text-decoration: none;
  flex: 1 1;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li ul {
  border-top: 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;
}
.widget > :where(ul, .widget-content, .menu):not(.content) li:last-child > ul {
  /* fix sub item dropdown bottom gaps */
  margin-bottom: calc(var(--widget-dropdown-padding-bottom) * -1);
  border-bottom: 0;
}
.widget > :where(ul, .widget-content, .menu):not(.content) > li:last-child > ul {
  /* fix top level item dropdown bottom gaps */
  margin-bottom: calc(var(--widget-padding-bottom) * -1);
}
.widget:not(.widget-style-no-toggle):not(.open) > :where(ul, .widget-content, .menu), .widget:not(.widget-style-no-toggle):not(.open) > :is(.widget-title, .widget-title, .widgettitle) + *,
.widget:not(.widget-style-no-toggle) li:not(.open) > ul {
  /* close it all, javascript will take care of opening what needs to be opened */
  display: none;
}
:is(.widget-title, .widget-title, .widgettitle) + *:not(:is(ul, .widget-content, .menu)) {
  margin-top: 1em;
}

.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: 0rem;
  --widget-padding-top: 0rem;
  --widget-padding-bottom: var(--widget-padding-top);
  --widget-dropdown-padding-top: 0rem;
  --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.75rem;
  --widget-item-border-width: 1px;
  --widget-item-lines: 1;
  --widget-item-padding-x: var(--widget-padding-x);
  --widget-title-padding-x: var(--widget-padding-x);
  /* Note: this value has to be unitless for calc values to work.
  * modify this value if the font seems a little too high or low in vertical alignment. 1 moves the text to the very top. 0 moves the text to the very bottom. 0.5 will center it based on the fonts' basline alignment */
  --widget-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;
  font-size: 1rem;
  line-height: var(--widget-item-line-height);
  color: var(--scheme-fg, var(--color-dark-alt));
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}
.widget:where(:nth-last-child(n+2)) {
  margin-bottom: var(--default-gap-y, 60px);
}
.widget > :where(ul, .widget-content) {
  margin-top: 18px;
  margin-bottom: 0;
}
.widget > :where(ul, .widget-content):not(.content) li > a {
  border-bottom: var(--widget-item-border-width) solid var(--color-neutral-lighter);
}
.widget > :where(ul, .widget-content):not(.content) li:is(.open, :hover, :focus-within) > a {
  color: var(--color-primary);
}
.widget > :where(ul, .widget-content):not(.content) li ul {
  background-color: rgba(0, 0, 0, 0.01);
  border-color: var(--color-neutral-lighter);
  text-align: left;
}
.widget > :where(ul, .widget-content):not(.content) li ul ul {
  background: rgba(0, 0, 0, 0.05);
}
.widget > :where(ul, .widget-content):not(.content) li.open {
  border-bottom: 0;
}
.widget > :where(ul, .widget-content):not(.content) li.open > a {
  border-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .widget {
    --widget-item-padding-x: 27px;
  }
}
@media only screen and (min-width: 1800px) {
  .widget {
    font-size: 1.125rem;
  }
}
/* Widget Title
--------------------------------------------------------------- */
:is(.widget__title, .widget-title, .widgettitle) {
  font-size: 1.125rem;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0.8em;
  border-bottom: 4px solid var(--color-primary);
}
.widget:not(.widget-style-no-toggle):not(.open) > :is(.widget__title, .widget-title, .widgettitle).fancy-border-after:after, .widget:not(.widget-style-no-toggle):not(.open) > :is(.widget__title, .widget-title, .widgettitle).fancy-border-before:before {
  content: none;
  --fancy-border-height: 0;
  --fancy-border-margin-y: 0;
}
:is(.widget__title, .widget-title, .widgettitle).fancy-border-after:after, :is(.widget__title, .widget-title, .widgettitle).fancy-border-before:before {
  flex: 0 0 auto;
}
@media only screen and (min-width: 1800px) {
  :is(.widget__title, .widget-title, .widgettitle) {
    font-size: 1.25rem;
  }
}
/* Widget Toggle
--------------------------------------------------------------- */
.widget-toggle {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.widget-toggle::before {
  display: inline-block;
  order: 9;
  align-self: center;
  margin-left: auto;
  transform-origin: center center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.75rem;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.open > .widget-toggle::before {
  transform: rotate(-135deg);
}
/* ================================================================================
* 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: 80px;
  /* height of the whole header at a given state or layout */
  --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: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    /* Touch Devices Header Styles Start */
    --layout-header-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --layout-header-height: 126px;
    --layout-header-logo-height: 70px;
  }
}

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

/* Layout Header Itself
--------------------------------------------------------------- */
.layout-header {
  /* Note: position must be set initially, NOT based on whether or not a scroll has occured (sticky vs not-sticky class). This is to prevent layout jumps on scroll */
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--color-dark-alt);
  color: var(--scheme-fg, var(--color-dark));
  transition: all 0.3s ease-in-out;
}
.layout-header-container {
  --container-gutter: 45px;
}
@media only screen and (min-width: 1200px) {
  .layout-header {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1800px) {
  .layout-header-container {
    --container-gutter: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .layout-header {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .layout-header {
    /* 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.) */
  }
  .layout-header-container {
    --container-gutter: 15px;
  }
}
.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 */
  background: rgba(0, 0, 0, 0.45);
}
@media only screen and (min-width: 768px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header {
    background: rgba(0, 0, 0, 0.6);
  }
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header {
    /* remove background */
  }
}
.doc-header-not-sticky .layout-header {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .layout-header {
    /* reset offset when no scrolling yet */
    top: 0;
  }
}
.doc-header-menu-open .layout-header {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.header-overlay-on-banner .layout-header {
  /* Overlay header on header-overlay-on-banner. best for setting position on large devices AND NOTHING ELSE */
  position: fixed;
}
/* Header Blocks - How elements will be layed out in the header
--------------------------------------------------------------- */
:where(.header-block, .header-blocks) {
  /* uncomment if flex/grid is causing any issues*/
  min-width: 0;
}

.header-blocks {
  justify-content: center;
  align-items: center;
  -moz-column-gap: var(--container-gutter);
       column-gap: var(--container-gutter);
  row-gap: 0rem;
  display: grid;
  /* set as min instead in case alertbar needs to be added within header */
  min-height: var(--layout-header-height);
}
.header-block:is(.header-logo) {
  grid-area: logo;
  justify-self: self-start;
}
.header-block:is(.header-nav) {
  grid-area: nav;
}
.header-block:is(.header-cta) {
  grid-area: cta;
}
.header-block:is(.header-toggle-menu) {
  grid-area: toggle-menu;
  align-self: stretch;
}
@media only screen and (min-width: 1200px) {
  .header-block {
    /* Non-touch Devices Header Styles Start */
  }
  .header-blocks {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo nav cta";
  }
  .header-block:is(.header-nav) {
    align-self: stretch;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-blocks {
    grid-template-columns: auto 1fr;
    grid-template-rows: 0.49fr 0.51fr;
    grid-template-areas: "logo cta" "logo nav";
  }
  .header-block:is(.header-nav) {
    justify-self: self-end;
  }
  .header-block:is(.header-cta) {
    justify-self: self-end;
    align-self: self-end;
  }
}
@media only screen and (max-width: 1199px) {
  .header-block {
    /* Touch Devices Header Styles Start */
  }
  .header-blocks {
    margin-inline: calc(var(--container-gutter, 0px) * -1);
    -moz-column-gap: 5px;
         column-gap: 5px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo cta toggle-menu";
  }
  .header-block:is(.header-cta) {
    justify-self: self-end;
    align-self: stretch;
  }
}
@media only screen and (max-width: 767px) {
  .header-blocks {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    grid-template-areas: "logo logo" "cta toggle-menu";
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .header-block:is(.header-logo) {
    justify-self: stretch;
  }
  .header-block:is(.header-cta) {
    justify-self: stretch;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-block {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-block {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-block {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.header-block .doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Logo
--------------------------------------------------------------- */
.header-logo {
  padding-block: 1rem 0.6rem;
  padding-inline: var(--container-gutter, 0);
  height: var(--layout-header-logo-height);
  flex: 0 0 auto;
  justify-content: center;
  /* 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 */
    margin-inline: calc(var(--container-gutter, 0) * -1);
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo {
    /* Touch Devices Header Styles Start */
    padding-block: 0.7rem 0.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    width: 100%;
    max-width: 100%;
    flex: 1 1;
    border-bottom: 1px solid var(--color-neutral-darker);
  }
  .header-logo .logo-wrapper-touch {
    /* show  */
    display: block;
  }
  .header-logo .logo-wrapper-touch ~ .logo-wrapper-nontouch {
    display: none;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-logo {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-sticky {
    /* hide default logo on before sticky */
    display: none;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-before-sticky {
    /* show  */
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    border-color: transparent;
  }
}
.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: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
}
.header-toggle-menu {
  color: var(--color-light);
  position: relative;
  z-index: 99999;
  top: 0;
  transition: 0.375s all ease-in-out;
}
.header-toggle-menu.open {
  background: var(--color-dark);
}
.header-toggle-menu-icon {
  --fancy-icon-menu-width: 44px;
  --fancy-icon-menu-height: 27px;
  --fancy-icon-menu-bar-height: 4px;
}
@media only screen and (min-width: 768px) {
  .header-toggle-menu-icon {
    --fancy-icon-menu-width: 44px;
    --fancy-icon-menu-height: 25px;
    --fancy-icon-menu-bar-height: 4px;
  }
}
.header-toggle-menu.open .header-toggle-menu-icon {
  color: inherit;
}
.header-toggle-menu-label {
  font-size: 0.75rem;
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-top: 0.375em;
  transition: 0.375s all ease-in-out;
}
.header-toggle-menu.open .header-toggle-menu-label {
  margin-top: -1em;
  opacity: 0;
}
@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 */
  }
  .header-toggle-menu.open {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-toggle-menu {
    background-color: var(--color-dark-alt);
  }
  .header-toggle-menu.open {
    top: calc((var(--layout-header-height) - var(--layout-header-logo-height)) * -1);
  }
}
.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 Main
--------------------------------------------------------------- */
.header-main {
  display: flex;
  justify-content: flex-end;
  min-height: var(--layout-header-height);
  flex: 1 1;
}
@media only screen and (min-width: 1200px) {
  .header-main {
    /* Non-touch Devices Header Styles Start */
    padding-right: 2rem;
    padding-left: 2rem;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
  }
}
@media only screen and (min-width: 1400px) {
  .header-main {
    flex-direction: row-reverse;
    align-items: center;
    flex: 1;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1199px) {
  .header-main {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-main {
    min-height: calc(var(--layout-header-height) - var(--layout-header-logo-height));
    width: 100%;
    background: var(--color-dark-alt);
    flex: 0 0 auto;
    order: 9;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-main {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-main {
  /* 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-main {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header CTA
--------------------------------------------------------------- */
.header-cta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
@media only screen and (min-width: 1200px) {
  .header-cta {
    /* Non-touch Devices Header Styles Start */
    flex-direction: row;
    align-items: flex-end;
    order: -1;
  }
}
@media only screen and (min-width: 1400px) {
  .header-cta {
    flex-direction: column;
  }
}
@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 */
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-cta {
    text-align: left;
    align-items: flex-start;
    flex: 1 1;
    background-color: var(--color-dark-alt);
    padding-block: 0.25rem;
  }
}
.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: 0.75rem;
  line-height: 1.5;
  font-family: var(--font-accent);
  color: var(--color-primary-alt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 1rem;
}
.header-cta-text > span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--color-primary-alt);
  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: 1400px) {
  .header-cta-text {
    font-size: 0.9375rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-cta-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta-text {
    /* Touch Devices Header Styles Start */
  }
}
.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;
}
.header-numbers .number-block {
  margin-left: 1rem;
  line-height: 1;
}
.header-numbers .number-link {
  font-size: 1.375rem;
  line-height: 1;
  color: var(--color-light);
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .header-numbers .number-link {
    font-size: 1.5rem;
  }
}
@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.625rem;
  }
}
@media only screen and (min-width: 1800px) {
  .header-numbers .number-link {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-numbers {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-numbers {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices */
}
.doc-header-not-sticky .header-numbers {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-numbers {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Navigation
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .header-nav {
    /* Non-touch Devices Header Styles Start */
    display: flex;
    align-self: stretch;
    justify-content: flex-end;
    flex: 0 0 auto;
  }
}
@media only screen and (min-width: 1400px) {
  .header-nav {
    justify-content: center;
    margin-inline: auto;
  }
}
@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: var(--color-dark-alt) c;
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    z-index: 9999;
    scrollbar-width: none;
    position: fixed;
    bottom: 0;
    left: 100%;
    top: 0;
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav {
    top: 0;
  }
}
.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;
    align-self: stretch;
  }
}
.doc-header-not-sticky .header-nav {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.doc-header-menu-open .header-nav {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
@media only screen and (max-width: 1199px) {
  .doc-header-menu-open .header-nav {
    left: 0%;
    opacity: 1;
  }
}
.doc-header-menu-open.doc-header-not-sticky .header-nav {
  /* Styles/Selectors for when header menu accordion for touch devices is open and header is not sticky yet */
}
/* Header Navigation Menu
--------------------------------------------------------------- */
.header-nav .menu {
  --layout-header-menu-touch-menu-padding-x: 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 */
  font-size: 1rem;
  line-height: 1.125;
  font-family: var(--font-primary);
  color: var(--color-light);
  text-transform: capitalize;
  font-weight: 700;
  gap: 2rem;
}
.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: 10px 2em;
  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 currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.header-nav .menu ul {
  background-color: var(--color-dark);
  color: var(--color-light);
  text-transform: none;
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .header-nav .menu li:not(:hover, :focus-within) > ul {
    display: none;
  }
  .header-nav .menu li {
    position: relative;
    padding-left: var(--layout-header-menu-nontouch-dropdown-padding-x);
    padding-right: var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li > a {
    flex: 1 1;
    /* flush dropdown indicator and text to the left */
    justify-content: flex-start;
  }
  .header-nav .menu li:is(:hover, :focus-within) > a {
    /* activated styles upon interaction for nontouch */
    color: var(--color-primary-alt);
  }
  .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 {
    padding-block: 15px;
    width: 230px;
    top: 0;
    left: 100%;
    /* Take dropdowns out of doc flow + setup for hover/focus effects */
    position: absolute;
    z-index: 1;
    /* additional border styles + align to current item indicator. comment out if not needed */
  }
  .header-nav .menu ul > li.menu-item-has-children > a::after {
    transform: rotate(-90deg);
    transform-origin: center center;
  }
  .header-nav .menu > li {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu > li, .header-nav .menu > li > a {
    /* undo fanciness from non-media query scaffolding for top level menu item and its child a tag */
    border: none;
    background: none;
    margin: 0;
  }
  .header-nav .menu > li > a {
    padding: 0.875rem 0;
  }
  .header-nav .menu > li:is(:hover, :focus-within) > a {
    background: none;
  }
  .header-nav .menu > li > ul {
    top: 100%;
    left: 0;
  }
}
@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 (max-width: 1199px) {
  .header-nav .menu {
    background: var(--color-dark);
    color: var(--color-light);
    padding-top: 6rem;
    padding-bottom: 6rem;
    width: 100%;
    /* shift menu to the right edge and limit width. comment if not needed*/
  }
  .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: 124px;
    /* distance both dropdown indicator and menu text to the edge */
    justify-content: flex-start;
  }
  .header-nav .menu li:is(:hover, :focus-within, .open) > a {
    /* activated styles upon interaction for touch */
    color: var(--color-primary-alt);
  }
  .header-nav .menu li:is(.open) {
    border-bottom: 0;
  }
  .header-nav .menu li:is(.open) > a {
    border-bottom: 0;
  }
  .header-nav .menu ul {
    background-color: #181818;
    color: inherit;
    align-self: stretch;
    order: 99;
    flex: 1 0 100%;
    padding-block: 20px;
    /* basic borders to contrast multiple dropdown levels */
    margin-left: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
    margin-right: calc(var(--layout-header-menu-touch-menu-padding-x) * -1);
  }
  .header-nav .menu > li:is(:hover, :focus-within, .open) > a {
    color: var(--color-primary-alt);
  }
  .header-nav .menu > li > ul > li > a {
    font-weight: 400;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .menu {
    max-width: 100%;
  }
  .header-nav .menu li > a {
    padding-inline: 62px;
    text-align: left;
    justify-content: flex-start;
  }
}
.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
--------------------------------------------------------------- */
.layout-banner .banner-background .responsive-background-bg {
  background-position: center top;
}
.banner-has-background-image .layout-banner {
  /* Styles specific for when banner has background image */
  background-color: var(--scheme-bg-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: 5.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.banner-main-blocks {
  gap: 3rem;
}
@media only screen and (min-width: 768px) {
  .banner-main {
    padding-block: 7.75rem 6.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-main-blocks {
    justify-content: space-between;
  }
  .banner-main-block, .banner-main-blocks {
    min-width: 0;
  }
  .banner-main-block:only-child {
    flex: 1 1;
    grid-column: span 2;
    justify-self: center;
  }
}
@media only screen and (min-width: 1800px) {
  .banner-main {
    padding-block: 11rem 8rem;
  }
}
.banner-has-background-image .banner-main {
  /* Styles specific for when banner has background image */
  min-height: 280px;
  padding-block: calc(2.5rem + var(--layout-header-height)) 2.5rem;
}
@media only screen and (min-width: 768px) {
  .banner-has-background-image .banner-main {
    min-height: 338px;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-background-image .banner-main {
    min-height: 370px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-has-background-image .banner-main {
    min-height: 390px;
  }
}
@media only screen and (min-width: 1800px) {
  .banner-has-background-image .banner-main {
    min-height: 423px;
  }
}
.banner-has-background-image.header-overlay-on-banner .banner-main {
  /* Styles specific for when banner has the header overlay before scroll + Styles specific for when banner has background image */
}
.banner-no-background-image .banner-main {
  /* Styles specific for when banner doesnt support background image OR global fallback heading*/
}
/* Banner Body
--------------------------------------------------------------- */
.banner-body {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.banner-has-background-image .banner-body {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-body {
  /* Styles specific for when banner doesnt support background image */
}
/* Global Secondary Heading
--------------------------------------------------------------- */
.secondary-heading {
  font-size: 1rem;
  line-height: calc(1em + 6px);
  font-family: var(--font-accent);
  color: var(--color-primary-alt);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  text-align: inherit;
  margin-top: 0;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  border-block: 2px solid;
  padding-block: 0.6em;
}
.secondary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  .secondary-heading {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .secondary-heading {
    font-size: 1.25rem;
    padding-block: 0.4em;
  }
}
@media only screen and (min-width: 1400px) {
  .secondary-heading {
    font-size: 1.375rem;
  }
}
@media only screen and (min-width: 1800px) {
  .secondary-heading {
    font-size: 1.5rem;
  }
}
.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.1875rem;
  line-height: calc(1em + 6px);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 0;
}
.primary-heading em {
  /* emphasized words */
  color: var(--color-accent);
  font-style: normal;
}
@media only screen and (min-width: 768px) {
  .primary-heading {
    font-size: 2.8125rem;
    line-height: 1.2222222222;
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading {
    font-size: 3.125rem;
  }
}
.primary-heading.primary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
}
.ilaw-default .primary-heading.primary-heading-default-h1 {
  /* Styles specific for default template primary heading set as an h1 (Single Post, Single Page) */
}
.primary-heading.primary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.primary-heading.primary-heading-blog-title {
  /* Styles specific for blog post/ blog archive custom primary heading set as blog page's title eg 'Our Blog', 'Firm Blog', etc... Note: This will be an H1 on Blog/Archive but not in Single Posts for SEO (Single Posts, Blog/ Archive) */
}
.layout-banner .primary-heading {
  /* Styles specific for when it's inside a banner */
}
.primary-heading.h1-fallback-heading {
  /* Styles specific for when banner does not exist/ rendered as a helper class for the fallback h1 */
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 1400px) {
  .primary-heading.h1-fallback-heading {
    margin-bottom: 3.75rem;
  }
}
.banner-has-background-image .primary-heading {
  /* Styles specific for when banner has background image */
}
.layout-banner .banner-has-background-image .primary-heading {
  text-shadow: 0 2px 0.125em var(--scheme-bg, var(--color-dark));
}
.banner-no-background-image .primary-heading {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner video (Optional depending on comps)
--------------------------------------------------------------- */
.banner-video .video-thumbnail {
  width: 300px;
}
.banner-video-cta.video-button {
  display: block;
}
@media only screen and (min-width: 1200px) {
  .banner-video {
    order: 99;
  }
}
.banner-has-background-image .banner-video {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .banner-video {
  /* Styles specific for when banner doesnt support background image */
}
/* Banner Content (Optional depending on comps)
--------------------------------------------------------------- */
.banner-content {
  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: 1.75rem;
}
.banner-buttons-touch {
  text-align: center;
}
.banner-buttons-touch:first-child {
  margin-top: -3.75rem;
}
.banner-buttons-touch:nth-last-child(n+2) {
  margin-bottom: 3.75rem;
}
@media only screen and (min-width: 768px) {
  .banner-buttons {
    margin-top: 2.25rem;
  }
  .banner-buttons .button:nth-child(n+2) {
    margin-left: 1rem;
  }
  .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: 1400px) {
  .banner-buttons {
    margin-top: 1.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .banner-buttons {
    margin-top: 2em;
  }
}
@media only screen and (max-width: 767px) {
  .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 .gform_wrapper {
  position: relative;
}
#banner-form .gform_title:last-child {
  margin-bottom: 0;
}
#banner-form .gform_description {
  max-width: 80ch;
}
#banner-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#banner-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#banner-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (max-width: 1199px) {
  #banner-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
/* ================================================================================
* Sidebar
================================================================================ */
/* Layout Sidebar
--------------------------------------------------------------- */
/* Sidebar Form
--------------------------------------------------------------- */
#sidebar-form {
  background: var(--color-secondary);
  color: var(--color-light);
  --widget-padding-x: 44px;
  --widget-padding-top: 3rem;
  --widget-padding-bottom: calc(var(--widget-padding-top) + .375rem);
}
@media only screen and (min-width: 1400px) {
  #sidebar-form {
    --widget-padding-x: 50px;
  }
}
@media only screen and (min-width: 1800px) {
  #sidebar-form {
    --widget-padding-top: 4.25rem;
    --widget-padding-bottom: 3.75rem;
  }
}
#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 {
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 1.4375rem;
  line-height: 1.3043478261;
  color: var(--color-primary-alt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
#sidebar-form .sidebar-field-form .gform_title:last-child {
  margin-bottom: 0;
}
#sidebar-form .sidebar-field-form .gform_description {
  max-width: 80ch;
}
#sidebar-form .sidebar-field-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#sidebar-form .sidebar-field-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 1.5rem;
}
#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 {
  text-align: center;
  margin-top: 10px;
}
@media only screen and (min-width: 1400px) {
  #sidebar-form .sidebar-field-form .gform_title {
    font-size: 1.625rem;
  }
}
@media only screen and (min-width: 1800px) {
  #sidebar-form .sidebar-field-form .gform_heading {
    margin-bottom: 3rem;
  }
  #sidebar-form .sidebar-field-form .gform_title {
    font-size: 1.875rem;
  }
}
@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
================================================================================ */
/* Contact  Related Classes

Note: 
This file is for styles applied globally for the contact information (both footer and contact page)
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-title {
  font-size: 1.125rem;
  color: var(--color-primary);
  font-weight: 700;
  display: inline;
}
:is(.content-palette-dark) .number-title {
  color: var(--color-primary-alt);
}
.number-link {
  display: inline-block;
}
/* Global Stylees - Social Links (ie. firm social media, blog share icons, etc)
-------------------------------------------------------------------------------- */
.social {
  font-size: 1.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  max-width: -moz-max-content;
  max-width: max-content;
}
.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));
}
/* Global Stylees - Locations
-------------------------------------------------------------------------------- */
.location .location-directions-button {
  margin-top: 2rem;
}
/* Confact Info Block - Titles
-------------------------------------------------------------------------------- */
.contact-block-title {
  font-size: 1rem;
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
}
:is(.content-palette-dark) .contact-block-title {
  color: var(--color-primary-alt);
}
@media only screen and (min-width: 768px) {
  .contact-block-title {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-block-title {
    font-size: 1.125rem;
  }
}
/* Confact Info Block - Basic Text Content
-------------------------------------------------------------------------------- */
.contact-block-content {
  flex: 1 1;
  font-size: 1.25rem;
  line-height: 1.4;
}
.contact-block-content a:not(.button) {
  color: inherit;
  text-decoration: none;
}
.contact-block-content a:not(.button):is(:hover, :focus) {
  text-decoration: underline;
}
.contact-block-content :where(p, address):where(:nth-last-child(n+3)) {
  margin-bottom: 1em;
}
/* Confact Info Block - Grid setup
-------------------------------------------------------------------------------- */
.contact-blocks {
  display: grid;
  grid-template-columns: 100%;
  justify-content: space-evenly;
  text-align: center;
  justify-items: space-evenly;
  row-gap: 2.75rem;
  align-items: stretch;
}
.contact-block, .contact-blocks {
  min-width: 0;
}
.contact-block {
  width: 100%;
}
.contact-block, .contact-block-content {
  display: flex;
  flex-direction: column;
}
.contact-block.contact-special {
  grid-column: 1/-1;
  text-align: center;
  max-width: 100%;
}
.contact-block.contact-special .logo {
  margin: 0 auto;
}
.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-number .number-title {
  display: block;
}
.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 .number-title {
  margin-bottom: 0;
  margin-right: 0.5em;
}
.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 {
  display: grid;
  justify-content: space-between;
  justify-items: space-between;
  -moz-column-gap: 7.75rem;
       column-gap: 7.75rem;
  row-gap: 2.75rem;
}
.contact-block.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);
}
@media only screen and (min-width: 768px) {
  .contact-blocks {
    grid-template-columns: repeat(2, auto);
  }
}
@media only screen and (min-width: 1800px) {
  .contact-block.contact-location .location-directions, .contact-block.contact-locations .location-directions {
    margin-top: auto;
  }
}
/* ================================================================================
* Footer
================================================================================ */
/* Branding logo sizes
--------------------------------------------------------------- */
.ilawyer-legacy,
.ilawyer,
.onep21 {
  color: var(--color-light);
}

.ilawyer-legacy,
.ilawyer {
  font-size: 1rem;
}

.onep21 {
  font-size: 3.125rem;
}

/* Layout Footer
--------------------------------------------------------------- */
.layout-footer {
  background-color: var(--scheme-bg-contrast, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
/* Footer Split - Top
--------------------------------------------------------------- */
.footer-top {
  padding-block: 5rem 3.625rem;
}
.footer-top-blocks {
  display: grid;
  grid-template-columns: 100%;
  gap: 6rem;
  justify-content: center;
}
.footer-top-blocks > * {
  min-width: 0;
}
.footer-top .container, .footer-top-container {
  --container-gutter: 50px;
}
@media only screen and (min-width: 768px) {
  .footer-top {
    padding-block: 4rem 6rem;
  }
  .footer-top .container, .footer-top-container {
    --container-gutter: 63px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-top {
    padding-block: 7.1875rem 6.75rem;
  }
  .footer-top .container, .footer-top-container {
    --container-gutter: 176px;
  }
  .footer-top-blocks {
    gap: 6.75rem;
  }
  .footer-top-blocks > *:only-child {
    grid-column: span 2;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-top {
    padding-block: 8.375rem 7.875rem;
  }
  .footer-top .container, .footer-top-container {
    --container-gutter: 200px;
  }
}
@media only screen and (min-width: 1800px) {
  .footer-top {
    padding-block: 8.875rem 8.5rem;
  }
  .footer-top .container, .footer-top-container {
    --container-gutter: 355px;
  }
}
/* Footer Form
--------------------------------------------------------------- */
@media only screen and (min-width: 768px) {
  #footer-form {
    background: var(--color-light);
    color: var(--color-dark);
    padding-block: 74px;
  }
}
@media only screen and (min-width: 1800px) {
  #footer-form {
    padding-block: 109px 87px;
  }
}
#footer-form .footer-field-form {
  max-width: 564px;
  margin-left: auto;
  margin-right: auto;
}
#footer-form .footer-field-form .gform_wrapper {
  position: relative;
}
#footer-form .footer-field-form .gform_title {
  font-size: 1.5rem;
  line-height: calc(1em + 6px);
  font-family: var(--font-accent);
  color: var(--color-primary-alt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2.5rem;
  padding-bottom: 0;
  border-bottom: 0;
}
#footer-form .footer-field-form .gform_title:last-child {
  margin-bottom: 0;
}
#footer-form .footer-field-form .gform_description {
  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;
  margin-top: 1rem;
}
#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_heading {
    margin-bottom: 4rem;
  }
  #footer-form .footer-field-form .gform_title {
    font-size: 1.75rem;
    color: var(--color-dark-alt);
  }
  #footer-form .footer-field-form .gform_title::after {
    content: "";
    width: 173px;
    height: 4px;
    background: var(--color-primary);
    margin: 0.9em auto 0;
    display: block;
  }
  #footer-form .footer-field-form .gform_body {
    max-width: 502px;
    margin-inline: auto;
  }
  #footer-form .footer-field-form .gform_footer {
    margin-top: -0.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form .footer-field-form {
    max-width: 100%;
  }
  #footer-form .footer-field-form .gform_title {
    font-size: 1.875rem;
  }
  #footer-form .footer-field-form .gform_body {
    max-width: 678px;
  }
  #footer-form .footer-field-form .gform_fields {
    row-gap: 2.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  #footer-form .footer-field-form .gform_heading {
    margin-bottom: 4.5rem;
  }
  #footer-form .footer-field-form .gform_title {
    font-size: 2.125rem;
  }
  #footer-form .footer-field-form .gform_body {
    max-width: 754px;
  }
}
@media only screen and (min-width: 1800px) {
  #footer-form .footer-field-form .gform_title {
    font-size: 2.375rem;
  }
  #footer-form .footer-field-form .gform_body {
    max-width: 824px;
  }
}
@media only screen and (max-width: 1199px) {
  #footer-form .footer-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;
  }
}
@media only screen and (max-width: 767px) {
  #footer-form .footer-field-form .gfield.required-message {
    text-align: center;
  }
}

/* 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 .contact-block.contact-numbers .number-link {
  font-size: 1.375rem;
  line-height: calc(1em + 14px);
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  .footer-contact {
    align-self: center;
  }
  .footer-contact .contact-block.contact-numbers .number-link {
    font-size: 1.5rem;
  }
}
/* Footer Split - Bottom
--------------------------------------------------------------- */
.footer-bottom {
  /* border separation all the way to the edge */
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}
/* Footer utility
--------------------------------------------------------------- */
.footer-utility {
  padding: 1.25rem 0;
  /* border separation */
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.6);
  text-transform: none;
  font-weight: 700;
}
.footer-utility:nth-child(n+2) {
  border-top: 1px solid;
}
.footer-utility-blocks {
  display: grid;
  row-gap: 0.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 {
    font-size: 0.9375rem;
  }
  .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;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-utility {
    padding: 2.25rem 0;
  }
  .footer-utility-blocks {
    grid-template-columns: 38em repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-utility-content {
    margin-right: auto;
    order: -1;
  }
  .footer-utility-content:first-child {
    grid-column: span 2;
  }
  .footer-utility .social {
    text-align: center;
  }
  .footer-utility .social::before {
    content: none;
  }
  .footer-utility :is(.ilawyer-legacy, .ilawyer, .onep21) {
    order: 99;
    justify-self: self-end;
    align-self: center;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-utility-blocks {
    text-align: center;
    justify-content: center;
    justify-items: center;
  }
}
/* Footer disclaimer
--------------------------------------------------------------- */
.footer-disclaimer {
  margin-top: 1em;
}
.footer-contact .contact-block.contact-locations {
  display: none;
}

/* ================================================================================
* 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 span:nth-child(n+2):before {
  content: "|";
  margin: 0 0.75em;
}
:is(.entry-meta-category, .entry-meta-author) a:not(:hover, :focus) {
  text-decoration: none;
}
.entry-title {
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: 1.1em;
}
.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-block: 2.6875rem;
}
.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:only-child {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 1199px) {
  .entry-thumbnail {
    --entry-thumbnail-aspect-w: 648;
    --entry-thumbnail-aspect-l: 260;
  }
}
/*!
* Default 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: 90px;
  --default-gap-y: 3.75rem;
  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%;
  width: 100%;
}
.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;
    width: var(--default-sidebar-width);
  }
  .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:not(.default-sections-full) .default-section-sidebar {
    max-width: var(--default-sidebar-width);
  }
  .default-sections:not(.default-sections-full) > .default-section:is(aside, .aside):not(:only-child) {
    padding-top: 0;
  }
  .default-sections:not(.default-sections-full) > .default-section:is(main, .main):not(:only-child) {
    padding-bottom: 0;
  }
}

/* Default Sections Customizations
--------------------------------------------------------------- */
.default-sections {
  --default-gap-y: 115px;
}
@media only screen and (min-width: 1200px) {
  .default-sections {
    --default-sidebar-width: 335px;
    --default-gap-y: 73px;
    --default-gap-x: 93px;
  }
}
@media only screen and (min-width: 1400px) {
  .default-sections {
    --default-sidebar-width: 380px;
    --default-gap-x: 100px;
    --default-gap-y: 90px;
  }
}
@media only screen and (min-width: 1800px) {
  .default-sections {
    --default-sidebar-width: 484px;
    --default-gap-x: 174px;
    --default-gap-y: 106px;
  }
}
@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: 2.25rem;
}
@media only screen and (min-width: 1400px) {
  .default-header {
    margin-bottom: 2.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .default-header {
    margin-bottom: 3.75rem;
  }
}
.ilaw-custom-template:not(.ilaw-template-home) .default-header {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 768px) {
  .ilaw-custom-template:not(.ilaw-template-home) .default-header {
    margin-bottom: 4.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .ilaw-custom-template:not(.ilaw-template-home) .default-header {
    margin-bottom: 4.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .ilaw-custom-template:not(.ilaw-template-home) .default-header {
    margin-bottom: 5.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  .ilaw-custom-template:not(.ilaw-template-home) .default-header {
    margin-bottom: 6.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .banner-has-h1.banner-button-shift .default-header {
    margin-bottom: 0;
  }
}
/*!
* Default Heading
-------------------------------------------------------------------------------- */
/*!
* Default subheading
-------------------------------------------------------------------------------- */
.default-subheading {
  margin-top: 0.2em;
}
@media only screen and (min-width: 768px) {
  .default-subheading {
    margin-top: 0.58em;
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .default-subheading {
    font-size: 1.25rem;
  }
}
/*!
* Default Divider - Optional
-------------------------------------------------------------------------------- */
.default-divider {
  --fancy-border-margin-y: 2.25rem;
  --fancy-border-width: 100%;
}
@media only screen and (min-width: 768px) {
  .default-divider {
    --fancy-border-margin-y: 1.8125rem;
  }
}
/*!
* Search Form
* Although optional, some builds may include this OR request this in the long run. Since it's built in to wordpress, we might as well at least give it some basic styles. Overhaul as needed
-------------------------------------------------------------------------------- */
.searchform {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}
.searchform:nth-last-child(n+2) {
  margin-bottom: 2rem;
}
.searchform .button {
  order: 99;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.searchform input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=image]):not([type=file]) {
  --field-border-radius: .5rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  align-self: stretch;
  margin: 0;
}

/* ================================================================================
* Includes 
================================================================================ */
/* Awards slider
--------------------------------------------------------------- */
.carousel {
  /* height of award. best to set to the tallest award logo provided  */
  --carousel-height: 118px;
  --carousel-arrow-offset-x: var(--container-gutter,25px);
  /* 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. not supported on slick */
  --swiper-pagination-margin: 50px;
  overflow: hidden;
}
.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-slide-image {
  height: var(--carousel-height);
}
.carousel-slide-image > :where(*) {
  pointer-events: none;
}
.carousel-slide-image, .carousel-slide-image picture {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.carousel-slide-image :where(svg, object, img) {
  height: auto !important;
}
.carousel-slide-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.carousel-slide-image :where(img, svg, object, picture) {
  width: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  align-self: center;
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) {
  .carousel {
    --swiper-pagination-margin: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .carousel {
    --carousel-height: 133px;
    --swiper-pagination-margin: 83px;
  }
}
@media only screen and (min-width: 1800px) {
  .carousel {
    --carousel-height: 165px;
  }
}
/* Carousel Variations
--------------------------------------------------------------- */
/* remove jpg white backgrounds. This fix will only work if the awards are on light backgrounds */
.carousel.carousel-style-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/responsive-background
--------------------------------------------------------------- */
.responsive-background {
  pointer-events: none;
  overflow: hidden;
  transform-style: preserve-3d;
  z-index: -1;
}
.responsive-background-wrapper {
  position: relative;
  z-index: 0;
}
.responsive-background, .responsive-background-bg {
  position: absolute !important;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.responsive-background-bg {
  /* Note: when styling instances of this block, make sure properties are NOT set as shorthand to avoid override issues */
  background-size: cover;
  background-position: 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) {
  :is(.responsive-background-animated-on-loaded, .responsive-background-animated-on-visible.visible) .responsive-background-bg {
    /* make background block animate for document ready or when visible*/
    transition: opacity ease-in-out 1.5s, transform ease-in-out 1.5s;
    opacity: 1;
    transform: scale(1);
    transform-style: preserve-3d;
  }
  :is(html:not(.doc-images-loaded) .responsive-background-animated-on-loaded, responsive-background-animated-on-visible) .responsive-background-bg {
    /* hide if not ready to let the world to know got to let it show */
    opacity: 0;
    transform: scale(1.125);
  }
}

/*
* Case Result Icon
-------------------------------------------------------------------------------- */
.result-icon {
  font-size: 3rem;
  margin-bottom: 0.25rem;
}
/*
* Case Result Value
-------------------------------------------------------------------------------- */
.result-value {
  font-size: 3.125rem;
  line-height: 1.2142857143;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0;
}
.result-value-confidential {
  font-size: 1.5rem;
}
@media only screen and (min-width: 1400px) {
  .result-value {
    margin-bottom: 0.5rem;
  }
}
/*
* Case Result Type
-------------------------------------------------------------------------------- */
/*
* Case Result Title - Optional
-------------------------------------------------------------------------------- */
.result-title {
  font-size: 1rem;
  line-height: 1.25;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .result-title {
    font-size: 1.0625rem;
  }
}
/*
* 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 {
  margin-bottom: auto;
}
.result-details {
  margin-top: 1.375rem;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
@media only screen and (min-width: 1800px) {
  .result-details {
    margin-top: 2.5rem;
  }
}
/*
* includes/repeater-result
-------------------------------------------------------------------------------- */
.result {
  text-align: center;
  position: relative;
}
.result-container {
  display: flex;
  min-width: 0;
}
.result-container {
  flex: 1 1;
  flex-direction: column;
}
.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;
}
/*
* Practice Area Skeleton. Do not Edit
-------------------------------------------------------------------------------- */
.practice-area-title {
  padding-left: var(--pa-title-padding-x);
  padding-right: 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-top: calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * var(--pa-item-baseline-offset));
  padding-bottom: calc((var(--pa-item-height) - 1em * var(--pa-item-lines) * var(--pa-item-line-height)) * (1 - var(--pa-item-baseline-offset)));
  padding-left: var(--pa-item-padding-x);
  padding-right: 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: 2rem;
  /* horizontal padding for the practice area title */
  --pa-title-padding-x: 0px;
  /* 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: 57px;
  /* Note: this value has to be unitless for calc values to work.
  	* Number of lines to compensate for the item height */
  --pa-item-lines: 1;
  /* 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);
  font-size: 1.125rem;
  font-weight: 700;
}
@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-title {
  font-size: 1.25rem;
  font-family: var(--font-accent);
  color: var(--color-dark-alt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  --fancy-border-margin-y: 1.3em;
  margin-bottom: 2.25rem;
}
/*
* Practice Area Menu
-------------------------------------------------------------------------------- */
.practice-area-menu li {
  border-bottom: 1px solid var(--color-neutral);
}
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--color-primary);
}
/*
* includes/repeater-practice-area
-------------------------------------------------------------------------------- */
.practice-area {
  width: 100%;
}
.practice-area, .practice-area-container {
  display: flex;
  min-width: 0;
}
.practice-area-container {
  flex: 1 1;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .practice-area {
    text-align: center;
  }
}

/* Pagination
-------------------------------------------------------------------------------- */
/* pagination skeletion. no need to edit */
.pagination {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  text-align: center;
  clear: both;
  margin-left: auto;
  margin-right: auto;
}
.pagination-block {
  grid-row: 1;
}
.pagination-block-left {
  grid-column: 1;
  text-align: left;
}
.pagination-block-center {
  grid-column: 2;
}
.pagination-block-right {
  grid-column: 3;
  text-align: right;
}
.pagination-num-list.pagination-block-left span:first-child,
.pagination-num-list.pagination-block-left a:first-child {
  margin-left: 0;
}
.pagination-num-list.pagination-block-right span:last-child,
.pagination-num-list.pagination-block-right a:last-child {
  margin-left: 0;
}
@media only screen and (max-width: 1199px) {
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
  }
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-child(2) a:nth-last-child(n+2), .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) span:nth-last-child(n+2),
  .pagination-nav-link:is(.pagination-block-left, .pagination-block-right):nth-last-child(2) a:nth-last-child(n+2) {
    margin-right: 0.5em;
  }
}
/* pagination styles. customize as needed */
.pagination {
  font-size: 0.875rem;
  font-family: var(--font-primary);
  font-weight: 700;
  border-top: 1px solid var(--color-neutral-light);
  padding-top: 2rem;
  margin-top: 3rem;
  max-width: 1400px;
}
.pagination .current,
.pagination a:is(:hover, :focus) {
  color: var(--color-primary);
}
.pagination-num-list a,
.pagination-num-list span {
  margin: 0 0.5em;
}
/*
* Profile Image
-------------------------------------------------------------------------------- */
.profile-image {
  --profile-image-aspect-w: 336;
  --profile-image-aspect-l: 384;
  --profile-image-position: 50% 15%;
  --profile-image-overlay-background: var(--color-dark-alt);
  --profile-image-overlay-opacity: .61;
  max-width: 100%;
  width: calc(1px * var(--profile-image-aspect-w));
  display: block;
  position: relative;
}
.profile-image::before {
  /* aspect ratio keeper + hover overlay */
  content: "";
  display: block;
  position: relative;
  padding-top: calc(100% * var(--profile-image-aspect-l) / var(--profile-image-aspect-w));
}
.profile-image-img, .profile-image-placeholder, .profile-image-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.profile-image-img, .profile-image-placeholder-img {
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
  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-size: 0.875rem;
  line-height: 1.4285714286;
  font-family: var(--font-secondary);
  color: var(--color-primary-alt);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.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);
}
.profile-image[href] .profile-view {
  /*  */
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -moz-min-content;
  height: min-content;
}

/*
* Profile View text
-------------------------------------------------------------------------------- */
/*
* Profile Thumbnail
-------------------------------------------------------------------------------- */
.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-name {
  font-size: 1.75rem;
  font-family: var(--font-accent);
  color: var(--color-dark);
  font-weight: 500;
  align-content: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) {
  .profile-name {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .profile-name {
    font-size: 2rem;
  }
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-position {
  margin-bottom: 0;
}
/*
* includes/repeater-profile
-------------------------------------------------------------------------------- */
.profile:is(:hover, :focus-within) {
  /* styles when the profile has a link */
}
.profile, .profile-container {
  display: flex;
  min-width: 0;
}
.profile-container {
  flex: 1 1;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.profile-info {
  flex: 1 1;
}
.profile-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
}
@media only screen and (min-width: 1800px) {
  .profile-container {
    gap: 1rem;
  }
}
/*
* Testimonial Stars
-------------------------------------------------------------------------------- */
.testimonial-stars {
  font-size: 1.5625rem;
  margin-bottom: 1.875rem;
}
/*
* Testimonial Highlight / Main quote
-------------------------------------------------------------------------------- */
.testimonial-highlight {
  font-size: 1.375rem;
  line-height: 1.286;
  font-family: var(--font-accent);
  color: inherit;
  text-align: inherit;
  margin-block: 0;
}
@media only screen and (min-width: 768px) {
  .testimonial-highlight {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-highlight {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1800px) {
  .testimonial-highlight {
    font-size: 2.1875rem;
  }
}
/*
* Testimonial Quote Body / other parts of the quote
-------------------------------------------------------------------------------- */
.testimonial-quote {
  margin-top: 1rem !important;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.0625rem;
    line-height: 1.5294117647;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    margin-top: 1.875rem !important;
  }
}
/*
* Testimonial Divider - Optional
-------------------------------------------------------------------------------- */
/*
* Testimonial Source
-------------------------------------------------------------------------------- */
.testimonial-source {
  margin-bottom: 0;
}
.testimonial-source:is(.cite)::before {
  width: 98px;
}
.testimonial-source span:nth-child(n+2)::before {
  content: "|";
  margin: 0 0.75em;
}
/*
* includes/repeater-testimonial
-------------------------------------------------------------------------------- */
.testimonial, .testimonial-container {
  display: flex;
  min-width: 0;
}
.testimonial-container {
  margin-block: 0;
  flex: 1 1;
  flex-direction: column;
  align-items: center;
}
.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 .testimonial-highlight {
    max-width: 60ch;
  }
  .testimonial .testimonial-quote {
    width: 80%;
    max-width: 87ch;
  }
}
/* Video Button - Default (One that doesnt have custom markup in it, just the usual one with a play symbol)
--------------------------------------------------------------- */
.video-button-default {
  --video-button-size: 100px;
  /* 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.16em;
  /* width for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-color: currentColor;
  /* color of the video button glyph. Used as a background-color so it can take gradients too */
  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-dark);
}
.video-button-default:is(.video-button-no-api) {
  pointer-events: none;
}
@media only screen and (min-width: 1400px) {
  .video-button-default {
    --video-button-size: 120px;
  }
}
.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);
  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: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
}
.video-button-default-text-html span:nth-child(odd) {
  right: 100%;
  margin-right: 1em;
}
.video-button-default-text-html span:nth-child(even) {
  left: 100%;
  margin-left: 1em;
}
.video-button-default-image {
  transition: all 0.25s ease-in-out;
}
.video-button-default-image-init, .video-button-default:is(:hover, :focus) .video-button-default-image-hover, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-hover {
  opacity: 1;
}

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

.video-button-default.video-button-default-no-icon {
  /* these are basic styles. overhaul as needed */
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
}
.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 background */
  /* these are basic styles. overhaul as needed */
  background: linear-gradient(to bottom, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
  top: 0.1em;
  bottom: 0.1em;
  left: 0.1em;
  right: 0.1em;
}
.video-button-default.video-button-default-no-icon::after {
  /* other element for fx */
  /* these are basic styles. overhaul as needed */
  opacity: 0.5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.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 */
  /* these are basic styles. overhaul as needed */
  box-shadow: 0 0 0 0.2em rgba(255, 255, 255, 0.2);
}
.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 */
  transform: scale(1.25);
}
.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.95);
}

/* Video Thumbnail
--------------------------------------------------------------- */
.video-thumbnail {
  --video-thumbnail-aspect-w: 410;
  --video-thumbnail-aspect-l: 272;
  --video-thumbnail-overlay-background: var(--color-dark-alt) linear-gradient(to bottom right, var(--color-dark), var(--color-dark-alt));
  --video-thumbnail-overlay-opacity: .8;
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--color-light-alt);
  cursor: pointer;
}
.video-thumbnail::before {
  /* aspect ratio keeper  */
  content: "";
  display: block;
  padding-top: calc(100% * var(--video-thumbnail-aspect-l) / var(--video-thumbnail-aspect-w));
}
.video-thumbnail-markup {
  overflow: hidden;
}
.video-thumbnail-markup[href]::after, .video-thumbnail-markup.wistia_embed::after {
  /* overlay */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background-color: var(--color-primary);
  background: var(--video-thumbnail-overlay-background);
  opacity: 0;
  mix-blend-mode: multiply;
  transition: 0.25s ease-in-out all;
}
.video-thumbnail-markup-img img {
  max-width: none;
}
.video-thumbnail:is(:hover, :focus) .video-thumbnail-markup::after, .video-pointer-reference:is(:hover, :focus-within) .video-thumbnail .video-thumbnail-markup::after {
  opacity: var(--video-thumbnail-overlay-opacity);
}
.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: 80px;
}
@media only screen and (min-width: 1800px) {
  .video-thumbnail .video-button-default {
    --video-button-size: 110px;
  }
}
/* force object fit cover where we need to, im looking at you wistia
--------------------------------------------------------------- */
.video-thumbnail-markup,
.video-thumbnail-markup > *,
.video-thumbnail-markup img,
.video-button-image {
  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;
}
.video-container {
  flex: 1 1;
  flex-direction: column;
}
.video-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  text-align: center;
  margin-bottom: 0;
  padding: 1em 0;
}

/* ================================================================================
* 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
--------------------------------------------------------------- */
/* ================================================================================
* Home Template
================================================================================ */
/*
* Home Related Classes
-------------------------------------------------------------------------------- */
:where(.home-section) {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
:where(.home-section) .section-header {
  margin-bottom: 50px;
  text-align: center;
}
:where(:where(.home-section) .section-heading) {
  display: block;
  padding-bottom: 0;
  font-size: 1.625rem;
  line-height: 1;
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
:where(:where(.home-section) .section-heading):is(.fancy-border) {
  --fancy-border-margin-y: 1em;
  --fancy-border-width: 173px;
}

:where(.home-section) .section-footer {
  margin-top: 0.875rem;
}
@media only screen and (min-width: 768px) {
  :where(.home-section) .section-header {
    margin-bottom: 67px;
  }
  :where(:where(.home-section) .section-heading) {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  :where(:where(.home-section) .section-heading) {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1400px) {
  :where(.home-section) .section-header {
    margin-bottom: 91px;
  }
  :where(:where(.home-section) .section-heading) {
    font-size: 2.125rem;
  }
}
@media only screen and (min-width: 1800px) {
  :where(.home-section) .section-header {
    margin-bottom: 105px;
  }
  :where(:where(.home-section) .section-heading) {
    font-size: 2.375rem;
  }
}
@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 */
  }
}

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

#home-banner {
  --banner-offset: 0px;
  margin-bottom: calc(var(--banner-offset) * -1);
}
#home-banner + main {
  position: relative;
}
#home-banner .banner-main:after {
  content: "";
  height: var(--banner-offset);
  display: block;
  flex: 0 0 auto;
  width: 100%;
}
#home-banner .banner-main {
  min-height: 432px;
  padding-top: calc(3rem + var(--layout-header-height));
  padding-bottom: 4.25rem;
}
#home-banner .primary-heading {
  font-size: 2.8125rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-secondary);
  color: var(--color-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  margin-top: 14px;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
#home-banner .banner-buttons {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 768px) {
  #home-banner .banner-main {
    min-height: 553px;
  }
  #home-banner .primary-heading {
    font-size: 3.4375rem;
    line-height: 1.1818181818;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .banner-main {
    min-height: 621px;
    padding-top: calc(3rem + var(--layout-header-height));
    padding-bottom: 5rem;
    justify-content: center;
    align-items: start;
  }
  #home-banner .banner-main-container {
    --container-gutter: 95px;
  }
  #home-banner .banner-main-block:only-child {
    justify-self: center;
  }
  #home-banner .banner-body {
    /* align left on a breakpoint */
    text-align: center;
    align-items: center;
  }
  #home-banner .primary-heading {
    font-size: 4.0625rem;
    line-height: 1.1538461538;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .banner-main {
    min-height: 707px;
  }
  #home-banner .primary-heading {
    font-size: 4.6875rem;
    line-height: 1.1333333333;
  }
}
@media only screen and (min-width: 1800px) {
  #home-banner .banner-main {
    min-height: 900px;
  }
  #home-banner .banner-main-container {
    --container-gutter: 230px;
  }
  #home-banner .primary-heading {
    font-size: 5.3125rem;
    line-height: 1.1176470588;
  }
}
#home-page {
  padding-top: 0;
  padding-bottom: 0;
}
/*
* Home Section 1
-------------------------------------------------------------------------------- */
#home-section-1 {
  padding-bottom: 3rem;
  padding-top: 3.5rem;
  background: var(--color-light-alt);
  text-align: center;
}
#home-section-1 .swiper {
  padding: 20px;
  margin: -20px;
}
#home-section-1 .section-button {
  margin-top: 1.5rem;
}
#home-section-1 .section-blocks {
  padding: 5vw 3rem;
  min-height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
#home-section-1 .section-item {
  background: var(--color-light);
  padding: 2.5rem 1.5rem 3rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
#home-section-1 .section-item-icon {
  font-size: 63px;
  margin-bottom: 25px;
}
#home-section-1 .section-item-divider {
  --fancy-border-width: 98px;
  margin-top: 15px;
  margin-bottom: 24px;
}
#home-section-1 .section-item-title {
  line-height: 36px;
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
#home-section-1 .section-item-description {
  max-width: 18em;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  #home-section-1 {
    padding-block: 85px;
  }
  #home-section-1 .section-item {
    align-self: stretch;
  }
  #home-section-1 .section-item-icon {
    font-size: 63px;
  }
  #home-section-1 .section-item-title {
    font-size: 1.1875rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-1 .section-item {
    padding-inline: 38px;
  }
  #home-section-1 .section-item-icon {
    font-size: 75px;
  }
}
@media only screen and (min-width: 1800px) {
  #home-section-1 {
    padding-block: 90px;
  }
  #home-section-1 .section-item {
    padding-block: 60px 67px;
  }
  #home-section-1 .section-item-icon {
    font-size: 93px;
    margin-bottom: 37px;
  }
  #home-section-1 .section-item-title {
    font-size: 1.375rem;
  }
  #home-section-1 .section-item-button {
    margin-top: 1.75rem;
  }
}
/*
* Home Section 2
-------------------------------------------------------------------------------- */
#home-section-2 {
  padding-top: 4.25rem;
  padding-bottom: 4.25rem;
}
#home-section-2 .section-heading {
  font-size: 2.5rem;
  margin-bottom: 27px;
}
#home-section-2 .section-footer {
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  #home-section-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  #home-section-2 .section-heading {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-2 {
    padding-top: 8.25rem;
    padding-bottom: 8.25rem;
  }
  #home-section-2 .section-heading {
    font-size: 3.125rem;
  }
  #home-section-2 .section-footer {
    order: 99;
    grid-column: span 2;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-2 {
    padding-top: 8.75rem;
    padding-bottom: 8.75rem;
  }
  #home-section-2 .section-heading {
    font-size: 3.4375rem;
  }
}
@media only screen and (min-width: 1800px) {
  #home-section-2 {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
  #home-section-2 .section-heading {
    font-size: 3.75rem;
  }
}
@media only screen and (max-width: 1199px) {
  #home-section-2 .section-header {
    /* set centering as a scaffolding setting for all sections */
  }
}
#home-section-3 {
  padding-block: 70px 50px;
  background: var(--color-dark-alt);
  color: var(--color-light);
}
#home-section-3 .profile {
  background: var(--color-light);
  color: var(--color-dark);
  padding: 0.875rem;
}
#home-section-3 .swiper {
  --swiper-pagination-margin: 55px ;
}
@media only screen and (min-width: 768px) {
  #home-section-3 {
    padding-block: 91px 99px;
  }
  #home-section-3 .section-container {
    --container-gutter: 63px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-3 {
    padding-block: 102px 125px;
  }
  #home-section-3 .section-content {
    max-width: 710px;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1800px) {
  #home-section-3 {
    padding-block: 138px 173px;
  }
  #home-section-3 .profile {
    padding-bottom: 1.75rem;
  }
  #home-section-3 .profile-name {
    font-size: 1.75rem;
  }
  #home-section-3 .section-content {
    max-width: 833px;
  }
}

#home-section-4 {
  padding-block: 90px;
}
#home-section-4 .section-container {
  --container-gutter: 35px;
}
#home-section-4 .section-heading {
  padding-bottom: 0;
}
#home-section-4 .section-heading::after {
  display: none;
}
#home-section-4 .section-header {
  margin-bottom: 18px;
  margin-left: 0;
  text-align: left;
}
#home-section-4 .section-slider .testimonial-container, #home-section-4 .section-slider .testimonial {
  text-align: left;
  align-items: start;
}
#home-section-4 .section-slider .testimonial-highlight {
  font-size: 1.875rem;
  margin-bottom: 26px;
}
#home-section-4 .section-slider .testimonial-source {
  font-size: 1rem;
  line-height: 1.6875;
  font-family: var(--font-accent);
  font-weight: 700;
  border-top: 2px solid var(--color-primary);
  padding-top: 8px;
}
@media only screen and (min-width: 768px) {
  #home-section-4 {
    padding-block: 113px 97px;
  }
  #home-section-4 .section-container {
    --container-gutter: 131px;
  }
  #home-section-4 .section-header {
    margin-bottom: 33px;
  }
  #home-section-4 .section-heading {
    font-size: 1.0625rem;
  }
  #home-section-4 .section-slider .testimonial-highlight {
    padding: 0;
    font-size: 2.1875rem;
    margin-bottom: 33px;
  }
  #home-section-4 .section-slider .testimonial-source {
    border-top: 0;
    display: flex;
    align-items: center;
    gap: 27px;
    font-size: 1.125rem;
  }
  #home-section-4 .section-slider .testimonial-source::before {
    content: "";
    width: 98px;
    height: 2px;
    background: var(--color-primary);
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-4 {
    --default-image-width: 489px;
    --default-section-gap: 127px;
    padding-block: 0;
  }
  #home-section-4 .section-container {
    --container-size-reference: calc(var(--comp) - var(--default-image-width));
  }
  #home-section-4 .section-header {
    margin-bottom: 26px;
  }
  #home-section-4 .section-blocks {
    display: grid;
    grid-template-columns: var(--default-image-width) 1fr;
  }
  #home-section-4 .section-block-right {
    padding-block: 138px 116px;
  }
  #home-section-4 .section-block-right .container {
    --container-gutter: var(--default-section-gap);
  }
  #home-section-4 .section-slider .testimonial-highlight {
    font-size: 2.1875rem;
    margin-bottom: 14px;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-4 {
    --default-image-width: 565px;
    --default-section-gap: 124px;
  }
  #home-section-4 .section-header {
    margin-bottom: 26px;
  }
  #home-section-4 .section-block-right {
    padding-block: 129px;
  }
  #home-section-4 .section-slider .testimonial-highlight {
    font-size: 2.8125rem;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1800px) {
  #home-section-4 {
    --default-image-width: 774px;
    --default-section-gap: 250px;
  }
  #home-section-4 .section-slider .testimonial-highlight {
    font-size: 3.125rem;
  }
}
@media only screen and (max-width: 767px) {
  #home-section-4 .section-slider .testimonial-source::before {
    display: none;
  }
}

#home-section-5 {
  padding-block: 56px 50px;
  background: var(--color-light-alt);
}
#home-section-5 .swiper {
  padding: 20px;
  margin: -20px;
}
#home-section-5 .section-slider .result {
  background: var(--color-light);
  padding: 3rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
#home-section-5 .section-slider .result-value {
  font-size: 3.4375rem;
}
#home-section-5 .section-slider .result-description {
  max-width: 34ch;
}
@media only screen and (min-width: 768px) {
  #home-section-5 {
    padding-block: 75px 65px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-5 {
    padding-block: 90px 83px;
  }
  #home-section-5 .section-slider .result {
    padding: 4.5625rem 2.01rem;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-5 {
    padding-block: 94px;
  }
  #home-section-5 .section-slider .result {
    padding-inline: 3rem;
  }
  #home-section-5 .section-slider .result-value {
    font-size: 3.75rem;
  }
}
@media only screen and (min-width: 1800px) {
  #home-section-5 {
    padding-block: 153px 168px;
  }
  #home-section-5 .section-slider .result {
    padding-block: 4.5rem 5.5rem;
    padding-inline: 2.35rem;
  }
  #home-section-5 .section-slider .result-value {
    font-size: 4.375rem;
    line-height: 1.2142857143;
  }
  #home-section-5 .section-slider .result-title {
    margin-bottom: 2.5rem;
  }
}

.home-section-awards {
  padding-block: 75px 65px;
}
@media only screen and (min-width: 768px) {
  .home-section-awards {
    padding-block: 100px 75px;
  }
}
@media only screen and (min-width: 1200px) {
  .home-section-awards {
    padding-block: 120px 87px;
  }
}
@media only screen and (min-width: 1400px) {
  .home-section-awards {
    padding-block: 112px 92px;
  }
}
@media only screen and (min-width: 1800px) {
  .home-section-awards {
    padding-block: 156px 122px;
  }
  .home-section-awards .section--container {
    --container-gutter: 150px;
  }
}

/* ================================================================================
* 404
================================================================================ */
/*
* 404 Related Classes
-------------------------------------------------------------------------------- */
/*
* 404 Page
-------------------------------------------------------------------------------- */
body.error404 {
  /* body selector for 404 template */
}

#error404-page {
  text-align: center;
}
/* ================================================================================
* Case Results + Case Results Template
================================================================================ */
/*
* Case Results Template
-------------------------------------------------------------------------------- */
body.ilaw-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: 5rem;
  --columns-gap-y: 50px;
  justify-content: center;
}
#results-page .result {
  padding-bottom: 0;
  text-align: left;
}
#results-page .result:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
#results-page .result-description {
  /* max-width: 40ch; */
  /* margin-left: auto; */
  /* margin-right: auto; */
}
@media only screen and (min-width: 768px) {
  #results-page .section-header {
    margin-bottom: 53px;
  }
}
@media only screen and (min-width: 1200px) {
  #results-page .results:is(.columns) {
    --columns-gap-y: 63px;
  }
  #results-page .section-container {
    --container-gutter: 165px;
  }
}
@media only screen and (min-width: 1400px) {
  #results-page .section-container {
    --container-gutter: 265px;
  }
  #results-page .section-header {
    margin-bottom: 78px;
  }
}
@media only screen and (min-width: 1800px) {
  #results-page .results:is(.columns) {
    --columns-gap-y: 75px;
  }
  #results-page .section-header {
    margin-bottom: 60px;
  }
}
/* ================================================================================
* 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: 2rem;
}
#practice-areas-page .practice-area:nth-last-child(n+2) {
  margin-bottom: 4rem;
}
@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:nth-last-child(n+2) {
    margin-bottom: 7.25rem;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
  #practice-areas-page .section-container {
    --container-gutter: 180px;
  }
}
@media only screen and (min-width: 1400px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-gap-x: 3rem;
  }
  #practice-areas-page .section-container {
    --container-gutter: 280px;
  }
}
@media only screen and (min-width: 1800px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-gap-x: 7rem;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+3) {
    border-top: 0;
  }
}
/* ================================================================================
* Testimonials + Testimonial Template
================================================================================ */
/*
* Testimonials Template
-------------------------------------------------------------------------------- */
body.ilaw-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: 1.5rem;
  --columns-gap-y: 2rem;
}
#testimonials-page .testimonials-featured {
  text-align: center;
}
#testimonials-page .testimonials {
  margin-left: auto;
  margin-right: auto;
  max-width: 51.875rem;
}
#testimonials-page .testimonial {
  padding-bottom: calc(var(--columns-gap-y) + 0.25rem);
}
@media only screen and (min-width: 768px) {
  #testimonials-page .testimonials {
    margin-top: 3rem;
  }
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-y: 2.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-y: 2.5rem;
  }
}
@media only screen and (min-width: 1800px) {
  #testimonials-page .testimonials:is(.columns) {
    --columns-gap-y: 3.125rem;
  }
}
/* ================================================================================
* Profiles/ Team Grid + Profiles/ Team Grid Template
================================================================================ */
/*
* Team/Profiles Groups - Optional
-------------------------------------------------------------------------------- */
.team-group:nth-child(n+2) {
  margin-top: 4rem;
}
.team-title {
  margin-bottom: 2rem;
}
.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 .team-group {
  margin-top: 3rem;
  max-width: 730px;
  margin-inline: auto;
}
#team-page .profiles:is(.columns) {
  --columns-gap-x: 3.25rem;
  --columns-gap-y: 2.375rem;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 2;
    justify-content: flex-start;
    --columns-gap-x: 42px;
    --columns-gap-y: 54px;
  }
}
@media only screen and (min-width: 1400px) {
  #team-page .profiles:is(.columns) {
    --columns-gap-x: 3rem;
    --columns-gap-y: 72px;
  }
}
@media only screen and (min-width: 1800px) {
  #team-page .reamp-group {
    max-width: 41.25rem;
  }
  #team-page .profiles:is(.columns) {
    --columns-gap-x: 50px;
    --columns-gap-y: 78px;
  }
}
/* ================================================================================
* Profile Detail Template
================================================================================ */
/*
* Profile Contact Info
-------------------------------------------------------------------------------- */
.profile-contact a:not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}
.profile-contact-label {
  margin-right: 0.5em;
}
/*
* Profile Detail Template
-------------------------------------------------------------------------------- */
body.ilaw-template-profile {
  /* body selector for profile template */
}

#profile-banner {
  /* selector for profile banner if enabled */
}
#profile-page {
  /* template main styles */
}
#profile-page .profile-image {
  --profile-image-aspect-w: 279;
  --profile-image-aspect-l: 319;
  margin-bottom: 2rem;
}
#profile-page .list-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 73px;
}
#profile-page .list-item {
  border-top: 4px solid var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
  padding-top: 20px;
}
#profile-page .default-buttons {
  display: none;
}
#profile-page .section-heading {
  max-width: none;
  border-bottom: 0;
}
#profile-page .section-subheader {
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  #profile-page .list-item {
    padding-block: 40px 20px;
  }
  #profile-page .section-heading {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #profile-page .profile-image {
    margin-inline: auto;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-page .profile-image {
    --profile-image-aspect-w: 326;
    --profile-image-aspect-l: 372;
  }
}
@media only screen and (min-width: 1800px) {
  #profile-page .profile-image {
    --profile-image-aspect-w: 336;
    --profile-image-aspect-l: 384;
  }
}
@media only screen and (max-width: 1199px) {
  #profile-page .profile-image {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ================================================================================
* 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: 2rem;
  --columns-gap-y: 1.75rem;
  justify-content: center;
}
#videos-page .section-header {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (max-width: 767px) {
  #videos-page .video {
    max-width: 400px;
  }
}

/* ================================================================================
* About Template
================================================================================ */
/*
* About Related Classes
-------------------------------------------------------------------------------- */
.about-section .section-heading:last-child:not(.primary-heading) {
  margin-bottom: 0;
}
/*
* About Template
-------------------------------------------------------------------------------- */
body.ilaw-template-about {
  /* body selector for about template */
}

#about-banner {
  /* selector about banner if enabled */
}
#about-page {
  padding-top: 0;
  padding-bottom: 0;
}
/* ================================================================================
Contact Template
================================================================================ */
/* Contact Template

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
-------------------------------------------------------------------------------- */
body.ilaw-template-contact {
  /* body selector for contact template */
}

#contact-banner {
  /* selector for contact banner if enabled */
}
#contact-page {
  /* template main styles */
}
#contact-page .section-heading {
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 2.1875rem;
  font-family: var(--font-accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
#contact-page .contact-block-title {
  font-weight: 700;
}
@media only screen and (min-width: 1200px) {
  #contact-page .contact-blocks {
    grid-template-columns: repeat(3, auto);
  }
  #contact-page .contact-block.contact-locations .contact-block-content {
    justify-content: normal;
  }
}
@media only screen and (max-width: 1399px) {
  #contact-page .contact-block {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  #contact-page .contact-blocks {
    grid-template-columns: 100%;
  }
}

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