@charset "UTF-8";
/*
Global Variables
*/
/*
Font Families
Font files imported at the top of _fonts.scss 
*/
/*
Mixins
Add mixins to any css page using @include
*/
/*
CSS Transitions

e.g.
.element{
	@include transition( background .2s ease-out )
} 
*/
/*
Truncate text to specific number of lines with an ellipsis

e.g. include up to three lines.
.element{
    @include truncate-text(3);
}
*/
/*
Style placholder text for inputs

e.g.
input, 
textarea { 
    @include placeholder {
        color: #333333;
    }
}
*/
:root {
  --color-eggplant-100: #361846;
  --color-eggplant-80: #5e466b;
  --color-eggplant-60: #867490;
  --color-eggplant-40: #afa3b5;
  --color-eggplant-20: #d7d1da;
  --color-eggplant-10: #ebe8ec;
  --color-amethyst-100: #695065;
  --color-amethyst-80: #877384;
  --color-amethyst-60: #a596a3;
  --color-amethyst-40: #c3b9c1;
  --color-amethyst-20: #e1dce0;
  --color-amethyst-10: #f0edf0;
  --color-oxford-blue-100: #232245;
  --color-oxford-blue-80: #4f4e6a;
  --color-oxford-blue-60: #7b7a8f;
  --color-oxford-blue-40: #a7a7b5;
  --color-oxford-blue-20: #d3d3da;
  --color-oxford-blue-10: #e9e9ec;
  --color-yale-100: #5489a3;
  --color-yale-80: #76a1b5;
  --color-yale-60: #98b3bf;
  --color-yale-40: #bbd0da;
  --color-yale-20: #dde7ed;
  --color-yale-10: #eef3f6;
  --color-lapis-100: #abc6d7;
  --color-lapis-80: #bcd1df;
  --color-lapis-60: #cddde7;
  --color-lapis-40: #dde8ef;
  --color-lapis-20: #eef4f7;
  --color-lapis-10: #f7f9fb;
  --color-shadow-100: #414042;
  --color-shadow-80: #676668;
  --color-shadow-60: #8d8c8e;
  --color-shadow-40: #b3b3b3;
  --color-shadow-20: #d9d9d9;
  --color-shadow-10: #ececec;
  --color-orange-100: #ebad58;
  --color-orange-80: #efbd79;
  --color-orange-60: #f3ce9b;
  --color-orange-40: #f7debc;
  --color-orange-20: #fbefde;
  --color-orange-10: #fdf7ee;
  --color-teal-100: #178f99;
  --color-teal-80: #45a5ad;
  --color-teal-60: #74bcc2;
  --color-teal-40: #a2d2d6;
  --color-teal-20: #d1e9eb;
  --color-teal-10: #e8f4f5;
  --border-radius: clamp(0.5rem, 0.3125rem + 0.5vw, 0.75rem);
  --color-white: #ffffff;
  --color-black: #2a2a2a;
  --color-accent: currentColor;
}

/* 

color-purple : Purple
color-teal : Teal
color-lapis : Lapis
color-oxford-blue : Oxford Blue
color-yale : Yale
color-orange : Orange
color-white : White

styles:
light
dark
light-gradient
dark-gradient

*/
.bg-teal {
  background: var(--color-teal-20);
}
.bg-teal h1 {
  color: var(--color-eggplant-100);
}
.bg-teal .foe-button {
  border: solid 2px var(--color-eggplant-100);
  color: currentColor;
}
.bg-teal .foe-button.solid {
  background-color: var(--color-eggplant-100);
  color: var(--color-white);
}
.bg-teal .foe-button:hover, .bg-teal .foe-button:focus {
  background-color: var(--color-orange-100);
  border: solid 2px var(--color-orange-100);
  color: var(--color-white);
}

.bg-purple,
.bg-dark-purple {
  color: white;
  background: linear-gradient(to bottom, var(--color-eggplant-100), var(--color-eggplant-60));
}
.bg-purple h1,
.bg-purple h2,
.bg-purple h3,
.bg-purple h4,
.bg-purple h5,
.bg-purple h6,
.bg-dark-purple h1,
.bg-dark-purple h2,
.bg-dark-purple h3,
.bg-dark-purple h4,
.bg-dark-purple h5,
.bg-dark-purple h6 {
  color: white;
}
.bg-purple .foe-button,
.bg-dark-purple .foe-button {
  border: solid 2px var(--color-orange-100);
  color: var(--color-white);
}
.bg-purple .foe-button.solid,
.bg-dark-purple .foe-button.solid {
  background-color: var(--color-orange-100);
}
.bg-purple .foe-button:hover, .bg-purple .foe-button:focus,
.bg-dark-purple .foe-button:hover,
.bg-dark-purple .foe-button:focus {
  background-color: var(--color-white);
  border: solid 2px var(--color-white);
  color: var(--color-eggplant-100);
}

.bg-white,
.bg-white-with-blue-card {
  color: var(--color-black);
  background: var(--color-white);
  --color-accent: var(--color-teal-80);
}
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-white-with-blue-card h1,
.bg-white-with-blue-card h2,
.bg-white-with-blue-card h3,
.bg-white-with-blue-card h4,
.bg-white-with-blue-card h5,
.bg-white-with-blue-card h6 {
  color: var(--color-eggplant-100);
}
.bg-white .foe-button,
.bg-white-with-blue-card .foe-button {
  border: solid 2px var(--color-eggplant-100);
  color: currentColor;
}
.bg-white .foe-button.solid,
.bg-white-with-blue-card .foe-button.solid {
  background-color: var(--color-eggplant-100);
  color: white;
}
.bg-white .foe-button.outline,
.bg-white-with-blue-card .foe-button.outline {
  border: solid 2px var(--color-eggplant-100);
  color: var(--color-eggplant-100);
}
.bg-white .foe-button:hover, .bg-white .foe-button:focus,
.bg-white-with-blue-card .foe-button:hover,
.bg-white-with-blue-card .foe-button:focus {
  background-color: var(--color-orange-100);
  border: solid 2px var(--color-orange-100);
  color: var(--color-white);
}
.bg-white + .bg-white .block,
.bg-white + .bg-white-with-blue-card .block,
.bg-white + .resource-color-white .block,
.bg-white-with-blue-card + .bg-white .block,
.bg-white-with-blue-card + .bg-white-with-blue-card .block,
.bg-white-with-blue-card + .resource-color-white .block {
  padding-top: 0;
}

.bg-orange {
  background: var(--color-orange-40);
  color: var(--color-black);
}
.bg-orange h1,
.bg-orange h2,
.bg-orange h3 {
  color: var(--color-eggplant-100);
}
.bg-orange .foe-button {
  border: solid 2px var(--color-eggplant-100);
  color: currentColor;
}
.bg-orange .foe-button.solid {
  background-color: var(--color-eggplant-100);
  color: var(--color-white);
}
.bg-orange .foe-button:hover, .bg-orange .foe-button:focus {
  background-color: var(--color-teal-100);
  border: solid 2px var(--color-teal-100);
  color: var(--color-white);
}

.bg-blue {
  background: var(--color-lapis-20);
  color: var(--color-black);
}
.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6 {
  color: var(--color-eggplant-100);
}
.bg-blue .foe-button {
  border: solid 2px var(--color-eggplant-100);
  color: currentColor;
}
.bg-blue .foe-button.solid {
  background-color: var(--color-eggplant-100);
  color: white;
}
.bg-blue .foe-button.outline {
  border: solid 2px var(--color-eggplant-100);
  color: var(--color-eggplant-100);
}
.bg-blue .foe-button:hover, .bg-blue .foe-button:focus {
  background-color: var(--color-orange-100);
  border: solid 2px var(--color-orange-100);
  color: var(--color-white);
}
.bg-blue + .bg-blue .block {
  padding-top: 0;
}

.bg-dark-blue {
  background: var(--color-oxford-blue-100);
  color: var(--color-white);
}
.bg-dark-blue + .bg-dark-blue .block {
  padding-top: 0;
}
.bg-dark-blue h1,
.bg-dark-blue h2,
.bg-dark-blue h3,
.bg-dark-blue h4,
.bg-dark-blue h5,
.bg-dark-blue h6 {
  color: var(--color-white);
}
.bg-dark-blue .foe-button {
  border-color: var(--color-orange-100);
  color: white;
}
.bg-dark-blue .foe-button:hover, .bg-dark-blue .foe-button:focus {
  background: var(--color-orange-100);
  border-color: var(--color-orange-100);
  color: white;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 600;
}

dfn {
  font-style: italic;
}

/*
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
*/
mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  line-height: 0px;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 2em 0px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
       appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #404040;
  font-size: 16px;
  line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  display: block;
}

p {
  margin-top: 0px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  background: #fff;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

blockquote,
q {
  quotes: "" "";
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

img {
  height: auto;
  max-width: 100%;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid #ccc;
  border-radius: 0px;
  background: #e6e6e6;
  color: black;
  font-size: 16px;
  line-height: 1;
  padding: 10px 30px;
  outline: none;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: #afafaf;
  background: #afafaf;
}

button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  border-color: #ccc;
  background: #e6e6e6;
}

button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  border-color: #afafaf;
  background: #afafaf;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0px;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  vertical-align: middle;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
textarea:focus {
  color: #111;
  outline: 1px solid #b5bdff;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  padding: 5px 10px;
}

textarea {
  width: 100%;
  resize: none;
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: var(--color-purple);
}

#tinymce a {
  text-decoration: underline !important;
  color: blue !important;
}

a:hover,
a:focus,
a:active {
  color: #000000;
}

a:focus {
  outline: none;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.clear:before,
.clear:after {
  content: "";
  display: table;
}

.clearfix:after,
.clear:after {
  clear: both;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Media
--------------------------------------------------------------*/
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
## Columns
--------------------------------------------------------------*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  float: left;
  position: relative;
}

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

@media screen and (max-width: 750px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    float: left;
    position: relative;
  }
}
/*--------------------------------------------------------------
# Wysiwyg Image Resets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# ACF Google Maps Reset.
--------------------------------------------------------------*/
.acf-map {
  width: 100%;
  min-height: 100px;
  border: none;
  margin: 0px;
}

.acf-map img {
  max-width: inherit !important;
}

/*
Fonts Styling

@font-face imports included here along with heading and button styles.
*/
/*
GLOBALS
*/
body {
  font-family: "montserrat", sans-serif;
  font-display: swap;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  body input:not([type=submit]) {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 600px) {
  body textarea {
    font-size: 1rem !important;
  }
}

section h1:first-of-type,
section h2:first-of-type,
section h3:first-of-type {
  margin-top: 0;
}

.wp-editor-container a {
  text-decoration: underline !important;
}

a {
  color: var(--color-purple);
  transition: color 0.2s ease-out;
}
a:hover {
  color: #000000;
}

section a:not(.foe-button) {
  text-decoration: underline;
  transition: all 0.15s ease-out;
  font-weight: 500;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

/*
HEADINGS
*/
.heading-tag {
  font-size: 14px;
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
  line-height: 1.2;
  display: block;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .heading-tag {
    font-size: 12px;
  }
}

h1,
.primary-heading {
  font-family: "quincy-cf", serif;
  font-size: clamp(2rem, 0.5rem + 4vw, 4rem);
  line-height: 1.1;
  display: block;
  font-weight: 400;
  text-wrap: pretty;
}

h2,
.secondary-heading {
  font-family: "quincy-cf", serif;
  font-size: clamp(1.8rem, 0.75rem + 2vw, 2.5rem);
  line-height: 1.2;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}

h3,
.small-heading {
  font-family: "quincy-cf", serif;
  font-size: clamp(1.5rem, 1.125rem + 1vw, 2rem);
  line-height: 1.125;
  margin: clamp(1.5rem, 0.9375rem + 1.5vw, 2.25rem) 0;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  h3,
  .small-heading {
    margin: 0 0 0.5em;
  }
}

h4,
.sub-heading {
  font-family: "montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h5,
.sub-heading {
  font-family: "montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.line-wrapper {
  overflow: hidden;
}

/*
LINKS
*/
.foe-link {
  display: inline-block;
  background: url("/wp-content/themes/foe/images/shell/arrow.svg") right center no-repeat;
  background-size: 11px;
  padding: 0.5em 1em 0.5em 0px;
  cursor: pointer;
}

.button-container {
  margin-top: 1.5em;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.foe-button {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.5em 1.5em;
  background: var(--color-black);
  color: var(--color-white);
  border: solid 2px var(--color-black);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.15s cubic-bezier(0.3, 1, 0.8, 1);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .foe-button {
    font-size: 14px;
  }
}
.foe-button.outline {
  background: transparent;
  color: currentColor;
}
.foe-button:focus {
  color: inherit;
}

/*
Header and Navigation Styling
*/
.no-scroll {
  overflow: hidden;
}

.admin-bar #header {
  margin-top: 32px;
}
.admin-bar .ScrollSmoother-wrapper {
  margin-top: 32px;
}

#sticky-target {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

#header {
  background: transparent;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 200;
  transition: all 0.3s ease-in-out;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1400px) {
  #header {
    padding: 15px;
  }
}
@media screen and (max-width: 900px) {
  #header {
    padding: 0;
  }
}
#header .main-nav {
  margin-left: auto;
  margin-right: 1.5em;
}
@media screen and (max-width: 1400px) {
  #header .main-nav {
    margin-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  #header .main-nav {
    display: none;
  }
}
#header .main-nav .nav-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5em 0 1em;
}
@media screen and (max-width: 1300px) {
  #header .search-form .search-field {
    height: 2em;
  }
}
#header .header-button {
  margin: 0px;
  padding: 0.5em 1.2em;
  font-size: 0.875em;
  border: solid 1px currentColor;
  background: var(--color-white);
}
#header .header-button.outline {
  background: transparent;
}
#header .header-button.solid {
  background: var(--color-white);
  color: var(--color-eggplant-100);
  border: solid 1px var(--color-eggplant-100);
}
#header .header-button:hover, #header .header-button:focus {
  background: var(--color-teal-100);
  color: var(--color-white);
  border: solid 1px var(--color-teal-100);
}
#header.dark {
  color: var(--color-eggplant-100);
}
#header.dark .header-button {
  border: solid 1px var(--color-eggplant-100);
  color: var(--color-eggplant-100);
}
#header.dark .header-button.solid {
  background: var(--color-eggplant-100);
  color: var(--color-white);
}
#header.dark .header-button:hover {
  background: var(--color-teal-100);
  color: var(--color-white);
  border: solid 1px var(--color-teal-100);
}
#header.dark .search-form {
  border: solid 1px currentColor;
}
#header.dark .site-logo .cls-1,
#header.dark .site-logo path {
  fill: var(--color-eggplant-100);
  transition: fill 0.2s ease-out;
}
#header.dark .menu > li > a {
  color: var(--color-eggplant-100);
}
#header.dark .menu > li > a::after {
  background: currentColor;
}
#header.dark .nav-toggle span {
  background: var(--color-eggplant-100);
}
#header.scrolled {
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--color-eggplant-100) 80%, transparent);
  padding-bottom: 1.125em;
  padding-top: 0.5em;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  color: var(--color-white);
  padding: 15px 5%;
}
@media screen and (max-width: 1100px) {
  #header.scrolled {
    padding-bottom: 0;
    padding-top: 0.25em;
  }
}
@media screen and (max-width: 900px) {
  #header.scrolled {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
#header.scrolled .site-logo {
  height: 60px;
}
@media screen and (max-width: 900px) {
  #header.scrolled .site-logo {
    padding: 10px 0;
  }
}
#header.scrolled .site-logo .cls-1,
#header.scrolled .site-logo path {
  fill: var(--color-white);
}
#header.scrolled .header-button {
  font-size: 0.7em;
  background: var(--color-white);
  border: solid 1px var(--color-white);
  color: var(--color-eggplant-100);
}
#header.scrolled .header-button.solid {
  background: transparent;
  color: var(--color-white);
  border: solid 1px var(--color-white);
}
#header.scrolled .header-button.outline {
  border: solid 1px var(--color-white);
  color: var(--color-white);
  background: transparent;
}
#header.scrolled .header-button:hover {
  background: var(--color-teal-100);
  color: var(--color-white);
  border: solid 1px var(--color-teal-100);
}
#header.scrolled .search-form {
  border: solid 1px var(--color-white);
}
#header.scrolled .search-field {
  padding: 0.2em 0.8em;
}
#header.scrolled .menu > li > a {
  font-size: 0.75em;
  color: var(--color-white);
}
#header.scrolled .sub-menu {
  margin-top: 0.5em;
}
#header.scrolled .nav-top {
  padding: 0.5em 0 0.75em;
}
#header.scrolled .nav-toggle span {
  background: var(--color-white);
}
#header.down {
  transform: translateY(-100%);
  pointer-events: none;
}
#header.up {
  transform: translateY(0%);
}

/*
Adding top padding to offset fixed header. 
For transparent headers bonus padding should be moved into hero/first block.
*/
.author #header {
  background: var(--color-eggplant-100);
}

.site-branding {
  line-height: 0px;
  font-size: 0px;
}
@media screen and (max-width: 1200px) {
  .site-branding {
    padding: 19px 20px;
  }
}
@media screen and (max-width: 900px) {
  .site-branding {
    padding: 0 20px;
  }
}
.site-branding .site-logo {
  height: 74px;
  transition: height 0.2s ease-out;
}
@media screen and (max-width: 1024px) {
  .site-branding .site-logo {
    height: 60px;
  }
}
@media screen and (max-width: 900px) {
  .site-branding .site-logo {
    padding: 10px 0;
  }
}

nav ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
nav ul li {
  padding: 0px;
}

.mobile-nav {
  display: none;
  z-index: 205;
  position: fixed;
  top: 0;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}
