/*! 
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
 */
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html,
iframe, canvas,
img, svg, video, audio,
input, textarea, select, button,
table, caption, tbody, tfoot, thead, tr, th, td):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ================================================================================
* Native Custom CSS Properties
================================================================================ */
/* css vars because internet explorer can no longer hold us back <3 */
:root {
  /* Core Vars DO NOT EDIT. */
  /* Design Reference - Breakpoints This will be used by javascript to track media queries on stuff like sliders */
  --br-xxs: 359px;
  --br-xs: 767px;
  --br-sm: 1199px;
  --br-md: 1399px;
  --br-lg: 1919px;
  --br-xl: 2879px;
  --br-xxl: 3839px;
  /* Design Reference: Comps/Design Sizes based on given XD Files' artboards */
  --comp: 360px;
  /* Styleguide - Fonts */
  --font-primary: Switzer, Helvetica, Arial, sans-serif;
  --font-secondary: var(--font-primary);
  --font-accent: var(--font-primary);
  --font-monospace: monospace;
  /* Styleguide - colors */
  --color-dark: #051E36;
  --color-dark-alt: #183E6C;
  --color-light: #FFFFFF;
  --color-light-alt: #F8F8F8;
  --color-primary: #BA0000;
  --color-primary-alt: #FF0000;
  --color-primary-gradient-start: var(--color-primary-alt);
  --color-primary-gradient-end: var(--color-primary);
  --color-secondary: #004986;
  --color-secondary-alt: #BEE1FF;
  --color-secondary-gradient-start: var(--color-secondary);
  --color-secondary-gradient-end: var(--color-secondary-alt);
  --color-accent: #A11E21;
  --color-accent-alt: var(--color-primary);
  --color-accent-gradient-start: #D90000;
  --color-accent-gradient-end: var(--color-accent);
  --color-neutral: #CCCCCC;
  --color-neutral-light: #a3a3a3;
  --color-neutral-lighter: #F1F2F2;
  --color-neutral-lightest: var(--color-neutral-lighter);
  --color-neutral-dark: #CCD0D3;
  --color-neutral-darker: var(--color-neutral-dark);
  --color-neutral-darkest: var(--color-neutral-darker);
  --color-success: #0C0;
  --color-caution: #C60;
  --color-error: var(--color-primary);
  /* add more native vars as needed */
}
@media only screen and (min-width: 768px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 768px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1200px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1400px;
    /* add more native vars as needed */
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    /* Core Vars DO NOT EDIT. */
    --comp: 1920px;
    /* add more native vars as needed */
  }
}

/* ================================================================================
* Global Styles/Normalize:
* Custom reset and global styles for the site html tags
================================================================================ */
/* Custom scaffolding and normalizing styles
--------------------------------------------------------------- */
html,
body {
  /* prevent document from shrinking to window sizes that are too small */
  min-width: 320px;
  /* cascade global font family, color, and background to reduce appearance of broken styles */
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--scheme-fg, var(--color-dark));
  background: var(--scheme-bg, var(--color-light-alt));
  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.25;
  -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.25;
  -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.25;
  -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 
--------------------------------------------------------------- */
:where(video,
audio,
iframe,
object,
embed) {
  max-width: 100%;
}

/* Other custom global scaffolding here....
--------------------------------------------------------------- */
/* Normalize template main and asides' vertical padding. adjust as needed then customize in certain template styles.
You can use classes for other elements that need to share the same padding as well
--------------------------------------------------------------- */
:where(main, .main,
aside, .aside) {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media only screen and (min-width: 768px) {
  :where(main, .main,
  aside, .aside) {
    padding-top: 4.75rem;
    padding-bottom: 5.75rem;
  }
}
@media only screen and (min-width: 1200px) {
  :where(main, .main,
  aside, .aside) {
    padding-top: 7.3125rem;
    padding-bottom: 7.3125rem;
  }
}
/* ...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;
}

/* ================================================================================
* 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: var(--field-line-height, inherit);
  border-radius: var(--field-border-radius, 0);
  color: var(--color-dark);
  padding-left: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-right: calc(var(--field-padding-x, 1em) - var(--field-border-width, 1px));
  padding-top: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * var(--field-baseline-offset, 0.5));
  padding-bottom: calc((var(--field-height, 3em) - var(--field-border-width, 1px) * 2 - 1em * var(--field-line-height, 1.25)) * (1 - var(--field-baseline-offset, 0.5)));
  background-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;
}

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

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

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

/* Form Customizations: Custom gravity forms and form control elements. Adjust as needed.
--------------------------------------------------------------- */
/* Variables. Will put in the form so non-gravity forms form control elements can utilize too */
:is(form, .gfield) {
  /* height of form field. designers will prefer to design form fields based on their height. this is to better support the wonders they create while being able to use padding to support multi-line/ edge case form fields */
  --field-height: 3.875rem;
  /* border width. This will be accounted for in calculating the form field height as well */
  --field-border-width: 3px;
  /* duh */
  --field-border-radius: 3px;
  /* horizontal padding for the form field */
  --field-padding-x: 1em;
  /* 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;
  font-size: 1.125rem;
  line-height: var(--field-line-height, 1.125);
}
:is(form, .gfield) :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea) {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
:is(form, .gfield):is(.gfield-custom-box-label-adjacent) .gfield_label,
:is(input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
select,
textarea) {
  border-color: transparent;
}

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

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

: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]) {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*  .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: 7.5rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
.gfield_type_multiselect) :is(textarea, select).medium {
  height: 6.5rem;
}
.gform_wrapper.gravity-theme .gfield:is(.gfield_type_textarea,
.gfield_type_multiselect) :is(textarea, select).small {
  height: 5.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: 1.0625rem;
  line-height: var(--field-line-height, inherit);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: flex;
}
/*  .gform_ overrides. Adjust as needed
--------------------------------------------------------------- */
.gform_wrapper.gravity-theme .gform {
  /* If styles are getting overriden by default gforms styles, prepend `.gform_wrapper.gravity-theme` on field selectors -_- */
}
.gform_wrapper.gravity-theme .gform_fields {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1.375rem;
}

/* .gfield_required / .required-glyph Required Indicator
--------------------------------------------------------------- */
.required-glyph,
.gfield-custom-label-indicator.ginput_container::after,
.gform_wrapper .gfield_required {
  /* adjust required styles  */
  font-size: 1em;
  line-height: var(--field-line-height, inherit);
  color: var(--field-required-color);
  font-style: normal;
  font-weight: 700;
  order: 99;
}

/* custom helpers - Required Message
--------------------------------------------------------------- */
.required-message {
  font-size: 1rem;
  letter-spacing: 0.025em;
  font-weight: 600;
}

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

/* Theme Options custom helpers - label required indicator
--------------------------------------------------------------- */
/* required and custom label indicator */
.gfield-custom-label-indicator:is(.ginput_container::before,
.ginput_container::after,
.gfield_label::after,
.gfield_label > .gfield_required) {
  display: block;
  pointer-events: none;
}
.ginput_container {
  position: relative;
}
.ginput_container::before, .ginput_container::after {
  position: absolute;
  top: var(--field-border-width);
  right: var(--field-padding-x);
  top: calc((var(--field-height) - 1em * var(--field-line-height)) * 0.5);
  z-index: 3;
}

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

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

/* related indicators. Make sure required indicator does not conflict */
/* single line select indicator */
.gfield_type_select .ginput_container::before {
  content: "\25BC\FE0E";
  font-size: 0.75em;
  align-self: center;
}

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

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

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

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

/* Swiper Customizations
Variable docs: https://oxygen4fun.supadezign.com/tips/swiperjs-tips-and-good-practice/#customcss
--------------------------------------------------------------- */
:root {
  --swiper-theme-color: var(--scheme-sp,var(--color-primary));
  --swiper-navigation-sides-offset: 0rem;
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bottom: 1.5rem;
  --swiper-pagination-top: auto;
  --swiper-pagination-right: 1rem;
  --swiper-pagination-left: auto;
  --swiper-pagination-bullet-size: .4375rem;
  --swiper-pagination-bullet-width: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-horizontal-gap: calc(var(--swiper-pagination-bullet-size) * 2);
  --swiper-pagination-bullet-vertical-gap: var(--swiper-pagination-bullet-size);
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-inactive-color: currentColor;
  --swiper-pagination-progressbar-size: var(--swiper-pagination-bullet-size);
  --swiper-pagination-progressbar-bg-color: var(--color-neutral-lighter);
  --swiper-scrollbar-border-radius: calc(var(--swiper-pagination-bullet-size) * .5);
  --swiper-scrollbar-bg-color: var(--swiper-pagination-progressbar-bg-color);
  --swiper-scrollbar-drag-bg-color: var(--color-neutral);
  --swiper-scrollbar-sides-offset: 1rem;
  --swiper-scrollbar-bottom: 1.5rem;
  --swiper-scrollbar-top: auto;
}

/* Swiper Enhancements
--------------------------------------------------------------- */
.swiper {
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}
.swiper.swiper-initialized {
  opacity: 1;
}
:is(:where(.swiper-horizontal) > .swiper-pagination-bullets, .swiper-pagination-bullets:where(.swiper-pagination-horizontal), .swiper-pagination-custom, .swiper-pagination-fraction):not(.swiper-pagination-lock) {
  bottom: var(--swiper-pagination-bottom);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--swiper-pagination-bullet-horizontal-gap);
}

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

/* Swiper Custom Helpers
--------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .swiper-custom-pagination-static-xs-button-prev, .swiper-custom-pagination-static-xs-button-next {
    margin-top: 0;
  }
  .swiper-custom-pagination-static-xs-custom-buttons {
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: var(--widget-padding-bottom);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.swiper-custom-pagination-static .swiper-pagination {
  position: static;
  margin-top: var(--swiper-pagination-bottom);
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-sm .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-bottom);
  }
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-pagination-static-xs .swiper-pagination {
    position: static;
    margin-top: var(--swiper-pagination-bottom);
  }
}
.swiper-custom-hide-slides .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .swiper-custom-hide-slides-sm .swiper-slide:not(.swiper-slide-duplicate-visible):not(.swiper-slide-visible):not(.swiper-slide-active) {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.25s ease-in-out;
  }
}
@media only screen and (max-width: 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;
}
@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;
  }
}
.swiper-custom-buttons-boxed .button.button-palette-minimal:is(.swiper-button-prev, .swiper-button-next) {
  margin-top: 0;
  --button-height: 3.75rem;
  flex: 1 1;
}
.swiper-custom-buttons-boxed .swiper-custom-buttons {
  display: flex;
  margin-top: var(--widget-padding-bottom, 3.5rem);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: var(--scheme-bg-contrast);
  color: var(--scheme-fg);
}
@media only screen and (max-width: 767px) {
  .swiper-custom-buttons-boxed-xs .button.button-palette-minimal:is(.swiper-button-prev, .swiper-button-next) {
    margin-top: 0;
    --button-height: 3.75rem;
    flex: 1 1;
  }
  .swiper-custom-buttons-boxed-xs .swiper-custom-buttons {
    display: flex;
    margin-top: var(--widget-padding-bottom, 3.5rem);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: var(--scheme-bg-contrast);
    color: var(--scheme-fg);
  }
}

/* ================================================================================
* Content Styles
================================================================================ */
/* H tag scaffolding
--------------------------------------------------------------- */
:is(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) :where(a) {
  font: inherit !important;
}
:is(:where(*.h1, *.h2, *.h3, *.h4, *.h5, *.h6),
.content :where(h1, h2, h3, h4, h5, h6)) :where(a):not(:hover, :focus) {
  color: inherit;
  text-decoration: none;
}

/* H1 - can be reused by section titles, primary-heading etc.
--------------------------------------------------------------- */
:is(:where(*.h1), .content :where(h1)) {
  font-size: 2.1875rem;
  line-height: calc(1em + 10px);
  color: var(--scheme-fg);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media only screen and (min-width: 768px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.h1), .content :where(h1)) {
    font-size: 3.125rem;
  }
}
/* H2 - can be reused by certain titles
--------------------------------------------------------------- */
:is(:where(*.h2), .content :where(h2)) {
  font-size: 1.5rem;
  line-height: calc(1em + 9px);
  color: var(--scheme-sp);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
/* H3 - can be reused by certain titles
--------------------------------------------------------------- */
:is(:where(*.h3), .content :where(h3)) {
  font-size: 1.25rem;
  line-height: calc(1em + 7px);
  font-family: var(--font-accent);
  color: var(--color-primary);
  letter-spacing: 0em;
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1.375rem;
}
:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert, .content-palette-dark) :is(:where(*.h3), .content :where(h3)) {
  color: var(--scheme-sp);
}
/* H4s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly case result types/titles, blog post meta, etc
--------------------------------------------------------------- */
:is(:where(*.h4), .content :where(h4)) {
  font-size: 1.125rem;
  line-height: calc(1em + 7px);
  font-family: var(--font-accent);
  color: inherit;
  letter-spacing: 0em;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
/* H5s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly testimonial quote sources, contact info titles, etc
--------------------------------------------------------------- */
:is(:where(*.h5), .content :where(h5)) {
  font-size: 1.125rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  color: var(--scheme-sp);
  letter-spacing: 0em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1rem;
}
/* H6s - if not in the styleguide, can be repurposed for other smaller headings present in the design. commonly contact info titles, etc
--------------------------------------------------------------- */
:is(:where(*.h6), .content :where(h6)) {
  font-size: 0.9375rem;
  line-height: calc(1em + 5px);
  color: inherit;
  letter-spacing: 0em;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.875rem;
}
:is(:where(*.h6), .content :where(h6)):where(.h6-alt) {
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.875rem;
}
/* Blockquote -  can be reused in testimonial-highlights, long call to action sections, any general quote, etc.
--------------------------------------------------------------- */
:is(:where(*.blockquote), .content :where(blockquote)) {
  font-size: 1.75rem;
  line-height: calc(1em + 12px);
  text-transform: none;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 69ch;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert, .content-palette-dark) :is(:where(*.blockquote), .content :where(blockquote)) {
  color: var(--scheme-fg-contrast, inherit);
}
:is(:where(*.blockquote), .content :where(blockquote)) > * {
  font: inherit;
  color: inherit;
  margin-top: 0;
  padding: 0;
}
:is(:where(*.blockquote), .content :where(blockquote)) > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  :is(:where(*.blockquote), .content :where(blockquote)) {
    width: calc(100% - 15.5rem);
  }
}
/* Cite /  Blockquote Source - Optional
Note: Some designs may include a blockquote quote source. suprise, there's an html tag for that (:
can be reused in testimonial-source, any general quote source, etc.
--------------------------------------------------------------- */
:is(:where(*.cite), .content :where(cite)) {
  font-size: 0.875rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-primary);
  color: var(--scheme-sp);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert, .content-palette-dark) :is(:where(*.cite), .content :where(cite)) {
  color: var(--scheme-sp, var(--color-accent));
}
:is(:where(*.cite), .content :where(cite)):before {
  display: block;
  margin-bottom: 1.75em;
  content: "";
  height: 2px;
  width: 50px;
  background: var(--scheme-sb);
  margin-inline: auto;
}
:is(blockquote, *.blockquote) :is(:where(*.cite), .content :where(cite)) {
  margin-top: 1.75em;
}
/* 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(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert, .content-palette-dark) *.lead {
  color: var(--scheme-sp, var(--color-accent));
}
/* The Content
--------------------------------------------------------------- */
.content {
  font-size: 1.125rem;
  line-height: 1.67;
  font-family: var(--font-primary);
  color: inherit;
  font-weight: 500;
}
.content :where(p,
ul,
ol,
dl,
form,
pre,
.table-wrapper,
table,
.wistia_responsive_padding) + :where(*.h1, *.h2, h1, h2) {
  margin-top: 1.25rem;
}
.content :where(p,
ul,
ol,
dl,
form,
pre,
.table-wrapper,
table,
.wistia_responsive_padding) + :where(*.h3, *.h4, *.h5, *.h6, h3, h4, h5, h6) {
  margin-top: 1.375rem;
}
.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: 0.75em;
}
.content :where(hr:not([class*=fancy-border])) {
  margin-top: 1.875em;
  background-color: var(--color-neutral);
}
.content :where(a) {
  color: var(--scheme-sp);
  font-weight: bolder;
  text-decoration: underline;
  transition: color 0.25s ease-in-out;
}
.content :where(a):where(:hover, :focus) {
  color: var(--color-primary-alt);
  text-decoration: none;
}
.content :where(ol, ul, dd) {
  list-style-type: none;
  padding-left: 1.875rem;
}
.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.46em;
}
.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;
}
.content li::before {
  position: absolute;
  right: 100%;
  top: 0px;
  padding-right: 1.125em;
}
.content :where(ul) > li::before {
  content: "\25CF\FE0E";
}
.content :where(ul) > li > ul > li::before {
  content: "\2014";
}
.content :where(ol) {
  counter-reset: listItem;
}
.content :where(ol) > li::before {
  content: counter(listItem) ". ";
  counter-increment: listItem;
}

/* The Content - Tables Skeletons
--------------------------------------------------------------- */
.content :where(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);
}
.content :where(table, th, td) {
  border-style: solid;
}
.content :where(tr):first-child > :where(th, td) {
  border-top-color: var(--table-border-color);
}
.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);
}
.content :where(th, td):nth-last-child(n+2) {
  border-right-color: var(--table-cell-border-color-x);
}
.content :where(th, td) > *:last-child {
  margin-bottom: 0;
}
.content .table-wrapper {
  overflow-x: auto;
  max-width: 100%;
}
.content .table-wrapper table {
  margin-bottom: 0;
}

/* The Content - Tables Customizations
--------------------------------------------------------------- */
.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,var(--color-light));
  /* border color for left and right */
  --table-cell-border-color-x: var(--scheme-bg-contrast,var(--color-light-alt));
  /* border color fortop and bottom */
  --table-cell-border-color-y: transparent;
  font-size: 0.9em;
}
.content :is(th, td) {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
}
.content 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;
}
.content tr:nth-child(odd) td {
  --table-cell-background: var(--scheme-bg-contrast,var(--color-light-alt));
  --table-cell-border-color-y: var(--scheme-bg-contrast,var(--color-light-alt));
  --table-cell-border-color-x: var(--scheme-bg,var(--color-light));
}
.content table caption {
  padding: 0.5em;
}

/* Content Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/global/content.md#content-palette-name
--------------------------------------------------------------- */
/* support content styles for dark schemes. Note: Uses @extends to support optional scheme component. */
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .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, inherit);
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) :where(ol, ul, table) {
  color: var(--scheme-fg, inherit);
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) table {
  border-color: var(--color-neutral-darkest);
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) :where(table, th, td) {
  border-style: solid;
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) :where(th, td) {
  border-color: var(--color-neutral-darkest);
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) th {
  color: var(--color-dark);
  background: var(--color-neutral-darkest);
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) th:nth-last-child(n+2) {
  border-right-color: var(--scheme-bg-contrast, var(--color-dark));
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .content-palette-dark) td {
  border-top-color: var(--scheme-bg, var(--color-dark-alt));
}
:is(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .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(:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) .content, .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;
}

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

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