.mobile-nav .nav-toggle {
  margin-left: auto;
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.2s ease-out;
  background: var(--color-oxford-blue-100);
  max-width: 375px;
  margin-left: auto;
  padding: 0em 0em 3em 2em;
}
@media screen and (max-width: 600px) {
  .mobile-nav .mobile-nav-inner {
    max-width: 100%;
    margin: 0;
  }
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
  background: var(--color-eggplant-100);
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--color-shadow-80), 0.2);
  border-radius: 10px;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-track {
  background: rgba(128, 128, 128, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
  border-left: 1px solid transparent;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}
.mobile-nav .mobile-nav-inner .mobile-social {
  margin-top: 1em;
}
.mobile-nav .mobile-nav-inner .mobile-social .social-links svg path {
  fill: white;
}
.mobile-nav .mobile-nav-inner .mobile-social .social-links a:hover svg path {
  fill: var(--color-orange-100);
}
.mobile-nav.open .mobile-nav-inner {
  transform: translateX(0%);
}
.mobile-nav ul,
.mobile-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .foe-button {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  background: var(--color-orange-100);
  border-color: var(--color-orange-100);
}
.mobile-nav .foe-button:hover {
  background: var(--color-teal-100);
  border-color: var(--color-teal-100);
  color: var(--color-white);
}
.mobile-nav .mobile-login {
  margin-top: auto;
  display: block;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.mobile-nav .mobile-login > a:not(.foe-button) {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: font-size 0.2s ease-out, color 0.2s ease-out, text-decoration-color 0.15s ease-out;
}
.mobile-nav .mobile-login > a:not(.foe-button):hover {
  text-decoration-color: var(--color-orange-100);
  color: var(--color-orange-100);
}
.mobile-nav .back-button {
  padding: 15px 20px 15px 0;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  align-items: center;
  text-transform: uppercase;
}
.mobile-nav .back-button:hover .icon {
  transform: translateX(-2px);
}
.mobile-nav .back-button:hover span {
  text-decoration-color: white;
}
.mobile-nav .back-button span {
  color: white;
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s ease-out;
}
.mobile-nav .back-button .icon {
  width: 14px;
  height: 14px;
  margin-right: 0.5em;
  background: currentColor;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-left.svg") no-repeat center center;
          mask: url("/wp-content/themes/foe/images/shell/chevron-left.svg") no-repeat center center;
  -webkit-mask-size: 7px;
          mask-size: 7px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transition: transform 0.15s ease-out;
}
.mobile-nav {
  /* Trigger arrow */
}
.mobile-nav .trigger {
  cursor: pointer;
  padding: 10px;
}
.mobile-nav .trigger::after {
  content: "";
  -webkit-mask-size: 7px;
          mask-size: 7px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/chevron-left.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/chevron-left.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transition: transform 0.15s ease-out;
}

#mobile_nav {
  position: relative;
}
#mobile_nav a {
  display: block;
  font-size: 1.25em;
  font-weight: 500;
  color: white;
  text-decoration: underline;
  display: block;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: font-size 0.2s ease-out, color 0.2s ease-out, text-decoration-color 0.15s ease-out;
  line-height: 1.2;
}
#mobile_nav a:hover {
  text-decoration-color: white;
}
#mobile_nav > li {
  margin-bottom: 1em;
  overflow: hidden;
  min-height: 28px;
}
#mobile_nav > li .nav-item-wrapper {
  display: flex;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s ease-out;
  cursor: pointer;
}
#mobile_nav > li .nav-item-wrapper:hover {
  text-decoration-color: white;
}
#mobile_nav > li .nav-item-wrapper:hover .trigger {
  transform: translateX(2px);
}
#mobile_nav > li .nav-item-wrapper .trigger {
  width: 30px;
  height: 30px;
  display: block;
  line-height: 1.1;
  margin-left: 0.5em;
  margin-top: -2px;
  cursor: pointer;
  transition: transform 0.15s ease-out;
  border-radius: 4px;
}
#mobile_nav > li .nav-item-wrapper .trigger::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: white;
  -webkit-mask-size: 7px;
          mask-size: 7px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/chevron-right.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transition: transform 0.15s ease-out;
}
#mobile_nav > li .nav-item-wrapper.open .trigger::after {
  transform: rotate(180deg);
}
#mobile_nav > li > .sub-menu {
  position: absolute;
  top: 0;
  left: -4em;
  right: 1em;
  height: calc(100svh - var(--nav-toggle-height));
  background: var(--color-oxford-blue-100);
  transition: transform 0.3s ease;
  z-index: 1000;
  transform: translateX(calc(100% + 2em));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 1em 5em 4em;
}
#mobile_nav > li > .sub-menu.active {
  transform: translateX(0%);
  z-index: 2;
}
#mobile_nav .sub-menu::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
  background: white;
}
#mobile_nav .sub-menu::-webkit-scrollbar-thumb:hover {
  background: var(--color-orange-100);
  border-radius: 10px;
}
#mobile_nav .sub-menu::-webkit-scrollbar-track {
  background: rgba(128, 128, 128, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
  border-left: 1px solid transparent;
}
#mobile_nav .sub-menu::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}
#mobile_nav .sub-menu > li {
  border-bottom: solid 1px color-mix(in srgb, var(--color-oxford-blue-100) 85%, white);
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#mobile_nav .sub-menu > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#mobile_nav .sub-menu > li > a {
  font-size: 1em;
}
#mobile_nav .sub-menu > li .sub-menu {
  padding-top: 0.5em;
}
#mobile_nav .sub-menu > li .sub-menu li {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#mobile_nav .sub-menu > li .sub-menu li a {
  padding: 0.25rem 0;
  font-size: 90%;
  line-height: 1.5;
  font-weight: 400;
}

.nav-toggle {
  padding: 19px 20px;
  border: none;
  display: none;
  background: none;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: var(--color-white);
  width: 24px;
  height: 2px;
  margin: 5px 0px;
  transform-origin: 50% 50%;
  border-radius: 2px;
  transition: all 0.2s ease-out;
}
.nav-toggle.open .one {
  transform: translateY(6px) rotate(135deg);
  -moz-transform: translateY(6px) rotate(135deg);
  -webkit-transform: translateY(6px) rotate(135deg);
}
.nav-toggle.open .three {
  transform: translateY(-8px) rotate(-135deg);
  -moz-transform: translateY(-8px) rotate(-135deg);
  -webkit-transform: translateY(-8px) rotate(-135deg);
}
.nav-toggle.open .two {
  transform: scale(0);
}
.nav-toggle.open span {
  background: white !important;
}
.nav-toggle:focus {
  background: rgba(0, 0, 0, 0.13);
}
.nav-toggle:active {
  background: rgba(0, 0, 0, 0.13);
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.13);
}

header nav .menu {
  display: flex;
}
header nav .menu > li {
  padding: 0rem 1rem;
}
header nav .menu > li:last-child {
  padding-right: 0;
}
header nav .menu > li.menu-item-has-children > a {
  position: relative;
}
header nav .menu > li.menu-item-has-children > a.visible::after {
  transform: rotate(180deg);
}
header nav .menu > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 100%;
  background: var(--color-white);
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/chevron-down.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/chevron-down.svg");
  vertical-align: middle;
  -webkit-mask-size: 14px;
          mask-size: 14px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  margin-left: 0.5rem;
  transform-origin: center center;
  transition: transform 0.15s ease-in-out;
}
header nav .menu > li > a {
  font-size: 0.875em;
  font-weight: 500;
  color: var(--color-white);
  transition: font-size 0.2s ease-out, color 0.2s ease-out, text-decoration-color 0.15s ease-out;
}
header nav .menu > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2em;
  width: 30vw;
  height: 4em;
  opacity: 0;
  z-index: 2;
}
header nav .menu > li > a:hover {
  text-decoration-color: inherit;
}
header nav .menu > li > .sub-menu {
  position: absolute;
  background: var(--color-white);
  margin-top: 0.5rem;
  padding: 1.5em 1.5em;
  width: auto;
  left: auto;
  border-radius: 4px;
  gap: 0 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  z-index: 2;
  transform: translateY(15px);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-out, visibility 0s, opacity 0.3s ease-in-out, pointer-events 0s ease-in-out;
}
header nav .menu > li > .sub-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  height: 8px;
  width: 100%;
  height: 2em;
  opacity: 0;
  z-index: -1;
}
header nav .menu > li > .sub-menu.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  transform: translateY(0%);
}
header nav .menu > li > .sub-menu > li {
  flex: 0 0 40%;
  text-wrap: balance;
  line-height: 1.2;
  margin-top: calc(1em - 6px);
  border-bottom: solid 1px color-mix(in srgb, var(--color-white) 85%, var(--color-black));
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
header nav .menu > li > .sub-menu > li:first-child {
  margin-top: 0;
}
header nav .menu > li > .sub-menu > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
header nav .menu > li > .sub-menu > li:last-child > a {
  margin-bottom: 0;
}
header nav .menu > li > .sub-menu > li > a {
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 4px;
}
header nav .menu > li > .sub-menu .sub-menu {
  -moz-column-count: 2;
       column-count: 2;
}
header nav .menu > li > .sub-menu .sub-menu li {
  padding: 6px 0;
  line-height: 1.1;
}
header nav .menu > li > .sub-menu .sub-menu a {
  color: var(--color-shadow-80);
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.5;
}
header nav .menu > li > .sub-menu a {
  display: block;
  min-width: 250px;
}
header nav .menu > li > .sub-menu a:hover {
  text-decoration-color: var(--color-black);
}
header nav li {
  position: relative;
  line-height: 1.2;
}
header nav a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  font-weight: 500;
  font-size: 0.875em;
}
@media screen and (max-width: 1300px) {
  header nav a {
    font-size: 0.75em !important;
  }
}

/*
Footer and Navigation Styling
*/
.site-footer {
  color: var(--color-black);
  background: linear-gradient(to bottom, var(--color-eggplant-10), var(--color-eggplant-20));
}
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  color: var(--color-eggplant-100);
}
.site-footer.padding-top-none .block {
  padding-top: 2em;
}
.site-footer .block {
  padding-top: 8%;
  padding-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .site-footer .block {
    padding-top: 12%;
  }
}
.site-footer .inner {
  padding: 0 5%;
}
@media screen and (max-width: 800px) {
  .site-footer .inner {
    padding: 0;
  }
}
.site-footer ul {
  list-style: none;
}
.site-footer .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 800px) {
  .site-footer .menu {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .site-footer .menu {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.site-footer .menu > li {
  flex: 0 0 calc(33.333% - 2rem);
}
.site-footer .menu > li > a {
  font-size: 1em;
  font-weight: 500;
  color: var(--color-eggplant-100);
}
.site-footer .menu .policy-mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .site-footer .menu .policy-mobile {
    display: block;
  }
}
.site-footer .sub-menu li {
  padding: 4px 0;
  line-height: 1.5;
}
.site-footer a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  font-weight: 400;
  font-size: 0.875em;
}
.site-footer a:hover {
  text-decoration-color: var(--color-black);
}
.site-footer .footer-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top {
    flex-direction: column;
  }
}
.site-footer .footer-top .branding-col {
  flex: 0 0 40%;
  padding-right: 5%;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top .branding-col {
    flex: 0 0 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top .branding-col .footer-logo {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.site-footer .footer-top .branding-col .footer-logo img {
  height: 83px;
  width: auto;
}
.site-footer .footer-top .branding-col .newsletter {
  margin-top: calc(var(--footer-nav-li-height) - 3.5rem);
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top .branding-col .newsletter {
    margin-top: 2rem;
  }
}
.site-footer .footer-top .branding-col .newsletter h1,
.site-footer .footer-top .branding-col .newsletter h2,
.site-footer .footer-top .branding-col .newsletter h3,
.site-footer .footer-top .branding-col .newsletter h4,
.site-footer .footer-top .branding-col .newsletter h5,
.site-footer .footer-top .branding-col .newsletter h6 {
  font-size: 1em;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 0.4em;
}
.site-footer .footer-top .nav-col {
  flex: 0 0 60%;
}
.site-footer .footer-bottom {
  padding-top: 8%;
}
.site-footer .footer-bottom .policy-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--color-eggplant-100);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.site-footer .footer-bottom .policy-row .policies-wrapper {
  flex: 0 0 60%;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-bottom .policy-row .policies-wrapper {
    display: none;
  }
}
.site-footer .footer-bottom .policy-row .policies-wrapper .menu {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.site-footer .footer-bottom .policy-row .policies-wrapper li {
  flex: 0 0 auto;
  padding: 0;
}
.site-footer .footer-bottom .policy-row .policies-wrapper li a {
  font-size: 0.875rem !important;
  font-weight: 400;
  color: var(--color-black);
  padding: 0;
}
.site-footer .footer-bottom .copyright-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-bottom .copyright-row {
    display: block;
  }
}
.site-footer .footer-bottom a,
.site-footer .footer-bottom span {
  font-size: 0.875rem !important;
  font-weight: 400;
  color: var(--color-black);
  padding: 0;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-bottom a,
  .site-footer .footer-bottom span {
    font-size: 0.75rem !important;
  }
}

.social-links {
  display: flex;
  margin-top: 1em;
}
.social-links a {
  width: 30px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-links a:hover svg path {
  fill: var(--color-teal-100);
}
.social-links a svg {
  max-height: 20px;
  max-width: 20px;
  width: auto;
  height: auto;
}
.social-links a svg path {
  fill: var(--color-eggplant-100);
  transition: fill 0.15s ease-out;
}

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

.site-main {
  padding: 5% 5%;
}
@media screen and (max-width: 800px) {
  .site-main {
    padding: 9% 8%;
  }
}

.block {
  padding: clamp(60px, 9.03vw, 130px) 5%;
  max-width: 1600px;
  margin: auto;
}

html :where(.wp-block) {
  max-width: 90%;
  padding: 0% 0%;
}
html :where(.wp-block):hover {
  outline: 2px solid rgb(44, 139, 255) !important;
  outline-offset: 2px;
}
html :where(.wp-block) a:not(.foe-button) {
  transition: all 0.15s ease-out;
  font-weight: 500;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

html :where(.acf-block-component):hover {
  outline: 2px solid rgb(44, 139, 255) !important;
  outline-offset: 4px;
}

html {
  scroll-behavior: smooth;
}

.wp-editor-container a {
  text-decoration: underline !important;
}

.acf-block-component {
  margin: 0 !important;
  padding: 0 !important;
}
.acf-block-component .pagination span,
.acf-block-component .pagination a {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

.block-editor .editor-sidebar .acf-field {
  float: none !important;
  width: 100% !important;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scale-mask {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  overflow: hidden;
  transform: scale(0.9);
  width: 100%;
  height: 100%;
  aspect-ratio: 22/9;
}
@media screen and (max-width: 800px) {
  .scale-mask {
    aspect-ratio: 14/9;
    margin-top: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .scale-mask {
    aspect-ratio: 12/9;
  }
}
@media screen and (max-width: 400px) {
  .scale-mask {
    aspect-ratio: 1;
  }
}
.scale-mask img,
.scale-mask video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transform: scale(1.2);
}

.rank-math-breadcrumb {
  font-size: 0.85em;
  padding: 0 5% 2em;
  margin-top: -2em;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .rank-math-breadcrumb {
    font-size: 0.75em;
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .rank-math-breadcrumb {
    margin-bottom: 8%;
  }
}
.rank-math-breadcrumb p {
  display: flex;
  align-items: center;
}
.rank-math-breadcrumb a {
  white-space: nowrap;
  display: inline-block;
  text-decoration-color: transparent !important;
  transition: text-decoration-color 0.15s ease-out;
  text-decoration-thickness: 1px;
}
.rank-math-breadcrumb .last {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  text-decoration-color: transparent !important;
  transition: text-decoration-color 0.15s ease-out;
  text-decoration-thickness: 1px;
}
.rank-math-breadcrumb a:hover {
  text-decoration-color: currentColor !important;
}
.rank-math-breadcrumb .separator {
  padding: 10px 10px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/arrow.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/arrow.svg");
  -webkit-mask-size: 8px;
          mask-size: 8px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: currentColor;
  font-size: 0px;
}
@media screen and (max-width: 800px) {
  .rank-math-breadcrumb .separator {
    padding: 7px 12px;
  }
}

.pagination {
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 2em;
}
.pagination span,
.pagination a {
  display: inline-block;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid var(--color-purple);
  margin: 0px 2px;
  text-decoration: none !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination span {
  background: var(--color-black);
  color: var(--color-white);
}
.pagination a {
  border: 1px solid rgba(var(--color-purple), 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
  background: color-mix(in srgb, currentColor 20%, transparent);
}
.pagination a:hover {
  border: 1px solid var(--color-purple);
  background: var(--color-eggplant-100);
  color: white;
}
.pagination a.next {
  padding-right: 30px;
  background-image: url("/wp-content/themes/foe/images/shell/arrow.svg") right 10px center no-repeat;
  background-size: 11px;
  width: auto;
}
.pagination a.prev, .pagination a.next {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 50px);
}
@media screen and (max-width: 600px) {
  .hero {
    padding-top: calc(var(--header-height) + 20px);
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.hero.text-hero.bg-purple {
  background: var(--color-eggplant-10);
  color: var(--color-eggplant-100);
}
.hero.text-hero.bg-purple h1,
.hero.text-hero.bg-purple h2,
.hero.text-hero.bg-purple h3 {
  color: var(--color-eggplant-100);
}
.hero.text-hero.bg-teal {
  background: linear-gradient(to bottom, var(--color-teal-20), var(--color-teal-10));
  color: var(--color-eggplant-100);
}
.hero.text-hero.bg-teal + section.content-image-block,
.hero.text-hero.bg-teal + section.content-tabs-block {
  background: linear-gradient(to bottom, var(--color-teal-10), var(--color-white)) !important;
}
.hero.text-hero.bg-teal + section.content-image-block .block,
.hero.text-hero.bg-teal + section.content-tabs-block .block {
  padding-top: 0;
}
.hero.text-hero.bg-blue {
  background: linear-gradient(to top, var(--color-lapis-20), var(--color-lapis-60));
}
.hero.text-hero:has(+ section.content-image) {
  background: linear-gradient(to bottom, var(--color-teal-20), var(--color-teal-10));
}
.hero.text-hero + section.content-image {
  background: linear-gradient(to bottom, var(--color-teal-10), var(--color-white));
}
.hero.text-hero + section.content-image .block {
  padding-top: 0;
}
.hero.text-hero .hero-content {
  max-width: 80ch;
  margin: auto;
}
.hero .block {
  padding-bottom: 5%;
  padding-top: 2em;
}
@media screen and (max-width: 800px) {
  .hero .block {
    padding-top: 0;
  }
}
.hero .hero-content {
  max-width: 70ch;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .hero .hero-content p br {
    display: none;
  }
}
.hero .hero-video {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}
.hero .hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -100;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .button-container {
  justify-content: center;
}

.text-hero-image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1440/550;
}
@media screen and (max-width: 1024) {
  .text-hero-image-wrapper {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 475px) {
  .text-hero-image-wrapper {
    aspect-ratio: 12/9;
  }
}
.text-hero-image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.wide-media {
  position: relative;
  color: white;
  padding-top: 25%;
  padding-bottom: 5%;
  padding-left: 8%;
  padding-right: 8%;
}
@media screen and (max-width: 600px) {
  .wide-media {
    padding-top: 30%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.wide-media .media-wrapper {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wide-media .media-wrapper img {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  -o-object-fit: cover;
     object-fit: cover;
}
.wide-media .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: black;
  opacity: 0.5;
}
.wide-media .inner {
  position: relative;
  height: 100%;
}
.wide-media .inner.center {
  display: flex;
  justify-content: center;
  text-align: center;
}
.wide-media .inner.center .button-container {
  display: flex;
  justify-content: center;
}
.wide-media .inner.center .button-container .foe-button:last-child {
  margin-right: 0;
}
.wide-media .inner.right {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.wide-media .inner.right .content .foe-button:last-child {
  margin-right: 0;
}
.wide-media .inner .content {
  bottom: 0;
  left: 0;
  max-width: 30em;
}
.wide-media .inner .content .button-container {
  margin-top: 1em;
}

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.text-block:has(+ section.links-block) .block, .text-block:has(+ section.content-tabs-block) .block, .text-block:has(+ section.list-tabs-block) .block, .text-block:has(+ section.multi-row-content-tabs-block) .block {
  padding-bottom: clamp(50px, 5vw, 100px);
}
.text-block.bg-white h1,
.text-block.bg-white h2,
.text-block.bg-white h3 {
  color: var(--color-eggplant-100);
}
.text-block .text-content {
  max-width: 1024px;
  margin: 0 auto;
  text-wrap: balance;
}
.text-block .button-container {
  padding-top: 1em;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}

.cta-block {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta-block {
    min-height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .cta-block {
    min-height: unset;
  }
}
.cta-block .block {
  width: 100%;
}
.cta-block .inner {
  padding: 5% 0;
  position: relative;
  z-index: 2;
}
.cta-block:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta-block:after {
    background: rgba(0, 0, 0, 0.7);
  }
}
.cta-block .cta-content {
  max-width: 600px;
  text-wrap: balance;
}
.cta-block .button-container .foe-button.solid {
  background: var(--color-orange-100);
  color: var(--color-white);
  border: solid 2px var(--color-orange-100);
}
.cta-block .button-container .foe-button.outline {
  background: transparent;
  color: var(--color-white);
  border: solid 2px var(--color-orange-100);
}
.cta-block .button-container .foe-button:hover {
  background: var(--color-orange-100);
  color: var(--color-white);
  border: solid 2px var(--color-orange-100);
}
.cta-block img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: 1;
}

.content-image-block.bg-purple {
  background: var(--color-eggplant-100);
}
.content-image-block.ori-right .content-text {
  order: 2;
  padding: 0px 0px 0px 4%;
}
.content-image-block.ori-right .content-image {
  padding: 0px 4% 0px 0px;
}
.content-image-block .inner {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .content-image-block .inner {
    flex-direction: column;
  }
}
.content-image-block .content-text {
  flex: 0 0 40%;
  padding-right: 4%;
}
@media screen and (max-width: 768px) {
  .content-image-block .content-text {
    flex: 0 0 100%;
    padding: 0 !important;
    order: 1;
  }
}
.content-image-block .content-image {
  flex: 0 0 50%;
  padding-left: 4%;
}
@media screen and (max-width: 768px) {
  .content-image-block .content-image {
    flex: 0 0 100%;
    padding: 0px !important;
    margin-bottom: 8%;
  }
}
.content-image-block .content-image img {
  border-radius: var(--border-radius);
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 768px) {
  .content-image-block .content-image img {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 400px) {
  .content-image-block .content-image img {
    aspect-ratio: 1;
  }
}
.content-image-block ul {
  padding-top: 1em;
  padding-left: 1em;
  margin-left: 1em;
}
.content-image-block ul li {
  padding: 0.5em 0;
}

.contact-block .inner {
  display: flex;
  align-items: flex-start;
  padding: 5%;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 900px) {
  .contact-block .inner {
    display: block;
    padding: 8% 5%;
  }
}
.contact-block .inner h1,
.contact-block .inner h2,
.contact-block .inner h3,
.contact-block .inner h4,
.contact-block .inner h5,
.contact-block .inner h6 {
  color: var(--color-eggplant-100);
}
.contact-block .inner strong {
  color: var(--color-eggplant-100);
  font-weight: 600;
}
.contact-block .contact-intro {
  flex: 0 0 40%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .contact-block .contact-intro {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.contact-block .contact-intro .address {
  padding: 1em 0px;
}
.contact-block .contact-form {
  flex: 0 0 60%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .contact-block .contact-form {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}
.contact-block a {
  text-decoration-color: transparent !important;
  text-decoration-thickness: 1px !important;
}
.contact-block a:hover {
  text-decoration-color: var(--color-eggplant-100) !important;
}

.map-block {
  padding-top: var(--header-height);
  padding-bottom: 5%;
}
.map-block #practitioner-map {
  width: 100%;
  height: 600px;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 1024px) {
  .map-block #practitioner-map {
    height: 500px;
  }
}
.map-block .block {
  padding-bottom: clamp(60px, 9.03vw, 80px);
}
.map-block .inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.map-block .filter-buttons {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .map-block .filter-buttons button {
    padding: 0.8em 1em !important;
  }
}
.map-block .filter-buttons .filter-close-button {
  display: none;
}
@media screen and (max-width: 1024px) {
  .map-block .filter-buttons .filter-close-button {
    display: flex;
    justify-content: center;
    text-align: center;
  }
}
.map-block .filter-toggle-button {
  display: none;
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 99;
  background: white;
  color: var(--color-black);
  border: solid 1px var(--color-black);
  border-radius: 4px;
  padding: 0.8em 1.5em;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
  font-size: 1rem;
  align-items: center;
  gap: 0.5em;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .map-block .filter-toggle-button {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 600px) {
  .map-block .filter-toggle-button {
    font-size: 1em;
  }
}
.map-block .filter-toggle-button:hover {
  background: var(--color-teal-100);
  color: white;
}
.map-block .filter-toggle-button:hover .icon {
  background: white;
}
.map-block .filter-toggle-button span {
  display: block;
}
.map-block .filter-toggle-button .icon {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/filter-icon.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/filter-icon.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--color-black);
  transition: all 0.15s ease-in-out;
}
.map-block .map-filter-column {
  flex: 0 0 30%;
  padding-right: 2em;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .map-block .map-filter-column {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .map-block .map-filter-column {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding-right: 0;
  }
  .map-block .map-filter-column.open .map-filter {
    transform: translateX(0);
  }
}
.map-block .map-filter-column .map-filter {
  padding: 1.5em;
  background: var(--color-eggplant-100);
  color: white;
  border-radius: var(--border-radius);
  position: sticky;
  top: calc(var(--header-height) + 2em);
  transition: transform 0.2s ease-out;
}
@media screen and (max-width: 1024px) {
  .map-block .map-filter-column .map-filter {
    position: static;
    border-radius: 0;
    transform: translateX(-50px);
    height: 100vh;
    overflow-y: auto;
    max-width: 400px;
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 600px) {
  .map-block .map-filter-column .map-filter {
    max-width: 100%;
  }
}
.map-block .map-filter-column .map-filter h4 {
  margin: 0;
}
.map-block .map-filter-column .map-filter h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1em;
  font-family: "montserrat", sans-serif;
  margin-top: 0;
}
.map-block .map-filter-column .map-filter label {
  font-weight: 600;
  display: none;
}
.map-block .map-filter-column .map-filter .checkbox-label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.map-block .map-filter-column .map-filter input[type=checkbox] {
  margin-right: 0.5em;
}
.map-block .map-filter-column .map-filter button {
  padding: 0.125em 0.5em;
  border: solid 2px var(--color-orange-100);
  border-radius: 4px;
  padding: 0.8em 1.5em;
  background: transparent;
  color: white;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 600px) {
  .map-block .map-filter-column .map-filter button {
    padding: 0.5em 1em;
  }
}
.map-block .map-filter-column .map-filter button:hover {
  background: var(--color-orange-100);
  color: white;
}
.map-block .map-filter-column .map-filter .filter-group {
  margin-bottom: 1em;
}
.map-block .map-filter-column .map-filter input {
  padding: 0.125em 0.5em;
  font-size: 1rem;
  background: var(--color-eggplant-80);
  color: white;
  font-weight: 500;
  outline: none;
  border: none;
  border-radius: 4px;
  height: 3em;
}
@media screen and (max-width: 600px) {
  .map-block .map-filter-column .map-filter input {
    height: 2.5em;
  }
}
.map-block .map-filter-column .map-filter input::-moz-placeholder {
  color: white;
  font-weight: 500;
}
.map-block .map-filter-column .map-filter input::placeholder {
  color: white;
  font-weight: 500;
}
.map-block .map-filter-column .map-filter select {
  width: 100%;
  padding: 0.125em 0.5em;
  height: 3em;
  border: none;
  border-radius: 4px;
  padding-right: 2.5em;
  background: var(--color-eggplant-80) url("/wp-content/themes/foe/images/shell/chevron-down.svg") right 13px center no-repeat;
  background-size: 14px;
  color: white;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .map-block .map-filter-column .map-filter select {
    height: 2.5em;
  }
}
.map-block .map-container {
  flex: 0 0 70%;
}
@media screen and (max-width: 1024px) {
  .map-block .map-container {
    flex: 0 0 100%;
  }
}

.map-info-window a {
  text-decoration-color: transparent !important;
  text-decoration-thickness: 1px !important;
}
.map-info-window a:hover {
  text-decoration-color: var(--color-eggplant-100) !important;
}
.map-info-window h4 {
  margin: 0 0 0.5em 0;
  text-transform: capitalize;
  letter-spacing: 0;
}
.map-info-window .company {
  text-transform: capitalize;
}
.map-info-window p {
  margin-bottom: 0.5em;
}

.practitioners-list {
  margin-top: 3em;
}
.practitioners-list .inner {
  display: block;
}
.practitioners-list h2 {
  margin-top: 0;
}
.practitioners-list h3:not(.results-count) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1.125rem;
  font-family: "montserrat", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .practitioners-list h3:not(.results-count) {
    font-size: 1rem;
  }
}
.practitioners-list p {
  margin-bottom: 0.5em;
}
.practitioners-list a {
  text-decoration: none;
  font-size: 1rem;
}
.practitioners-list .address {
  font-size: 14px;
  text-transform: capitalize;
  margin-bottom: 1em;
  font-weight: 500;
  line-height: 1.2;
  text-wrap: balance;
}
@media screen and (max-width: 1024px) {
  .practitioners-list .address {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .practitioners-list .address {
    font-size: 1em;
  }
}
.practitioners-list .block {
  padding: 0 5%;
  padding-top: clamp(60px, 9.03vw, 80px);
  padding-bottom: clamp(60px, 9.03vw, 80px);
}
.practitioners-list .inner {
  border-radius: var(--border-radius);
}
.practitioners-list .practitioners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
}
@media screen and (max-width: 1024px) {
  .practitioners-list .practitioners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .practitioners-list .practitioners-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.practitioners-list .practitioner-card {
  min-height: 160px;
  color: var(--color-black);
  padding: 1em;
  border-radius: 8px;
  transition: background 0.1s ease-in-out;
  height: 100%;
  background: white;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1024px) {
  .practitioners-list .practitioner-card {
    padding: 5%;
    min-height: 100px;
  }
}
.practitioners-list .practitioner-card a {
  text-decoration: none;
  color: inherit;
}
.practitioners-list .practitioner-card:hover, .practitioners-list .practitioner-card:focus {
  background: var(--color-eggplant-20);
}
.practitioners-list .practitioner-card .distance {
  font-size: 12px;
  font-weight: 600;
  background: var(--color-eggplant-10);
  color: var(--color-black);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 0.5em;
  border-radius: 4px;
  margin-right: auto;
}
.practitioners-list .practitioner-card .card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.practitioners-list .practitioner-card .practitioner-contact {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: auto;
}
.practitioners-list .practitioner-card .icon {
  width: 30px;
  height: 30px;
  background: var(--color-eggplant-100);
  display: block;
  transition: all 0.15s ease-in-out;
}
.practitioners-list .practitioner-card .icon.icon-phone {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/phone.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/phone.svg");
  -webkit-mask-size: 18px;
          mask-size: 18px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.practitioners-list .practitioner-card .icon.icon-laptop {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/laptop.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/laptop.svg");
  -webkit-mask-size: 24px;
          mask-size: 24px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.practitioners-list .practitioner-card .icon.icon-email {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/email.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/email.svg");
  -webkit-mask-size: 22px;
          mask-size: 22px;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.practitioners-list .practitioner-card .icon:hover {
  background: var(--color-teal-100);
}

.text-form .inner {
  display: grid;
  grid-template-columns: auto max-content;
  gap: 5vw;
  position: relative;
}
@media screen and (max-width: 800px) {
  .text-form .inner {
    grid-template-columns: 1fr;
  }
}
.text-form .inner .text-container {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 800px) {
  .text-form .inner .text-container {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.text-form .inner .text-container .container {
  margin-top: 135px;
}
@media screen and (max-width: 800px) {
  .text-form .inner .text-container .container {
    margin-top: 0;
  }
}
.text-form .inner .form-container {
  grid-column: 1/2;
  grid-row: 1/2;
}

.blog .inner {
  position: relative;
}
.blog .inner .blog-head {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4%;
  position: relative;
  z-index: 9;
}
.blog .inner .blog-head h2 {
  margin-bottom: 0 !important;
}
.blog .inner .blog-head .filters {
  display: flex;
  align-items: center;
}
.blog .inner .blog-head .filters .total-results {
  margin-right: 1.5em;
  white-space: nowrap;
  font-size: 0.9em;
}
.blog .inner .blog-head .filters select {
  margin-right: 1em;
}
.blog .inner .no-post {
  text-align: center;
  padding: 1.5em 0px;
  width: 100%;
}

.post-list {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  gap: 1.5em;
}
@media screen and (max-width: 600px) {
  .post-list {
    gap: 0.75em;
  }
}
.post-list .post {
  overflow: hidden;
  transition: all 0.15s ease-in-out;
  flex: 0 0 calc(33.333% - 1.5em);
  border-radius: var(--border-radius);
}
@media screen and (max-width: 1200px) {
  .post-list .post {
    flex: 0 0 calc(50% - 0.75em);
  }
}
@media screen and (max-width: 600px) {
  .post-list .post {
    flex: 0 0 100%;
  }
}
.post-list .post:hover .post-image {
  opacity: 0.8;
}
.post-list .post:hover .excerpt {
  text-decoration: underline;
}
.post-list .post a {
  display: block;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
}
.post-list .post .post-image {
  flex: 0 0 50%;
  position: relative;
  display: block;
  aspect-ratio: 400/300;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-grey);
  transition: all 0.2s ease-out;
}
.post-list .post .post-image .post-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-eggplant-80);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-list .post .post-image .post-image-placeholder img {
  -o-object-fit: contain;
     object-fit: contain;
  position: static;
  padding: 10%;
  max-width: 80%;
}
.post-list .post .post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.post-list .post .post-content {
  padding: 1.5em 0;
  flex: 0 0 50%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .post-list .post .post-content {
    min-height: 100px;
  }
}
.post-list .post .post-content .foe-link {
  text-decoration: underline;
  background: none;
  padding-top: 1em;
  font-weight: 500;
}
.post-list .post .post-content .foe-link::after, .post-list .post .post-content .foe-link::before {
  display: none;
  content: unset;
}
.post-list .post .post-content .foe-link .arrow-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--color-orange-100);
  margin-left: 0.5em;
  border-radius: 50%;
  position: relative;
  transition: all 0.15s ease-in-out;
  vertical-align: top;
}
.post-list .post .post-content .foe-link .arrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
  -webkit-mask-size: 8px;
          mask-size: 8px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: all 0.15s ease-in-out;
}
.post-list .post .post-content .foe-link:hover .arrow-icon {
  background: currentColor;
}
.post-list .post .post-date {
  font-size: 0.8em;
  font-weight: 700;
  margin-bottom: 1em;
}
.post-list .post .excerpt {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .post-list .post .excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.post-list .load {
  flex: 0 0 100%;
  text-align: center;
  order: 9999;
}
.post-list .load .foe-button {
  margin-right: 0px;
}

.post-content .inner {
  max-width: 900px;
  margin: 0 auto;
}
.post-content .post-head {
  flex: 0 0 100%;
}
.post-content .post-img {
  aspect-ratio: 10/5;
  position: relative;
  flex: 0 0 100%;
  margin: 1em 0px 2em 0px;
}
.post-content .post-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content .post-text {
  flex: 0 0 100%;
}
.post-content .wp-block-image img {
  border-radius: var(--border-radius);
}
.post-content .wp-block-video video {
  border-radius: var(--border-radius);
}
.post-content .wp-block-quote {
  background: transparent;
}

.post-footer .block {
  padding-top: 0;
}

.post-links {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: solid 2px currentColor;
  padding-top: 1em;
}
.post-links .post-prev a,
.post-links .post-next a {
  display: flex;
  align-items: center;
}
.post-links .post-prev a:hover .arrow,
.post-links .post-next a:hover .arrow {
  background: currentColor;
}
.post-links .post-prev a:hover .text,
.post-links .post-next a:hover .text {
  text-decoration-color: currentColor;
}
.post-links .post-prev a .text,
.post-links .post-next a .text {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.15s ease-in-out;
  text-decoration-color: transparent;
}
.post-links .post-prev .arrow,
.post-links .post-next .arrow {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  background: var(--color-orange-100);
  transition: all 0.15s ease-in-out;
  margin-left: 0.5em;
}
.post-links .post-prev .arrow::after,
.post-links .post-next .arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
  -webkit-mask-size: 8px;
          mask-size: 8px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: all 0.15s ease-in-out;
  transform: translateX(1px);
}
.post-links .post-prev .arrow {
  transform: scaleX(-1);
  margin-right: 0.5em;
  margin-left: 0;
}
.post-links .post-prev .arrow::after {
  transform: translateX(1px);
}

.single-share {
  text-align: left;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
.single-share ul {
  list-style-type: none;
  margin: 0;
  margin-left: 1em;
  padding: 0px;
  display: flex;
}

.wp-block-image .alignleft {
  margin: 0.5em 2em 1.5em 0px;
}
.wp-block-image .alignright {
  margin: 0.5em 0px 1.5em 2em;
}

.wp-block-quote {
  background: var(--color-shadow-80);
  margin: 2em 0px;
  padding: 1.5em 1.5em 1.5em 3.75em;
  text-wrap: balance;
  font-size: 120%;
  position: relative;
}
.wp-block-quote:before {
  content: "“";
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-weight: bold;
  font-size: 400%;
  line-height: 1;
  color: var(--color-purple);
}
.wp-block-quote p:last-child {
  margin-bottom: 0px;
}

.gallery-block {
  margin: 0;
}
.gallery-block .gallery-items {
  width: 100%;
  display: grid;
  padding-top: 2em;
  gap: 2em;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1200px) {
  .gallery-block .gallery-items {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1200px) {
  .gallery-block .gallery-items {
    padding-top: 1em;
    gap: 1em;
  }
}
.gallery-block .gallery-items .gallery-item {
  aspect-ratio: 6/5;
}
.gallery-block .gallery-items .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.faq-block h2,
.faq-block h3 {
  color: var(--color-eggplant-100);
}
.faq-block .faq-intro {
  margin-bottom: 5%;
}
.faq-block .faq-intro h2 {
  margin-top: 0;
}
.faq-block .inner {
  display: block;
}
.faq-block .faq-section + .faq-section {
  margin-top: 5%;
}
.faq-block .faqs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, auto);
  grid-auto-flow: column;
  align-items: start;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .faq-block .faqs {
    grid-template-columns: 1fr;
    grid-auto-flow: unset;
    gap: 0;
    display: block;
  }
}
.faq-block .faq {
  flex: 0 0 50%;
  transition: all 0.2s ease-out;
  border-bottom: solid 1px var(--color-shadow-40);
}
.faq-block .faq:first-child {
  border-top: solid 1px var(--color-shadow-40);
}
.faq-block .faq .question {
  font-family: "montserrat", sans-serif;
  font-size: 1em;
  font-weight: 600;
  padding: 1.5rem 2rem 1.5rem 0rem;
  position: relative;
  cursor: pointer;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 768px) {
  .faq-block .faq .question {
    padding: 1rem 1.5rem 1rem 0rem;
  }
}
.faq-block .faq .question:hover {
  background: var(--color-shadow-10);
}
.faq-block .faq .question.open {
  background: none;
}
.faq-block .faq .question.open .status:before {
  transform: rotate(0deg);
}
.faq-block .faq .question.open .status:after {
  transform: rotate(0deg);
}
.faq-block .faq .question .status {
  position: absolute;
  right: 0px;
  top: 1.5rem;
  bottom: 0px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-out;
  background: var(--color-teal-100);
}
@media screen and (max-width: 1024px) {
  .faq-block .faq .question .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
  }
}
@media screen and (max-width: 768px) {
  .faq-block .faq .question .status {
    top: 1em;
  }
}
.faq-block .faq .question .status:after, .faq-block .faq .question .status:before {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: white;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.2s ease-out;
}
.faq-block .faq .question .status:before {
  transform: rotate(-90deg);
}
.faq-block .faq .answer {
  display: none;
  margin-bottom: 3rem;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .faq-block .faq .answer {
    font-size: 1em;
  }
}
.faq-block .faq .answer .foe-button {
  border: solid 2px var(--color-eggplant-100);
}
.faq-block .faq .answer .foe-button.solid {
  background: var(--color-eggplant-100);
}
.faq-block .faq .answer .foe-button.outline {
  color: var(--color-eggplant-100);
}
.faq-block .faq .answer .foe-button:hover {
  background: var(--color-teal-100);
  border: solid 2px var(--color-teal-100);
  color: var(--color-white);
}
.faq-block .faq .answer .answer-inner {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .faq-block .faq .answer {
    padding: 0rem 5rem 1.5rem 0rem;
  }
}
@media screen and (max-width: 768px) {
  .faq-block .faq .answer {
    padding: 0;
  }
}
.faq-block .faq .answer p:last-child {
  margin-bottom: 0px;
}
.faq-block.faq-color-teal {
  background: var(--color-lapis-20);
}
.faq-block.faq-color-teal .faq-category {
  background: var(--color-yale-100);
  padding: 1rem 2rem;
  border-radius: 8px;
  color: white;
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .faq-block.faq-color-teal .faq-category {
    font-size: 1em;
    padding: 0.8rem 0.5rem;
    border-radius: 4px;
  }
}
.faq-block.faq-color-teal .faq:first-child {
  border-top: none;
}
.faq-block.faq-color-teal .faq .question:hover {
  background: var(--color-yale-20);
}

.slider-block {
  overflow: hidden;
}
.slider-block .slider-intro {
  text-align: center;
  margin-bottom: 5%;
}
.slider-block .inner {
  display: block;
}
.slider-block .slider {
  width: 100%;
}
.slider-block .slider .slide {
  width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--color-purple);
  display: flex;
}
.slider-block .slider .slide.swiper-slide-active .slide-content {
  opacity: 1;
}
.slider-block .slider .slide img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.slider-block .slider .slide .slide-content {
  padding: 5vw;
  max-width: 1000px;
  position: relative;
  z-index: 5;
  color: white;
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.75s ease-out;
}
@media screen and (max-width: 500px) {
  .slider-block .slider .slide .slide-content {
    padding: 25px 0;
  }
}
.slider-block .slider .slide .slide-content h4 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.slider-block .slider .slide .slide-content p {
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  text-align: left;
}
.slider-block .slider .slide .slide-content .button-container {
  justify-content: flex-start;
  margin-top: 40px;
}
.slider-block .slider .slide .slide-content .button-container .foe-button {
  margin: 0;
}
.slider-block .slider .slide .slide-content .button-container .foe-button::before {
  background-color: var(--color-purple);
}
.slider-block .slider .slide .slide-content .button-container .foe-button::after {
  background-color: var(--color-purple);
}
.slider-block .slider .controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.controls {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
}
.controls .arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}
.controls .slider-pagination {
  width: -moz-fit-content;
  width: fit-content;
}
.controls .slider-pagination .swiper-pagination-bullet {
  border: 2px solid rgba(var(--color-white), 0.2);
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background 0.3s ease-out, border 0.3s ease-out;
}
.controls .slider-pagination .swiper-pagination-bullet:hover {
  border-color: var(--color-white);
}
.controls .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-purple);
}
.controls .button-next,
.controls .button-prev {
  display: block;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: solid 2px #5e466b;
  transition: all 0.15s ease-out;
  background: #5e466b;
  position: relative;
  transform: scale(1);
}
@media screen and (max-width: 800px) {
  .controls .button-next,
  .controls .button-prev {
    width: 35px;
    height: 35px;
  }
}
.controls .button-next:hover,
.controls .button-prev:hover {
  transform: scale(1.05);
  background: var(--color-black);
  border: solid 2px var(--color-black);
}
.controls .button-next::after,
.controls .button-prev::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: white;
}
.controls .button-prev {
  padding-left: 0px;
}
.controls .button-prev::after {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/circle-arrow-left.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/circle-arrow-left.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.controls .button-next::after {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/circle-arrow-right.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/circle-arrow-right.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.card-slider-section {
  padding-left: 0;
  padding-right: 0;
}
.card-slider-section .inner {
  align-items: center;
}
.card-slider-section.right .slider-intro {
  order: 3;
}
.card-slider-section.right .slider-inner {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 900px) {
  .card-slider-section.right .slider-inner {
    justify-content: flex-start;
  }
}
.card-slider-section.right .slider-next {
  left: auto;
  right: 0%;
  transform: translateX(50%);
}
@media screen and (max-width: 900px) {
  .card-slider-section.right .slider-next {
    right: 6%;
    transform: translateX(0%);
  }
}
.card-slider-section.right .controls {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 900px) {
  .card-slider-section.right .controls {
    margin-left: 0;
    margin-right: auto;
  }
}
.card-slider-section.no-content .slider-wrap {
  width: 100%;
  flex: 0 0 100%;
  padding: 0 !important;
}
.card-slider-section.no-content .slider-wrap .card-slider {
  width: 100%;
}
.card-slider-section.no-content .slider-wrap .card-slider .swiper-slide {
  width: 30%;
  aspect-ratio: 42/50;
}
@media screen and (max-width: 900px) {
  .card-slider-section.no-content .slider-wrap .card-slider .swiper-slide {
    width: 40%;
    aspect-ratio: 34/50;
  }
}
@media screen and (max-width: 600px) {
  .card-slider-section.no-content .slider-wrap .card-slider .swiper-slide {
    width: 50%;
  }
}
.card-slider-section.no-content .controls {
  margin-left: auto;
  margin-right: auto;
}
.card-slider-section .slider-intro {
  padding: 0px 6vw;
  flex: 0 0 37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .card-slider-section .slider-intro {
    flex: 0 0 40%;
  }
}
@media screen and (max-width: 900px) {
  .card-slider-section .slider-intro {
    flex: 0 0 100%;
    order: 1;
    padding-bottom: 6%;
  }
}
.card-slider-section .slider-intro .heading-l {
  margin-bottom: 22%;
  max-width: 320px;
}
@media screen and (max-width: 1200px) {
  .card-slider-section .slider-intro .heading-l {
    margin-bottom: 15%;
  }
}
@media screen and (max-width: 900px) {
  .card-slider-section .slider-intro .heading-l {
    margin-bottom: 0.5em;
  }
}
.card-slider-section .slider-wrap {
  width: 63%;
  flex: 0 0 63%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .card-slider-section .slider-wrap {
    flex: 0 0 60%;
    width: 60%;
  }
}
@media screen and (max-width: 900px) {
  .card-slider-section .slider-wrap {
    flex: 0 0 100%;
    order: 5;
    padding-left: 6%;
    padding-bottom: 2%;
  }
}
.card-slider-section .slider-wrap .slider-inner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card-slider-section .card-slider {
  width: 120%;
}
@media screen and (max-width: 520px) {
  .card-slider-section .card-slider {
    width: 110%;
  }
}
@media screen and (max-width: 475px) {
  .card-slider-section .card-slider {
    width: 100%;
  }
}
.card-slider-section .card-slider .swiper-slide {
  width: 33.33333%;
  position: relative;
  aspect-ratio: 34/50;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 475px) {
  .card-slider-section .card-slider .swiper-slide {
    width: 50%;
  }
}
.card-slider-section .card-slider .swiper-slide:hover .slide-content {
  opacity: 1;
  pointer-events: auto;
}
.card-slider-section .card-slider .swiper-slide img {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.card-slider-section .card-slider .swiper-slide .slide-content {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding: 1em;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
  z-index: 2;
}
.card-slider-section .card-slider .swiper-slide .foe-link {
  color: white;
  width: -moz-fit-content;
  width: fit-content;
}
.card-slider-section .controls {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
}

.featured-posts-section.color-teal {
  background: linear-gradient(to bottom, var(--color-teal-20), var(--color-teal-10));
}
.featured-posts-section.color-teal .foe-button {
  border: solid 2px var(--color-eggplant-100);
  color: currentColor;
}
.featured-posts-section.color-teal .foe-button.solid {
  background-color: var(--color-eggplant-100);
  color: var(--color-white);
}
.featured-posts-section.color-teal .foe-button:hover {
  background-color: var(--color-orange-100);
  border: solid 2px var(--color-orange-100);
  color: var(--color-white);
}
.featured-posts-section .heading-wrapper h3 {
  margin-top: 0;
}
.featured-posts-section .content-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4%;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .featured-posts-section .content-row {
    margin-bottom: 8%;
  }
}
.featured-posts-section .foe-button {
  display: inline-block;
}
@media screen and (max-width: 800px) {
  .featured-posts-section .foe-button {
    margin-top: 1.5em;
    width: 100%;
    text-align: center;
  }
}
.featured-posts-section .heading-wrapper {
  max-width: 600px;
}
.featured-posts-section .heading-wrapper h1,
.featured-posts-section .heading-wrapper h2,
.featured-posts-section .heading-wrapper h3,
.featured-posts-section .heading-wrapper h4,
.featured-posts-section .heading-wrapper h5,
.featured-posts-section .heading-wrapper h6 {
  margin-bottom: 0;
}
.featured-posts-section .featured-posts {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5em;
}
@media screen and (max-width: 800px) {
  .featured-posts-section .featured-posts {
    display: block;
  }
}
.featured-posts-section .post {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  height: auto;
  overflow: hidden;
  transition: transform 0.15s ease-in-out;
}
@media screen and (max-width: 800px) {
  .featured-posts-section .post {
    margin-bottom: 1.5em;
  }
  .featured-posts-section .post:last-child {
    margin-bottom: 0;
  }
}
.featured-posts-section .post:hover {
  transform: translateY(-5px) scale(1.01);
}
.featured-posts-section .post a {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .featured-posts-section .post a {
    display: block;
  }
}
.featured-posts-section .post:first-child {
  grid-column: span 6;
  grid-row: 1/3;
  align-self: stretch;
}
.featured-posts-section .post:first-child a {
  display: block;
}
.featured-posts-section .post:first-child .post-image {
  position: relative;
  aspect-ratio: 18/9;
  order: 1;
}
.featured-posts-section .post:nth-child(2) {
  grid-column: 7/span 6;
  grid-row: 1/span 1;
}
.featured-posts-section .post:last-child {
  grid-column: 7/span 6;
  grid-row: 2/span 1;
}
.featured-posts-section .post .post-image {
  order: 2;
  flex: 0 0 50%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .featured-posts-section .post .post-image {
    flex: 0 0 100%;
    aspect-ratio: 16/9;
  }
}
.featured-posts-section .post .post-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.featured-posts-section .post .post-content {
  padding: 1.5em;
  flex: 0 0 50%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.featured-posts-section .post .post-content .post-title {
  font-weight: 600;
  margin-bottom: 0.5em;
}
.featured-posts-section .post .post-content .foe-link {
  margin-top: auto;
  text-decoration: underline;
  background: none;
  padding-top: 2em;
  text-decoration-color: transparent;
}
.featured-posts-section .post .post-content .foe-link::after, .featured-posts-section .post .post-content .foe-link::before {
  display: none;
  content: unset;
}
.featured-posts-section .post .post-content .foe-link .arrow-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 0.5em;
  border-radius: 50%;
  position: relative;
  transition: all 0.15s ease-in-out;
  vertical-align: top;
}
.featured-posts-section .post .post-content .foe-link .arrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
  -webkit-mask-size: 8px;
          mask-size: 8px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: all 0.15s ease-in-out;
}
.featured-posts-section .post .post-content .foe-link:hover {
  text-decoration-color: currentColor;
}
.featured-posts-section .post .post-content .foe-link:hover .arrow-icon {
  background: var(--color-orange-100);
}
.featured-posts-section .post .post-content .foe-link:hover .arrow-icon::after {
  background-color: currentColor;
}
.featured-posts-section .post .post-date {
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 1em;
}

.portals-block .heading-wrapper h3 {
  margin-top: 0;
}
.portals-block .portals-list {
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 800px) {
  .portals-block .portals-list {
    display: block;
  }
}
.portals-block .portal-item {
  flex: 0 0 calc(50% - 0.75em);
}
@media screen and (max-width: 800px) {
  .portals-block .portal-item {
    margin-bottom: 1.5em;
  }
  .portals-block .portal-item:last-child {
    margin-bottom: 0;
  }
}
.portals-block .portal-item .card-wrapper {
  position: relative;
  min-height: 28vw;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .portals-block .portal-item .card-wrapper {
    min-height: 40vw;
  }
}
@media screen and (max-width: 600px) {
  .portals-block .portal-item .card-wrapper {
    min-height: 275px;
  }
}
.portals-block .portal-item .card-wrapper:hover .card-layout {
  opacity: 1;
}
.portals-block .portal-item .card-wrapper:hover .card-layout::after {
  opacity: 1;
}
.portals-block .portal-item .card-wrapper:hover img {
  opacity: 0.1;
}
.portals-block .portal-item .card-wrapper .card-link {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: none;
}
.portals-block .portal-item .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .portals-block .portal-item .card-wrapper img {
    opacity: 0.1;
  }
}
.portals-block .portal-item .card-wrapper .card-layout {
  height: 100%;
  padding: 2.5em;
  opacity: 0;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .portals-block .portal-item .card-wrapper .card-layout {
    padding: 8%;
    opacity: 1;
  }
}
.portals-block .portal-item .card-wrapper .card-layout .card-content {
  position: relative;
  z-index: 2;
  color: white;
}
.portals-block .portal-item .card-wrapper .card-layout .description {
  margin: 0;
  padding-right: 30px;
}
.portals-block .portal-item .card-wrapper .card-layout .arrow-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--color-purple);
  border-radius: 50%;
  position: absolute;
  transition: all 0.15s ease-in-out;
  right: 0;
  bottom: 0;
  margin: auto;
}
.portals-block .portal-item .card-wrapper .card-layout .arrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") center center no-repeat;
  -webkit-mask-size: 8px;
          mask-size: 8px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: all 0.15s ease-in-out;
}
.portals-block.purple.light-gradient {
  background: linear-gradient(to bottom, var(--color-eggplant-10), var(--color-eggplant-20));
}
.portals-block.site-wide-portals {
  background: linear-gradient(to bottom, var(--color-eggplant-10), var(--color-eggplant-10));
}
.portals-block.site-wide-portals .block {
  padding-bottom: 0;
}
.portals-block.site-wide-portals .portals-list .portal-item:first-child .card-wrapper {
  background: var(--color-teal-100);
}
.portals-block.site-wide-portals .portals-list .portal-item:first-child .card-wrapper .arrow-icon {
  background: var(--color-eggplant-80);
}
.portals-block.site-wide-portals .portals-list .portal-item:last-child .card-wrapper {
  background: var(--color-eggplant-80);
}
.portals-block.site-wide-portals .portals-list .portal-item:last-child .card-wrapper .arrow-icon {
  background: var(--color-teal-100);
}

.gallery-hero {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 50px);
}
@media screen and (max-width: 600px) {
  .gallery-hero {
    padding-top: calc(var(--header-height) + 20px);
  }
}
.gallery-hero.bg-purple {
  background: var(--color-eggplant-10);
}
.gallery-hero.bg-blue {
  background: linear-gradient(to top, var(--color-lapis-20), var(--color-lapis-60));
}
.gallery-hero.bg-teal {
  background: linear-gradient(to bottom, var(--color-teal-20), var(--color-teal-10));
  color: var(--color-eggplant-100);
}
.gallery-hero:has(+ section.content-image) {
  background: linear-gradient(to bottom, var(--color-teal-20), var(--color-teal-10));
}
.gallery-hero + section.content-image {
  background: linear-gradient(to bottom, var(--color-teal-10), var(--color-white));
}
.gallery-hero + section.content-image .block {
  padding-top: 0;
}
.gallery-hero + section {
  padding-top: 5%;
}
.gallery-hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.gallery-hero .block {
  padding-bottom: 5%;
  padding-left: 0%;
  padding-right: 0%;
  max-width: 100%;
}
.gallery-hero .inner {
  display: flex;
}
.gallery-hero .gallery-left,
.gallery-hero .gallery-right {
  flex: 0 0 20%;
}
.gallery-hero .gallery-left img,
.gallery-hero .gallery-right img {
  border-radius: var(--border-radius);
  position: absolute;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 1024px) {
  .gallery-hero .gallery-left img,
  .gallery-hero .gallery-right img {
    border-radius: 4px;
  }
}
.gallery-hero .gallery-left .gallery-image-1 {
  left: 0;
  max-width: 15%;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  aspect-ratio: 4/3;
  bottom: 20%;
  transform-origin: left center;
}
@media screen and (max-width: 1024px) {
  .gallery-hero .gallery-left .gallery-image-1 {
    border-radius: 0 4px 4px 0;
  }
}
@media screen and (max-width: 600px) {
  .gallery-hero .gallery-left .gallery-image-1 {
    bottom: unset;
    top: calc(var(--header-height) + 100px);
    max-width: 25%;
  }
}
.gallery-hero .gallery-left .gallery-image-3 {
  left: 8%;
  max-width: 18%;
  aspect-ratio: 4/3;
  bottom: -10%;
  transform: translateY(20%);
}
@media screen and (max-width: 600px) {
  .gallery-hero .gallery-left .gallery-image-3 {
    max-width: 20%;
  }
}
.gallery-hero .gallery-right .gallery-image-2 {
  right: 0;
  max-width: 20%;
  aspect-ratio: 4/3;
  transform-origin: right center;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
@media screen and (max-width: 1024px) {
  .gallery-hero .gallery-right .gallery-image-2 {
    border-radius: 4px 0 0 4px;
  }
}
.gallery-hero .hero-content {
  flex: 0 0 60%;
  max-width: 30em;
  margin: auto;
  text-wrap: pretty;
  text-align: center;
}
.gallery-hero .button-container {
  justify-content: center;
}

.card-tabs-section.bg-blue {
  background: var(--color-lapis-40);
}
.card-tabs-section h1,
.card-tabs-section h2,
.card-tabs-section h3 {
  color: var(--color-eggplant-100);
}
.card-tabs-section .inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .card-tabs-section .inner {
    display: block;
  }
}
.card-tabs-section .card-tabs-list {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 0 50%;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .card-tabs-section .card-tabs-list {
    padding-right: 0;
  }
}
.card-tabs-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-tabs-section .card-tab-item {
  background: transparent;
  position: relative;
  z-index: 1;
}
.card-tabs-section .floating-background {
  display: none;
  position: absolute;
  transition: all 0.2s ease-out;
  pointer-events: none;
  z-index: 0;
  border-radius: var(--border-radius);
  top: 0;
}
.card-tabs-section .card-col {
  flex: 0 0 50%;
  width: 50%;
  height: auto;
}
.card-tabs-section .card-col .card-stack {
  width: 100%;
  position: sticky;
  top: calc(var(--header-height) + 50px);
  height: 600px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .card-tabs-section .card-col .card-stack {
    display: none;
  }
}
.card-tabs-section .card-col .item {
  position: absolute;
  width: 100%;
  background: transparent;
  width: 500px;
  height: 500px;
  animation: fadein 0.3s;
}
@media screen and (max-width: 1400px) {
  .card-tabs-section .card-col .item {
    width: 375px;
    height: 375px;
  }
}
.card-tabs-section .card-col .item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: var(--border-radius);
}

.card-style {
  border-radius: var(--border-radius);
  padding: 1.5em 2em;
  transition: background 0.2s ease-out, padding 0.2s ease-out;
}
@media screen and (max-width: 600px) {
  .card-style {
    padding: 1em 5%;
  }
}
.card-style.active, .card-style:focus {
  padding: 1.5em 2em;
  background: white;
}
@media screen and (max-width: 600px) {
  .card-style.active, .card-style:focus {
    padding: 8% 5%;
  }
}
.card-style h3 {
  margin: 0;
}
.card-style .card-tab-item-content-text {
  margin-top: 1em;
}

.content-tabs-block.ori-right .content-text {
  order: 2;
  padding: 0px 0px 0px 4%;
}
.content-tabs-block.ori-right .content-image {
  padding: 0px 4% 0px 0px;
}
.content-tabs-block .inner {
  align-items: flex-start;
  display: flex;
}
@media screen and (max-width: 600px) {
  .content-tabs-block .inner {
    flex-direction: column;
  }
}
.content-tabs-block .tab-buttons {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .content-tabs-block .tab-buttons {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .content-tabs-block .tab-buttons {
    margin-top: 5%;
  }
}
.content-tabs-block .tab-buttons .tab-button {
  background: transparent;
  border: none;
  position: relative;
  font-weight: 600;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .content-tabs-block .tab-buttons .tab-button {
    font-size: 14px;
    text-align: left;
    width: 100%;
    border-top: solid 1px color-mix(in srgb, currentColor 50%, transparent);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .content-tabs-block .tab-buttons .tab-button:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .content-tabs-block .tab-buttons .tab-button:first-child {
    border-top: none;
  }
}
.content-tabs-block .tab-buttons .tab-button.active {
  pointer-events: none;
}
.content-tabs-block .tab-buttons .tab-button.active .line {
  opacity: 1;
}
.content-tabs-block .tab-buttons .tab-button.active .status:before {
  transform: rotate(0deg);
}
.content-tabs-block .tab-buttons .tab-button.active .status:after {
  transform: rotate(0deg);
}
.content-tabs-block .tab-buttons .tab-button .status {
  position: absolute;
  right: 0px;
  top: 1rem;
  bottom: 0px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-out;
  background: var(--color-teal-100);
  display: none;
}
@media screen and (max-width: 1024px) {
  .content-tabs-block .tab-buttons .tab-button .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
    display: block;
  }
}
.content-tabs-block .tab-buttons .tab-button .status:after, .content-tabs-block .tab-buttons .tab-button .status:before {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: white;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.2s ease-out;
}
.content-tabs-block .tab-buttons .tab-button .status:before {
  transform: rotate(-90deg);
}
.content-tabs-block .tab-buttons .tab-button .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 0.3;
  transition: all 0.2s ease-out;
  background-color: currentColor;
}
@media screen and (max-width: 1024px) {
  .content-tabs-block .tab-buttons .tab-button .line {
    display: none;
  }
}
.content-tabs-block .accordion-content {
  display: none;
  animation: fadeIn 0.2s ease-out;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.content-tabs-block .tab-panels-container {
  position: relative;
  margin-top: 8%;
}
.content-tabs-block .tab-panel {
  display: none;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .content-tabs-block .tab-panel {
    display: none !important;
  }
}
.content-tabs-block .tab-panel.active {
  display: block;
}
.content-tabs-block .content-text {
  flex: 0 0 40%;
  padding-right: 4%;
}
@media screen and (max-width: 1024px) {
  .content-tabs-block .content-text {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 600px) {
  .content-tabs-block .content-text {
    padding: 0 !important;
  }
}
.content-tabs-block .content-image {
  flex: 0 0 50%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .content-tabs-block .content-image {
    padding: 0 !important;
  }
}
.content-tabs-block .content-image img {
  border-radius: var(--border-radius);
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.content-tabs-block.sticky-block .inner {
  align-items: unset;
}
.content-tabs-block.sticky-block .tab-buttons {
  width: 100%;
  justify-content: center;
  margin-bottom: 7%;
}
.content-tabs-block.sticky-block .tab-panels-container {
  margin-top: 0;
}
.content-tabs-block.sticky-block .content-text {
  flex: 0 0 60%;
}
.content-tabs-block.sticky-block .content-text .section {
  padding-bottom: 2em;
  margin-bottom: 2em;
  border-bottom: solid 1px var(--color-grey);
  padding-right: 8%;
}
@media screen and (max-width: 600px) {
  .content-tabs-block.sticky-block .content-text .section {
    padding-right: 0;
  }
}
.content-tabs-block.sticky-block .content-text .section:last-child {
  border-bottom: none;
}
.content-tabs-block.sticky-block .content-image {
  height: auto;
  flex: 0 0 40%;
  padding: 0;
}
.content-tabs-block.sticky-block .content-image img {
  position: sticky;
  top: calc(var(--header-height) + 50px);
}

.single-job_listing .portals-block {
  display: none;
}

.single-job .post-hero {
  padding-bottom: 0;
}
.single-job .post-hero .back-to-listings {
  text-decoration: none;
  margin-bottom: 1.5em;
  display: block;
}
.single-job .post-hero .back-to-listings .arrow-icon {
  width: 12px;
  height: 12px;
  background: currentColor;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-left.svg") no-repeat center center;
          mask: url("/wp-content/themes/foe/images/shell/chevron-left.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  display: inline-block;
}
.single-job .post-hero .block {
  padding-bottom: 5%;
}
.single-job .job-content {
  max-width: 1024px;
}
.single-job .job-meta {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
}
.single-job .job-meta a {
  text-decoration: none;
}
.single-job .job-meta .company-details {
  font-size: 1.125em;
}
.single-job .job-meta .company-tagline {
  font-size: 0.9em;
  opacity: 0.9;
}
.single-job .job-meta .company-logo {
  max-width: 100px;
  position: relative;
  width: 75px;
  height: 60px;
  background: white;
  border-radius: 4px;
}
.single-job .job-meta .company-logo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 75%;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.single-job .job-meta .company-name {
  font-weight: 600;
}
.single-job .job-description .edit-button-container {
  margin-bottom: 1.5em;
}
.single-job .job-description h2 {
  margin-top: 0;
}
.single-job .job-description h3 {
  margin-bottom: 0.5em;
}
.single-job .job-description .description-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .single-job .job-description .description-meta {
    font-size: 12px;
    margin-bottom: 5%;
  }
}
.single-job .job-description .description-meta + h3,
.single-job .job-description .description-meta + h2,
.single-job .job-description .description-meta + h1 {
  margin-top: 0;
}
.single-job .job-description .description-meta p {
  margin: 0;
}
.single-job .job-description .description-meta .job-posted,
.single-job .job-description .description-meta .job-expires {
  font-weight: 500;
}
.single-job .application-method {
  margin-top: 2em;
  padding: 2em;
  border-radius: var(--border-radius);
  background: color-mix(in srgb, var(--color-eggplant-20) 50%, transparent);
}
@media screen and (max-width: 900px) {
  .single-job .application-method {
    padding: 5%;
  }
}
.single-job .application-method .button-container {
  margin-top: 1em;
}

.links-block + section.links-block .block {
  padding-top: 0;
}
.links-block:has(+ section.links-block) .block {
  padding-bottom: 2em;
}
.links-block .intro {
  margin-bottom: 2em;
}
.links-block .links-list {
  display: flex;
  gap: 0 1.5em;
  list-style: none;
  flex-wrap: wrap;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 5%;
}
@media screen and (max-width: 600px) {
  .links-block .links-list {
    display: block;
  }
}
.links-block .links-list li {
  flex: 0 0 calc(50% - 0.75em);
  padding: 0;
  margin: 0;
}
.links-block .links-list li:first-child a, .links-block .links-list li:nth-child(2) a {
  border-top: 1px solid var(--color-shadow-80);
}
@media screen and (max-width: 600px) {
  .links-block .links-list li:nth-child(2) {
    border-top: none;
  }
}
@media screen and (max-width: 600px) {
  .links-block .links-list li:nth-child(2) a {
    border-top: none;
  }
}
@media screen and (max-width: 600px) {
  .links-block .links-list li:first-child a {
    border-top: 1px solid color-mix(in srgb, var(--color-shadow-80) 20%, white);
  }
}
.links-block .links-list li a {
  border-bottom: 1px solid var(--color-shadow-80);
  display: block;
  position: relative;
  padding: 1em calc(5% + 25px) 1em 0em;
  font-weight: 600;
  text-wrap: balance;
  height: 100%;
  min-height: 75px;
  transition: all 0.15s ease-out;
  font-size: 90%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .links-block .links-list li a {
    padding: 5% calc(5% + 25px) 5% 0em;
  }
}
@media screen and (max-width: 600px) {
  .links-block .links-list li a {
    min-height: 25px;
    border-bottom: 1px solid color-mix(in srgb, var(--color-shadow-80) 20%, white);
  }
}
.links-block .links-list li a:hover {
  color: var(--color-teal-100);
}
.links-block .links-list li a:hover::after {
  transform: translateX(5px);
  background: var(--color-teal-100);
}
@media screen and (max-width: 600px) {
  .links-block .links-list li a:hover::after {
    transform: translateX(0);
  }
}
.links-block .links-list li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: var(--color-orange-100);
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") no-repeat center center;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") no-repeat center center;
  -webkit-mask-size: 12px;
          mask-size: 12px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 600px) {
  .links-block .links-list li a::after {
    right: 0;
  }
}
.links-block .links-list li a span {
  display: block;
}
.links-block .links-list li a .description {
  display: block;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 0.25em;
  text-wrap: balance;
  line-height: 1.2;
  max-width: 80%;
  margin-left: 0;
}

.list-tabs-block.bg-white {
  --active-color: var(--color-eggplant-10);
}
.list-tabs-block.bg-blue {
  --active-color: white;
}
.list-tabs-block.bg-white-with-blue-card {
  --active-color: var(--color-lapis-20);
}
.list-tabs-block.bg-purple {
  background: var(--color-eggplant-100);
  --active-color: var(--color-eggplant-10);
}
.list-tabs-block.bg-purple .card-wrapper {
  color: var(--color-black);
}
.list-tabs-block.bg-purple .card-wrapper .foe-button {
  border-color: var(--color-black);
  color: var(--color-black);
}
.list-tabs-block.bg-purple .card-wrapper .foe-button:hover {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}
.list-tabs-block .intro {
  text-align: center;
  max-width: 48em;
  margin: 0 auto calc(5% + 2em);
}
.list-tabs-block .inner {
  display: flex;
  padding-bottom: 2em;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .inner {
    flex-direction: column;
  }
}
.list-tabs-block .tab-list-col {
  flex: 0 0 50%;
  padding-right: 5%;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .tab-list-col {
    padding-right: 0;
  }
}
.list-tabs-block .tab-list-col ul {
  list-style: none;
  max-width: 32em;
}
@media screen and (max-width: 768px) {
  .list-tabs-block .tab-list-col ul {
    padding-left: 0;
  }
}
.list-tabs-block .tab-list-col ul li {
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.15s ease-out;
  position: relative;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .tab-list-col ul li {
    opacity: 1;
    border-bottom: 1px solid color-mix(in srgb, currentColor 20%, transparent);
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}
.list-tabs-block .tab-list-col ul li:hover {
  opacity: 1;
}
.list-tabs-block .tab-list-col ul li.active {
  opacity: 1;
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .tab-list-col ul li.active {
    padding-bottom: 2em;
    pointer-events: all;
  }
}
.list-tabs-block .tab-list-col ul li.active .status:after {
  transform: rotate(0deg);
}
.list-tabs-block .tab-list-col ul li.active .status:before {
  transform: rotate(0deg);
}
@media screen and (max-width: 600px) {
  .list-tabs-block .tab-list-col ul li > h3 {
    margin: 0;
    padding-right: 1em;
  }
}
.list-tabs-block .tab-content-mobile {
  display: none;
  margin-top: 1em;
  padding: 8% 5%;
  border-radius: 8px;
}
@media screen and (min-width: 601px) {
  .list-tabs-block .tab-content-mobile {
    display: none !important;
  }
}
.list-tabs-block .status {
  position: absolute;
  right: 0px;
  top: 4px;
  bottom: 0;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-out;
  background: var(--color-teal-100);
  display: none;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
    display: block;
  }
}
.list-tabs-block .status:after, .list-tabs-block .status:before {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: white;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.2s ease-out;
}
.list-tabs-block .status:before {
  transform: rotate(-90deg);
}
.list-tabs-block .tab-content-col {
  flex: 0 0 50%;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .tab-content-col {
    display: none;
  }
}
.list-tabs-block .card-wrapper {
  padding: 5% 5%;
  border-radius: var(--border-radius);
  height: 100%;
  background: var(--active-color);
}
.list-tabs-block .card-wrapper .tab-content {
  display: none;
}
.list-tabs-block .card-wrapper .tab-content p:last-child {
  margin-bottom: 0;
}
.list-tabs-block .card-wrapper .tab-content.active {
  display: block;
  animation: fadein 0.3s;
}
.list-tabs-block .card-wrapper .links,
.list-tabs-block .card-wrapper .optional-fields {
  margin: 1em 0;
}
.list-tabs-block .card-wrapper .links ul,
.list-tabs-block .card-wrapper .optional-fields ul {
  gap: 0 1.5em;
  list-style: none;
  flex-wrap: wrap;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 5%;
}
.list-tabs-block .card-wrapper .links ul li,
.list-tabs-block .card-wrapper .optional-fields ul li {
  flex: 0 0 calc(50% - 1.5em);
  padding: 0;
  margin: 0;
}
.list-tabs-block .card-wrapper .links ul li:first-child a,
.list-tabs-block .card-wrapper .optional-fields ul li:first-child a {
  border-top: 1px solid color-mix(in srgb, currentColor 40%, transparent);
}
@media screen and (max-width: 600px) {
  .list-tabs-block .card-wrapper .links ul li h3,
  .list-tabs-block .card-wrapper .optional-fields ul li h3 {
    font-size: 1em;
  }
}
.list-tabs-block .card-wrapper .links ul li a,
.list-tabs-block .card-wrapper .optional-fields ul li a {
  border-bottom: 1px solid color-mix(in srgb, currentColor 40%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 1em calc(5% + 25px) 1em 0em;
  font-weight: 600;
  text-wrap: balance;
  height: 100%;
  min-height: 75px;
  transition: all 0.15s ease-out;
  font-size: 90%;
  text-decoration: none !important;
}
@media screen and (max-width: 800px) {
  .list-tabs-block .card-wrapper .links ul li a,
  .list-tabs-block .card-wrapper .optional-fields ul li a {
    padding: 5% calc(5% + 25px) 5% 0em;
  }
}
@media screen and (max-width: 600px) {
  .list-tabs-block .card-wrapper .links ul li a,
  .list-tabs-block .card-wrapper .optional-fields ul li a {
    min-height: 25px;
    border-bottom: 1px solid color-mix(in srgb, var(--color-shadow-80) 20%, white);
    font-size: 14px;
  }
}
.list-tabs-block .card-wrapper .links ul li a span,
.list-tabs-block .card-wrapper .optional-fields ul li a span {
  display: block;
}
.list-tabs-block .card-wrapper .links ul li a .description,
.list-tabs-block .card-wrapper .optional-fields ul li a .description {
  display: block;
  font-size: 0.9em;
  font-weight: 400;
  margin-top: 0.25em;
  text-wrap: balance;
  line-height: 1.2;
  max-width: 80%;
  margin-left: 0;
}
.list-tabs-block .card-wrapper .links ul li a:hover,
.list-tabs-block .card-wrapper .optional-fields ul li a:hover {
  background: color-mix(in srgb, currentColor 5%, transparent 100%);
  padding: 1em calc(5% + 25px - 1em) 1em 1em;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .card-wrapper .links ul li a:hover,
  .list-tabs-block .card-wrapper .optional-fields ul li a:hover {
    padding: 5% calc(5% + 25px) 5% 0em;
  }
}
.list-tabs-block .card-wrapper .links ul li a:hover::after,
.list-tabs-block .card-wrapper .optional-fields ul li a:hover::after {
  transform: translateX(5px);
  background: currentColor;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .card-wrapper .links ul li a:hover::after,
  .list-tabs-block .card-wrapper .optional-fields ul li a:hover::after {
    transform: translateX(0);
  }
}
.list-tabs-block .card-wrapper .links ul li a::after,
.list-tabs-block .card-wrapper .optional-fields ul li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") no-repeat center center;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") no-repeat center center;
  -webkit-mask-size: 12px;
          mask-size: 12px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transition: all 0.15s ease-out;
  background: var(--color-accent);
}
@media screen and (max-width: 600px) {
  .list-tabs-block .card-wrapper .links ul li a::after,
  .list-tabs-block .card-wrapper .optional-fields ul li a::after {
    right: 0;
  }
}
.list-tabs-block .card-wrapper .links ul li.text-item p,
.list-tabs-block .card-wrapper .optional-fields ul li.text-item p {
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  position: relative;
  padding: 1em calc(5% + 25px) 1em 0em;
  font-weight: 500;
  text-wrap: balance;
  height: 100%;
  min-height: 75px;
  transition: all 0.15s ease-out;
  font-size: 90%;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .list-tabs-block .card-wrapper .links ul li.text-item p,
  .list-tabs-block .card-wrapper .optional-fields ul li.text-item p {
    padding: 1em 0;
    border: none;
    min-height: unset;
    margin-bottom: 0;
  }
}
.list-tabs-block .card-wrapper.color-scheme--light-purple {
  background-color: var(--color-purple-light);
  color: var(--color-purple);
}
.list-tabs-block .card-wrapper.color-scheme--light-purple.gradient {
  background: linear-gradient(180deg, color-mix(in srgb, var(--color-purple-light) 20%, transparent) 0%, color-mix(in srgb, var(--color-purple-light) 20%, transparent) 100%);
  color: var(--color-black);
}
.list-tabs-block .card-wrapper.color-scheme--light-purple.gradient a {
  color: var(--color-teal);
  text-decoration: underline;
}
.list-tabs-block .card-wrapper.color-scheme--light-purple.gradient a:hover {
  color: var(--color-purple);
}

.boxed-text-block.bg-dark-blue .inner {
  background: var(--color-orange-40);
  color: var(--color-black);
}
.boxed-text-block.bg-dark-blue .inner h1,
.boxed-text-block.bg-dark-blue .inner h2,
.boxed-text-block.bg-dark-blue .inner h3 {
  color: var(--color-eggplant-100);
}
.boxed-text-block .inner {
  display: flex;
  padding: 5%;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 600px) {
  .boxed-text-block .inner {
    flex-direction: column;
  }
}
.boxed-text-block .heading-col {
  flex: 1 1 30%;
}
.boxed-text-block .heading-col h1,
.boxed-text-block .heading-col h2,
.boxed-text-block .heading-col h3 {
  margin-top: 0;
}
.boxed-text-block .content-col {
  flex: 1 1 70%;
}

.charity-block .inner {
  display: flex;
  padding: 5%;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 900px) {
  .charity-block .inner {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .charity-block .inner {
    padding: 8% 5%;
  }
}
.charity-block .content-col {
  flex: 1 1 40%;
}
.charity-block .charity-col {
  flex: 1 1 60%;
  align-self: center;
}
.charity-block .charity-col .charity-list {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  justify-content: space-evenly;
  align-items: center;
}
.charity-block .charity-col .charity-list .charity-item {
  flex: 1 1 50%;
  position: relative;
  aspect-ratio: 200/125;
  max-width: 200px;
}
.charity-block .charity-col .charity-list .charity-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.fee-table-block .intro {
  max-width: 600px;
  margin-bottom: 5%;
}
.fee-table-block .table-wrapper {
  overflow-x: auto;
}
.fee-table-block .table-row {
  display: flex;
  border-bottom: solid 1px color-mix(in srgb, currentColor 40%, transparent);
  justify-content: flex-start;
  min-width: 650px;
  padding: 1em 0;
}
.fee-table-block .table-row:first-child {
  font-weight: 600;
}
.fee-table-block .table-row .label {
  flex: 1 1 40%;
  padding-right: 2em;
  margin-right: auto;
}
.fee-table-block .table-row .value {
  flex: 1 1 150px;
}
.fee-table-block .disclaimer {
  font-size: 0.875em;
  margin-top: 5%;
}

.events-block .block {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  overflow: hidden;
}
.events-block .intro {
  text-align: center;
  margin-bottom: 5%;
}
.events-block .inner {
  overflow: hidden;
}
.events-block .event-slider {
  padding-left: 8%;
  padding-right: 8%;
}
@media screen and (max-width: 800px) {
  .events-block .event-slider {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.events-block .event-slider .swiper {
  overflow: visible;
}
.events-block .event-slider .swiper-slide {
  transition: opacity 0.15s ease-out;
}
.events-block .event-slider .swiper-slide-prev {
  opacity: 0;
}
.events-block .event-slider .event-item {
  padding: 2em;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 800px) {
  .events-block .event-slider .event-item {
    padding: 8% 5%;
  }
}
.events-block .event-slider .event-item h3 {
  font-size: clamp(1.125rem, 0.8438rem + 0.75vw, 1.5rem);
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .events-block .event-slider .event-item h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.events-block .event-slider .event-item .tag {
  color: var(--color-white);
  background-color: var(--color-accent);
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 1em;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 800px) {
  .events-block .event-slider .event-item .tag {
    font-size: 12px;
    padding: 6px 10px;
  }
}
.events-block .event-slider .event-item .event-details + .button-wrapper {
  margin-top: 2em;
}
.events-block .event-slider .event-item .event-details .event-dates {
  margin: 1em 0;
  font-size: 0.875em;
  font-weight: 600;
}
.events-block .event-slider .event-item .event-details .event-presenter {
  margin-bottom: 0.125em;
  font-weight: 600;
  font-size: 1em;
}
@media screen and (max-width: 800px) {
  .events-block .event-slider .event-item .event-details .event-presenter {
    font-size: 0.875em;
  }
}
.events-block .event-slider .event-item .event-details .event-host {
  font-size: 0.875em;
}
.events-block .event-slider .event-item .foe-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.events-block .event-disclaimer {
  padding-left: 8%;
  padding-right: 8%;
  margin: 2em 0 0;
  font-size: 12px;
}
@media screen and (max-width: 800px) {
  .events-block .event-disclaimer {
    margin-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.events-block.color-scheme--teal.gradient .event-disclaimer, .events-block.color-scheme--light-blue .event-disclaimer, .events-block.color-scheme--white .event-disclaimer, .events-block.color-scheme--indigo.gradient .event-disclaimer, .events-block.color-scheme--light-purple.gradient .event-disclaimer, .events-block.color-scheme--orange .event-disclaimer {
  color: black;
}
.events-block .controls {
  margin-top: 2em;
}
@media screen and (max-width: 800px) {
  .events-block .controls {
    margin-top: 5%;
  }
}

.tiles-block.lighter-bg .tile {
  font-weight: 500 !important;
}
.tiles-block.lighter-bg .tile.bg-purple {
  background: var(--color-eggplant-10) !important;
  color: var(--color-black) !important;
}
.tiles-block.lighter-bg .tile.bg-orange {
  background: var(--color-orange-40) !important;
  color: var(--color-black) !important;
}
.tiles-block.lighter-bg .tile.bg-blue {
  background: var(--color-lapis-40) !important;
  color: var(--color-black) !important;
}
.tiles-block.lighter-bg.bg-teal {
  background: var(--color-teal-20) !important;
}
.tiles-block.lighter-bg.bg-teal .tile {
  font-weight: 500 !important;
  background: var(--color-lapis-10) !important;
  color: var(--color-black) !important;
}
.tiles-block.bg-teal {
  background: var(--color-teal-20) !important;
}
.tiles-block.bg-teal .tile {
  font-weight: 500 !important;
  background: var(--color-lapis-10) !important;
  color: var(--color-black) !important;
}
.tiles-block .intro {
  text-align: center;
  margin: 0 auto 5%;
  max-width: 48em;
}
.tiles-block .tile {
  padding: 8%;
  border-radius: var(--border-radius);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}
.tiles-block .tile h1,
.tiles-block .tile h2,
.tiles-block .tile h3 {
  color: white;
}
@media screen and (max-width: 800px) {
  .tiles-block .tile {
    min-height: unset;
    margin-bottom: 1em;
  }
  .tiles-block .tile:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .tiles-block .tile {
    padding: 8% 5%;
  }
}
.tiles-block .tile.bg-teal {
  background: var(--color-teal-100);
}
.tiles-block .tile.bg-purple {
  background: var(--color-eggplant-100);
}
.tiles-block .tile.bg-orange {
  background: var(--color-orange-100);
}
.tiles-block .tile.bg-blue {
  background: var(--color-oxford-blue-100);
}
.tiles-block .tile.has-subheading {
  display: block;
}
.tiles-block .tile .tag {
  font-weight: 600;
  margin-bottom: 5%;
}
.tiles-block .tile p strong {
  font-weight: 600;
}
.tiles-block .tile p:last-of-type {
  margin-bottom: 0;
}
.tiles-block .tile p + h3 {
  margin-top: 1em;
}
.tiles-block .tile {
  --color-eggplant-100: var(--color-eggplant-80);
}
.tiles-block .tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 800px) {
  .tiles-block .tiles-grid {
    display: block;
    margin-bottom: 0;
  }
}

.tile-slider-block .intro {
  text-align: center;
  margin: 0 auto 5%;
}
.tile-slider-block .tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  position: relative;
}
@media screen and (max-width: 900px) {
  .tile-slider-block .tile-grid {
    gap: 1em;
  }
}
@media screen and (max-width: 800px) {
  .tile-slider-block .tile-grid {
    grid-template-columns: 1fr;
  }
}
.tile-slider-block .tile-slider {
  position: relative;
  width: 100%;
}
.tile-slider-block .tile-slider .controls {
  position: absolute;
  z-index: 2;
  top: 1em;
  left: unset;
  right: 2em;
  width: auto;
  background: transparent !important;
}
@media screen and (max-width: 800px) {
  .tile-slider-block .tile-slider .controls {
    top: 2em;
  }
}
.tile-slider-block .tile-slider .controls .button-prev,
.tile-slider-block .tile-slider .controls .button-next {
  border: solid 2px var(--color-teal-100);
  background: var(--color-teal-100);
  color: currentColor;
}
.tile-slider-block .tile-slider .controls .button-prev:hover,
.tile-slider-block .tile-slider .controls .button-next:hover {
  background: var(--color-black);
  border-color: var(--color-black);
}
.tile-slider-block .tile {
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  min-height: 25vw;
  background: var(--color-eggplant-80);
  color: white;
}
@media screen and (max-width: 900px) {
  .tile-slider-block .tile {
    min-height: unset;
  }
}
.tile-slider-block .tile.color-purple.dark {
  --color-eggplant-100: var(--color-eggplant-80);
}
.tile-slider-block .tile .h4.sub-heading {
  font-weight: 600;
  margin-bottom: 5%;
}
.tile-slider-block .tile.content {
  padding: calc(40px + 5%) 8% 8%;
}
@media screen and (max-width: 800px) {
  .tile-slider-block .tile.content {
    padding: calc(30px + 8%) 5% 5%;
  }
}
.tile-slider-block .tile img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
}
@media screen and (max-width: 800px) {
  .tile-slider-block .tile img {
    display: none;
  }
}
.tile-slider-block .additional-content {
  text-align: center;
  margin-top: 2.5%;
}

.content-with-accordion-block .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2% 0;
}
@media screen and (max-width: 768px) {
  .content-with-accordion-block .inner {
    display: block;
  }
}
.content-with-accordion-block .heading-column {
  grid-column: 1/span 1;
}
.content-with-accordion-block .content-column {
  padding-right: 4%;
  grid-row: 2;
}
@media screen and (max-width: 900px) {
  .content-with-accordion-block .content-column {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.content-with-accordion-block .accordion-column {
  padding-left: 4%;
  grid-row: 2;
}
@media screen and (max-width: 768px) {
  .content-with-accordion-block .accordion-column {
    padding-left: 0;
    margin-top: 2em;
  }
}
.content-with-accordion-block .accordion-item {
  border-radius: var(--border-radius);
  padding-left: 2em;
  padding-right: 2em;
  padding-top: 1em;
  padding-bottom: 1em;
  transition: all 0.2s ease-out;
  cursor: pointer;
}
.content-with-accordion-block .accordion-item h3 {
  margin: 0 0 0.5em;
}
.content-with-accordion-block .accordion-item .accordion-content {
  overflow: hidden;
  display: none;
  animation: fadeIn 0.2s ease-out;
}
.content-with-accordion-block .accordion-item.active {
  padding-top: 2em;
  padding-bottom: 2em;
  margin-bottom: 1em;
  background: var(--color-eggplant-20);
  color: var(--color-eggplant-100);
}
.content-with-accordion-block .accordion-item.active h1,
.content-with-accordion-block .accordion-item.active h2,
.content-with-accordion-block .accordion-item.active h3 {
  color: currentColor;
}
.content-with-accordion-block .accordion-item.active .foe-button {
  border-color: var(--color-black);
}
.content-with-accordion-block .accordion-item.active .foe-button:hover {
  background: var(--color-teal-100);
  border-color: var(--color-teal-100);
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .content-with-accordion-block .accordion-item.active {
    padding: 8% 5%;
  }
}
.content-with-accordion-block .accordion-item.active .accordion-content {
  display: block;
}
.content-with-accordion-block .accordion-item.inactive {
  background: transparent;
  color: inherit;
}
.content-with-accordion-block .accordion-item.inactive h1,
.content-with-accordion-block .accordion-item.inactive h2,
.content-with-accordion-block .accordion-item.inactive h3,
.content-with-accordion-block .accordion-item.inactive h4,
.content-with-accordion-block .accordion-item.inactive h5,
.content-with-accordion-block .accordion-item.inactive h6 {
  color: currentColor;
}

.post-hero {
  padding-top: calc(var(--header-height));
}
.post-hero .blog-details {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0.5em;
}
.post-hero .blog-details h4 {
  margin: 0;
  font-weight: 500;
}
.post-hero .tag {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2em;
  padding: 0.25em 0.8em;
  background: var(--color-eggplant-100);
  text-decoration: none;
  color: var(--color-white);
  font-size: 0.75em;
  border-radius: 4px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.post-hero h1 {
  margin: 0;
}

.simple-content-block.color-white .intro h2 {
  color: var(--color-eggplant-100);
}
.simple-content-block.color-white a:not(.foe-button) {
  text-decoration: underline;
  transition: all 0.15s ease-out;
  font-weight: 500;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.simple-content-block.color-white a:not(.foe-button):hover {
  text-decoration-color: var(--color-orange-100);
}
.simple-content-block .block .inner {
  max-width: 65ch;
}
.simple-content-block .intro {
  margin-bottom: 2em;
}
.simple-content-block h2 {
  font-size: clamp(1.5rem, 1.125rem + 1vw, 2rem);
}
.simple-content-block h3 {
  margin: 1em 0 0.5em;
}
.simple-content-block p {
  margin-bottom: 1.5em;
}
.simple-content-block p:last-child {
  margin-bottom: 0;
}
.simple-content-block a:not(.foe-button) {
  transition: all 0.15s ease-out;
  font-weight: 500;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.simple-content-block ul {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.simple-content-block ul li {
  margin-bottom: 0.125em;
}

.registration-form .block {
  padding-top: calc(var(--header-height) + 5%);
}
.registration-form .shortcode-intro {
  margin-bottom: 2em;
}
.registration-form .shortcode-intro h2,
.registration-form .shortcode-intro h1 {
  margin-top: 0;
}
.registration-form .inner {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 5%;
}

.shortcode .block {
  padding-top: 5% !important;
}
@media screen and (max-width: 800px) {
  .shortcode .block {
    padding-top: 10% !important;
  }
}

#postajob .shortcode-intro {
  padding-bottom: 2em;
}
#postajob .inner {
  background: var(--color-white);
  border-radius: var(--border-radius);
  padding: 5%;
}
@media screen and (max-width: 600px) {
  #postajob .inner {
    padding: 8% 5%;
  }
}
#postajob input[type=submit] {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.8em 1.5em;
  background: var(--color-black);
  color: var(--color-white);
  border: solid 1px var(--color-black);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.15s cubic-bezier(0.3, 1, 0.8, 1);
}
#postajob input[type=submit].save_draft {
  background: transparent;
  color: var(--color-black);
}
#postajob input[type=submit]:hover {
  background: var(--color-teal-100);
  border: solid 1px var(--color-teal-100);
  color: var(--color-white);
}

#job-manager-job-dashboard a {
  text-decoration: none !important;
}

#joblistings input[type=text] {
  width: 100%;
  padding: 0.5em;
  border-radius: 4px;
  border: solid 1px var(--color-shadow-80);
  background: var(--color-shadow-40);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1em;
}
#joblistings .job_filters {
  background: transparent;
}
#joblistings .job_listings {
  border: none;
  padding-top: 1em;
}
#joblistings .job_listings li {
  border: none;
  margin-bottom: 1em;
}
#joblistings .job_listings li a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: none;
  min-height: 100px;
  padding: 1.5em;
  border-radius: var(--border-radius);
  transition: all 0.15s ease-out;
  border: solid 1px color-mix(in srgb, var(--color-shadow-40) 50%, transparent);
}
@media screen and (max-width: 900px) {
  #joblistings .job_listings li a {
    padding: 5%;
  }
}
@media screen and (max-width: 600px) {
  #joblistings .job_listings li a {
    flex-direction: column-reverse;
    padding: 8% 5%;
  }
}
#joblistings .job_listings li a:hover {
  background: color-mix(in srgb, var(--color-eggplant-20) 50%, transparent);
}
#joblistings .search_jobs {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
#joblistings .company-info {
  display: flex;
  align-items: center;
  margin: 0.5em 0;
}
#joblistings .company-info .company_logo {
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  float: none;
  position: static;
  margin-right: 0.5em;
  visibility: visible !important;
}
@media screen and (max-width: 600px) {
  #joblistings .company-info .company_logo {
    width: 28px;
    height: 28px;
  }
}
#joblistings .company-info .company-name {
  font-size: 0.875rem;
}
#joblistings .job-meta {
  list-style: none;
}
@media screen and (max-width: 600px) {
  #joblistings .job-meta {
    padding-left: 0;
    margin-right: auto;
  }
}
#joblistings .job-meta .date {
  margin-bottom: 0.5em;
}
#joblistings .job-type {
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 0.25em 0.8em;
  background: var(--color-eggplant-100);
  color: var(--color-white);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 600px) {
  #joblistings .job-type {
    font-size: 12px;
  }
}
#joblistings .job-type.part-time {
  background: var(--color-orange-100);
}
#joblistings .company strong {
  font-weight: 500;
  letter-spacing: 0;
  font-size: clamp(0.875rem, 0.625rem + 0.5vw, 1rem);
}
#joblistings .details h3 {
  margin: 0;
  font-size: clamp(1.125rem, 0.875rem + 0.625vw, 1.5rem);
}
#joblistings .job-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  font-size: 0.875em;
}
@media screen and (max-width: 600px) {
  #joblistings .job-info {
    font-size: 12px;
  }
}
#joblistings .salary-info,
#joblistings .job-posted {
  display: flex;
  align-items: center;
}
#joblistings .salary-info .spacer,
#joblistings .job-posted .spacer {
  font-size: 0.875em;
  font-weight: 500;
  margin-right: 0.5em;
}
#joblistings .salary-info .salary-unit,
#joblistings .job-posted .salary-unit {
  text-transform: lowercase;
}
#joblistings .job-description {
  flex: 1 1 100%;
}
#joblistings .job_types {
  display: none;
}
#joblistings .search_remote_position {
  width: 33%;
  order: 3;
}
#joblistings .search_keywords {
  width: 33%;
  order: 1;
}
#joblistings .search_location {
  width: 33%;
  order: 2;
}
#joblistings .search_categories {
  width: 33%;
  padding-left: 0.5em;
  height: 3em;
  padding-top: 0;
}
#joblistings .search_submit {
  order: 4;
  flex: 0 0 100%;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0;
}
#joblistings .search_submit input[type=submit] {
  outline: none;
  cursor: pointer;
  border: none;
  height: 3em;
  padding: 0.5em 1.5em;
  background: var(--color-black);
  color: var(--color-white);
  border: solid 1px var(--color-black);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.15s cubic-bezier(0.3, 1, 0.8, 1);
  width: -moz-fit-content;
  width: fit-content;
}
#joblistings .search_submit input[type=submit]:hover {
  transform: scale(1.02);
  background: var(--color-teal-100);
  border: solid 1px var(--color-teal-100);
}
#joblistings .search_submit input[type=submit]:focus {
  transform: scale(0.97);
}
#joblistings .showing_jobs {
  background: white;
  border: none;
  margin-top: 1em;
}