/* smol */
.content.content-style-small {
  font-size: 1.0625rem;
  line-height: 1.76;
}
.content.content-style-small :where(*.h2, h2) {
  font-size: 1.25rem;
}
.content.content-style-small :where(*.h3, h3) {
  font-size: 1.125rem;
}
.content.content-style-small :where(*.h4, h4) {
  font-size: 1rem;
}
.content.content-style-small :where(*.h5, h5) {
  font-size: 0.875rem;
}
.content.content-style-small :where(*.h6, h6) {
  font-size: 0.75rem;
}

/* 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 {
  margin-bottom: 0.5em;
  max-width: 100%;
  height: auto;
}
@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;
  -webkit-clip-path: none;
          clip-path: none;
  color: var(--color-neutral);
  position: fixed;
  display: block;
  font-size: 1em;
  height: auto;
  left: 0.25rem;
  line-height: normal;
  padding: 1rem 1.5rem;
  text-decoration: none;
  top: 0.25rem;
  width: auto;
  z-index: 9999999;
}

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

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

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

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

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

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

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

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

* Info to what everything means:
-----------------------------------------------
Tag 	Device		min				max	  
-----------------------------------------------
xs: 	mobile		0				767px
sm: 	tablet		768px	1199px
md: 	laptop		1200px	1399px
lg: 	desktop		1400px	1919px
xl: 	hd			1920px	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: 1920px) {
  .xl-only {
    display: block !important;
  }
  .xl-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  .lg-only {
    display: block !important;
  }
  .lg-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .md-only {
    display: block !important;
  }
  .md-hide {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .sm-only {
    display: block !important;
  }
  .sm-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .xs-only {
    display: block !important;
  }
  .xs-hide {
    display: none !important;
  }
}
/* Add more helpers as needed */
/* ================================================================================
* Global Critical Components - UI/ Build Elements These need edits based on the design
================================================================================ */
/* Buttons: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md
--------------------------------------------------------------- */
/* Button Skeletons. do not edit 
--------------------------------------------------------------- */
.button {
  border: var(--button-border-width) solid;
  padding-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-block;
  background-size: calc(100% + var(--button-border-width) * 2) calc(100% + var(--button-border-width) * 2);
  background-position: calc(var(--button-border-width) * -1) calc(var(--button-border-width) * -1);
  background-clip: border-box;
  background-origin: border-box;
  line-height: var(--button-line-height);
}
.button, .button:is(:hover, :focus) {
  text-decoration: none;
}