.people-grid-block .inner {
  border-radius: var(--border-radius);
  padding: 5%;
}
@media screen and (max-width: 600px) {
  .people-grid-block .inner {
    padding: 8% 5%;
  }
}
.people-grid-block h2 {
  margin-top: 0;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1024px) {
  .people-grid-block h2 {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 600px) {
  .people-grid-block h2 {
    margin-bottom: 1em;
  }
}
.people-grid-block h4 {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0.125rem 0;
  color: currentColor;
}
.people-grid-block .people-group {
  margin-bottom: 2em;
}
.people-grid-block .people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media screen and (max-width: 1100px) {
  .people-grid-block .people-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .people-grid-block .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .people-grid-block .people-grid {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .people-grid-block .people-grid .title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .people-grid-block .people-grid .title br {
    display: none;
  }
}
.people-grid-block .people-grid p {
  margin: 0;
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
  .people-grid-block .people-grid p {
    font-size: 14px;
  }
}
.people-grid-block .people-grid .person {
  border-bottom: solid 1px color-mix(in srgb, currentColor 20%, transparent);
  padding: 1em 0;
  min-height: 100px;
  padding-right: 1em;
}
@media screen and (max-width: 600px) {
  .people-grid-block .people-grid .person {
    border-bottom: solid 1px var(--color-shadow-20);
    padding: 0 0 0.5em;
    margin-bottom: 1em;
    min-height: unset;
  }
}

.profile-block h1,
.profile-block h2,
.profile-block h3,
.profile-block h4,
.profile-block h5,
.profile-block h6 {
  color: var(--color-eggplant-100) !important;
}
.profile-block .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile-block .block {
  padding-top: calc(var(--header-height) + 5%);
}
.profile-block .inner {
  display: flex;
  position: relative;
  gap: 2em;
}
@media screen and (max-width: 900px) {
  .profile-block .inner {
    flex-direction: column;
  }
}
.profile-block .info-col {
  flex: 0 0 calc(30% - 2em);
  height: 100%;
  position: sticky;
  top: calc(var(--header-height));
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .profile-block .info-col {
    position: relative;
    top: 0;
  }
}
.profile-block .info-box {
  background: var(--color-teal-20);
  padding: 1em;
  border-radius: var(--border-radius);
}
.profile-block ul {
  padding-left: 1.8rem;
  gap: 0.5em;
  list-style-position: outside;
}
.profile-block ul li {
  margin: 4px 0;
  padding-right: 1rem;
}
.profile-block .profile-content-col {
  flex: 1 1 calc(70% - 2em);
  padding-left: 2em;
}
@media screen and (max-width: 900px) {
  .profile-block .profile-content-col {
    padding-left: 0;
  }
}
.profile-block .profile-content-col .searchable-on-map-notice {
  background: var(--color-eggplant-20);
  padding: 1em;
  margin-bottom: 1em;
  border-radius: 4px;
}
.profile-block .profile-content-col .searchable-on-map-notice p {
  margin: 0;
}
.profile-block .profile-content-col .searchable-on-map-notice .small {
  font-size: 0.8em;
  font-weight: 600;
}
.profile-block .profile-content-col .button-col {
  height: var(--title-row-height);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.profile-block .profile-content-col .button-col a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
  margin-left: 0.5em;
}
.profile-block .availability-badges {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1em;
}
.profile-block .badge {
  background: var(--color-teal-20);
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: 0.875em;
  font-weight: 600;
}
.profile-block a.badge {
  text-decoration: none;
}
.profile-block a.badge:hover {
  background: var(--color-teal-40);
}
.profile-block h1,
.profile-block h2,
.profile-block h3 {
  color: var(--color-eggplant-100);
}
.profile-block h2 {
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1.125rem;
  margin: 0.1rem 0 1em;
}
.profile-block h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}
.profile-block h1 {
  font-size: clamp(1.5rem, 0.75rem + 2vw, 2.5rem);
  margin-top: 0;
  text-transform: capitalize;
}
.profile-block h1:has(+ h2) {
  margin-bottom: 0;
}
.profile-block h4 {
  text-transform: capitalize;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.3em;
  letter-spacing: 0;
}
.profile-block .profile-intro {
  padding: 2em;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 768px) {
  .profile-block .profile-intro {
    padding: 5%;
  }
}
.profile-block .profile-intro .profile-image-col {
  margin-bottom: 1em;
}
.profile-block .profile-intro .profile-image-col img {
  max-width: 125px;
  max-height: 125px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 768px) {
  .profile-block .profile-intro .profile-image-col img {
    border-radius: 4px;
  }
}
.profile-block .profile-item {
  font-family: "montserrat", sans-serif;
  margin-top: 0;
}
.profile-block .contact p:not(:last-of-type) {
  margin-bottom: 0.125em;
}
.profile-block .contact a {
  text-decoration-color: transparent;
  font-weight: 400;
}
.profile-block .contact a:hover {
  text-decoration-color: currentColor;
}
.profile-block .contact .label {
  font-weight: 600;
  font-size: 14px;
}
.profile-block .contact .email-link {
  text-transform: lowercase;
}

.pagination-controls {
  margin-top: 2em;
  width: 100%;
}
.pagination-controls .pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
}
.pagination-controls .page-numbers {
  display: flex;
  gap: 0.5em;
}
.pagination-controls .page-numbers .page-num {
  padding: 0;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 600;
  background: white;
  border: none;
}
.pagination-controls .page-numbers .page-num.active {
  background: var(--color-eggplant-40);
  color: var(--color-white);
}

.resource-tabs-block .intro {
  margin-top: 0;
  text-align: center;
  margin-bottom: 5%;
}
.resource-tabs-block .inner {
  align-items: flex-start;
  display: flex;
  padding: 2em;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .inner {
    display: none;
  }
}
.resource-tabs-block .inner.color-white {
  --color-accent: var(--color-orange-100);
}
.resource-tabs-block .tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .tab-buttons {
    flex-direction: column;
  }
}
.resource-tabs-block .tab-buttons button {
  background: transparent;
  border: none;
  position: relative;
  font-weight: 600;
  text-transform: capitalize;
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .tab-buttons button {
    font-size: 14px;
    text-align: left;
    width: 100%;
    border-top: solid 1px color-mix(in srgb, currentColor 50%, transparent);
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .resource-tabs-block .tab-buttons button:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .resource-tabs-block .tab-buttons button:first-child {
    border-top: none;
  }
}
.resource-tabs-block .tab-buttons button .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .tab-buttons button .line {
    display: none;
  }
}
.resource-tabs-block .tab-buttons button.active {
  pointer-events: none;
}
@media screen and (max-width: 600px) {
  .resource-tabs-block .tab-buttons button.active {
    pointer-events: all;
  }
}
.resource-tabs-block .tab-buttons button.active .line {
  opacity: 1;
  background: currentColor !important;
}
.resource-tabs-block .tab-buttons button.active .status:after {
  transform: rotate(0deg);
}
.resource-tabs-block .tab-buttons button.active .status:before {
  transform: rotate(0deg);
}
.resource-tabs-block .tab-content h2:first-child,
.resource-tabs-block .tab-content h3:first-child {
  margin-top: 0;
}
.resource-tabs-block .tab-panels-container {
  position: relative;
}
.resource-tabs-block .tab-panel {
  display: none;
  top: 0;
}
.resource-tabs-block .tab-panel.active {
  display: block;
}
.resource-tabs-block .links-list {
  gap: 0 1.5em;
  list-style: none;
  flex-wrap: wrap;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-top: 5%;
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .links-list {
    margin-bottom: 2em;
    background: white;
    padding: 5% 5%;
    border-radius: 8px;
  }
}
@media screen and (max-width: 600px) {
  .resource-tabs-block .links-list {
    padding: 8% 5%;
  }
}
.resource-tabs-block .links-list li {
  flex: 0 0 calc(50% - 1.5em);
  padding: 0;
  margin: 0;
}
.resource-tabs-block .links-list li:first-child a {
  border-top: 1px solid color-mix(in srgb, currentColor 40%, transparent);
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .links-list li:first-child a {
    border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  }
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .links-list li:last-child a {
    border-bottom: none;
  }
}
.resource-tabs-block .links-list li a {
  border-bottom: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  display: flex;
  align-items: center;
  position: relative;
  padding: 1em calc(5% + 25px) 1em 0em;
  font-weight: 600;
  text-wrap: balance;
  height: 100%;
  min-height: 75px;
  transition: all 0.15s ease-out;
  font-size: 90%;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .links-list li a {
    padding: 8px calc(5% + 25px) 8px 0em;
    min-height: 50px;
    font-weight: 500;
    border-bottom: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  }
}
.resource-tabs-block .links-list li a:hover {
  background: color-mix(in srgb, currentColor 5%, transparent 100%);
  padding: 1em calc(5% + 25px - 1em) 1em 1em;
}
.resource-tabs-block .links-list li a:hover::after {
  transform: translateX(5px);
  background: currentColor;
}
.resource-tabs-block .links-list li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") no-repeat center center;
          mask: url("/wp-content/themes/foe/images/shell/chevron-right.svg") no-repeat center center;
  -webkit-mask-size: 12px;
          mask-size: 12px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  transition: all 0.15s ease-out;
  background: var(--color-accent);
}
.resource-tabs-block .links-list li.text-item p {
  border-bottom: 1px solid currentColor;
  display: flex;
  align-items: center;
  position: relative;
  padding: 1em calc(5% + 25px) 1em 0em;
  font-weight: 500;
  text-wrap: balance;
  height: 100%;
  min-height: 75px;
  transition: all 0.15s ease-out;
  font-size: 90%;
  text-decoration: none;
}
.resource-tabs-block .status {
  position: absolute;
  right: 0px;
  top: 1rem;
  bottom: 0px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-out;
  background: var(--color-teal-100);
  display: none;
}
@media screen and (max-width: 1024px) {
  .resource-tabs-block .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
    display: block;
  }
}
.resource-tabs-block .status:after, .resource-tabs-block .status:before {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: white;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.2s ease-out;
}
.resource-tabs-block .status:before {
  transform: rotate(-90deg);
}