/* Button Customizations: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/buttons.md#css-vars 
--------------------------------------------------------------- */
.button {
  --button-height: 3.5rem;
  --button-border-width: 2px;
  --button-border-radius: 999em;
  --button-padding-x: 2em;
  --button-lines: 1;
  --button-baseline-offset: 0.51;
  --button-line-height: 1.125;
  font-size: 0.875rem;
  font-family: var(--font-accent);
  color: var(--color-primary);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--button-border-radius);
}
@media only screen and (min-width: 768px) {
  .button {
    --button-height: 4rem;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .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-micro {
  font-size: 0.875rem;
  --button-height: 2.125rem;
  --button-padding-x: 1.25em;
}
@media only screen and (min-width: 768px) {
  .button.button-size-micro {
    --button-height: 2.125rem;
  }
}
@media only screen and (min-width: 1200px) {
  .button.button-size-micro {
    font-size: 0.9375rem;
    --button-height: 2.25rem;
  }
}
/* button w/ a height smaller than the default height */
.button.button-size-small {
  font-size: 0.875rem;
  --button-height: 3.125rem;
  --button-padding-x: 1.5em;
}
@media only screen and (min-width: 1200px) {
  .button.button-size-small {
    font-size: 0.9375rem;
  }
}
/* button w/ a height larger than the default height */
@media only screen and (min-width: 1200px) {
  .button.button-size-large {
    font-size: 1.125rem;
    --button-height: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .button.button-size-large {
    font-size: 0.9375rem;
  }
}

/* button w/ a height larger than the default height */
.button.button-size-larger {
  font-size: 1.25rem;
  --button-height: 3.75rem;
  --button-padding-x: 2em;
}
/* constricts the width equal to whatever size height is set*/
.button.button-size-equal {
  --button-padding-x: 0;
  width: var(--button-height);
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Buttons Color Palette Helpers: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/button.md#button-palette-name
--------------------------------------------------------------- */
/* 
* Default - most frequent button palette in the comps
* Invert - reuses default's colors but palettes for hover vs not hover are reversed
* Outline - text w/ border influencing text color
* Minimal - no colors except for the text
Adjust as needed.
*/
.button.button-palette-default, .button.button-palette-reverse {
  box-shadow: 0 0 20px -10px var(--color-dark);
}
.button.button-palette-default, .button.button-palette-reverse:is(:hover, :focus) {
  background-image: linear-gradient(to bottom, var(--color-accent-gradient-start) 0%, var(--color-accent-gradient-end) 100%);
  background-color: var(--color-accent);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-default:is(:hover, :focus), .button.button-palette-outline-alt:is(:hover, :focus), .button.button-palette-alt:is(:hover, :focus), .button.button-palette-reverse {
  background-image: none;
  background-color: var(--color-primary-alt);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-minimal {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: transparent;
}
.button.button-palette-minimal:is(:hover, :focus) {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-sp, var(--color-primary));
  border-color: transparent;
}
.button.button-palette-outline {
  background-color: transparent;
  background-image: none;
  color: inherit;
  border-color: currentColor;
}
.button.button-palette-outline-scheme {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-sp);
  border-color: currentColor;
}
.button.button-palette-outline-scheme:is(:hover, :focus) {
  background-color: var(--scheme-sp);
  color: var(--color-light);
  border-color: transparent;
}
.button.button-palette-outline-alt {
  background-color: transparent;
  background-image: none;
  color: var(--scheme-sb);
  border-color: currentColor;
}
:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert, .content-palette-dark) .button.button-palette-outline {
  color: var(--scheme-fg);
}
:is(.scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert, .content-palette-dark) .button.button-palette-outline:is(:hover, :focus) {
  background-color: var(--scheme-fg);
  color: var(--scheme-bg-contrast);
  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
--------------------------------------------------------------- */
/* buttons with extra decorations or whichever is the most specially styled. overhaul or add more button styles as needed */
.button.button-style-special {
  position: relative;
  z-index: 1;
  --button-border-width:.625rem;
  background-clip: padding-box;
  padding-block: calc(((var(--button-height)) - 1em * var(--button-lines) * var(--button-line-height)) * (1 - var(--button-baseline-offset)));
  border-color: rgba(255, 255, 255, 0.2);
}
.button.button-style-special {
  transform-style: preserve-3d;
}
.button.button-style-special:is(:hover, :focus) {
  border-color: rgba(255, 255, 255, 0.65);
}

/* link style button. Usually the maps link or read more text for blog posts */
.button.button-style-link {
  border-radius: 0;
  padding: 0;
  border-width: 0;
  background: none;
  color: inherit;
  letter-spacing: 0em;
  text-transform: uppercase;
  text-decoration: underline;
}
.button.button-style-link:is(:hover, :focus) {
  background: none;
  color: var(--scheme-sp);
}

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

/* 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 ((-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0)) or (clip-path: polygon(0 0, 0 0, 0 0, 0 0))) {
  .button.button-style-diamond {
    overflow: hidden;
    -webkit-clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
            clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }
}

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

/* Container: https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/container.md
--------------------------------------------------------------- */
/*
						35		48		55
def,ab,team -					55		97			55		235
h1,bio									55/24		55		280	- c
pa,locartionz												260 - c alt
cont
h2/h3									55			55		224 wide
h4										55			55		180
foot												150		410
test 														455
case														315
video														150
*/
/* Container Skeletons. do not edit 
--------------------------------------------------------------- */
.container {
  max-width: 100%;
  width: calc(100% - (var(--container-gutter) - var(--container-padding)) * 2);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
  flex: 0 0 auto;
}

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

/* Reduces horizontal padding */
@media only screen and (min-width: 1920px) {
  .container.container-size-wide {
    --container-gutter: 240px;
  }
}

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

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

@media only screen and (min-width: 768px) {
  .container.container-size-custom {
    --container-gutter: 55px;
  }
}
@media only screen and (min-width: 1920px) {
  .container.container-size-custom {
    --container-gutter: 135px;
  }
}

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

/* constrict container to how wide it is in the deisgn comps */
@media only screen and (min-width: 768px) {
  .container.container-style-maxed {
    max-width: calc(var(--comp) - (var(--container-gutter) - var(--container-padding)) * 2);
  }
}

/* constrict container to how wide it is in the deisgn comps for mobile/xs only */
@media only screen and (max-width: 767px) {
  .container.container-style-maxed-xs {
    max-width: calc(var(--comp) - (var(--container-gutter) - var(--container-padding)) * 2);
  }
}

/* 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(--comp) - (var(--container-gutter) - var(--container-padding)) * 2);
  }
}

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

/* 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: 2px;
  --fancy-border-width: auto;
}
hr, .fancy-border.fancy-border-before::before, .fancy-border.fancy-border-after::after {
  height: var(--fancy-border-height, 1px);
  background-color: var(--color-neutral-light);
  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-gradient-start) 0%, var(--color-primary-gradient-end) 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-top-margin-l: auto;
  --fancy-icon-menu-bar-top-margin-r: auto;
  --fancy-icon-menu-bar-center-width: 100%;
  --fancy-icon-menu-bar-center-margin-l: auto;
  --fancy-icon-menu-bar-center-margin-r: auto;
  --fancy-icon-menu-bar-bottom-width: 100%;
  --fancy-icon-menu-bar-bottom-margin-l: auto;
  --fancy-icon-menu-bar-bottom-margin-r: auto;
  width: var(--fancy-icon-menu-width);
  height: var(--fancy-icon-menu-height);
}
.fancy-icon-menu span {
  position: absolute;
  transform-origin: center center;
  background: currentColor;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--fancy-icon-menu-bar-height);
  width: 100%;
  transition: all 0.375s ease-in-out;
}
.fancy-icon-menu span:where(:first-child) {
  bottom: auto;
  width: var(--fancy-icon-menu-bar-top-width);
  margin: auto var(--fancy-icon-menu-bar-top-margin-r) auto var(--fancy-icon-menu-bar-top-margin-l);
}
.fancy-icon-menu span:where(:last-child) {
  top: auto;
  width: var(--fancy-icon-menu-bar-bottom-width);
  margin: auto var(--fancy-icon-menu-bar-bottom-margin-r) auto var(--fancy-icon-menu-bar-bottom-margin-l);
}
.fancy-icon-menu span:where(:nth-child(2), :nth-child(3)) {
  width: var(--fancy-icon-menu-bar-center-width);
  margin: auto var(--fancy-icon-menu-bar-center-margin-r) auto var(--fancy-icon-menu-bar-center-margin-l);
}
.open .fancy-icon-menu span {
  margin: auto;
}
.open .fancy-icon-menu span:nth-child(2) {
  transform: rotateZ(45deg);
}
.open .fancy-icon-menu span:nth-child(3) {
  transform: rotateZ(-45deg);
}
.open .fancy-icon-menu span:is(:nth-child(2), :nth-child(3)) {
  width: 100%;
}
.open .fancy-icon-menu span:is(:first-child, :last-child) {
  width: 0;
}
/* Fancy Text Animation by Mr. Garrett but Sam added tweaks
--------------------------------------------------------------- */
/* Other Custom Fancy Stuff
--------------------------------------------------------------- */
.fancy-underline {
  --fancy-underline-width: 4px;
  --fancy-underline-letters-combo-char-offset: .4ch;
  font-size: 3.125rem;
  line-height: calc(1em + 20px);
  font-style: italic;
  font-weight: 700;
}
.fancy-underline span {
  border-bottom: var(--fancy-underline-width) solid var(--scheme-sb-contrast);
}
/* Widgets https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md
--------------------------------------------------------------- */
/* Widgets Skeleton. Do not Edit 
--------------------------------------------------------------- */
.widget {
  padding-top: var(--widget-padding-top);
  padding-bottom: var(--widget-padding-bottom);
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
  position: relative;
  max-width: 100%;
  line-height: var(--widget-line-height);
}
.widget,
.widget > :where(ul, .widget-content, .menu, div):not(.content),
.widget > :where(ul, .widget-content, .menu, div):not(.content) li {
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
}
.widget > :where(ul, .widget-content, .menu, div):not(:is(.content, :first-child)) {
  margin-top: var(--widget-content-margin-top);
  margin-bottom: var(--widget-content-margin-bottom);
}
.widget > :where(ul, .widget-content, .menu, div) {
  padding-top: var(--widget-content-padding-top);
  padding-bottom: var(--widget-content-padding-bottom);
}
.widget > :where(ul, .widget-content, .menu, div):not(.content):last-child, .widget > :where(ul, .widget-content, .menu, div):not(.content) > li,
.widget > :where(ul, .widget-content, .menu, div):not(.content) :where(ul, .sub-menu) {
  margin-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);
  margin-bottom: 0;
  margin-top: 0;
}
:is(.widget-title, .widget-title, .widgettitle).fancy-border-after:after {
  --fancy-border-margin-l: calc(var(--widget-title-padding-x) * -1);
  --fancy-border-margin-r: calc(var(--widget-title-padding-x) * -1);
}

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

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

/* Widget Customizations https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/widget.md#css-vars
--------------------------------------------------------------- */
.widget {
  --widget-line-height: 1.25;
  --widget-padding-x: 40px;
  --widget-padding-top: 2.25rem;
  --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: 2.94em;
  --widget-item-border-width: 1px;
  --widget-item-lines: 1;
  --widget-item-padding-x: 0rem;
  --widget-title-padding-x: var(--widget-item-padding-x);
  /* Note: this value has to be unitless for calc values to work.
  * modify this value if the font seems a little too high or low in vertical alignment. 1 moves the text to the very top. 0 moves the text to the very bottom. 0.5 will center it based on the fonts' basline alignment */
  --widget-content-margin-top: 0rem;
  --widget-content-margin-bottom: 0rem;
  --widget-content-padding-top: 0rem;
  --widget-content-padding-bottom: var(--widget-content-padding-top);
  --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: 1.0625rem;
  color: var(--scheme-fg, var(--color-dark));
  text-align: left;
  text-decoration: none;
}
:is(.widget, .widgets) {
  background-color: var(--scheme-bg-contrast, var(--color-light));
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
}
:is(.widget, .widgets):where(:nth-last-child(n+2)) {
  margin-bottom: var(--default-gap-y, 2.5rem);
}

.widgets .widget {
  box-shadow: none;
  margin-bottom: 0;
}
.widgets .widget:nth-last-child(n+2) {
  padding-bottom: 0;
}
:is(.widget-title, .widget-title, .widgettitle) + :where(ul, .widget-content, .menu, div):before {
  content: "";
  display: block;
  border-top: 1px solid var(--color-neutral-light);
  margin-block: 1.5rem;
  flex: 0 0 auto;
  width: 100%;
  grid-column: 1/-1;
}

.widget > :where(ul, .widget-content, .menu, div):not(.content) li:is(.open, :hover, :focus-within) > a {
  color: var(--scheme-sb, var(--color-primary));
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li ul {
  background-color: var(--scheme-bg, var(--color-light-alt));
  border-color: var(--color-neutral-lighter);
  text-align: left;
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li ul ul {
  background-color: rgba(0, 0, 0, 0.01);
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li.open {
  border-bottom: 0;
}
.widget > :where(ul, .widget-content, .menu, div):not(.content) li.open > a {
  border-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1399px) {
  .widget {
    --widget-padding-x: 54px;
  }
}
/* Widget Title
--------------------------------------------------------------- */
:is(.widget-title, .widget-title, .widgettitle) {
  font-size: 1.25rem;
  color: var(--scheme-sp);
  font-weight: 700;
  text-align: center;
  flex-wrap: wrap;
}
.widgets :is(.widget-title, .widget-title, .widgettitle) {
  text-align: initial;
}
:is(.widget-title, .widget-title, .widgettitle).fancy-border-after:after, :is(.widget-title, .widget-title, .widgettitle).fancy-border-before:before {
  content: none;
  --fancy-border-width: 100%;
  --fancy-border-margin-y: .5em;
  grid-column: span 2;
}
.widget:not(.widget-style-no-toggle):not(.open) > :is(.widget-title, .widget-title, .widgettitle) {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
.widget:not(.widget-style-no-toggle):not(.open) > :is(.widget-title, .widget-title, .widgettitle).fancy-border-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;
}
/* Widget Toggle
--------------------------------------------------------------- */
.widget-toggle:not(:is(.widget-title, .widget-title, .widgettitle)) {
  align-items: center;
  display: flex;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  cursor: pointer;
  justify-content: flex-start;
}
.widget-toggle:not(:is(.widget-title, .widget-title, .widgettitle)) > * {
  min-width: 0;
}
.widget-toggle:not(:is(.widget-title, .widget-title, .widgettitle))::before {
  display: inline-block;
  order: 9;
  align-self: center;
  transform-origin: center center;
  flex: 0 0 auto;
  content: "";
  font-size: 0.5rem;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.open > .widget-toggle:not(:is(.widget-title, .widget-title, .widgettitle))::before {
  transform: rotate(-135deg);
}
/* Widget Customization by type. Unless an extra extra custom site, there should be rarely a need to apply overrides at this point
--------------------------------------------------------------- */
.widget .testimonial-highlight {
  font-size: 0.9375rem;
}
.widget .swiper:only-child {
  padding-inline: var(--widget-padding-x, 30px);
}
.widget .swiper:only-child.swiper-custom-buttons-boxed {
  margin-bottom: calc(var(--widget-padding-bottom) * -1);
}
.widget .swiper:only-child, .widget .swiper-custom-buttons {
  margin-inline: calc(var(--widget-padding-x, 30px) * -1);
}
.widget.widget_custom_testimonials .swiper-custom-buttons {
  margin-top: calc(var(--widget-padding-bottom) + 0.75rem);
}
.widget.widget_custom_awards .swiper {
  margin-top: 1.75rem;
}
.widget.widget_custom_videos {
  --widget-padding-x: 0px;
  --widget-padding-top: 0px;
  --widget-padding-bottom: 1.125rem;
}
.widget.widget_custom_videos .video {
  padding-bottom: 0;
  box-shadow: none;
  background: transparent;
  color: inherit;
}

/*
drodpwon filter. for filterable blocks eg Case results. Uncomment in style.scss if needed
Markup should follow the folloowing


To enable, follow the steps:
- Uncomment the sass import declaration in the style.scss file
- Unccoment script for "Filter Dropdown - ie Case Results " in main.js
- If being used for Case Results
	-Setup `Case Result Types` on
		- Admin > Theme Options > Other Components if there are no CPTs for case results being used
		- Admin > Case Results > Case Result Types if CPT Case results are enabled
		- Add classes/Attrs to the following
			- .filter-blocks => PARENT wrapper of case results row
			- .filter-block => set as the value for 'part_classes' of includes/repeater-results.
- If being used for other purposes
	- Use template part includes/helper-filter-dropdown
	- Add classes/Attrs to the following
		- .filter-blocks => PARENT wrapper of the items to be filtered
		- .filter-block => blocks to hide or show depending on active filter
		- [data-filter] => set attribute to  .filter-block as applicable filter slugs separated by commas


--------------------------------------------------------------- */
.filter {
  /* height of filter. designers will prefer to design filters 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 filters */
  --filter-height: 3.4em;
  /* border width. This will be accounted for in calculating the filter height as well */
  --filter-border-width: 1px;
  /* duh */
  --filter-item-height: 45px;
  /* horizontal padding for the filter */
  --filter-padding-x: 1.5rem;
  /* Note: this value has to be unitless for calc values to work. Usually there's no need to modify this unless a multiline filter is present in the design.
  * Formula is line-height-px / font-size-px */
  --filter-line-height: 1.125;
  /* padding for dropdown. Note: Applied as height to pseudo element to smooth out appearance of overflowing dropdown items */
  --filter-dropdown-padding-y: 1em;
  /* padding for dropdown */
  --filter-dropdown-padding-x: var(--filter-padding-x);
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  margin-bottom: 3rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.filter-title {
  margin: 0;
  flex: 0 0 auto;
}
.filter-select {
  flex: 1 1;
  position: relative;
}
.filter-empty {
  margin: 90px auto;
  text-align: center;
  width: 100%;
}
.filter-empty-text {
  /* Container for custom text. should not at all display. */
  display: none;
}
.filter-label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: var(--scheme-bg-contrast, var(--color-light));
  color: var(--scheme-fg, var(--color-dark));
  padding-left: calc(var(--filter-padding-x) - var(--filter-border-width));
  padding-right: calc(var(--filter-padding-x) - var(--filter-border-width));
  padding-top: calc((var(--filter-height) - var(--filter-border-width) * 2 - 1em * var(--filter-line-height)) * 0.5);
  padding-bottom: calc((var(--filter-height) - var(--filter-border-width) * 2 - 1em * var(--filter-line-height)) * 0.5);
  position: relative;
  z-index: 1;
  border: var(--filter-border-width) solid var(--scheme-bg-contrast, var(--color-light-alt));
  line-height: var(--filter-line-height);
  font-size: 1.375rem;
}
.filter-label::before {
  align-self: center;
  order: 999;
  content: "";
  font-size: 0.75rem;
  margin-left: 0.5em;
  transform-origin: 67% 67%;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}
.filter-label, .filter-dropdown {
  line-height: 1.125;
  text-align: initial;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.filter-dropdown {
  background: var(--scheme-bg-contrast, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  line-height: var(--filter-line-height);
  max-height: calc(80vh - var(--layout-header-height));
  scrollbar-width: none;
  overflow-y: scroll;
  font-size: 1.25rem;
}
.filter-dropdown::-webkit-scrollbar {
  display: none;
}
.filter-dropdown:before, .filter-dropdown:after {
  content: "";
  position: -webkit-sticky;
  position: sticky;
  height: var(--filter-dropdown-padding-y);
  display: block;
  left: 0;
}
.filter-dropdown:before {
  top: 0;
  background: linear-gradient(to top, transparent 0%, var(--scheme-bg-contrast, var(--color-dark-alt)) 90%);
}
.filter-dropdown:after {
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--scheme-bg-contrast, var(--color-dark-alt)) 90%);
}
.filter-dropdown li {
  transition: all 0.5s ease-in-out;
  padding-inline: var(--filter-dropdown-padding-x);
}
.filter-dropdown li a {
  display: block;
  padding-top: calc((var(--filter-item-height) - 1.125em) * 0.5);
  padding-bottom: calc((var(--filter-item-height) - 1.125em) * 0.5);
}
.filter-dropdown li:is(.active, :hover, :focus) {
  color: var(--scheme-sb, var(--color-primary));
}
/* Schemes https://github.com/1point21interactive/1p21_wp_boilerplate/blob/master/wp-content/themes/1p21-boilerplate/docs/components/schemes.md
--------------------------------------------------------------- */
/* Schemes Skeleton. Do not Edit 
--------------------------------------------------------------- */
.scheme-applied {
  background-color: var(--scheme-bg);
  color: var(--scheme-fg);
}
.scheme-applied.scheme-applied-contrast-bg, .scheme-applied .scheme-applied-contrast-bg {
  background-color: var(--scheme-bg-contrast);
}
.scheme-applied.scheme-applied-contrast-fg, .scheme-applied .scheme-applied-contrast-fg {
  color: var(--scheme-fg-contrast);
}

/* Schemes Cuzstomizations
--------------------------------------------------------------- */
:is(.scheme-palette-light, .scheme-palette-light-on-hover:is(:hover, :focus-within), .scheme-palette-light .scheme-palette-inherit, .scheme-palette-dark .scheme-palette-invert) {
  --scheme-bg: var(--color-light-alt);
  --scheme-bg-contrast: var(--color-light);
  --scheme-fg: var(--color-dark);
  --scheme-fg-contrast: var(--color-dark-alt);
  --scheme-sp: var(--color-secondary);
  --scheme-sp-contrast: var(--color-secondary);
  --scheme-sb: var(--color-primary);
  --scheme-sb-contrast: var(--color-primary-alt);
}

:is(.content-palette-dark, .scheme-palette-dark, .scheme-palette-dark-on-hover:is(:hover, :focus-within), .scheme-palette-dark .scheme-palette-inherit, .scheme-palette-light .scheme-palette-invert) {
  --scheme-bg: var(--color-dark);
  --scheme-bg-contrast: var(--color-dark-alt);
  --scheme-fg: var(--color-light);
  --scheme-fg-contrast: var(--color-light-alt);
  --scheme-sp: var(--color-secondary-alt);
  --scheme-sp-contrast: var(--color-secondary-alt);
  --scheme-sb: var(--color-primary-alt);
  --scheme-sb-contrast: var(--color-primary);
}

/* ================================================================================
* 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: 98px;
  /* height of the whole header at a given state or layout */
  --layout-header-logo-height: 64px;
  /* height of logo including its padding at a given state or layout. */
}
@media only screen and (min-width: 1200px) {
  :root {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    --layout-header-height: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    /* Touch Devices Header Styles Start */
    --layout-header-height: 142px;
    --layout-header-logo-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --layout-header-height: 120px;
    --layout-header-logo-height: 40px;
  }
}

.doc-header-not-sticky .header-overlay-on-banner {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 768px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    /* override logo height apart form the header height on this state only. Adjust as needed */
  }
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    /* override logo height apart form the header height on this state only. Adjust as needed */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .doc-header-not-sticky .header-overlay-on-banner {
    --layout-header-logo-height: 48px;
  }
}
.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: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--scheme-bg-contrast, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
  transition: 0.25s top ease-in-out;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.8);
}
@media only screen and (min-width: 1200px) {
  .layout-header {
    /* Non-touch Devices Header Styles Start */
  }
  .layout-header-container {
    --container-padding: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .layout-header-container {
    --container-padding: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .layout-header {
    /* Touch Devices Header Styles Start */
  }
  .layout-header-container {
    --container-padding: 27px;
  }
}
@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-padding: 18px;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .layout-header {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
  /* remove background */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header {
    background: transparent;
  }
}
@media only screen and (min-width: 1400px) {
  .doc-header-not-sticky .header-overlay-on-banner .layout-header-container {
    --container-gutter: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .layout-header {
    /* Touch Devices Header Styles Start */
    background: transparent;
  }
}
.doc-header-not-sticky .layout-header {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
  /* remove dropdown shadow on all devices when not scrolling yet */
  box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .layout-header {
    /* reset offset when no scrolling yet */
  }
}
.doc-header-menu-open .layout-header {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
.header-overlay-on-banner .layout-header {
  /* Overlay header on header-overlay-on-banner. best for setting position on large devices AND NOTHING ELSE */
  position: fixed;
}
/* Header Blocks
--------------------------------------------------------------- */
.header-blocks {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-areas: "logo nav button-language cta";
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 0.75rem;
  align-items: center;
  /* set as min instead in case alertbar needs to be added within header */
  min-height: var(--layout-header-height);
}
@media only screen and (min-width: 768px) {
  .header-blocks {
    row-gap: 0.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-blocks {
    /* Non-touch Devices Header Styles Start */
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .header-blocks {
    -moz-column-gap: 1.625rem;
         column-gap: 1.625rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-blocks {
    /* Touch Devices Header Styles Start */
    grid-template-columns: 1fr auto auto;
    align-content: center;
    grid-template-areas: "logo cta toggle-menu" "logo button-language toggle-menu";
  }
}
@media only screen and (max-width: 767px) {
  .header-blocks {
    --header-col-offset: 3rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    justify-content: space-between;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo logo toggle-menu" "cta button-language toggle-menu";
  }
  .header-blocks .header-button-language {
    display: none;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-blocks {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-blocks {
    align-items: end;
    row-gap: 0.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo button-language cta" "logo nav nav";
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-blocks {
    gap: 0.5rem 1.5rem;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 1920px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-blocks {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1fr auto;
    row-gap: 0.875rem;
    grid-template-areas: "logo nav cta" "spacer button-language button-language";
    margin-top: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-blocks {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-blocks {
    grid-template-areas: "logo logo toggle-menu" "cta button-language button-language";
    -moz-column-gap: 0rem;
         column-gap: 0rem;
    margin-top: 15px;
  }
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-blocks .header-button-language {
    display: block;
    --button-padding-x: .75em;
  }
}

.doc-header-not-sticky .header-blocks {
  /* Styles/Selectors for when header is not sticky yet. best for smaller devices styles and minor/global changes for larger devices */
}
.header-blocks .doc-header-menu-open {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Logo
--------------------------------------------------------------- */
.header-logo {
  height: var(--layout-header-logo-height);
  flex: 0 0 auto;
  /* support logo offseting on overlay banner + not sticky state. comment if not needed */
  position: relative;
  align-self: center;
  grid-area: logo;
}
.header-logo .logo-wrapper-touch, .header-logo .logo-wrapper-before-sticky {
  /* hide possible variations of logo */
  display: none;
}
@media only screen and (min-width: 1200px) {
  .header-logo {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .header-logo .logo-wrapper-touch {
    /* show  */
    display: block;
  }
  .header-logo .logo-wrapper-touch ~ .logo-wrapper-nontouch {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-logo {
    width: 100%;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-logo {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    top: 0.25rem;
    /* Any other styles for emphasis on logo on this state. Adjust as needed. Adjust as needed */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    align-self: self-start;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-logo .logo-wrapper-touch, .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 (min-width: 1400px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    top: 2.5rem;
  }
}
@media only screen and (min-width: 1920px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-logo {
    top: 1rem;
  }
}
.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: 72px;
  height: min(84px, var(--layout-header-height));
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  box-shadow: inset 0 10px -2px rgba(0, 0, 0, 0.8);
}
.header-toggle-menu {
  position: relative;
  z-index: 99999;
  top: 0;
  border-bottom: 6px solid var(--scheme-sb-contrast);
  grid-area: toggle-menu;
  justify-self: self-end;
}
.header-toggle-menu-icon {
  --fancy-icon-menu-width: 41px;
  --fancy-icon-menu-height: 16px;
  --fancy-icon-menu-bar-height: 4px;
  --fancy-icon-menu-bar-center-width: 0%;
}
.header-toggle-menu.open .header-toggle-menu-icon {
  color: inherit;
}
.header-toggle-menu-label {
  font-size: 0.9375rem;
  line-height: 1;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin-top: 0.75em;
  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 */
  }
}
@media only screen and (max-width: 767px) {
  .header-toggle {
    width: 58px;
    height: min(68px, var(--layout-header-height));
  }
  .header-toggle-menu-icon {
    --fancy-icon-menu-width: 34px;
    --fancy-icon-menu-height: 13px;
    --fancy-icon-menu-bar-height: 2px;
    --fancy-icon-menu-bar-center-width: 0%;
  }
  .header-toggle-menu-label {
    font-size: 0.8125rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-toggle {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
.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-flag {
  grid-row-start: 2;
  grid-column-start: 1;
}
.header-flag:before {
  display: block;
  content: "";
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/1p21-monge/images/flag.svg");
  width: 49px;
  height: 30px;
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  .header-flag:before {
    margin-right: -5.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  .header-flag {
    grid-row-start: 1;
    grid-column-start: 2;
  }
  .header-flag:before {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1920px) {
  .header-flag {
    align-self: end;
    margin-bottom: 1.5rem;
  }
  .header-flag:before {
    width: 56px;
    height: 34px;
  }
}

@media only screen and (min-width: 1200px) {
  .header-button-language {
    display: none;
  }
}

/* Header CTA
--------------------------------------------------------------- */
.header-cta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  grid-area: cta;
}
@media only screen and (min-width: 768px) {
  .header-cta {
    margin-top: 0rem;
    display: flex;
    align-items: flex-end;
    grid-column-end: 3;
    gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .header-cta {
    /* Non-touch Devices Header Styles Start */
    margin-top: 0.5rem;
    flex-direction: column;
    justify-content: flex-start;
    text-align: right;
  }
}
@media only screen and (min-width: 1920px) {
  .header-cta {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta {
    /* Touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 767px) {
  .header-cta {
    flex: 1 1;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1920px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-cta {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-cta {
    text-align: center;
    justify-self: self-start;
    padding-inline: 0.75rem;
  }
}
.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-family: var(--font-accent);
  color: var(--scheme-sp);
  font-weight: 600;
  display: block;
}
.header-cta-text > span:nth-child(n+2)::before {
  content: "\25CF\FE0E";
  color: var(--color-primary);
  margin: 0 0.5em;
}
@media only screen and (min-width: 768px) {
  .header-cta-text {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (min-width: 1920px) {
  .header-cta-text {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-cta-text {
    /* Touch Devices Header Styles Start */
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-cta-text {
    font-size: 0.75rem;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-cta-text {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-cta-text {
    font-size: 0.75rem;
  }
}
.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: inline-flex;
  gap: 1rem;
}
@media only screen and (min-width: 1200px) {
  .header-numbers {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-numbers {
    /* Touch Devices Header Styles Start */
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-numbers {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (max-width: 767px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-numbers .number-link {
    font-size: 1.25rem;
  }
}
.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 Number/s
--------------------------------------------------------------- */
.header-button {
  flex: 0 0 auto;
}
.header-button-language {
  grid-area: button-language;
  justify-self: self-end;
}
@media only screen and (min-width: 1200px) {
  .header-button {
    /* Non-touch Devices Header Styles Start */
  }
}
@media only screen and (max-width: 1199px) {
  .header-button {
    /* Touch Devices Header Styles Start */
  }
  .header-button-language {
    justify-self: self-end;
  }
}
@media only screen and (max-width: 767px) {
  .header-button-language {
    justify-self: self-start;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-button {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1400px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-button {
    font-size: 0.9375rem;
    --button-height: 2.25rem;
  }
}
@media only screen and (min-width: 1920px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-button {
    --button-height: 2.25rem;
  }
}
@media only screen and (max-width: 767px) {
  :not(.doc-header-menu-open).doc-header-not-sticky .header-overlay-on-banner .header-button-language {
    justify-self: self-end;
  }
}

.doc-header-not-sticky .header-button {
  /* 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-button {
  /* Styles/Selectors for when header menu accordion for touch devices is open */
}
/* Header Navigation
--------------------------------------------------------------- */
.header-nav {
  grid-area: nav;
}
@media only screen and (min-width: 1200px) {
  .header-nav {
    /* Non-touch Devices Header Styles Start */
    justify-self: center;
    padding-right: 2rem;
    display: flex;
    justify-content: center;
    align-self: stretch;
    flex: 1 1;
  }
}
@media only screen and (min-width: 1920px) {
  .header-nav {
    padding-right: 3.75rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav {
    /* Touch Devices Header Styles Start */
    transition: top 0.25s ease-in-out, left 0.5s ease-in-out, opacity 0.5s ease-in-out;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    z-index: 9999;
    scrollbar-width: none;
    position: fixed;
    bottom: 0;
    left: 100%;
    top: var(--layout-header-height);
  }
  .header-nav::-webkit-scrollbar {
    display: none;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav {
    justify-self: center;
    align-self: end;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav {
    justify-content: flex-end;
    justify-self: end;
    align-self: stretch;
    flex: 0 0 auto;
    padding-right: 0;
  }
}
.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: 4rem;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-dropdown-padding-x: 1.875em;
  /* horizontal padding for menu items and accordion/dropdowns */
  --layout-header-menu-nontouch-current-height: 4px;
  /* current item border indicator height */
  font-size: 0.875rem;
  line-height: 1.25;
  font-family: var(--font-accent);
  color: inherit;
  font-weight: 700;
}
.header-nav .menu li {
  display: flex;
  flex-wrap: wrap;
}
.header-nav .menu li,
.header-nav .menu li > a {
  position: relative;
}
.header-nav .menu li > a {
  padding: 0.75em 0;
  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: 0.5em;
  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(--scheme-bg-contrast);
  color: var(--color-dark);
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu {
    gap: 1.34em;
    display: flex;
    justify-content: space-between;
    /* extra extra deep deep deep inner level dropdown edge case dropdown fix */
  }
  .header-nav .menu li:is(:hover, :focus-within) ~ li > ul,
  .header-nav .menu li:not(:hover, :focus-within) > ul {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-nav .menu {
    gap: 1em;
  }
}
@media only screen and (min-width: 1200px) {
  .header-nav .menu li {
    position: relative;
    padding-left: var(--layout-header-menu-nontouch-dropdown-padding-x);
    padding-right: var(--layout-header-menu-nontouch-dropdown-padding-x);
  }
  .header-nav .menu li > a {
    flex: 1 1;
    /* flush dropdown indicator and text to the left */
    justify-content: flex-start;
  }
  .header-nav .menu li:is(:hover, :focus-within) > a {
    /* activated styles upon interaction for nontouch */
    color: var(--color-accent);
  }
  .header-nav .menu li.menu-item-special {
    --layout-header-nav-special-sub-width: 13.5294117647em;
    --layout-header-nav-special-padding-y: 2rem;
  }
  .header-nav .menu li.menu-item-special:is(:hover, :focus-within) > ul {
    display: grid;
  }
  .header-nav .menu li.menu-item-special li:is(:hover, :focus-within, :not(.open)) > ul {
    display: none;
  }
  .header-nav .menu li.menu-item-special > ul li.open > ul {
    display: block;
  }
  .header-nav .menu li.menu-item-special:nth-last-child(-n+2) > ul {
    left: auto;
    right: 0;
    transform: none;
  }
  :where(.header-nav .menu li.menu-item-special > ul) {
    display: grid;
  }
  .header-nav .menu li.menu-item-special > ul {
    grid-template-columns: repeat(2, 1fr);
    width: 600px;
    padding-block: var(--layout-header-nav-special-padding-y);
    padding-right: var(--layout-header-nav-special-sub-width);
    right: 0;
    left: auto;
    width: 90vw;
    max-width: 705px;
    max-height: calc(90vh - var(--layout-header-height));
    left: auto;
    right: calc(var(--layout-header-nav-special-sub-width) * -1);
    background-image: linear-gradient(to left, var(--scheme-bg) 0, var(--scheme-bg) var(--layout-header-nav-special-sub-width), transparent var(--layout-header-nav-special-sub-width), transparent 100%);
  }
  .header-nav .menu li.menu-item-special > ul, .header-nav .menu li.menu-item-special > ul > li > ul {
    scrollbar-width: none;
    overflow-y: scroll;
  }
  .header-nav .menu li.menu-item-special > ul::-webkit-scrollbar, .header-nav .menu li.menu-item-special > ul > li > ul::-webkit-scrollbar {
    display: none;
  }
  .header-nav .menu li.menu-item-special > ul li {
    position: static;
  }
  .header-nav .menu li.menu-item-special > ul li > a {
    padding-block: 0.375rem;
  }
  .header-nav .menu li.menu-item-special > ul li.view-all {
    grid-column: span 3;
  }
  .header-nav .menu li.menu-item-special > ul ul {
    background: none;
    box-shadow: none;
    color: inherit;
    width: auto;
    padding: 0;
    position: static;
  }
  .header-nav .menu li.menu-item-special > ul ul li ul {
    margin: calc(var(--layout-header-menu-nontouch-dropdown-padding-x) * -1);
  }
  .header-nav .menu li.menu-item-special > ul > li > ul {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    right: 0;
    left: auto;
    width: var(--layout-header-nav-special-sub-width);
  }
  .header-nav .menu li.menu-item-special > ul > li > ul:before, .header-nav .menu li.menu-item-special > ul > li > ul:after {
    content: "";
    display: block;
    height: var(--layout-header-nav-special-padding-y);
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    pointer-events: none;
    left: 0;
    z-index: 1;
  }
  .header-nav .menu li.menu-item-special > ul > li > ul:before {
    top: 0;
    background-image: linear-gradient(to bottom, var(--scheme-bg) 20%, transparent 100%);
  }
  .header-nav .menu li.menu-item-special > ul > li > ul:after {
    bottom: 0;
    background-image: linear-gradient(to top, var(--scheme-bg) 20%, transparent 100%);
  }
  .header-nav .menu li.menu-item-special > ul > li > ul ul {
    background: rgba(0, 0, 0, 0.2);
  }
  .header-nav .menu ul {
    width: 230px;
    padding-block: 0.75rem;
    top: 0;
    left: 100%;
    /* Take dropdowns out of doc flow + setup for hover/focus effects */
    position: absolute;
    box-shadow: 0 4px 10px -5px rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .header-nav .menu ul > li.menu-item-has-children > a::after {
    transform: rotate(-45deg);
  }
  .header-nav .menu > li {
    align-items: center;
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav .menu > li, .header-nav .menu > li > a {
    /* undo fanciness from non-media query scaffolding for top level menu item and its child a tag */
    border: none;
    background: none;
    margin: 0;
  }
  .header-nav .menu > li > a {
    padding: 0.625rem 0;
  }
  .header-nav .menu > li > a::before {
    /* current menu item indicator */
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: 0.125s ease-in-out width;
    width: 0;
    height: var(--layout-header-menu-nontouch-current-height);
    background: var(--color-primary);
  }
  .header-nav .menu > li:is(:hover, :focus-within) > a {
    background: transparent;
    color: inherit;
  }
  .header-nav .menu > li:is(.current-menu-item, .current-menu-ancestor, :hover, :focus-within) > a::before {
    /* current menu item indicator if active */
    width: 100%;
  }
  .header-nav .menu > li > ul {
    font-size: calc(1em - 1px);
    top: 100%;
    left: 0;
  }
  .header-nav .menu ul ul ul {
    left: 15%;
    top: 50%;
    transform: none;
  }
}
@media only screen and (min-width: 1400px) {
  .header-nav .menu {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1920px) {
  .header-nav .menu {
    font-size: 1.0625rem;
  }
}
@media only screen and (max-width: 1199px) {
  .header-nav .menu {
    background: var(--scheme-bg);
    font-size: 1.1875rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    width: 100%;
    box-shadow: inset 0 5px 10px -10px rgba(0, 0, 0, 0.8);
    /* shift menu to the right edge and limit width. comment if not needed*/
    margin-left: auto;
  }
  .header-nav .menu li:not(.open) > ul {
    display: none;
  }
  .header-nav .menu li {
    padding-left: var(--layout-header-menu-touch-menu-padding-x);
    padding-right: var(--layout-header-menu-touch-menu-padding-x);
  }
  .header-nav .menu li > a {
    flex: 1 0 100%;
  }
  .header-nav .menu li:is(:hover, :focus-within, .open) > a {
    /* activated styles upon interaction for touch */
    color: var(--color-primary);
  }
  .header-nav .menu li:is(.open) {
    border-bottom: 0;
  }
  .header-nav .menu li:is(.open) > a {
    border-bottom: 0;
  }
  .header-nav .menu ul {
    background-color: var(--scheme-bg-contrast);
    color: inherit;
    align-self: stretch;
    order: 99;
    flex: 1 0 100%;
    /* basic borders to contrast multiple dropdown levels */
    border-block: 1px solid var(--scheme-bg);
    padding-top: 0.25em;
    padding-bottom: 0.25em;
    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 > ul ul {
    background-color: rgba(0, 0, 0, 0.05);
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .menu {
    --layout-header-menu-touch-menu-padding-x: 2rem;
    max-width: 100%;
  }
}
.doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
  /* Styles/Selectors for when header overlays the banner or adjacent element before scroll on non-touch devices. NOTE: You can modify where overlay styles can appear by modifying the functions body header classes  */
}
@media only screen and (min-width: 1200px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
    /* top level level dropdown edge case dropdown fix */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu {
    font-size: 0.9375rem;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu > li:nth-last-child(-n+2) > ul {
    left: auto;
    transform: none;
    right: 0;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu > li:nth-last-child(-n+2) > ul ul {
    right: 15%;
    left: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu > li:nth-last-child(-n+2) > ul {
    left: auto;
    transform: none;
    right: 0;
  }
  .doc-header-not-sticky .header-overlay-on-banner .header-nav .menu > li:nth-last-child(-n+2) > ul ul {
    right: 15%;
    left: auto;
  }
}
.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 {
  overflow: hidden;
}
.layout-banner .container, .layout-banner-container {
  --container-padding: 16px;
}
@media only screen and (min-width: 1200px) {
  .layout-banner .container, .layout-banner-container {
    --container-padding: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .layout-banner .container, .layout-banner-container {
    --container-padding: 40px;
  }
}
@media only screen and (min-width: 1920px) {
  .layout-banner .container, .layout-banner-container {
    --container-padding: 250px;
  }
}
.layout-banner .banner-background .responsive-background-bg {
  background-position: center top;
}
.banner-has-feature .layout-banner {
  /* Styles specific for when banner has background image */
}
.banner-no-background-image .layout-banner {
  /* Styles specific for when banner doesnt support background image */
}
.banner-default-background {
  position: relative;
}
.banner-default-background:after {
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  transition: 0.5s ease-in-out opacity;
  background-image: none;
  background-image: url("/wp-content/themes/1p21-monge/images/hero-bg.svg");
  opacity: 0;
  z-index: -1;
}
.doc-images-loaded .banner-default-background:after {
  opacity: 1;
}

/* Banner Main
--------------------------------------------------------------- */
.banner-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
}
.banner-main-blocks {
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  flex: 1 1;
}
.banner-main-block {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  min-width: 0;
}
.banner-main-block.banner-feature {
  align-self: stretch;
}
:is(.banner-main-block, .banner-main-blocks) {
  min-width: 0;
}

@media only screen and (min-width: 768px) {
  .banner-main {
    min-height: 500px;
  }
  .banner-main-blocks {
    grid-template-columns: auto 1fr;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  :is(.banner-main-block, .banner-main-blocks) {
    min-width: 0;
  }
  .banner-main-block:only-child {
    flex: 1 1;
    grid-column: span 2;
    justify-self: center;
  }
  .banner-main-block.banner-body {
    order: 2;
  }
}
.header-overlay-on-banner .banner-main {
  padding-top: var(--layout-header-height);
}
.banner-has-feature .banner-main {
  /* Styles specific for when banner has background image */
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .banner-has-feature .banner-main {
    min-height: 550px;
  }
}
.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;
  padding-block: 2.75rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .banner-body {
    padding-bottom: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-body {
    padding-block: 5.25rem;
  }
  .banner-body:not(:only-child) {
    align-items: normal;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .banner-body {
    text-align: center;
  }
}
.banner-has-feature .banner-body {
  /* Styles specific for when banner has background image */
}
@media only screen and (min-width: 768px) {
  .banner-has-feature .banner-body {
    padding-block: 3.25rem;
  }
}
/* Banner Body
--------------------------------------------------------------- */
.banner-feature {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: min(-webkit-max-content, 520px);
  width: min(-moz-max-content, 520px);
  width: min(max-content, 520px);
}
.banner-feature-photo {
  pointer-events: none;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
}
.banner-feature-photo-img {
  display: block;
  margin-left: -60px;
  margin-right: -70px;
  flex: 1 1;
  max-width: none;
  width: auto;
  max-height: 284px;
}
.banner-feature-body {
  flex: 0 0 auto;
  text-align: initial;
  padding-block: 1.75rem;
}
.banner-feature-body:only-child {
  margin-right: auto;
}
.banner-feature-body-quote {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--scheme-sp);
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
  border-left: 4px solid var(--scheme-sb);
  padding-left: 0.75em;
  max-width: 16.5ch;
}
.banner-feature-body-source {
  font-size: 0.8125rem;
  font-weight: 700;
}
@media only screen and (min-width: 768px) {
  .banner-feature {
    justify-content: end;
  }
  .banner-feature-photo-img {
    margin-right: -125px;
    margin-left: -105px;
    max-height: 380px;
  }
  .banner-feature-body-quote {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .banner-feature-body-quote {
    max-width: 14.5ch;
  }
}
@media only screen and (min-width: 768px) {
  .banner-feature-body-source {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-feature-photo-img {
    margin-right: -60px;
    margin-left: -95px;
  }
  .banner-feature-body-quote {
    font-size: 1.4375rem;
    max-width: 18ch;
  }
  .banner-feature-body-source {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-feature-photo-img {
    margin-right: -45px;
    margin-left: -105px;
  }
  .banner-feature-body-quote {
    font-size: 1.75rem;
  }
}
@media only screen and (min-width: 1920px) {
  .banner-feature-photo-img {
    margin-right: -45px;
    margin-left: -100px;
  }
}
@media only screen and (max-width: 767px) {
  .banner-feature {
    flex-direction: row-reverse;
  }
}
.banner-has-feature .banner-feature {
  /* Styles specific for when banner has background image */
}
/* Global Secondary Heading
--------------------------------------------------------------- */
.secondary-heading {
  font-size: 0.9375rem;
  line-height: calc(1em + 10px);
  color: var(--scheme-sp);
  font-style: normal;
  font-weight: 700;
  text-align: inherit;
  margin-bottom: 1rem;
}
.secondary-heading em {
  /* emphasized words */
  color: var(--scheme-sb-contrast);
  font-style: normal;
}
.secondary-heading-separator {
  font-style: normal;
  color: var(--scheme-sb);
  margin: 0 0.75em;
  font-size: 0.75em;
}
.secondary-heading > span {
  /* split words */
  display: inline-block;
}
.secondary-heading-stars {
  font-size: 0.875em;
}
.secondary-heading-stars svg *[fill] {
  fill: var(--scheme-sb);
}
@media only screen and (min-width: 768px) {
  .secondary-heading {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .secondary-heading {
    font-size: 1.1875rem;
    margin-bottom: 0.875em;
  }
}
@media only screen and (max-width: 1199px) {
  .secondary-heading-stars {
    margin-top: 0.375em;
  }
}
@media only screen and (max-width: 767px) {
  .secondary-heading > span::after {
    content: none;
  }
  .secondary-heading > span {
    display: block;
  }
}
.has-banner .secondary-heading {
  margin-left: auto;
  margin-right: auto;
}
.banner-has-feature .secondary-heading.secondary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) and (max-width: 1919px) {
  .banner-has-feature .secondary-heading.secondary-heading-default {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-feature .secondary-heading.secondary-heading-default {
    margin-bottom: 0.625em;
  }
}
@media only screen and (min-width: 1920px) {
  .banner-has-feature .secondary-heading.secondary-heading-default > span {
    display: inline-block;
  }
}
.banner-has-feature .secondary-heading.secondary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
/* Global Primary Heading
--------------------------------------------------------------- */
/* Note: default styles are set to custom internal templates w/ no banner background images  (Case Results, Testimonials, etc.) to reduce repetitive styles and or lengthy selectors */
.primary-heading {
  /* Global Styles / custom page template heading styles (Testimonials Grid, Attorney Grid, etc.) */
  font-size: 2.625rem;
  line-height: calc(1em + 10px);
  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: 4.0625rem;
    line-height: calc(1em + 7px);
  }
}
@media only screen and (min-width: 1200px) {
  .primary-heading {
    font-size: 4.6875rem;
    line-height: calc(1em + 15px);
  }
}
@media only screen and (min-width: 1400px) {
  .primary-heading {
    line-height: calc(1em + 5px);
  }
}
.banner-has-feature .primary-heading.primary-heading-default {
  /* Styles specific for default template primary heading (Single Post, Single Page, Possibly Blog/ Archive etc.) */
  font-size: 1.875rem;
}
@media only screen and (min-width: 768px) {
  .banner-has-feature .primary-heading.primary-heading-default {
    font-size: 2.0625rem;
  }
}
@media only screen and (min-width: 1200px) {
  .banner-has-feature .primary-heading.primary-heading-default {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-has-feature .primary-heading.primary-heading-default {
    font-size: 3.4375rem;
  }
}
.banner-has-feature .primary-heading:is(.primary-heading-default-h1, .primary-heading-blog-title) {
  /* Styles specific for default template primary heading set as an h1 (Single Post, Single Page) */
}
@media only screen and (min-width: 768px) {
  .banner-has-feature .primary-heading:is(.primary-heading-default-h1, .primary-heading-blog-title) {
    font-size: 3.4375rem;
  }
}
.primary-heading.primary-heading-blog {
  /* Styles specific for blog post/ blog archive custom primary heading (Blog/ Archive) */
}
.primary-heading.primary-heading-blog-title {
  /* Styles specific for blog post/ blog archive custom primary heading set as blog page's title eg 'Our Blog', 'Firm Blog', etc... Note: This will be an H1 on Blog/Archive but not in Single Posts for SEO (Single Posts, Blog/ Archive) */
}
.layout-banner .primary-heading {
  /* Styles specific for when it's inside a banner */
}
.primary-heading.h1-fallback-heading {
  /* Styles specific for when banner does not exist/ rendered as a helper class for the fallback h1 */
  display: inline-block;
  margin-bottom: 0.325em;
}
/* 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-feature .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-feature .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.25rem;
}
.banner-buttons-touch {
  text-align: inherit;
  margin-top: 3.25rem;
  margin-bottom: 4rem;
}
.banner-buttons-touch:first-child {
  margin-top: -1rem;
}
@media only screen and (min-width: 768px) {
  .banner-buttons {
    margin-top: 2rem;
  }
  .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: 1200px) {
  .banner-buttons {
    margin-top: 1.75rem;
  }
}
@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;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-has-feature .banner-buttons {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 1199px) {
  .banner-has-feature .banner-buttons {
    margin-top: 1.25rem;
  }
}
/* Banner Form
--------------------------------------------------------------- */
#banner-form .field-form {
  margin-left: auto;
  margin-right: auto;
}
#banner-form .gform_title:last-child {
  margin-bottom: 0;
}
#banner-form .gform_description {
  max-width: 80ch;
}
#banner-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#banner-form .gform_footer {
  justify-content: center;
  text-align: center;
}
#banner-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#banner-form .field-form-body {
  position: relative;
  padding-bottom: 0;
}
#banner-form.required-message {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 100%;
}
@media only screen and (max-width: 1199px) {
  #banner-form .gform_fields .gfield:not(.gfield-width-full) {
    /* fix gravity forms from deciding to undo the grid columns on mobile instead of tablet now */
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 767px) {
  #banner-form .field-form-body {
    position: relative;
    padding-bottom: 2rem;
  }
  #banner-form .gfield.required-message {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 100%;
  }
}

/* ================================================================================
* Sidebar
================================================================================ */
/* Layout Sidebar
--------------------------------------------------------------- */
/* Sidebar Form
--------------------------------------------------------------- */
#sidebar-form {
  background: var(--color-dark-alt);
  color: var(--color-light);
  --widget-padding-top: 2rem;
  --widget-padding-bottom: calc(var(--widget-padding-top) + 2rem);
}
#sidebar-form .field-form {
  margin-left: auto;
  margin-right: auto;
}
#sidebar-form .gform_heading {
  margin-bottom: 2rem;
}
#sidebar-form .gform_title {
  font-size: 2rem;
}
#sidebar-form .gform_title:last-child {
  margin-bottom: 0;
}
#sidebar-form .gform_description {
  max-width: 80ch;
}
#sidebar-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#sidebar-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}
#sidebar-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
#sidebar-form .field-form-body {
  position: relative;
  padding-bottom: 2rem;
}
#sidebar-form.required-message {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 100%;
}
/* ================================================================================
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-link {
  font-size: 1.25rem;
  line-height: 1;
  font-family: var(--font-secondary);
  color: inherit;
  font-weight: 700;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .number-link {
    font-size: 1.6875rem;
  }
}
@media only screen and (min-width: 1200px) {
  .number-link {
    font-size: 1.875rem;
  }
}
@media only screen and (min-width: 1920px) {
  .number-link {
    font-size: 2.25rem;
  }
}

/* Global Stylees - Locations
-------------------------------------------------------------------------------- */
.location-title:is(.h3) {
  border-bottom: 1px solid var(--color-neutral-light);
  padding-bottom: 1.25em;
  margin-bottom: 1.25em;
}
.location-number-label {
  font-weight: 500;
}
.location-number-link {
  color: var(--scheme-sp);
  font-weight: 700;
  text-decoration: underline;
}
.location-directions-button {
  margin-top: 2rem;
}
.location-directions-button.button-style-link {
  margin-block: 0.5rem;
  color: var(--scheme-sp);
}
/* Global Stylees - Social Links (ie. firm social media, blog share icons, etc)
-------------------------------------------------------------------------------- */
.social {
  font-size: 1.875rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.social li {
  list-style: none;
}
.social li a {
  color: inherit;
}
.social li a svg * {
  fill: currentColor;
}
.social li:is(:hover, :focus) {
  color: var(--scheme-sp, var(--color-primary));
}
/* Confact Info Block - Titles
-------------------------------------------------------------------------------- */
.contact-block-title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-bottom: 0;
  padding-bottom: 0;
}
.contact-block-title.fancy-border {
  --fancy-border-margin-y: 1.125rem;
  --fancy-border-width: 90px;
  margin-bottom: var(--fancy-border-margin-y);
}
.contact-block-title.fancy-border.h2 {
  --fancy-border-margin-y: 1.5rem;
}
.contact-block-title:nth-child(n+2) {
  margin-top: 2rem;
}
/* Confact Info Block - Basic Text Content
-------------------------------------------------------------------------------- */
.contact-block-content {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}
.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;
  gap: 2rem;
  align-items: stretch;
}
.contact-block, .contact-blocks {
  min-width: 0;
}
.contact-block {
  width: 100%;
}
.contact-block, .contact-block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
}
.contact-blocks:is(.columns) {
  --columns-gap-x: 35px;
  --columns-gap-y: var(--columns-gap-x);
  justify-content: center;
  position: relative;
}
.contact-blocks:is(.columns) .contact-block {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 4.875rem 1rem;
  max-width: 458px;
}
.contact-block.contact-special {
  max-width: 100%;
  gap: 2.625rem;
}
.contact-block.contact-special .logo {
  margin: 0 auto;
  height: 50px;
}
.contact-block.contact-special .logo svg *[fill]:not([fill=none]) {
  fill: currentColor;
}
.contact-block.contact-special .contact-footer-cta {
  --fancy-underline-width: 2px;
  font-size: 1.875rem;
  line-height: calc(1em + 15px);
}
.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 .contact-numbers-content {
  display: grid;
  flex: 0 0;
  row-gap: 1rem;
}
.contact-block.contact-numbers .number-title {
  display: block;
  margin-bottom: 0;
}
.contact-block.contact-location {
  /* Location - Contact Block Grid */
  /*
  @Variation A: Separate blocks
  Requires PHP: layouts/layout-contact.php - @Variation A: Separate blocks
  Requires SCSS: scss/layouts/_contact.scss - @Variation A: Separate blocks
  */
}
.contact-block.contact-locations {
  /* Locations - Contact Block Grid */
  /*
  @Variation B: One block
  Requires PHP: layouts/layout-contact.php - @Variation B: One block
  Requires SCSS: scss/layouts/_contact.scss - @Variation B: One block
  */
}
.contact-block.contact-locations .contact-locations-content {
  display: grid;
  row-gap: 4rem;
}
.contact-block.contact-list {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.contact-block.contact-list .list-block-items {
  display: flex;
  flex-direction: column;
}
.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-block.contact-special .logo {
    height: 64px;
  }
  .contact-block.contact-special .contact-footer-cta span {
    padding-bottom: 0.375em;
    display: block;
  }
  .contact-block.contact-special .contact-footer-cta br {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-blocks:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1920px) {
  .contact-block.contact-location .location-directions, .contact-block.contact-locations .location-directions {
    margin-top: auto;
  }
}
/* ================================================================================
* Footer
================================================================================ */
/* Branding logo sizes
--------------------------------------------------------------- */
.ilawyer-legacy,
.ilawyer,
.onep21 {
  color: inherit;
}

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

.onep21 {
  font-size: 3.125rem;
}

/* Layout Footer
--------------------------------------------------------------- */
/* fancy overlap for sections that wanna overlap with the footer */
.layout-footer {
  background-color: var(--scheme-bg, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
.home-section:last-child > .section-container {
  margin-bottom: calc((var(--footer-offset) + 1px) * -1);
}

.layout-footer:before {
  content: "";
  display: block;
  height: var(--footer-offset, 0px);
  pointer-events: none;
}
/* Footer Split - Top
--------------------------------------------------------------- */
.footer-top {
  padding-top: 3rem;
}
@media only screen and (min-width: 768px) {
  .footer-top {
    padding-top: 8.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-top {
    padding-top: 5.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-top {
    padding-top: 6rem;
  }
}
@media only screen and (min-width: 1920px) {
  .footer-top {
    padding-top: 6.25rem;
  }
}
/* Footer Form
--------------------------------------------------------------- */
#footer-form {
  color: var(--color-light);
}
#footer-form .field-form {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
#footer-form .gform_heading {
  margin-bottom: 1.75rem;
}
#footer-form .gform_title {
  font-size: 2.8125rem;
  --fancy-border-margin-y: 1.625rem;
}
#footer-form .gform_title:last-child {
  margin-bottom: 0;
}
#footer-form .gform_description {
  max-width: 80ch;
}
#footer-form .gform_body {
  margin-left: auto;
  margin-right: auto;
}
#footer-form .gform_footer {
  justify-content: center;
  text-align: center;
  margin-top: 1.625rem;
}
#footer-form .gfield.gfield_type_submit {
  /* dont stretch flex button */
  align-self: flex-start;
}
@media only screen and (min-width: 768px) {
  #footer-form .gform_heading {
    margin-bottom: 3.75rem;
  }
  #footer-form .gform_title {
    font-size: 4.0625rem;
    --fancy-border-width: 300px;
    --fancy-border-margin-y: 2rem;
  }
  #footer-form .gform_fields {
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 1200px) {
  #footer-form .field-form {
    max-width: 1095px;
  }
  #footer-form .gform_heading {
    margin-bottom: 3.125rem;
  }
  #footer-form .gform_title {
    font-size: 4.6875rem;
  }
  #footer-form .gform_fields {
    gap: 2.5rem;
  }
  #footer-form .gform_footer {
    margin-top: 1.625rem;
  }
  #footer-form .gfield.required-message {
    margin-top: -1rem;
  }
}
@media only screen and (max-width: 767px) {
  #footer-form .field-form-body {
    position: relative;
    padding-bottom: 2rem;
  }
  #footer-form .gfield.required-message {
    margin-top: -0.5rem;
  }
}

/* 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 {
  padding-top: 1.625rem;
}
.footer-contact .contact-block .footer-flag {
  border: none;
}
.footer-contact .contact-blocks {
  row-gap: 3.75rem;
}
.footer-contact .contact-block-content {
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
.footer-contact .contact-block.footer-info {
  margin-bottom: 20px;
}
.footer-contact .contact-block.footer-info .contact-footer-info {
  max-width: 290px;
  margin-inline: auto;
  width: 100%;
  font-size: 40px;
  font-style: normal;
  text-align: left;
  --fancy-underline-width: 2px;
}
.footer-contact .contact-block.footer-info .contact-footer-info span {
  display: block;
  width: 100%;
}
.footer-contact .contact-block.footer-info .contact-footer-info-content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 17px;
  max-width: 290px;
  margin-left: 0;
  text-align: left;
}
.footer-contact .contact-block.footer-info .contact-footer-info-content p {
  display: flex;
  font-size: 18px;
  font-weight: 700;
}
.footer-contact .contact-block.footer-info .contact-footer-info-content span {
  margin-right: 5px;
}
.footer-contact .contact-block.footer-info .contact-footer-info-content span:before {
  display: block;
  content: "";
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/1p21-monge/images/checkmark.svg");
  width: 28px;
  height: 20px;
  margin-inline: auto;
}
.footer-contact .contact-block .footer-flag:before {
  display: block;
  content: "";
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/wp-content/themes/1p21-monge/images/flag.svg");
  width: 56px;
  height: 34px;
  margin-top: 23px;
  margin-inline: auto;
}
.footer-contact .contact-block.contact-social {
  margin-top: -1.875rem;
}
@media only screen and (min-width: 768px) {
  .footer-contact {
    padding-top: 3.875rem;
  }
  .footer-contact .contact-blocks {
    row-gap: 2.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-contact {
    padding-top: 3rem;
  }
  .footer-contact .contact-blocks {
    grid-template-columns: repeat(3, auto);
    justify-items: space-around;
    align-items: center;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    row-gap: 2.125rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .footer-contact .contact-block.footer-info {
    margin-top: 1rem;
  }
  .footer-contact .contact-block.footer-info .contact-footer-info {
    max-width: 270px;
  }
  .footer-contact .contact-block.footer-info .contact-footer-info-content {
    row-gap: 15px;
  }
  .footer-contact .contact-block.contact-social {
    grid-column-start: 3;
  }
  .footer-contact .contact-block.contact-special {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
@media only screen and (min-width: 1920px) {
  .footer-contact {
    padding-top: 5rem;
  }
  .footer-contact .contact-blocks {
    max-width: 1500px;
  }
}
/* Footer Split - Bottom
--------------------------------------------------------------- */
/* Footer utility
--------------------------------------------------------------- */
.footer-utility {
  padding-block: 2.25rem;
  margin-top: 2.25rem;
  /* border separation */
  border-top: 1px solid var(--scheme-bg-contrast);
  font-size: 0.875rem;
  line-height: calc(1em + 10px);
}
.footer-utility-blocks {
  display: grid;
  row-gap: 1.5rem;
  -moz-column-gap: 1.75rem;
       column-gap: 1.75rem;
  align-items: center;
}
.footer-utility-content li {
  display: inline;
}
.footer-utility-content li:nth-child(n+2)::before {
  content: " | ";
  display: inline-block;
  margin: 0 0.5em 0 0.25em;
}
@media only screen and (min-width: 768px) {
  .footer-utility {
    padding-block: 1.75rem;
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-utility-block {
    grid-column: 2;
  }
  .footer-utility-blocks {
    grid-template-columns: auto 1fr;
    justify-content: end;
    align-items: center;
    justify-items: end;
  }
  .footer-utility-content {
    grid-row: 1/span 2;
    grid-column: 1;
    justify-self: self-start;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-utility {
    margin-top: 5.875rem;
  }
  .footer-utility-blocks {
    grid-template-columns: 1fr auto 1fr;
  }
  .footer-utility-content {
    margin-right: auto;
    order: -1;
  }
  .footer-utility-content:first-child:nth-last-child(2) {
    grid-column: span 2;
  }
  .footer-utility .social {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .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 (min-width: 1400px) {
  .footer-utility {
    padding-block: 2.25rem;
  }
}
@media only screen and (min-width: 1920px) {
  .footer-utility :is(p,
  ul,
  li) {
    display: inline;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-utility-blocks {
    text-align: center;
    justify-content: center;
    justify-items: center;
  }
}

/* Footer disclaimer
--------------------------------------------------------------- */
.footer-disclaimer {
  margin-top: 1em;
}
/* ================================================================================
* Internals/ Default
================================================================================ */
/*!
* Default Layout/Template
-------------------------------------------------------------------------------- */
/* Default Entries
-------------------------------------------------------------------------------- */
.entry-thumbnail {
  --entry-thumbnail-aspect-w: 648;
  --entry-thumbnail-aspect-l: 260;
  display: block;
  margin-bottom: 2rem;
}
.entry-thumbnail:nth-child(n+2) {
  margin-top: 2rem;
}
.entry-thumbnail:is(a) {
  color: inherit;
}
.entry-thumbnail-img {
  position: relative;
  overflow: hidden;
  background: var(--scheme-bg-contrast, var(--color-light-alt));
}
.entry-thumbnail-img::before {
  content: "";
  display: block;
  padding-top: calc(100% * var(--entry-thumbnail-aspect-l) / var(--entry-thumbnail-aspect-w));
}
.entry-thumbnail-img::after {
  content: "No Image Available";
  opacity: 0.2;
  font-size: 1.5rem;
  line-height: 1.125;
  font-family: var(--font-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2em 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 a:not(:hover, :focus) {
  text-decoration: none;
  color: inherit;
}
.entry-meta > span:nth-child(n+2):before {
  content: "|";
  margin: 0 0.5em;
  color: var(--scheme-sb);
}
.entry-meta-category a:not(:hover, :focus) {
  color: var(--scheme-sp);
  text-decoration: underline;
}
.entry-title {
  margin-bottom: 0.875rem;
}
.entry-excerpt {
  margin-bottom: 2rem;
}
.entry-buttons .button:nth-child(n+2) {
  margin-left: 1em;
}
.entries .entry {
  display: grid;
  justify-content: space-between;
  -moz-column-gap: 2.75rem;
       column-gap: 2.75rem;
}
.entries .entry:nth-child(n+2) {
  padding-top: 2.75rem;
  margin-top: 2.75rem;
  border-top: 1px solid var(--color-neutral-light);
}
.entries .entry-thumbnail, .entries .entry-body {
  /* grid fix */
  min-width: 0;
}
@media only screen and (min-width: 1400px) {
  .entries .entry {
    grid-template-columns: 250px 1fr;
  }
  .entries .entry-thumbnail {
    margin-bottom: 0;
    --entry-thumbnail-aspect-w: 250;
    --entry-thumbnail-aspect-l: 200;
  }
  .entries .entry-body {
    align-self: center;
  }
  .entries .entry-body: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: 60px;
  --default-gap-y: 45px;
  gap: var(--default-gap-y) var(--default-gap-x);
}
.default-sections, .default-section, .default-section-main, .default-section-sidebar {
  min-width: 0; /* grid/flex fixes*/
  max-width: 100%;
}
.default-section-sidebar {
  width: var(--default-sidebar-width);
  margin-inline: auto;
}
.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: 1400px) {
  .default-section {
    /* 2 column styles. move to media queries by design as needed */
  }
  .default-section-main {
    max-width: calc(var(--comp) - var(--default-sidebar-width) - var(--container-gutter, 0px) * 2 - var(--default-gap-x));
  }
  .default-section-sidebar {
    order: 9;
  }
  .default-sections:is(.default-sections-split, .default-sections-full) {
    flex-direction: row;
    align-items: normal;
    justify-content: center;
  }
  .default-sections.default-sections-reverse .default-section-sidebar {
    order: -1;
  }
  .default-sections.default-sections-reverse .default-section-main {
    order: 9;
  }
  .default-sections.default-sections-float::after {
    content: "";
    font-size: 0;
    visibility: hidden;
    height: 0;
    clear: both;
    display: table;
    width: 100%;
    flex: 0 0 auto;
  }
  .default-sections.default-sections-float .default-section-sidebar {
    float: right;
    clear: right;
  }
  .default-sections.default-sections-float .default-section-main {
    float: left;
    clear: left;
    width: calc(100% - (var(--default-sidebar-width)) - var(--default-gap-x));
  }
  .default-sections.default-sections-float .default-section-main:only-child {
    /* no sidebar adjust */
    float: none;
  }
  .default-sections.default-sections-float.default-sections-reverse .default-section-sidebar {
    float: left;
    clear: left;
  }
  .default-sections.default-sections-float.default-sections-reverse .default-section-main {
    float: right;
    clear: right;
  }
  .default-sections:is(.default-sections-split, .default-sections-full) .default-section-sidebar {
    flex: 0 0 auto;
  }
  .default-sections:is(.default-sections-split, .default-sections-full) .default-section-main {
    flex: 1 1;
  }
  .default-sections.default-sections-full {
    --default-gap-x: 0rem;
  }
  .default-sections.default-sections-full .default-section-main {
    margin-left: auto;
    margin-right: auto;
  }
  .default-sections.default-sections-grid {
    grid-template-columns: 1fr var(--default-sidebar-width);
    grid-column-gap: var(--default-gap-x);
  }
  .default-sections.default-sections-grid .default-section-main {
    justify-self: center;
    grid-column: 1;
  }
  .default-sections.default-sections-grid .default-section-main:only-child {
    /* no sidebar adjust */
    grid-column: span 2 !important;
  }
  .default-sections.default-sections-grid .default-section-sidebar {
    grid-column: 2;
  }
  .default-sections.default-sections-grid .default-section-main, .default-sections.default-sections-grid .default-section-sidebar {
    width: 100%;
    min-width: 0;
    min-height: 0;
  }
  .default-sections.default-sections-grid.default-sections-reverse {
    grid-template-columns: var(--default-sidebar-width) 1fr;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-main {
    grid-column: 2;
  }
  .default-sections.default-sections-grid.default-sections-reverse .default-section-sidebar {
    grid-column: 1;
  }
}
@media only screen and (max-width: 1399px) {
  .default-sections:not(.default-sections-full) .default-section-sidebar {
    max-width: var(--default-sidebar-width);
  }
  .default-sections:not(.default-sections-full) > .default-section:is(main, .main):not(:only-child) {
    padding-bottom: 0;
  }
}
/* Default Sections Customizations
--------------------------------------------------------------- */
@media only screen and (min-width: 1200px) {
  .default-sections {
    --default-sidebar-width: 750px;
  }
}
@media only screen and (min-width: 1400px) {
  .default-sections {
    --default-sidebar-width: 364px;
    --default-gap-x: 77px;
  }
}
@media only screen and (min-width: 1920px) {
  .default-sections {
    --default-gap-x: 150px;
  }
}
@media only screen and (min-width: 1200px) {
  .default-sections.default-sections-split .default-section-sidebar-container {
    --container-gutter: 1rem;
  }
}
.default-sections.default-sections-full .default-section-sidebar {
  background: var(--scheme-bg-contrast, var(--color-light-alt));
}
@media only screen and (min-width: 1200px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 120px;
  }
}
@media only screen and (min-width: 1920px) {
  .default-sections.default-sections-full .default-section-main-container {
    --container-gutter: 250px;
  }
}
/*!
* Default Header
-------------------------------------------------------------------------------- */
.default-header :is(*.h1, :where(h1)) {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .banner-has-h1.banner-button-shift .default-header {
    margin-bottom: 0;
  }
}
/*!
* Default Heading
-------------------------------------------------------------------------------- */
.default-heading {
  margin-bottom: 2rem;
}
/*!
* Default Divider - Optional
-------------------------------------------------------------------------------- */
.default-divider {
  --fancy-border-margin-y: 1.625rem;
}
/*!
* 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;
}

/* ================================================================================
* Includes 
================================================================================ */
.book-thumbnail {
  max-width: 100%;
  width: 220px;
  --book-thumbnail-aspect-w: 220;
  --book-thumbnail-aspect-l: 255;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  background-color: var(--color-light);
}
.book-thumbnail picture {
  position: relative;
  display: block;
  width: 100%;
  flex: 0 0 auto;
}
.book-thumbnail picture::before {
  /* aspect ratio keeper  */
  content: "";
  display: block;
  padding-top: calc(100% * var(--book-thumbnail-aspect-l) / var(--book-thumbnail-aspect-w));
}
.book-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  margin: 0 !important;
}
@media only screen and (min-width: 1200px) {
  .book-thumbnail {
    width: 318px;
  }
}
.book-field-form .field-form-heading {
  text-align: initial;
}

.book {
  max-width: 1005px;
}
.book-container {
  display: grid;
  grid-template-columns: 100%;
  gap: 2.375rem;
}
.book .book-thumbnail {
  align-self: self-start;
}
.book .book-field-form {
  align-self: center;
}
:is(.book-thumbnail, .book-field-form) {
  min-width: 0;
}

@media only screen and (min-width: 1200px) {
  .book-container {
    grid-template-columns: auto 1fr;
    gap: 6rem;
  }
  .book .book-thumbnail {
    margin-top: 3.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  .book {
    max-width: 1265px;
  }
}
@media only screen and (max-width: 767px) {
  .book .book-thumbnail {
    justify-self: center;
  }
}

/* Carousel slider skeletons. Do not Edit.
--------------------------------------------------------------- */
.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;
}

/* Carousel Customizations
--------------------------------------------------------------- */
.carousel {
  /* height of award. best to set to the tallest award logo provided  */
  --carousel-height: 150px;
  --carousel-arrow-offset-x: 0px;
  /* distance of arrows from the slider  */
  --carousel-arrow-offset-x-negate: 0px;
  /* distance to compensate the arrow distance against the width of the .carousels and the width of the component's container
  Tip: setting equal to --carousel-arrow-offset-x will align the slides to the container. so pretty. */
  /* distance of dots to the awards. not supported on slick */
}
/* 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:not(.visible)) .responsive-background-bg {
    /* hide if not ready to let the world to know got to let it show */
    opacity: 0;
    transform: scale(1.125);
  }
}

/*
* Case Result Icon
-------------------------------------------------------------------------------- */
.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
/*
* Case Result Value
-------------------------------------------------------------------------------- */
.result-value {
  font-size: 2.8125rem;
  line-height: calc(1em + 5px);
  font-family: var(--font-accent);
  text-transform: capitalize;
  font-weight: 700;
  --fancy-border-margin-y: .3em;
  margin-bottom: var(--fancy-border-margin-y);
}
.result-value-confidential {
  font-size: 1.5rem;
}
.results-featured .result-value {
  font-size: 3.125rem;
  --fancy-border-margin-y: 1.25rem;
  --fancy-border-width: 5em;
}
@media only screen and (min-width: 768px) {
  .results-featured .result-value {
    font-size: 3.125rem;
  }
}
/*
* Case Result Type
-------------------------------------------------------------------------------- */
.result-type {
  font-size: 0.875rem;
  line-height: 1.25;
  color: var(--scheme-fg-contrast);
  font-weight: 700;
  margin-bottom: 1em;
}
.results-featured .result-type {
  font-size: 1.0625rem;
}
/*
* Case Result Title - Optional
-------------------------------------------------------------------------------- */
.result-title {
  font-size: 1.0625rem;
  line-height: 1.25;
  color: var(--scheme-fg-contrast);
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 1.875em;
}
/*
* Case Result Description
-------------------------------------------------------------------------------- */
.result-description-heading {
  font-size: 1.0625rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.results-featured .result-description-heading {
  margin-bottom: 0.75em;
}
.result-description {
  font-size: 1.0625rem;
  line-height: calc(1em + 8px);
}
/*
* 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:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
.results-featured {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: var(--scheme-bg-contrast);
  margin-bottom: 3.75rem;
}

.results-featured .result {
  padding-block: 3.75rem;
}
.results-featured .result-container {
  padding-inline: 3.75rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 2.875rem;
}
.results-featured .result-summary, .results-featured .result-details {
  min-width: 0;
}
.results-featured .result-summary {
  text-align: center;
}
.results-featured .result-description {
  margin-inline: auto;
  width: 87%;
  max-width: 25ch;
}
@media only screen and (min-width: 768px) {
  .results-featured {
    margin-bottom: 5.625rem;
    max-width: 1100px;
    margin-inline: auto;
  }
  .results-featured .result {
    padding-block: 4.625rem;
  }
  .results-featured .result-container {
    gap: 5.375rem;
  }
}
@media only screen and (min-width: 1200px) {
  .results-featured {
    margin-bottom: 8.875rem;
  }
  .results-featured .result {
    padding-block: 4.5rem;
  }
  .results-featured .result-container {
    gap: 4.5rem;
    grid-template-columns: auto 1fr;
    padding-inline: 80px;
    align-items: center;
  }
  .results-featured .result-summary {
    max-width: 100%;
    width: 350px;
  }
}
@media only screen and (min-width: 1400px) {
  .results-featured .result-container {
    gap: 3.875rem;
    padding-inline: 85px;
  }
  .results-featured .result-summary {
    width: 400px;
  }
}
@media only screen and (min-width: 1920px) {
  .results-featured .result-container {
    gap: 3.875rem;
    padding-inline: 85px;
  }
  .results-featured .result-summary {
    width: 400px;
  }
}
/*
* includes/repeater-result
-------------------------------------------------------------------------------- */
.result {
  position: relative;
}
.result, .result-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.result-container {
  width: 100%;
}
.result :where(.result-description, .result-content) {
  margin-left: auto;
  margin-right: auto;
}
.result-details-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1;
}
.result-details-default .result-description {
  flex: 1 1;
}
.result-details-default .result-learn-more:first-child {
  margin-top: auto;
}
.result-details-hover {
  max-width: none;
  position: absolute;
  background-color: var(--color-dark-alt);
  color: var(--color-light);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  scrollbar-width: none;
  overflow-y: scroll;
  transition: 0.25s all ease-in-out;
  padding: 2rem;
  opacity: 1;
}
.result-details-hover::-webkit-scrollbar {
  display: none;
}
.result:not(:hover, :focus-within) .result-details-hover {
  pointer-events: none;
  opacity: 0;
}
@media only screen and (min-width: 1200px) {
  .results-default .result-container {
    max-width: 360px;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 767px) {
  .results {
    margin-inline: calc(var(--container-gutter, 30px) * -1);
  }
  .result-container {
    padding-inline: var(--container-gutter, 30px);
  }
}

/*
* 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: 0.5rem;
  /* horizontal padding for the practice area title */
  --pa-title-padding-x: var(--pa-item-padding-x);
  /* 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: 3.125rem;
  /* Note: this value has to be unitless for calc values to work.
  	* Number of lines to compensate for the item height */
  --pa-item-lines: 2;
  /* Note: this value has to be unitless for calc values to work.
  	* 1 moves the text to the very bottom. 0 moves the text to the very top */
  --pa-item-baseline-offset: 0.5;
  /* Note: this value has to be unitless for calc values to work.
  	* Formula is line-height-px / font-size-px */
  --pa-item-line-height: 1.5;
  line-height: var(--pa-item-line-height);
}
@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 {
  text-align: initial;
}
/*
* Practice Area Menu
-------------------------------------------------------------------------------- */
.practice-area-menu {
  font-size: 1.25rem;
  font-weight: 500;
}
.practice-area-menu li:is(:hover, :focus-within) a {
  color: var(--color-primary);
}
/*
* includes/repeater-practice-area
-------------------------------------------------------------------------------- */
.practice-area {
  width: 100%;
  background: var(--color-light);
  color: var(--color-dark);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 1400px;
  margin-inline: auto;
}
.practice-area, .practice-area-container {
  display: flex;
  min-width: 0;
}
.practice-area-container {
  flex: 1 1;
  flex-direction: column;
}
/* Pagination
-------------------------------------------------------------------------------- */
/* pagination skeletion. no need to edit */
.pagination {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content 1fr;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  text-align: center;
  clear: both;
  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 {
  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: 385;
  --profile-image-aspect-l: 353;
  --profile-image-position: 50% 15%;
  --profile-image-overlay-background: var(--color-dark-alt) linear-gradient(to bottom right, var(--color-dark), var(--color-dark-alt));
  --profile-image-overlay-opacity: .8;
  max-width: 100%;
  width: 100%;
  display: block;
  position: relative;
  border: 2.25rem solid var(--color-light);
  background: var(--color-dark);
  color: var(--color-light);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.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: 1.5rem;
  font-family: var(--font-secondary);
  color: var(--color-light);
  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);
  mix-blend-mode: multiply;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.profile-image[href] .profile-view {
  /*  */
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

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

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

/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-name {
  font-size: 1.6875rem;
  font-weight: 700;
  align-content: center;
  margin-bottom: 0.25em;
}
/*
* Profile Name
-------------------------------------------------------------------------------- */
.profile-position {
  font-size: 1rem;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 0;
}
/*
* includes/repeater-profile
-------------------------------------------------------------------------------- */
.profile {
  background: var(--color-light);
  color: var(--color-dark);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  align-self: stretch;
  max-width: 465px;
}
.profile .profile-image {
  box-shadow: none;
  border: 0;
}
.profile:is(:hover, :focus-within) {
  /* styles when the profile has a link */
}
.profile, .profile-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.profile-container {
  width: 100%;
  padding: 2.25rem;
  gap: 1.75rem;
}
.profile-info {
  flex: 1 1;
}
.profile-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 1.75rem;
}
@media only screen and (max-width: 1199px) {
  .profile-container {
    padding: 1.5rem;
  }
}
/*
* Testimonial Stars
-------------------------------------------------------------------------------- */
.testimonial-stars:nth-last-child(n+2) {
  margin-right: 1em;
}

.testimonial-heading {
  margin-bottom: 0.5rem;
  text-transform: capitalize;
  color: var(--scheme-sp);
}
@media only screen and (min-width: 1200px) {
  .testimonial-heading {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-heading {
    margin-bottom: 1rem;
  }
}
/*
* Testimonial Highlight / Main quote
-------------------------------------------------------------------------------- */
.testimonial-highlight {
  font-size: 0.9375rem;
  line-height: calc(1em + 10px);
  color: inherit;
  text-align: inherit;
  margin-top: 0;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1200px) {
  .testimonial-highlight {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-highlight {
    font-size: 1.25rem;
  }
}
/*
* Testimonial Quote Body / other parts of the quote
-------------------------------------------------------------------------------- */
.testimonial-quote {
  margin-top: 0;
  margin-bottom: 2rem;
}
/*
* Testimonial Divider - Optional
-------------------------------------------------------------------------------- */
/*
* Testimonial Source
-------------------------------------------------------------------------------- */
.testimonial-source.fancy-border {
  --fancy-border-width: 50px;
  --fancy-border-margin-l: 0;
}
.testimonial-source .content-icon {
  margin-left: 0.5em;
  position: relative;
  top: 0.1em;
}
a.testimonial-source-read-more {
  margin-top: 1em;
  display: block;
  text-decoration: underline;
}
.h6 a.testimonial-source-read-more {
  color: var(--scheme-sp);
}
.h6 a.testimonial-source-read-more:is(:hover, :focus) {
  color: var(--scheme-sb-contrast);
}
@media only screen and (min-width: 768px) {
  a.testimonial-source-read-more.testimonial-source-read-more-flush-right, .testimonial-source-read-more-flush-right a.testimonial-source-read-more {
    margin-left: 1em;
    margin-top: 0;
    float: right;
  }
}

/*
* includes/repeater-testimonial
-------------------------------------------------------------------------------- */
.testimonial, .testimonial-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.testimonial-container {
  width: 100%;
}
/* 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: 96px;
  /* 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.1875em;
  /* 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.15625em;
  /* width for video play triangle glyph*/
  /* Tip: set as ems so the play symbol scales along with the actual button */
  --video-button-glyph-color: currentColor;
  /* color of the video button glyph. Used as a background-color so it can take gradients too */
  display: inline-flex;
  width: 1em;
  height: 1em;
  position: relative;
  font-size: var(--video-button-size);
  z-index: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.video-button-default:is(.video-button-no-api) {
  pointer-events: none;
}
.video-thumbnail .video-button-default {
  /* customize instances of video button within thumbnail*/
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  --video-button-size: 70px;
}
@media only screen and (min-width: 1400px) {
  .video-button-default {
    --video-button-size: 110px;
  }
  .video-thumbnail .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);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-button-default-glyph:not(.video-button-default-glyph-has-text) {
  padding-left: calc(var(--video-button-glyph-width) * 0.25);
}
.video-button-default-glyph-has-text::before {
  content: none;
}
.video-button-default-glyph-text {
  font-size: var(--video-button-glyph-height);
}
.video-button-default-text {
  font-size: 0.75rem;
  line-height: 1;
  color: var(--color-neutral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.video-button-default-text-svg {
  transform-style: preserve-3d;
  max-width: none;
  top: -100%;
  left: -100%;
  right: -100%;
  bottom: -100%;
  margin: auto;
  font-size: calc(1em * 1 / var(--video-button-text-svg-radius-ratio));
  width: calc(200% * var(--video-button-text-svg-radius-ratio));
  height: calc(200% * var(--video-button-text-svg-radius-ratio));
}
.video-button-default-text-svg path {
  transform-origin: center center;
}
.video-button-default-text-html span {
  top: 0;
  bottom: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.video-button-default-text-html span:nth-child(odd) {
  right: 100%;
  margin-right: 1em;
}
.video-button-default-text-html span:nth-child(even) {
  left: 100%;
  margin-left: 1em;
}
.video-button-default-image {
  transition: all 0.25s ease-in-out;
}
.video-button-default-image-init, .video-button-default:is(:hover, :focus) .video-button-default-image-hover, .video-pointer-reference:is(:hover, :focus-within) .video-button-default-image-hover {
  opacity: 1;
}

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

.video-button-default.video-button-default-no-icon {
  /* tru element/background */
  /* these are basic styles. overhaul as needed */
  background: rgba(255, 255, 255, 0.2);
  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 extra background */
  /* these are basic styles. overhaul as needed */
  background: linear-gradient(to bottom, var(--color-light) 20%, var(--color-neutral-light) 100%);
  z-index: -1;
  top: 0.08em;
  bottom: 0.08em;
  left: 0.08em;
  right: 0.08em;
}
.video-button-default.video-button-default-no-icon::after {
  /* other element for fx */
  /* these are basic styles. overhaul as needed */
  top: 0.15em;
  bottom: 0.15em;
  left: 0.15em;
  right: 0.15em;
}
.video-button-default.video-button-default-no-icon:is(:hover, :focus), .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon {
  /* on hover on itself/ containing repeater/ .video-pointer-reference */
  --video-button-glyph-color: linear-gradient(to bottom, var(--color-light-alt), var(--color-light));
  /* these are basic styles. overhaul as needed */
  box-shadow: 0 0 0 0.1em 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 */
  background: linear-gradient(to bottom, var(--color-primary-gradient-start), var(--color-primary-gradient-end));
}
.video-button-default.video-button-default-no-icon:is(:hover, :focus)::after, .video-pointer-reference:is(:hover, :focus-within) .video-button-default.video-button-default-no-icon::after {
  /* these are basic styles. overhaul as needed */
}

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

/* Video Thumbnail
--------------------------------------------------------------- */
.video-thumbnail {
  --video-thumbnail-aspect-w: 464;
  --video-thumbnail-aspect-l: 250;
  --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);
}
.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.2;
  mix-blend-mode: multiply;
  transition: 0.25s ease-in-out all;
}
.video-thumbnail-markup-img img {
  max-width: none;
}
.video-thumbnail:is(:hover, :focus) .video-thumbnail-markup::after, .video-pointer-reference:is(:hover, :focus-within) .video-thumbnail .video-thumbnail-markup::after {
  opacity: var(--video-thumbnail-overlay-opacity);
}
/* force object fit cover where we need to, im looking at you wistia
--------------------------------------------------------------- */
:is(.video-thumbnail-markup, .video-button-image),
.video-thumbnail-markup > *,
.video-thumbnail-markup img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  margin: 0 !important;
}

/* includes/repeater-video
--------------------------------------------------------------- */
.video {
  padding: 1.5625rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: var(--color-light);
  color: var(--color-dark);
  max-width: 512px;
}
.video, .video-container {
  display: flex;
  min-width: 0;
  flex: 1 1;
  flex-direction: column;
}
.video-title {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1.125;
  text-align: center;
  margin-bottom: 0;
  margin-top: 1.5625rem;
}

/* ================================================================================
* 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
--------------------------------------------------------------- */
:where(.awards-title) {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.awards .carousel {
  --carousel-height: 175px;
}
@media only screen and (min-width: 1200px) {
  .awards-title {
    margin-bottom: 1.875rem;
  }
}
/* ================================================================================
* Home Template
================================================================================ */
/*
* Home Related Classes
-------------------------------------------------------------------------------- */
:where(.home-section) {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
:where(.home-section) .section-header, :where(.home-section) .section-footer {
  /* set centering as a scaffolding setting for all sections */
  text-align: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}
:where(.home-section) .section-header:where(:nth-last-child(n+2)) {
  margin-bottom: 2rem;
}
:where(.home-section) .section-blocks {
  display: grid;
  grid-template-columns: 100%;
}
:where(.home-section) .section-block, :where(.home-section) .section-blocks {
  min-width: 0;
  min-height: 0;
}
:where(.home-section) .section-footer:where(:nth-child(n+2)) {
  margin-top: 2rem;
}
:where(.home-section) .section-heading {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  :where(.home-section) .section-content.columns {
    --columns-number: 2;
    --columns-gap-x: 3.25rem;
    justify-content: center;
  }
  :where(.home-section) .section-content.columns.columns-grid {
    justify-items: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  :where(.home-section) .section-content.columns.columns-grid > .content:only-child {
    grid-column: 1/-1;
  }
  :where(.home-section) .section-content.columns.columns-grid > .content:is(:nth-child(n+2), :nth-last-child(n+2)):not(:only-child) {
    max-width: 600px;
  }
  :where(.home-section) .section-content:not(.columns) > .content {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 1400px) {
  :where(.home-section) .section-content.columns {
    --columns-gap-x: 5.5rem;
  }
}
@media only screen and (min-width: 1920px) {
  :where(.home-section) .section-content.columns {
    --columns-gap-x: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  :where(.home-section) .section-header, :where(.home-section) .section-footer {
    /* set centering as a scaffolding setting for all sections */
    text-align: center;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/*
* Home Template
-------------------------------------------------------------------------------- */
body.ilaw-template-home {
  /* body selector for home template */
  --footer-offset: -65px;
}
@media only screen and (min-width: 768px) {
  body.ilaw-template-home {
    --footer-offset: -72px;
  }
}
@media only screen and (min-width: 1200px) {
  body.ilaw-template-home {
    --footer-offset: 80px;
  }
}
@media only screen and (min-width: 1400px) {
  body.ilaw-template-home {
    --footer-offset: 75px;
  }
}
@media only screen and (min-width: 1920px) {
  body.ilaw-template-home {
    --footer-offset: 70px;
  }
}

:root {
  --banner-offset: 0px;
}
@media only screen and (min-width: 768px) {
  :root {
    --banner-offset: 150px;
  }
}
#home-banner .banner-main:after {
  content: "";
  height: var(--banner-offset);
  display: block;
  flex: 0 0 auto;
  width: 100%;
  pointer-events: none;
}
#home-banner + main > .home-section:first-child {
  padding-top: 1px;
}
#home-banner + main > .home-section:first-child > .section-container {
  margin-top: calc((var(--banner-offset) + 1px) * -1);
  position: relative;
}
#home-banner .banner-main {
  justify-content: flex-end;
  min-height: 500px;
}
#home-banner .banner-main .banner-text {
  padding-top: 55px;
  order: 1;
}
#home-banner .banner-main .banner-body {
  order: 2;
  padding-block: 0;
  justify-self: center;
}
#home-banner .banner-main .banner-feature {
  order: 3;
}
@media only screen and (min-width: 768px) {
  #home-banner .banner-main-blocks {
    grid-template-columns: 1fr 350px;
  }
  #home-banner .banner-main .banner-body {
    grid-column-start: 2;
    justify-self: center;
  }
  #home-banner .banner-main .banner-text {
    grid-column-start: 2;
    padding-top: 20px;
  }
  #home-banner .banner-main .banner-feature {
    grid-column: span 2;
    flex-direction: row-reverse;
    margin-top: -20rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .banner-main-blocks {
    grid-template-columns: 1fr 375px;
    margin-left: 20px;
  }
  #home-banner .banner-main .banner-text {
    grid-column-start: 1;
    max-width: 354px;
  }
  #home-banner .banner-main .banner-feature {
    flex-direction: row;
    justify-content: flex-start;
    pointer-events: none;
    margin-top: -26rem;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .banner-main .banner-feature {
    margin-top: -32rem;
  }
}
#home-banner .secondary-heading {
  text-align: center;
  margin-bottom: 13px;
}
#home-banner .secondary-heading-separator {
  display: none;
}
#home-banner .primary-heading {
  text-align: center;
  font-size: 1.875rem;
  margin-bottom: 21px;
}
#home-banner .banner-buttons {
  margin-top: 0;
  margin-bottom: 32px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #home-banner .layout-banner-container {
    --container-padding: 30px;
  }
  #home-banner .banner-main {
    min-height: 705px;
  }
  #home-banner .banner-body {
    padding-bottom: 3.5rem;
  }
  #home-banner .secondary-heading {
    margin-bottom: 1rem;
  }
  #home-banner .secondary-heading-span {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  #home-banner .secondary-heading-separator {
    display: inline;
  }
  #home-banner .primary-heading {
    font-size: 3.4375rem;
    line-height: 1.1818181818;
  }
  #home-banner .banner-feature-photo-img {
    max-height: 464px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #home-banner .banner-feature {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  #home-banner .banner-feature-body {
    padding-bottom: 0;
    margin-bottom: -15rem;
    margin-right: 1rem;
  }
  #home-banner .banner-feature-body-quote {
    max-width: 24ch;
  }
  #home-banner .banner-feature-photo-img {
    margin-left: -30px;
    margin-right: -155px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  #home-banner .banner-feature {
    align-items: flex-start;
    justify-content: center;
  }
  #home-banner-body {
    padding-bottom: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
  #home-banner-body-quote {
    max-width: 24ch;
  }
}
@media only screen and (min-width: 1200px) {
  #home-banner .layout-banner-container {
    padding-right: 103px;
  }
  #home-banner .banner-main {
    min-height: 810px;
  }
  #home-banner .banner-main-block:only-child {
    justify-self: self-start;
  }
  #home-banner .banner-body {
    /* align left on a breakpoint */
    text-align: left;
    align-items: flex-start;
    padding-bottom: 3rem;
    padding-top: 5.5rem;
  }
  #home-banner .primary-heading {
    font-size: 4.0625rem;
    line-height: 1.0769230769;
  }
  #home-banner .banner-feature-body {
    padding-top: 16rem;
    padding-left: 2rem;
  }
  #home-banner .banner-feature-body-quote {
    font-size: 1.25rem;
    line-height: 1.25;
    max-width: 24ch;
  }
  #home-banner .banner-feature-photo-img {
    margin-left: -56px;
    margin-right: -125px;
    max-height: 467px;
  }
  #home-banner #banner-form {
    background: var(--color-dark);
    padding-block: 30px;
  }
  #home-banner #banner-form .layout-banner-container {
    padding-inline: 30px;
  }
  #home-banner #banner-form .gform_heading {
    margin-bottom: 20px;
  }
  #home-banner #banner-form .gform_title {
    margin-inline: -1rem;
    color: var(--color-light);
    font-size: 1.25rem;
  }
  #home-banner #banner-form .gform_title:after {
    display: block;
    content: "";
    background: var(--color-primary);
    width: 100px;
    height: 1.5px;
    margin-inline: auto;
    margin-block: 1rem;
  }
  #home-banner #banner-form .gform-body .gform_fields {
    -moz-column-gap: 9px;
         column-gap: 9px;
    row-gap: 10px;
  }
  #home-banner #banner-form .gform-body :is(form, .gfield) {
    --field-height: 35px;
  }
  #home-banner #banner-form .gform-body .gfield_label {
    color: var(--color-light);
    font-size: 12px;
    margin-bottom: 0.25rem;
  }
  #home-banner #banner-form .gform-body .gfield_required {
    color: var(--color-secondary-alt) !important;
  }
  #home-banner #banner-form .gform-body :is(input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=image]):not([type=file]), select, textarea, [aria-invalid=true]), #home-banner #banner-form .gform-body :is(.gform_wrapper, .gfield_required) .gfield_required, #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme .gfield_required .gfield_required_custom, #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme .gfield_label, #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme :is(.description, .gfield_description, .gsection_description, .instruction), #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme .field_description_above :is(.description, .gfield_description, .gsection_description, .instruction), #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme :is(.gfield_validation_message, .validation_message) {
    font-size: 12px;
  }
  #home-banner #banner-form .gform-body .gfield:is(.gfield_type_textarea, .gfield_type_multiselect) :is(textarea, select).small {
    height: 35px;
  }
  #home-banner #banner-form .gform-body .required-message {
    font-size: 12px;
    color: var(--color-light);
  }
  #home-banner #banner-form .gform_footer {
    margin-top: 0.5rem;
  }
  #home-banner #banner-form .gform_footer .gform_button {
    font-size: 16px;
    --button-height: 2.5rem;
    --button-padding-x: 1.5rem;
  }
}
@media only screen and (min-width: 1400px) {
  #home-banner .layout-banner-container {
    --container-padding: 40px;
  }
  #home-banner .banner-main-blocks {
    grid-template-columns: 1fr 445px;
  }
  #home-banner .banner-main .banner-text {
    margin-top: -3rem;
    max-width: 396px;
  }
  #home-banner .banner-main .bamnner-feature {
    margin-top: -27rem;
  }
  #home-banner .secondary-heading {
    font-size: 1.1875rem;
  }
  #home-banner .primary-heading {
    font-size: 4.6875rem;
    line-height: 1.0933333333;
  }
  #home-banner .banner-buttons {
    margin-top: 3rem;
  }
  #home-banner .banner-feature-body {
    padding-top: 13.75rem;
  }
  #home-banner .banner-feature-body-quote {
    font-size: 1.375rem;
    line-height: 1.3636363636;
  }
  #home-banner .banner-feature-photo-img {
    margin-left: -50px;
    margin-right: -140px;
    max-height: 554px;
  }
  #home-banner #banner-form {
    padding-block: 34px;
  }
  #home-banner #banner-form .gform_heading {
    margin-bottom: 25px;
  }
  #home-banner #banner-form .gform_title {
    font-size: 1.5625rem;
  }
  #home-banner #banner-form .gform_title:after {
    width: 120px;
  }
  #home-banner #banner-form .gform-body :is(form, .gfield) {
    --field-height: 42px;
  }
  #home-banner #banner-form .gform-body .required-message {
    font-size: 14px;
  }
  #home-banner #banner-form .gform-body .gform_fields {
    -moz-column-gap: 13px;
         column-gap: 13px;
    row-gap: 20px;
  }
  #home-banner #banner-form .gform-body .gfield_label {
    font-size: 14px;
    margin-bottom: 0.5rem;
  }
  #home-banner #banner-form .gform-body :is(input:not([type=radio]):not([type=checkbox]):not([type=button]):not([type=image]):not([type=file]), select, textarea, [aria-invalid=true]), #home-banner #banner-form .gform-body #home-banner #banner-form .gform-body :is(.gform_wrapper, .gfield_required) .gfield_required, #home-banner #banner-form .gform-body #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme .gfield_required .gfield_required_custom, #home-banner #banner-form .gform-body #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme .gfield_label, #home-banner #banner-form .gform-body #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme :is(.description, .gfield_description, .gsection_description, .instruction), #home-banner #banner-form .gform-body #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme .field_description_above :is(.description, .gfield_description, .gsection_description, .instruction), #home-banner #banner-form .gform-body #home-banner #banner-form .gform-body .gform_wrapper.gravity-theme :is(.gfield_validation_message, .validation_message) {
    font-size: 14px;
  }
  #home-banner #banner-form .gform-body .gfield:is(.gfield_type_textarea, .gfield_type_multiselect) :is(textarea, select).small {
    height: 42px;
  }
}
@media only screen and (min-width: 1920px) {
  #home-banner .layout-banner-container {
    --container-padding: 140px;
  }
  #home-banner .banner-main-blocks {
    grid-template-columns: 1fr 464px;
    margin-left: 92px;
  }
  #home-banner .banner-main .banner-body {
    margin-right: 320px;
  }
  #home-banner .primary-heading {
    font-size: 4.6875rem;
  }
  #home-banner .banner-buttons {
    margin-top: 1.5rem;
  }
  #home-banner .banner-feature-body {
    padding-top: 14.75rem;
  }
  #home-banner .banner-feature-photo-img {
    margin-left: 5px;
    margin-right: -115px;
  }
  #home-banner #banner-form {
    padding-block: 36px;
  }
  #home-banner #banner-form .gform_title {
    font-size: 1.625rem;
  }
}
#home-page {
  padding-top: 0;
  padding-bottom: 0;
}
/*
* Home Section 1
-------------------------------------------------------------------------------- */
#home-section-1 {
  padding-bottom: 0;
}
#home-section-1 .testimonial-container {
  justify-content: flex-start;
}
#home-section-1 .testimonial-highlight {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  max-height: calc((1em + 10px) * 3) !important; /* MATCH WITH LINE HEIGHT ALWAYS*/
}
#home-section-1 .section-divider {
  align-self: stretch;
}
#home-section-1 .section-block {
  min-width: 0;
}
#home-section-1 .section-blocks {
  row-gap: 2.8125rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding-block: 2.625rem;
  padding-inline: 1.875rem;
}
#home-section-1 .section-block-right .swiper {
  padding-inline: 50px;
}
#home-section-1 .section-block-left {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #home-section-1 .section-divider {
    width: 1px;
    height: auto;
  }
  #home-section-1 .section-blocks {
    padding-inline: 1.25rem;
    grid-template-columns: 1fr auto 1fr;
  }
  #home-section-1 .section-block-right:nth-child(2), #home-section-1 .section-block-left:nth-last-child(2) {
    grid-column: 1/-1;
  }
  #home-section-1 .section-block-right .swiper-slide {
    display: flex;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-1 .section-blocks {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    padding-inline: 2rem;
  }
  #home-section-1 .section-block-right .swiper {
    padding-inline: 45px;
    --swiper-pagination-bottom: 1.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-1 .section-blocks {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    padding-inline: 2.5rem;
  }
}
@media only screen and (min-width: 1920px) {
  #home-section-1 .section-blocks {
    -moz-column-gap: 5.75rem;
         column-gap: 5.75rem;
    padding-inline: 5.3125rem;
    grid-template-columns: 8fr auto 7fr;
  }
  #home-section-1 .section-block-right .swiper {
    padding-inline: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  #home-section-1 .section-container {
    --container-padding: 0px;
    --container-gutter: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #home-section-1 .section-blocks {
    padding-bottom: 0;
  }
  #home-section-1 .section-block-right .swiper {
    padding-inline: 0px;
    margin-inline: -30px;
  }
  #home-section-1 .section-block-right .swiper-slide {
    padding-inline: 30px;
  }
}