.error-404 .block {
  padding-top: calc(var(--header-height) + 5%);
}

.login-form-section .block {
  padding-top: calc(var(--header-height) + 5%);
}

.member-only-content {
  padding-top: calc(var(--header-height));
  background: var(--color-eggplant-100);
}
@media screen and (max-width: 600px) {
  .member-only-content {
    padding-top: calc(var(--header-height) + 5%);
  }
}
.member-only-content h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.member-only-content .login-form-description {
  font-size: 90%;
}
.member-only-content .block {
  max-width: 600px;
  text-align: left;
}
.member-only-content .inner {
  padding: 2em;
  border-radius: 4px;
  border: 1px solid var(--color-white);
}
@media screen and (max-width: 600px) {
  .member-only-content .inner {
    padding: 8% 5%;
  }
}
.member-only-content input {
  border-radius: 4px;
  height: 3em;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.5em;
}
.member-only-content button {
  border-radius: 4px;
  display: block;
  margin-bottom: 0.5em;
  margin-top: 1em;
}
.member-only-content form {
  max-width: 100%;
  margin: 0 auto;
}
.member-only-content .login-form-wrapper {
  padding-top: 1em;
}
.member-only-content .password-reset {
  font-size: 0.8rem;
}
.member-only-content .password-reset a {
  text-decoration: none;
}
.member-only-content .password-reset a:hover {
  text-decoration: underline;
}
.member-only-content .login-link {
  font-size: 0.8rem;
  margin-top: 1em;
}
.member-only-content .login-link a {
  text-decoration: none;
}
.member-only-content .login-link a:hover {
  text-decoration: underline;
}
.member-only-content .foe-button {
  margin-left: 0;
}
.member-only-content .foe-button.solid {
  background: var(--color-orange-100);
  border: solid 2px var(--color-orange-100);
  color: var(--color-white);
}
.member-only-content .foe-button.solid:hover {
  background: var(--color-teal-100);
  border: solid 2px var(--color-teal-100);
  color: var(--color-white);
}

.resource-block h2,
.resource-block h3 {
  color: var(--color-eggplant-100);
}
.resource-block .faq-intro {
  margin-bottom: 5%;
}
.resource-block .faq-intro h2 {
  margin-top: 0;
}
.resource-block .inner {
  display: block;
}
.resource-block .faq-section + .faq-section {
  margin-top: 5%;
}
.resource-block .faq {
  transition: all 0.2s ease-out;
  border-bottom: solid 1px var(--color-shadow-40);
}
.resource-block .faq:first-child {
  border-top: solid 1px var(--color-shadow-40);
}
@media screen and (max-width: 700px) {
  .resource-block .faq {
    margin-bottom: 0.6rem;
  }
}
.resource-block .faq .question {
  font-family: "montserrat", sans-serif;
  font-size: 1em;
  font-weight: 600;
  padding: 1.5rem 2rem 1.5rem 0rem;
  position: relative;
  cursor: pointer;
  transition: all 0.15s ease-out;
}
.resource-block .faq .question:hover {
  background: var(--color-shadow-10);
}
.resource-block .faq .question.open {
  background: none;
}
.resource-block .faq .question.open .status:before {
  transform: rotate(0deg);
}
.resource-block .faq .question.open .status:after {
  transform: rotate(0deg);
}
.resource-block .faq .question .status {
  position: absolute;
  right: 0px;
  top: 1.5rem;
  bottom: 0px;
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 50%;
  transform-origin: 50% 50%;
  transition: transform 0.2s ease-out;
  background: var(--color-teal-100);
}
@media screen and (max-width: 1024px) {
  .resource-block .faq .question .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
  }
}
.resource-block .faq .question .status:after, .resource-block .faq .question .status:before {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: white;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.2s ease-out;
}
.resource-block .faq .question .status:before {
  transform: rotate(-90deg);
}
.resource-block .faq .answer {
  display: none;
  margin-bottom: 3rem;
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .resource-block .faq .answer {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .resource-block .faq .answer {
    font-size: 14px;
  }
}
.resource-block .faq .answer .foe-button {
  border: solid 2px var(--color-eggplant-100);
}
.resource-block .faq .answer .foe-button.solid {
  background: var(--color-eggplant-100);
}
.resource-block .faq .answer .foe-button.outline {
  color: var(--color-eggplant-100);
}
.resource-block .faq .answer .foe-button:hover {
  background: var(--color-teal-100);
  border: solid 2px var(--color-teal-100);
  color: var(--color-white);
}
.resource-block .faq .answer .answer-inner {
  max-width: 900px;
}
.resource-block .faq .answer p:last-child {
  margin-bottom: 0px;
}
.resource-block.resource-color-teal {
  background: var(--color-lapis-20);
}
.resource-block.resource-color-teal .faq-category {
  background: var(--color-yale-100);
  padding: 1rem 2rem;
  border-radius: 8px;
  color: white;
  font-family: "montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5em;
}
.resource-block.resource-color-teal .faq:first-child {
  border-top: none;
}
.resource-block.resource-color-teal .faq .question:hover {
  background: var(--color-yale-20);
}

.search-results-page {
  padding-top: calc(var(--header-height) + 5%);
  background: var(--color-teal-20);
}
@media screen and (max-width: 800px) {
  .search-results-page {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.search-results-page h1 {
  font-size: clamp(1.5rem, 0.75rem + 2vw, 2.5rem);
}
.search-results-page .inner {
  padding: 5%;
  border-radius: var(--border-radius);
  background: var(--color-white);
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 800px) {
  .search-results-page .inner {
    padding: 8% 5% 5%;
  }
}
.search-results-page .search-bar {
  margin-bottom: 2em;
}
.search-results-page form {
  display: flex;
  background: var(--color-white);
  border-radius: 4px;
  width: 100%;
  max-width: 600px;
  border: solid 1px var(--color-shadow-40);
}
.search-results-page form:focus-within {
  outline: var(--color-eggplant-100) 2px solid;
  outline-offset: 2px;
}
.search-results-page form input[type=text] {
  border: none;
  height: unset;
  padding: 0.5em 1em;
  background: var(--color-white);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  transition: background 0.2s ease-out;
}
.search-results-page form input[type=text]:focus {
  outline: none;
  background: var(--color-white);
}
.search-results-page form button {
  background: var(--color-black);
  padding: 0px;
  width: 44px;
  border: none;
  text-indent: -9999px;
  font-size: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  background: white url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  background-size: 17px;
  background-position: center;
  background-repeat: no-repeat;
  transition: background 0.2s ease-out;
}
.search-results-page form button:hover {
  background: var(--color-lapis-40) url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  background-size: 17px;
}
.search-results-page article {
  border-bottom: solid 1px color-mix(in srgb, var(--color-shadow-40) 50%, transparent);
  padding: 1.5rem 0;
}
.search-results-page article h3 {
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .search-results-page article h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5em;
  }
}
.search-results-page article h3 a {
  text-decoration-color: transparent;
}
.search-results-page article h3 a:hover {
  text-decoration-color: currentColor;
}
.search-results-page article .entry-content {
  margin-top: 0.5em;
}
.search-results-page article .entry-content a {
  display: inline;
  text-decoration-color: transparent;
  margin-left: 0.5em;
  font-weight: 400;
}
.search-results-page article .entry-content a:hover {
  text-decoration-color: currentColor;
}
.search-results-page article p {
  margin-bottom: 0;
  display: inline;
}
@media screen and (max-width: 800px) {
  .search-results-page article p {
    font-size: 0.875rem;
  }
}
.search-results-page .nav-links {
  margin-top: 2em;
}
@media screen and (max-width: 800px) {
  .search-results-page .nav-links {
    margin-bottom: 5%;
    margin-top: 5%;
  }
}
.search-results-page .nav-links span {
  background: var(--color-eggplant-100);
}
.search-results-page .nav-links a {
  background: var(--color-eggplant-40);
  color: white;
}
.search-results-page .nav-links a:hover {
  background: var(--color-teal-100);
}

.page-template-landing #header {
  display: none;
}
.page-template-landing .site-footer {
  display: none;
}
.page-template-landing .site-content {
  padding: 0;
}
.page-template-landing .ScrollSmoother-wrapper {
  position: static !important;
}

#landing .landing-container {
  display: block;
}
#landing .landing-container.side-by-side {
  display: flex;
}
#landing .brand-col,
#landing .content-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  color: white;
  flex: 0 0 50%;
  padding-top: 10%;
  position: relative;
}
@media screen and (max-width: 600px) {
  #landing .brand-col,
  #landing .content-col {
    padding: 15% 5%;
  }
}
#landing .brand-col .bg-image-left,
#landing .brand-col .bg-image-right,
#landing .content-col .bg-image-left,
#landing .content-col .bg-image-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#landing .brand-col .inner,
#landing .content-col .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
#landing .brand-col {
  background: var(--color-purple);
}
#landing .brand-col .site-logo img {
  max-width: 13vw;
  min-width: 100px;
}
#landing .brand-col .coming-soon {
  padding-top: 10%;
}
#landing .content-col {
  background: var(--color-white);
  padding-bottom: 0;
}
#landing .content-col h1 {
  margin-top: 0;
}
#landing .content-col h2 {
  margin-top: 0;
}
#landing .content-col a {
  color: white;
}
#landing .content-col a:hover {
  text-decoration: underline;
}
#landing .content-col .contact-info {
  padding-top: 10%;
}
#landing .content-col .contact-info .phone,
#landing .content-col .contact-info .email {
  margin-bottom: 0.5em;
}
#landing .content-col .contact-info .address {
  margin-top: 2em;
}
#landing .content-col .contact-info .social-links a:hover svg path {
  fill: white;
}
#landing .content-col .line {
  height: 1px;
  background-color: white;
  width: 100%;
  margin: 3.5em 0;
}
#landing .content-col .line + div.newsletter {
  margin-top: 0;
}
#landing .content-col .newsletter {
  margin: 3.5em 0px 0px;
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  #landing .content-col .newsletter {
    text-align: center;
    margin: 2em 0px 1em;
  }
}
@media screen and (max-width: 500px) {
  #landing .content-col .newsletter {
    max-width: 100%;
  }
}
#landing .content-col .newsletter .gform_validation_errors {
  background-color: var(--color-purple);
  font-size: 14px;
}
#landing .content-col .newsletter .gform_validation_errors .gform_submission_error {
  font-size: 1em;
}
#landing .content-col .newsletter #gform_2 {
  position: relative;
}
#landing .content-col .newsletter #gform_2 input {
  height: 3.5rem;
  border-radius: 30px;
  border: none;
}
#landing .content-col .newsletter #gform_2 input:focus {
  outline: var(--color-purple);
}
#landing .content-col .newsletter #gform_2 .gform_button {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  font-size: 0px;
  width: 4.5rem;
  height: 3.5rem;
  background: url("/wp-content/themes/foe/images/shell/arrow-plane.svg") center center no-repeat;
  transition: background 0.3s ease-out;
}
@media screen and (max-width: 900px) {
  #landing .content-col .newsletter #gform_2 .gform_button {
    width: 4rem;
    height: 3rem;
  }
}
#landing .content-col .newsletter #gform_2 .gform_button:hover {
  background: url("/wp-content/themes/foe/images/shell/arrow-plane-dark.svg") center center no-repeat;
}
#landing .content-col .landing-footer {
  padding-top: 30%;
  padding-bottom: 5%;
}
#landing .content-col .landing-footer .foe-link {
  color: white;
  text-decoration: none;
}
#landing .content-col .landing-footer .foe-link:hover {
  text-decoration: underline;
}
#landing .content-col .landing-footer .copyright,
#landing .content-col .landing-footer .tos {
  font-size: 0.8rem;
}
#landing .social-links {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
#landing .social-links a:not(.custom-social-link) {
  width: 30px;
  display: block;
  align-items: center;
  justify-content: center;
  margin: 0px 10px 10px 0px;
  transition: background 0.3s ease-out;
  background: transparent;
}
#landing .social-links a:not(.custom-social-link):hover {
  background: transparent;
}
#landing .social-links a:not(.custom-social-link) svg {
  max-height: 20px;
  max-width: 20px;
}