/*
* Home Section 2
-------------------------------------------------------------------------------- */
#home-section-2 {
  padding-bottom: 5.25rem;
}
#home-section-2 .carousel {
  --carousel-height: 65px;
  --swiper-pagination-bottom: 2.125rem;
}
#home-section-2 .section-divider {
  --fancy-border-margin-y: 1.75rem;
  --fancy-border-width: 290px;
}
#home-section-2 .section-heading {
  font-size: 2.8125rem;
}
#home-section-2 .section-footer {
  margin-top: 2.5rem;
}
#home-section-2 .section-subheading {
  margin-bottom: 3.25rem;
}
#home-section-2 .section-lead {
  margin-inline: auto;
}
@media only screen and (min-width: 768px) {
  #home-section-2 {
    padding-top: 5.5rem;
  }
  #home-section-2 .carousel {
    --carousel-arrow-offset-x: 4.75rem;
  }
  #home-section-2 .section-header {
    margin-bottom: 2.875rem;
  }
  #home-section-2 .section-divider {
    --fancy-border-margin-y: 1.75rem;
    --fancy-border-width: 300px;
  }
  #home-section-2 .section-heading {
    font-size: 3.75rem;
  }
  #home-section-2 .section-lead {
    width: calc(100% - 2ch);
    max-width: 62ch;
  }
  #home-section-2 .section-footer {
    margin-top: 4.25rem;
  }
  #home-section-2 .section-subheading {
    margin-bottom: 4.625rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-2 {
    padding-top: 7.375rem;
    padding-bottom: 6rem;
  }
  #home-section-2 .section-header {
    margin-bottom: 4.75rem;
  }
  #home-section-2 .section-divider {
    --fancy-border-margin-y: 2.625rem;
  }
  #home-section-2 .section-heading {
    font-size: 4.0625rem;
  }
  #home-section-2 .section-subheading {
    margin-bottom: 3.25rem;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-2 {
    padding-top: 10.5rem;
    padding-bottom: 12rem;
  }
  #home-section-2 .section-heading {
    font-size: 4.6875rem;
  }
  #home-section-2 .section-footer {
    margin-top: 5.25rem;
  }
}
/*
* Home Section 3
-------------------------------------------------------------------------------- */
:root {
  --sec-3-offset: -65px;
}
@media only screen and (min-width: 768px) {
  :root {
    --sec-3-offset: -105px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --sec-3-offset: 116px;
    --sec-3-crossover: 77px;
  }
}
@media only screen and (min-width: 1400px) {
  :root {
    --sec-3-offset: 188px;
    --sec-3-crossover: 128px;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --sec-3-offset: 195px;
    --sec-3-crossover: 135px;
  }
}

#home-section-3 {
  padding-top: 0;
  padding-bottom: 1px;
}
#home-section-3 > .section-container {
  margin-bottom: calc((var(--sec-3-offset) + 1px) * -1);
}
#home-section-3 + .home-section:before {
  content: "";
  display: block;
  height: var(--sec-3-offset);
  pointer-events: none;
}
#home-section-3 .section-container {
  --container-padding: 60px;
}
#home-section-3 .section-blocks {
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 1.25rem;
}
#home-section-3 .section-image {
  position: relative;
  max-width: 100%;
  width: 238px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#home-section-3 .section-image img {
  display: block;
}
#home-section-3 .section-image .video-button {
  inset: 0;
  margin: auto;
  position: absolute;
}
#home-section-3 .section-heading {
  font-size: 3.125rem;
}
@media only screen and (min-width: 768px) {
  #home-section-3 .section-heading {
    font-size: 4.375rem;
  }
  #home-section-3 .section-blocks {
    grid-template-columns: auto 1fr;
    grid-auto-flow: dense;
    justify-content: space-between;
    gap: 1.75rem;
    align-items: center;
  }
  #home-section-3 .section-image {
    width: 292px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  #home-section-3 .section-container {
    --container-padding: 25px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-3 .section-heading {
    font-size: 5rem;
  }
  #home-section-3 .section-blocks {
    grid-template-columns: auto 1fr auto;
    gap: 2.5rem;
    align-items: end;
  }
  #home-section-3 .section-block-right {
    grid-column: 3;
    padding-top: var(--sec-3-crossover);
  }
  #home-section-3 .section-block-center {
    align-self: center;
    justify-self: center;
    grid-column: 2;
    padding-block: 4.25rem;
    /* do not get out of its contrasting background */
    margin-bottom: var(--sec-3-offset);
  }
  #home-section-3 .section-block-left {
    grid-column: 1;
    padding-bottom: var(--sec-3-crossover);
  }
  #home-section-3 .section-image {
    width: 343px;
  }
  #home-section-3 .section-image.visible img {
    transform: scale(1) translateY(0px);
  }
  #home-section-3 .section-image img {
    transform: scale(1.5) translateY(-50px);
    transition: 2s ease-in-out transform;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-3 .section-container {
    --container-padding: 55px;
  }
  #home-section-3 .section-heading {
    font-size: 5.3125rem;
  }
  #home-section-3 .section-blocks {
    gap: 3.625rem;
  }
  #home-section-3 .section-image {
    width: 386px;
  }
}
@media only screen and (min-width: 1920px) {
  #home-section-3 .section-container {
    --container-padding: 305px;
  }
  #home-section-3 .section-blocks {
    gap: 4.5rem;
  }
}
/*
* Home Section 4
-------------------------------------------------------------------------------- */
#home-section-4 {
  padding-bottom: 4.5rem;
  background-color: var(--scheme-bg, var(--color-dark-alt));
  color: var(--scheme-fg, var(--color-light));
}
#home-section-4 .section {
  max-width: 15ch;
}
#home-section-4 .section-heading {
  font-size: 2.0625rem;
  line-height: calc(1em + 5px);
}
#home-section-4 .section-subheading {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 700;
  max-width: 32ch;
}
#home-section-4 .section-block-right {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 445px;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 5.5rem;
  background-image: radial-gradient(circle closest-side at 50% 50%, var(--scheme-bg-contrast) 50%, transparent 100%);
}
#home-section-4 .section-icon {
  font-size: 89px;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  #home-section-4 {
    padding-top: 5.75rem;
    padding-bottom: 6.75rem;
  }
  #home-section-4 .section-block-right {
    margin-top: 3.75rem;
  }
  #home-section-4 .section-heading {
    font-size: 3.125rem;
  }
  #home-section-4 .section-subheading {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-4 {
    padding-top: 3.75rem;
    padding-bottom: 11.125rem;
  }
  #home-section-4 .section-container {
    --container-gutter: 100px;
  }
  #home-section-4 .section-blocks {
    grid-template-columns: 1fr auto;
    row-gap: 2.25rem;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    align-items: center;
    grid-auto-flow: dense;
  }
  #home-section-4 .section-block-top {
    grid-column: 1/-1;
  }
  #home-section-4 .section-block-right {
    margin-top: -1rem;
  }
  #home-section-4 .section-block-left {
    align-self: self-start;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-4 {
    padding-top: 5.5rem;
    padding-bottom: 11.75rem;
  }
  #home-section-4 .section-container {
    --container-gutter: 55px;
  }
  #home-section-4 .section-blocks {
    row-gap: 1rem;
    -moz-column-gap: 4.25rem;
         column-gap: 4.25rem;
  }
  #home-section-4 .section-block-left, #home-section-4 .section-block-top {
    grid-column: 1;
  }
  #home-section-4 .section-block-right {
    grid-row: span 2;
    margin-top: -2rem;
  }
}
@media only screen and (min-width: 1920px) {
  #home-section-4 {
    padding-bottom: 8.5rem;
  }
  #home-section-4 .section-container {
    --container-gutter: 225px;
  }
  #home-section-4 .section-blocks {
    -moz-column-gap: 12.25rem;
         column-gap: 12.25rem;
  }
}
/*
* Home Section 5
-------------------------------------------------------------------------------- */
:root {
  --sec-5-offset: -50px;
}
@media only screen and (min-width: 1200px) {
  :root {
    --sec-5-offset: 96px;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --sec-5-offset: 100px;
  }
}