/*
Form Styling

Including generic form elements and specific Gravity Form styling overrides.
*/
body .gform_wrapper.gravity-theme {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
body .gform_wrapper.gravity-theme .validation_error,
body .gform_wrapper.gravity-theme .gform_validation_errors {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 1em;
  margin: 0px 0px 1.5em 0px;
  width: auto;
  box-shadow: none;
  font-weight: 400;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
  font-family: "montserrat", sans-serif;
  line-height: 1.4;
  font-size: 1em;
  padding: 0px;
  color: white;
  display: flex;
  align-items: center;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error .gform-icon,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error .gform-icon {
  position: relative;
  inset-inline-start: 0px;
  margin-right: 0.5em;
}
body .gform_wrapper.gravity-theme .validation_error ol,
body .gform_wrapper.gravity-theme .gform_validation_errors ol {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li a,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: white;
}
body .gform_wrapper.gravity-theme .gform_fields {
  margin: 0px;
  padding: 0px;
  grid-column-gap: 2%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield {
  width: 100%;
  clear: none;
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error {
  background: none;
  border: none;
  max-width: none !important;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .ginput_container input,
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: red;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .validation_message {
  padding: 5px 0px 0px 0px;
  color: var(--color-white);
  border: none;
  background: none;
  margin: 0px;
  color: red;
  font-size: 0.8em;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .gfield_label {
  margin-top: 0px;
  color: var(--color-white);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label {
  font-size: 14px;
  padding: 0px 0px 8px 0px;
  margin-bottom: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 3em;
  padding: 0px 1em;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: var(--color-purple);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 10em;
  padding: 0.8em 1em;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: var(--color-purple);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  background: #f4f4f4 url("/wp-content/themes/foe/images/shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  border-radius: 2px;
  height: 40px;
  padding: 0px 15px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  background-color: rgb(231.25, 231.25, 231.25);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: var(--color-eggplant-100) !important;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 35px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:after {
  position: absolute;
  content: "";
  background: var(--color-white);
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 0px;
  display: block;
  border: 3px solid white;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: var(--color-shadow-40);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input:checked + label:after {
  background: var(--color-eggplant-100) !important;
  box-shadow: 0px 0px 0px 3px var(--color-eggplant-100);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 500;
  padding: 5px 0px 5px 40px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 7px;
  margin: auto;
  width: 10px;
  height: 10px;
  left: 3px;
  display: block;
  box-shadow: 0px 0px 0px 3px var(--color-shadow-40);
  transition: background 0.15s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:before {
  content: "";
  position: absolute;
  z-index: 9;
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
  border: 3px solid white;
  border-right: 0px;
  border-top: 0px;
  width: 10px;
  height: 5px;
  top: 10px;
  left: 3px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: var(--color-shadow-40);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
body .gform_wrapper.gravity-theme .gform_footer {
  margin: 0px;
  padding: 1.5em 0px 0px 0px;
}
body .gform_wrapper.gravity-theme input[type=submit] {
  height: auto;
  padding: 15px 25px;
  background: var(--color-eggplant-100);
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  margin: 0px 1em 0px 0px;
  transition: background 0.15s ease-out;
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: var(--color-teal-100);
}
@media screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    line-height: inherit;
    min-height: 0px;
    width: auto;
  }
}

@media screen and (max-width: 800px) {
  #newsletter-footer {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #newsletter-footer .gform_confirmation_wrapper {
    padding-bottom: 10%;
  }
}
#newsletter-footer .gform_wrapper {
  margin-top: 2rem;
  max-width: 325px;
}
@media screen and (max-width: 800px) {
  #newsletter-footer .gform_wrapper {
    margin: 1rem auto;
  }
}
@media screen and (max-width: 600px) {
  #newsletter-footer .gform_wrapper {
    margin: 1rem auto;
    max-width: 100%;
  }
}
#newsletter-footer .gform_wrapper .gform-body {
  position: relative;
}
#newsletter-footer .gform_wrapper .gform_submission_error {
  font-size: 90%;
}
#newsletter-footer .gform_wrapper .gform_fields .gfield.gfield_error .validation_message {
  color: var(--color-purple);
}
#newsletter-footer .gform_wrapper .gform_fields {
  display: block;
}
#newsletter-footer .gform_wrapper input[type=text],
#newsletter-footer .gform_wrapper input[type=email] {
  background: white;
  border: none;
  border-radius: 8px;
  border: 1px solid var(--color-white);
  line-height: 1;
  font-size: 1rem;
  color: var(--color-eggplant-100);
  width: 100%;
  padding: 0 1em;
  padding-right: 5em;
}
#newsletter-footer .gform_wrapper input[type=text]::-moz-placeholder, #newsletter-footer .gform_wrapper input[type=email]::-moz-placeholder {
  color: var(--color-purple);
}
#newsletter-footer .gform_wrapper input[type=text]::placeholder,
#newsletter-footer .gform_wrapper input[type=email]::placeholder {
  color: var(--color-purple);
}
#newsletter-footer .gform_wrapper input[type=text]:focus,
#newsletter-footer .gform_wrapper input[type=email]:focus {
  outline: none;
  border-color: var(--color-eggplant-100);
}
#newsletter-footer .gform-button {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05) url("/wp-content/themes/foe/images/shell/arrow-submit.svg") center center no-repeat;
  background-size: 10px;
  padding: 0.5em 1em;
  height: 2.5em;
  width: 2.5em;
  margin: 0px;
  color: var(--color-white);
  background-size: 16px;
  text-indent: -9999px;
  transition: background 0.2s ease-out, transform 0.3s ease-out;
}
#newsletter-footer .gform-button:hover {
  background-color: var(--color-orange-100);
}
#newsletter-footer .gform-button.gform-submitting {
  opacity: 0;
}
#newsletter-footer .gform-loader {
  position: absolute;
  right: -9em;
  top: 7em;
  bottom: unset;
}

.grecaptcha-badge {
  visibility: hidden;
}

.search-form {
  display: flex;
  background: var(--color-white);
  border-radius: 4px;
}
.search-form:focus-within {
  outline: var(--color-teal-20) 2px solid;
  outline-offset: 2px;
}
.search-form .search-field {
  border: none;
  height: unset;
  padding: 0.5em 1em;
  background: var(--color-white);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  transition: background 0.2s ease-out;
}
.search-form .search-field:focus {
  outline: none;
}
.search-form .search-submit {
  background: var(--color-black);
  padding: 0px;
  width: 44px;
  border: none;
  text-indent: -9999px;
  font-size: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/search.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/search.svg");
  -webkit-mask-size: 17px;
          mask-size: 17px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: background 0.2s ease-out;
}
.search-form .search-submit:hover {
  background: var(--color-eggplant-100);
}

input.ajax-keyword {
  background: #f4f4f4 url("/wp-content/themes/foe/images/shell/search.svg") right 15px center no-repeat;
  background-size: 17px;
}

.ajax-spinner {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 5;
  display: none;
  justify-content: center;
  padding: 18% 0px 0px 0px;
}
.ajax-spinner .spinner {
  margin: 0 auto;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(var(--color-purple), 0.45);
  border-top: 4px solid var(--color-purple);
  animation: spin 2s linear infinite;
}

#registrationForm h3,
#gform_wrapper_3 h3,
#gform_wrapper_4 h3,
#gform_wrapper_5 h3,
#gform_wrapper_6 h3 {
  margin-bottom: 0;
  color: var(--color-teal-100);
}
#registrationForm .gsection,
#gform_wrapper_3 .gsection,
#gform_wrapper_4 .gsection,
#gform_wrapper_5 .gsection,
#gform_wrapper_6 .gsection {
  border-bottom: 2px solid var(--color-teal-100);
}
#registrationForm .gfield_description,
#gform_wrapper_3 .gfield_description,
#gform_wrapper_4 .gfield_description,
#gform_wrapper_5 .gfield_description,
#gform_wrapper_6 .gfield_description {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#registrationForm .gsection_description,
#gform_wrapper_3 .gsection_description,
#gform_wrapper_4 .gsection_description,
#gform_wrapper_5 .gsection_description,
#gform_wrapper_6 .gsection_description {
  margin-top: 0.5em;
  padding-top: 0;
}
#registrationForm .gform_title,
#gform_wrapper_3 .gform_title,
#gform_wrapper_4 .gform_title,
#gform_wrapper_5 .gform_title,
#gform_wrapper_6 .gform_title {
  color: var(--color-eggplant-100);
}
#registrationForm #input_4_26,
#registrationForm #input_4_23,
#registrationForm #input_4_27,
#registrationForm #input_4_25,
#registrationForm #input_4_8,
#gform_wrapper_3 #input_4_26,
#gform_wrapper_3 #input_4_23,
#gform_wrapper_3 #input_4_27,
#gform_wrapper_3 #input_4_25,
#gform_wrapper_3 #input_4_8,
#gform_wrapper_4 #input_4_26,
#gform_wrapper_4 #input_4_23,
#gform_wrapper_4 #input_4_27,
#gform_wrapper_4 #input_4_25,
#gform_wrapper_4 #input_4_8,
#gform_wrapper_5 #input_4_26,
#gform_wrapper_5 #input_4_23,
#gform_wrapper_5 #input_4_27,
#gform_wrapper_5 #input_4_25,
#gform_wrapper_5 #input_4_8,
#gform_wrapper_6 #input_4_26,
#gform_wrapper_6 #input_4_23,
#gform_wrapper_6 #input_4_27,
#gform_wrapper_6 #input_4_25,
#gform_wrapper_6 #input_4_8 {
  -moz-column-count: 1;
       column-count: 1;
}
#registrationForm .gform_fields,
#gform_wrapper_3 .gform_fields,
#gform_wrapper_4 .gform_fields,
#gform_wrapper_5 .gform_fields,
#gform_wrapper_6 .gform_fields {
  display: grid;
}
#registrationForm fieldset,
#gform_wrapper_3 fieldset,
#gform_wrapper_4 fieldset,
#gform_wrapper_5 fieldset,
#gform_wrapper_6 fieldset {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}
#registrationForm .gfield_label,
#gform_wrapper_3 .gfield_label,
#gform_wrapper_4 .gfield_label,
#gform_wrapper_5 .gfield_label,
#gform_wrapper_6 .gfield_label {
  margin-top: 1rem;
  font-weight: 600;
  font-size: clamp(14px, 0.875rem + 0.25vw, 1.125rem);
}
#registrationForm .ginput_left,
#gform_wrapper_3 .ginput_left,
#gform_wrapper_4 .ginput_left,
#gform_wrapper_5 .ginput_left,
#gform_wrapper_6 .ginput_left {
  padding-left: 0;
}
#registrationForm .ginput_right,
#gform_wrapper_3 .ginput_right,
#gform_wrapper_4 .ginput_right,
#gform_wrapper_5 .ginput_right,
#gform_wrapper_6 .ginput_right {
  padding-right: 0;
}
#registrationForm .ginput_full,
#gform_wrapper_3 .ginput_full,
#gform_wrapper_4 .ginput_full,
#gform_wrapper_5 .ginput_full,
#gform_wrapper_6 .ginput_full {
  padding-left: 0;
  padding-right: 0;
}
#registrationForm input,
#gform_wrapper_3 input,
#gform_wrapper_4 input,
#gform_wrapper_5 input,
#gform_wrapper_6 input {
  border: var(--color-shadow-20) 1px solid;
  font-weight: 500;
  color: var(--color-black);
  border-radius: 4px;
}
#registrationForm input:focus,
#gform_wrapper_3 input:focus,
#gform_wrapper_4 input:focus,
#gform_wrapper_5 input:focus,
#gform_wrapper_6 input:focus {
  outline: none;
  border-color: var(--color-eggplant-100);
}
#registrationForm label,
#registrationForm legend,
#gform_wrapper_3 label,
#gform_wrapper_3 legend,
#gform_wrapper_4 label,
#gform_wrapper_4 legend,
#gform_wrapper_5 label,
#gform_wrapper_5 legend,
#gform_wrapper_6 label,
#gform_wrapper_6 legend {
  color: var(--color-eggplant-100);
}
#registrationForm input[type=submit],
#registrationForm .gfield_choice_all_toggle,
#gform_wrapper_3 input[type=submit],
#gform_wrapper_3 .gfield_choice_all_toggle,
#gform_wrapper_4 input[type=submit],
#gform_wrapper_4 .gfield_choice_all_toggle,
#gform_wrapper_5 input[type=submit],
#gform_wrapper_5 .gfield_choice_all_toggle,
#gform_wrapper_6 input[type=submit],
#gform_wrapper_6 .gfield_choice_all_toggle {
  background: var(--color-eggplant-100);
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  margin: 0px 1em 0px 0px;
  transition: background 0.2s ease-out;
}
#registrationForm input[type=submit]:hover,
#registrationForm .gfield_choice_all_toggle:hover,
#gform_wrapper_3 input[type=submit]:hover,
#gform_wrapper_3 .gfield_choice_all_toggle:hover,
#gform_wrapper_4 input[type=submit]:hover,
#gform_wrapper_4 .gfield_choice_all_toggle:hover,
#gform_wrapper_5 input[type=submit]:hover,
#gform_wrapper_5 .gfield_choice_all_toggle:hover,
#gform_wrapper_6 input[type=submit]:hover,
#gform_wrapper_6 .gfield_choice_all_toggle:hover {
  background: var(--color-teal-100);
}
#registrationForm .gfield-choice-toggle-all,
#gform_wrapper_3 .gfield-choice-toggle-all,
#gform_wrapper_4 .gfield-choice-toggle-all,
#gform_wrapper_5 .gfield-choice-toggle-all,
#gform_wrapper_6 .gfield-choice-toggle-all {
  -moz-column-span: all;
       column-span: all;
  margin-top: 1em;
}
#registrationForm #input_3_6,
#gform_wrapper_3 #input_3_6,
#gform_wrapper_4 #input_3_6,
#gform_wrapper_5 #input_3_6,
#gform_wrapper_6 #input_3_6 {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 800px) {
  #registrationForm #input_3_6,
  #gform_wrapper_3 #input_3_6,
  #gform_wrapper_4 #input_3_6,
  #gform_wrapper_5 #input_3_6,
  #gform_wrapper_6 #input_3_6 {
    -moz-column-count: 1;
         column-count: 1;
  }
}
#registrationForm .gfield_checkbox,
#gform_wrapper_3 .gfield_checkbox,
#gform_wrapper_4 .gfield_checkbox,
#gform_wrapper_5 .gfield_checkbox,
#gform_wrapper_6 .gfield_checkbox {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 800px) {
  #registrationForm .gfield_checkbox,
  #gform_wrapper_3 .gfield_checkbox,
  #gform_wrapper_4 .gfield_checkbox,
  #gform_wrapper_5 .gfield_checkbox,
  #gform_wrapper_6 .gfield_checkbox {
    -moz-column-count: 1;
         column-count: 1;
  }
}
#registrationForm .gfield_checkbox label,
#gform_wrapper_3 .gfield_checkbox label,
#gform_wrapper_4 .gfield_checkbox label,
#gform_wrapper_5 .gfield_checkbox label,
#gform_wrapper_6 .gfield_checkbox label {
  margin: 4px 0;
}
#registrationForm .gfield_checkbox input,
#gform_wrapper_3 .gfield_checkbox input,
#gform_wrapper_4 .gfield_checkbox input,
#gform_wrapper_5 .gfield_checkbox input,
#gform_wrapper_6 .gfield_checkbox input {
  font-size: 16px;
}
#registrationForm .gfield_checkbox input + label,
#gform_wrapper_3 .gfield_checkbox input + label,
#gform_wrapper_4 .gfield_checkbox input + label,
#gform_wrapper_5 .gfield_checkbox input + label,
#gform_wrapper_6 .gfield_checkbox input + label {
  padding-bottom: 0;
  padding-left: 32px;
  font-size: 16px;
}
#registrationForm .gfield_checkbox input + label:before,
#gform_wrapper_3 .gfield_checkbox input + label:before,
#gform_wrapper_4 .gfield_checkbox input + label:before,
#gform_wrapper_5 .gfield_checkbox input + label:before,
#gform_wrapper_6 .gfield_checkbox input + label:before {
  border: none;
}
#registrationForm .gfield_checkbox input + label:after,
#gform_wrapper_3 .gfield_checkbox input + label:after,
#gform_wrapper_4 .gfield_checkbox input + label:after,
#gform_wrapper_5 .gfield_checkbox input + label:after,
#gform_wrapper_6 .gfield_checkbox input + label:after {
  box-shadow: none;
  background: var(--color-shadow-20);
  width: 20px;
  height: 20px;
  border-radius: 2px;
}
#registrationForm #input_3_11,
#gform_wrapper_3 #input_3_11,
#gform_wrapper_4 #input_3_11,
#gform_wrapper_5 #input_3_11,
#gform_wrapper_6 #input_3_11 {
  -moz-column-width: 300px;
       column-width: 300px;
  /* Browser creates as many columns as will fit */
}
#registrationForm .gfield_radio,
#gform_wrapper_3 .gfield_radio,
#gform_wrapper_4 .gfield_radio,
#gform_wrapper_5 .gfield_radio,
#gform_wrapper_6 .gfield_radio {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
#registrationForm .gfield_radio .gchoice,
#gform_wrapper_3 .gfield_radio .gchoice,
#gform_wrapper_4 .gfield_radio .gchoice,
#gform_wrapper_5 .gfield_radio .gchoice,
#gform_wrapper_6 .gfield_radio .gchoice {
  margin: 4px 0;
}
#registrationForm .gfield_radio .gchoice input,
#registrationForm .gfield_radio .gchoice label,
#gform_wrapper_3 .gfield_radio .gchoice input,
#gform_wrapper_3 .gfield_radio .gchoice label,
#gform_wrapper_4 .gfield_radio .gchoice input,
#gform_wrapper_4 .gfield_radio .gchoice label,
#gform_wrapper_5 .gfield_radio .gchoice input,
#gform_wrapper_5 .gfield_radio .gchoice label,
#gform_wrapper_6 .gfield_radio .gchoice input,
#gform_wrapper_6 .gfield_radio .gchoice label {
  font-size: 16px;
}

.job-manager-form input[type=text],
.job-manager-form input[type=email],
.job-manager-form input[type=url],
.job-manager-form input[type=password],
.job-manager-form input[type=search],
.job-manager-form input[type=tel] {
  background: var(--color-shadow-10);
  border: var(--color-shadow-10) 1px solid;
  border-radius: 4px;
  font-weight: 500;
  color: var(--color-black);
}
.job-manager-form select {
  background: var(--color-shadow-10);
  border: var(--color-shadow-10) 1px solid;
  border-radius: 4px;
  font-weight: 500;
  color: var(--color-black);
  height: 3em;
}

#contact-form #gform_fields_1 input[type=text],
#contact-form #gform_fields_1 input[type=email],
#contact-form #gform_fields_1 input[type=url],
#contact-form #gform_fields_1 input[type=password],
#contact-form #gform_fields_1 input[type=search],
#contact-form #gform_fields_1 input[type=tel] {
  background: var(--color-shadow-10);
  border: none;
  border-bottom: 1px solid var(--color-eggplant-100);
  background: transparent;
  border-radius: 0;
  padding-left: 0;
}
#contact-form #gform_fields_1 input[type=text]::-moz-placeholder, #contact-form #gform_fields_1 input[type=email]::-moz-placeholder, #contact-form #gform_fields_1 input[type=url]::-moz-placeholder, #contact-form #gform_fields_1 input[type=password]::-moz-placeholder, #contact-form #gform_fields_1 input[type=search]::-moz-placeholder, #contact-form #gform_fields_1 input[type=tel]::-moz-placeholder {
  color: var(--color-black);
}
#contact-form #gform_fields_1 input[type=text]::placeholder,
#contact-form #gform_fields_1 input[type=email]::placeholder,
#contact-form #gform_fields_1 input[type=url]::placeholder,
#contact-form #gform_fields_1 input[type=password]::placeholder,
#contact-form #gform_fields_1 input[type=search]::placeholder,
#contact-form #gform_fields_1 input[type=tel]::placeholder {
  color: var(--color-black);
}
#contact-form #gform_fields_1 textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-eggplant-100);
  border-radius: 0;
  padding-left: 0;
}
#contact-form #gform_fields_1 textarea::-moz-placeholder {
  color: var(--color-black);
}
#contact-form #gform_fields_1 textarea::placeholder {
  color: var(--color-black);
}
#contact-form input[type=submit] {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.5em 1.5em;
  background: transparent;
  color: var(--color-white);
  border: solid 2px var(--color-eggplant-100);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-eggplant-100);
  transition: all 0.15s cubic-bezier(0.3, 1, 0.8, 1);
  text-align: center;
}
#contact-form input[type=submit]:hover {
  background: var(--color-eggplant-100);
  border-color: var(--color-eggplant-100);
  color: var(--color-white);
}
@media screen and (max-width: 600px) {
  #contact-form input[type=submit] {
    font-size: 14px;
  }
}/*# sourceMappingURL=styles.css.map */