#home-section-5 {
  padding-top: 0rem;
}
#home-section-5:after {
  content: "";
  display: block;
  height: var(--sec-5-offset);
  pointer-events: none;
}
#home-section-5 + .home-section {
  padding-top: 1px;
}
#home-section-5 + .home-section > .section-container {
  margin-top: calc((var(--sec-5-offset) + 1px) * -1);
}
#home-section-5 .section-button {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 768px) {
  #home-section-5 {
    padding-bottom: 6rem;
  }
  #home-section-5 .section-header {
    margin-bottom: 4.25rem;
  }
  #home-section-5 .section-heading {
    font-size: 3.125rem;
  }
  #home-section-5 .section-button {
    margin-top: 1.75rem;
  }
  #home-section-5 .section-bottom-container {
    --container-gutter: 64px;
  }
  #home-section-5 .section-bottom-slider {
    margin-inline: -40px;
    padding-inline: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  #home-section-5 {
    padding-bottom: 5.375rem;
  }
  #home-section-5 .section-header {
    margin-bottom: 6.75rem;
  }
  #home-section-5 .section-heading {
    font-size: 4.0625rem;
  }
  #home-section-5 .section-top-container {
    --container-gutter: 100px;
  }
  #home-section-5 .section-bottom-container {
    --container-gutter: 135px;
  }
  #home-section-5 .section-bottom-slider {
    margin-inline: -48px;
    padding-inline: 48px;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-5 {
    padding-bottom: 11rem;
  }
  #home-section-5 .section-container {
    --container-gutter: 90px;
  }
  #home-section-5 .section-button {
    margin-top: 2.25rem;
  }
  #home-section-5 .section-bottom-slider {
    margin-inline: -52px;
    padding-inline: 52px;
  }
}
@media only screen and (min-width: 1920px) {
  #home-section-5 .section-container {
    --container-gutter: 315px;
    --container-gutter: 365px;
  }
  #home-section-5 .section-top-container {
    --container-gutter: 365px;
  }
  #home-section-5 .section-bottom-container {
    --container-gutter: 315px;
  }
  #home-section-5 .section-bottom-bottom-slider {
    margin-inline: -70px;
    padding-inline: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #home-section-5 {
    padding-bottom: 0;
  }
}

/*
* Home Section 6
-------------------------------------------------------------------------------- */
:root {
  --sec-6-slider-compensate-y: 10px;
  --sec-6-slider-compensate-x: 10px;
  --sec-6-slider-grid-offset: 0px;
  --sec-6-slider-shadow-compensate: 10px;
}
@media only screen and (min-width: 768px) {
  :root {
    --sec-6-slider-compensate-x: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  :root {
    --sec-6-slider-grid-offset: 188px;
    --sec-6-slider-compensate-x: 10px;
  }
}
@media only screen and (min-width: 1920px) {
  :root {
    --sec-6-slider-grid-offset: 205px;
  }
}

#home-section-6:last-child {
  padding-bottom: 1px;
}
#home-section-6 .swiper-custom-buttons {
  margin-top: 0;
}
#home-section-6 .section-blocks {
  gap: 4.25rem;
  align-items: center;
}
#home-section-6 .section-block-left {
  padding-top: var(--sec-5-offset); /* avoid overlap DO NOT TOUCH >:( */
  padding-bottom: var(--footer-offset); /* avoid overlap DO NOT TOUCH >:( */
}
#home-section-6 .section-block-right {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
#home-section-6 .section-header {
  margin-left: 0;
}
#home-section-6 .section-button {
  margin-top: 2.25rem;
}
#home-section-6 .section-heading {
  font-size: 3.125rem;
  max-width: 10ch;
}
#home-section-6 .section-item {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
  padding-inline: 1.5rem;
  text-align: center;
}
#home-section-6 .section-item-icon {
  font-size: 75px;
  margin-bottom: 1.25rem;
}
#home-section-6 .section-item-title {
  font-size: 1.5625rem;
  line-height: calc(1em + 5px);
  font-weight: 700;
  margin-bottom: 1rem;
}
#home-section-6 .section-item-description {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
}
@media only screen and (min-width: 768px) {
  #home-section-6 .section-header {
    text-align: left;
  }
  #home-section-6 .section-heading {
    font-size: 5rem;
  }
  #home-section-6 .section-slider {
    background: transparent;
  }
  #home-section-6 .section-blocks {
    gap: 3rem;
  }
  #home-section-6 .section-item {
    background: var(--scheme-bg);
  }
  #home-section-6 .section-item-icon {
    font-size: 75px;
  }
}
@media only screen and (min-width: 1200px) {
  @supports selector(:nth-child(3 of .swiper-slide-visible)) {
    #home-section-6 .swiper {
      padding: var(--sec-6-slider-shadow-compensate);
      margin: calc(var(--sec-6-slider-shadow-compensate) * -1);
      transform: translateY(calc(var(--sec-6-slider-grid-offset) * var(--parallax-calculation, 0) * -0.5));
    }
    #home-section-6 .swiper-wrapper {
      padding-block: calc((var(--sec-6-slider-grid-offset)) * 0.5);
    }
    #home-section-6 .swiper-slide {
      position: relative;
      display: flex;
    }
    #home-section-6 .swiper-slide:is(.swiper-slide-active,
    :nth-child(3 of .swiper-slide-visible)) {
      bottom: calc(var(--sec-6-slider-grid-offset) * 0.5);
    }
    #home-section-6 .swiper-slide:not(:is(.swiper-slide-active,
    :nth-child(3 of .swiper-slide-visible))) {
      top: calc(var(--sec-6-slider-grid-offset) * 0.5);
    }
  }
  #home-section-6 .section-header {
    padding-block: 2rem;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: 0;
  }
  #home-section-6 .section-heading {
    font-size: 4.5rem;
  }
  #home-section-6 .section-blocks {
    grid-template-columns: 1fr auto;
    justify-content: center;
    gap: 2.5rem;
  }
  #home-section-6 .section-block-right {
    max-width: 100%;
    width: 690px;
  }
  #home-section-6 .section-item {
    padding-top: 3.25rem;
    padding-inline: 3.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #home-section-6 .section-item-icon {
    font-size: 85px;
  }
}
@media only screen and (min-width: 1400px) {
  #home-section-6 .section-heading {
    font-size: 6.25rem;
  }
  #home-section-6 .section-block-right {
    width: 785px;
  }
  #home-section-6 .section-item {
    padding-block: 4.25rem;
    padding-inline: 3.6rem;
  }
  #home-section-6 .section-item-icon {
    font-size: 95px;
  }
  #home-section-6 .section-item-description {
    font-size: 1.0625rem;
  }
}
@media only screen and (min-width: 1920px) {
  #home-section-6 .section-container {
    --container-gutter: 185px;
  }
  #home-section-6 .section-blocks {
    gap: 8rem;
  }
  #home-section-6 .section-button {
    margin-top: 4.5rem;
  }
}
@media only screen and (max-width: 1399px) {
  #home-section-6 .profile-image {
    max-width: 456px;
  }
}
@media only screen and (max-width: 1199px) {
  #home-section-6 .swiper {
    padding-inline: 2rem;
    margin-inline: -2rem;
  }
  #home-section-6 .swiper-slide {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  #home-section-6 .swiper {
    padding-inline: 0;
    margin-inline: 0;
  }
  #home-section-6 .section-slider {
    background: var(--scheme-bg-contrast);
  }
  #home-section-6 .section-item {
    background: none;
  }
  #home-section-6 .section-heading {
    text-align: left;
  }
}

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

#error404-page {
  text-align: center;
}
/* ================================================================================
* Case Results + Case Results Template
================================================================================ */
/*
* books Template
-------------------------------------------------------------------------------- */
body.ilaw-template-books {
  /* body selector for books template */
}

#books-banner {
  /* selector for books banner if enabled */
}
#books-page {
  /* template main styles */
}
#books-page .books:is(.columns) {
  --columns-gap-x: 2.5rem;
  --columns-gap-y: 2.5rem;
  justify-content: center;
  justify-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
#books-page .book:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
#books-page .book-field-form {
  border-bottom: 1px solid var(--color-neutral-light);
  padding-bottom: var(--columns-gap-y);
}
@media only screen and (min-width: 1200px) {
  #books-page .books:is(.columns) {
    --columns-gap-x: 3.375rem;
    --columns-gap-y: 3.375rem;
  }
}
/* ================================================================================
* Case Results + Case Results Template
================================================================================ */
/*
* 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: 2.5rem;
  --columns-gap-y: 3rem;
  justify-content: center;
  margin-inline: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
#results-page .result:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
@media only screen and (min-width: 1200px) {
  #results-page .results:is(.columns) {
    --columns-number: 2;
    --columns-gap-x: 6.5rem;
    --columns-gap-y: 6.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  #results-page .results:is(.columns) {
    --columns-number: 3;
  }
  #results-page .section-container {
    --container-gutter: 90px;
  }
}
@media only screen and (max-width: 1199px) {
  #results-page .results-default .result {
    max-width: 500px;
  }
}
/* ================================================================================
* Practice Areas + Practice Areas Template
================================================================================ */
/*
* Practice Areas Grid Template
-------------------------------------------------------------------------------- */
body.ilaw-template-practice-areas {
  /* body selector for practice-areas template */
}

#practice-areas-banner {
  /* selector for practice-areas banner if enabled */
}
#practice-areas-page {
  /* template main styles */
}
#practice-areas-page .practice-area-menu:is(.columns) {
  --columns-gap-x: 3rem;
}
#practice-areas-page .practice-area {
  padding: 2.75rem 1rem;
  border: 1px solid var(--color-light-alt);
}
#practice-areas-page .practice-area-menu:before {
  margin-bottom: 0.75rem;
}
#practice-areas-page .practice-area:nth-child(even) {
  background-color: var(--color-light-alt);
}
#practice-areas-page .practice-area:nth-last-child(n+2) {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 768px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 2;
  }
  #practice-areas-page .practice-area {
    padding-inline: 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  #practice-areas-page:nth-last-child(n+2) {
    margin-bottom: 5rem;
  }
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-number: 3;
  }
  #practice-areas-page .practice-area {
    padding-inline: 4.5rem;
  }
  #practice-areas-page .practice-area-menu {
    margin-bottom: 0.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-gap-x: 10rem;
  }
}
@media only screen and (min-width: 1920px) {
  #practice-areas-page .practice-area-menu:is(.columns) {
    --columns-gap-x: 15rem;
  }
  #practice-areas-page .practice-area-menu li:nth-child(-n+4) {
    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: 3.375rem;
  --columns-gap-y: 3.375rem;
}
#testimonials-page .testimonials {
  margin-inline: auto;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
#testimonials-page .testimonials-featured {
  text-align: center;
}
#testimonials-page .testimonial {
  padding-bottom: calc(var(--columns-gap-y) + 0.25rem);
  border-bottom: 1px solid var(--color-neutral-light);
}
#testimonials-page .testimonial-highlight {
  max-width: 42.25em;
}
@media only screen and (min-width: 1920px) {
  #testimonials-page .testimonial-heading {
    margin-bottom: 1.5rem;
  }
  #testimonials-page .testimonial-stars {
    font-size: 1.25em;
  }
  #testimonials-page .testimonial-highlight {
    font-size: 1.5rem;
    line-height: calc(1em + 16px);
    margin-bottom: 1.75rem;
  }
  #testimonials-page .testimonial-source {
    font-size: 1.0625rem;
  }
}
/* ================================================================================
* 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 .profiles:is(.columns) {
  --columns-gap-x: 2.5rem;
  --columns-gap-y: 2.5rem;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1400px) {
  #team-page .profiles:is(.columns) {
    --columns-gap-y: 4.375rem;
  }
}
@media only screen and (min-width: 1920px) {
  #team-page .profiles:is(.columns) {
    --columns-number: 3;
  }
}
@media only screen and (max-width: 767px) {
  #team-page .profile {
    max-width: 400px;
  }
}

/* ================================================================================
* 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 */
  padding-top: 0;
  padding-bottom: 0;
  /*
  Profile Page Template 
  	@Variation B: Split to top and bottom + profile image offset
  	Requires PHP: templates/template-profile.php - @Variation B: Split to top and bottom + profile image offset
  	Requires SCSS: scss/templates/profile.scss - @Variation B: Split to top and bottom + profile image offset
  */
}
#profile-page .video {
  max-width: 100%;
}
#profile-page .section-header {
  margin-bottom: 2rem;
}
#profile-page .section-heading {
  max-width: none;
}
#profile-page .section-subheader {
  margin-bottom: 2rem;
}
#profile-page .section-subheading:before {
  content: "◼︎";
  font-size: 0.5em;
  color: var(--scheme-sb);
  vertical-align: middle;
  margin-right: 0.75em;
}
@media only screen and (min-width: 768px) {
  #profile-page .video-button {
    --video-button-size: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-page .video-button {
    --video-button-size: 90px;
  }
}
@media only screen and (min-width: 1920px) {
  #profile-page .default-sections {
    --default-sidebar-width: 456px;
    --default-gap-x: 100px;
  }
}
@media only screen and (max-width: 1399px) {
  #profile-page .section-image {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #profile-page .section-awards, #profile-page .section-header {
    text-align: center;
  }
}
#profile-page.profile-page-sections {
  padding: 0;
  --profile-image-offset: -180px;
}
#profile-page.profile-page-sections .section-block.default-section-sidebar {
  position: relative;
  z-index: 1;
}
#profile-page.profile-page-sections #profile-section-1 {
  padding-bottom: 1px;
}
#profile-page.profile-page-sections #profile-section-2 {
  padding-top: 1px;
}
@media only screen and (min-width: 1400px) {
  #profile-page.profile-page-sections .default-section-sidebar {
    padding-top: var(--default-gap-y);
  }
  #profile-page.profile-page-sections #profile-section-1 .section-block.default-section-sidebar {
    margin-bottom: var(--profile-image-offset);
  }
  #profile-page.profile-page-sections #profile-section-2 .section-block.default-section-sidebar {
    margin-top: calc((var(--profile-image-offset)) * -1);
  }
}
@media only screen and (max-width: 1399px) {
  #profile-page.profile-page-sections #profile-section-1 {
    padding-bottom: 1px;
  }
  #profile-page.profile-page-sections #profile-section-1 .section-container {
    margin-bottom: var(--profile-image-offset);
  }
  #profile-page.profile-page-sections #profile-section-2 {
    padding-top: 1px;
  }
  #profile-page.profile-page-sections #profile-section-2 .section-container {
    margin-top: calc((var(--profile-image-offset)) * -1);
  }
}
#profile-section-1 {
  padding-top: 4rem;
  position: relative;
  z-index: 1;
}
.header-overlay-on-banner #profile-section-1:before {
  content: "";
  display: block;
  height: var(--layout-header-height);
  pointer-events: none;
}
#profile-section-1 .section-blocks {
  --default-gap-y: 0px;
}
@media only screen and (min-width: 1200px) {
  #profile-section-1 {
    padding-top: 7.25rem;
  }
  #profile-section-1 .default-sections {
    align-items: end;
  }
  #profile-section-1 .default-section-main {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 1399px) {
  #profile-section-1 {
    text-align: center;
  }
}
@media only screen and (min-width: 1400px) {
  #profile-section-2 .section-body {
    padding-top: 3.5rem;
  }
}
/* ================================================================================
* 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: 2.8125rem;
  --columns-gap-y: 2.8125rem;
  justify-content: center;
}
#videos-page .video {
  border-bottom: 1px solid var(--color-neutral-lighter);
}
@media only screen and (min-width: 1200px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 2;
    --columns-gap-y: 5.625rem;
  }
}
@media only screen and (min-width: 1400px) {
  #videos-page .videos:is(.columns) {
    --columns-number: 3;
  }
}
@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 :where(img) {
  display: block;
  margin-inline: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
#about-page .section-content {
  max-width: 850px;
  margin-inline: auto;
}
#about-page .section-middle-block {
  min-width: 0;
}
#about-page .section-middle-blocks {
  margin-block: 2.5rem;
  display: grid;
  grid-template-columns: 100%;
  gap: 2.5rem;
  justify-items: center;
  align-items: center;
}
#about-page .section-middle-image {
  width: 100%;
  max-width: 700px;
}
#about-page .section-images-grid {
  justify-content: center;
  --columns-gap-x: 40px;
  --columns-gap-y: 40px;
}
@media only screen and (min-width: 768px) {
  #about-page .section-middle-blocks {
    gap: 2.875rem;
    margin-block: 2.875rem;
  }
  #about-page .section-footer {
    margin-top: 4.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  #about-page .section-container {
    --container-gutter: 90px;
  }
  #about-page .section-middle-blocks {
    gap: 3.875rem;
    margin-block: 5.875rem;
  }
  #about-page .section-images-grid {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  #about-page .section-images-grid {
    --columns-gap-x: 30px;
    --columns-gap-y: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  #about-page .section-images-grid-item {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  #about-page .section-footer {
    margin-top: 4.75rem;
  }
}
@media only screen and (min-width: 1400px) {
  #about-page .section-middle-blocks {
    grid-template-columns: auto 1fr;
    margin-block: 4.875rem;
    gap: 2.75rem;
  }
  #about-page .section-middle-content {
    max-width: none;
  }
  #about-page .section-middle-image {
    margin-bottom: 0.75rem;
  }
  #about-page .section-images-grid {
    --columns-number: 3;
  }
  #about-page .section-footer {
    margin-top: 6.5rem;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1919px) {
  #about-page .section-middle-image {
    max-width: 612px;
  }
}
@media only screen and (min-width: 1920px) {
  #about-page {
    padding-top: 5.3125rem;
    padding-bottom: 9.3125rem;
  }
  #about-page .section-container {
    --container-gutter: 235px;
  }
  #about-page .section-footer {
    margin-top: 7.75rem;
  }
}
@media only screen and (max-width: 1399px) {
  #about-page .section-middle {
    margin-bottom: 0.5rem;
  }
}
/* ================================================================================
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 */
  --template-image-offset-top: -35px;
  --template-image-width: 535px;
  --template-image-offset-bottom: -35px;
  --template-banner-offset: 0px;
}
@media only screen and (min-width: 768px) {
  body.ilaw-template-contact {
    --template-image-offset-top: 37px;
    --template-image-width: 535px;
    --template-image-offset-bottom: -50px;
    --template-banner-offset: 5px;
  }
}
@media only screen and (min-width: 1200px) {
  body.ilaw-template-contact {
    --template-image-offset-top: 237px;
    --template-image-width: 560px;
    --template-image-offset-bottom: 34px;
    --template-banner-offset: 10px;
  }
}
@media only screen and (min-width: 1400px) {
  body.ilaw-template-contact {
    --template-image-offset-top: 295px;
    --template-image-width: 720px;
    --template-image-offset-bottom: 56px;
  }
}
@media only screen and (min-width: 1920px) {
  body.ilaw-template-contact {
    --template-image-width: 810px;
    --template-image-offset-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  #contact-template .container {
    --container-gutter: 76px;
  }
}
@media only screen and (min-width: 1400px) {
  #contact-template .container {
    --container-gutter: 70px;
  }
}
@media only screen and (min-width: 1920px) {
  #contact-template .container {
    --container-gutter: 260px;
  }
}

#contact-banner {
  /* selector for contact banner if enabled */
}
#contact-banner .banner-main {
  overflow: visible;
  justify-content: flex-end;
}
#contact-banner .banner-body {
  margin-bottom: calc(var(--template-banner-offset) * -1);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) {
  #contact-banner .banner-main-blocks {
    grid-template-columns: 1fr var(--template-image-width);
  }
  #contact-banner .banner-body {
    padding-bottom: 0;
    grid-column: auto;
    text-align: left;
    align-items: flex-start;
    align-self: self-end;
  }
}
#contact-page {
  /* template main styles */
  padding-top: 1px;
}
#contact-page .section-image {
  margin-top: calc(var(--template-image-offset-top) * -1);
  margin-bottom: calc(var(--template-image-offset-bottom) * -1);
  position: relative;
  pointer-events: none;
  max-width: var(--template-image-width);
  margin-inline: auto;
}
#contact-page .section-image img {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 1200px) {
  #contact-page .section-image {
    margin-right: 0;
    max-width: calc(100% - (var(--comp) - var(--container-gutter) * 2 - var(--template-image-width)));
  }
}
/* ================================================================================
Contact Template
================================================================================ */
/*
* locations Template
-------------------------------------------------------------------------------- */
body.ilaw-template-locations {
  /* body selector for locations template */
}

#locations-banner {
  /* selector for locations banner if enabled */
}
#locations-page {
  /* template main styles */
}
#locations-page .locations:is(.columns) {
  --columns-gap-x: 2.875rem;
  --columns-gap-y: 2.875rem;
  justify-content: center;
  justify-items: center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
#locations-page .location {
  border-bottom: 1px solid var(--color-neutral-lighter);
  padding: 3.125rem 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 436px;
}
#locations-page .location:is(:hover, :focus-within) {
  /* background-color: var(--color-neutral-light); */
}
#locations-page .location-content {
  font-size: 1.25rem;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) {
  #locations-page .locations:is(.columns) {
    --columns-number: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #locations-page .locations:is(.columns) {
    --columns-number: 2;
  }
  #locations-page .location {
    padding-inline: 4.125rem;
  }
}
@media only screen and (min-width: 1400px) {
  #locations-page .locations:is(.columns) {
    --columns-number: 3;
  }
}
@media only screen and (max-width: 1199px) {
  #locations-page .location {
    max-width: 500px;
  }
}

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