@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;
    }
}
*/
/*--------------------------------------------------------------
# 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;
  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;
  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-bottom: 1.5em;
  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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #fff;
}

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

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

ul,
ol {
  margin: 0 0 1.5em 3em;
}

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%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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-primary);
}

a:hover,
a:focus,
a:active {
  color: var(--color-primary-dark);
}

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.
*/
@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: local(""), url("../fonts/Manrope-Regular.woff") format("woff"), url("../fonts/Manrope-Regular.ttf") format("truetype"), url("../fonts/Manrope-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 700;
  src: local(""), url("../fonts/Manrope-Bold.woff") format("woff"), url("../fonts/Manrope-Bold.ttf") format("truetype"), url("../fonts/Manrope-Bold.otf") format("opentype");
}
/*
GLOBALS
*/
body {
  font-family: var(--font-primary);
  font-display: swap;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-dark);
}
@media screen and (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}
body p a {
  text-decoration: underline;
}

a {
  color: var(--color-secondary);
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
a:hover {
  color: var(--color-primary-dark);
}

ul,
ol {
  margin-left: 0px;
  padding-left: 1em;
}

/*
HEADINGS
*/
h1,
.primary-heading,
h2,
.secondary-heading {
  font-family: var(--font-secondary);
  font-size: clamp(1.625rem, 0.9687rem + 1.75vw, 2.5rem);
  line-height: 1.125;
  margin: 0 0 0.4em;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
h1 strong,
.primary-heading strong,
h2 strong,
.secondary-heading strong {
  color: var(--color-secondary);
  font-weight: 400;
}

h3,
.small-heading {
  font-family: var(--font-secondary);
  font-size: 1.3em;
  line-height: 1.4;
  margin: 0.4em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  h3,
  .small-heading {
    font-size: 1.2em;
  }
}

h4 {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-primary);
  margin: 0.5rem 0px;
}
@media screen and (max-width: 1300px) {
  h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  h4 {
    font-size: 18px;
  }
}

h5,
.sub-heading {
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.line-wrapper {
  overflow: hidden;
}

/*
LINKS
*/
.foe-link {
  color: var(--color-primary);
  display: block;
  background: url("/wp-content/themes/foe/images/shell/arrow-angled.svg") right center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
  padding: 0.5em calc(0.75em + 11px) 0.5em 0px;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-color: transparent;
  transition: all 0.2s ease-out;
}
.foe-link:hover {
  text-decoration-color: var(--color-secondary);
}
.foe-link.white {
  background: url("/wp-content/themes/foe/images/shell/arrow-angled-white.svg") right center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
}

.foe-button,
button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.5625rem + 0.5vw, 1rem);
  padding: 0.75rem 1.35rem;
  line-height: 1.2;
  background: var(--color-primary-dark);
  color: white;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 0px 1em 1em 0px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.foe-button:hover,
button:hover {
  color: white;
}
.foe-button:hover:after,
button:hover:after {
  transform: translateX(0%);
}
.foe-button:focus,
button:focus {
  color: white;
}
.foe-button:after,
button:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  background: var(--color-secondary);
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}
.foe-button.arrow,
button.arrow {
  padding: 0.5rem 1.5rem 0.4rem 0px;
  background: none;
  color: var(--color-dark);
  background: url("/wp-content/themes/foe/images/shell/arrow-angled.svg") right center no-repeat;
  border-bottom: 2px solid transparent;
  transition: border 0.3s ease-out;
}
.foe-button.arrow:hover,
button.arrow:hover {
  border-color: var(--color-secondary);
}
.foe-button.arrow:after,
button.arrow:after {
  display: none;
}
.foe-button.blue,
button.blue {
  background: var(--color-secondary);
}
.foe-button.blue:after,
button.blue:after {
  background: var(--color-primary);
}

/*
Header and Navigation Styling
*/
.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: var(--color-light-background);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  transition: box-shadow 0.2s ease-out, background 0.2s ease-out;
}
#header.open {
  background: none;
  box-shadow: none !important;
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1800px;
  margin: 0 auto;
  padding: clamp(1.25rem, 0.7813rem + 1.25vw, 1.875rem);
}
@media screen and (max-width: 900px) {
  #header .header-inner {
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  #header .header-inner {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
}
#header .main-nav {
  margin-left: auto;
  margin-right: 1.5em;
}
@media screen and (max-width: 1024px) {
  #header .main-nav {
    margin-right: 1rem;
  }
}
#header .header-button {
  margin: 0px;
}
@media screen and (max-width: 900px) {
  #header .header-button {
    display: none;
  }
}
#header.scrolled {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

/*
Adding top padding to offset fixed header. 
For transparent headers bonus padding should be moved into hero/first block.
*/
.site-content {
  padding-top: var(--header-height);
}
@media screen and (max-width: 900px) {
  .site-content {
    padding-top: var(--header-height);
  }
}

.site-branding {
  line-height: 0px;
  font-size: 0px;
}
.site-branding .site-logo {
  height: 42px;
}
@media screen and (max-width: 1200px) {
  .site-branding .site-logo {
    height: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .site-branding .site-logo {
    height: 25px;
  }
}

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

#header_nav {
  display: flex;
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}
#header_nav > li.current-menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: rgba(var(--color-primary), 0.2);
  transform: scaleX(1);
  transform-origin: 0% 50%;
  transition: transform 0.4s ease-out;
  z-index: -1;
}
#header_nav li {
  position: relative;
  padding: 0px;
}
#header_nav li:hover > a {
  color: var(--color-primary);
}
#header_nav li:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
#header_nav li a {
  color: var(--color-primary-dark);
  text-decoration: none;
  padding: 0.5em 1rem;
  line-height: 1.1;
  display: inline-block;
  font-weight: 400;
  position: relative;
  font-size: clamp(0.75rem, 0.5625rem + 0.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
@media screen and (max-width: 1024px) {
  #header_nav li a {
    padding: 0.5em 0.75rem;
  }
}
#header_nav li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--color-secondary);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  #header_nav li a:after {
    left: 0.75rem;
    right: 0.75rem;
  }
}
@media screen and (max-width: 900px) {
  #header_nav li a {
    display: block;
    width: 100%;
  }
}
#header_nav li .sub-menu,
#header_nav li .children {
  position: absolute;
  left: -200px;
  right: -200px;
  margin: auto;
  width: 200px;
  top: 54px;
  background: var(--color-primary);
  padding: 15px 0px;
  text-align: center;
  display: none;
  border-radius: 3px;
}
#header_nav li .sub-menu:after,
#header_nav li .children:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: -5px;
  margin: auto;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
#header_nav li .sub-menu li,
#header_nav li .children li {
  background: var(--color-primary);
  display: block;
  float: none;
}
#header_nav li .sub-menu li a,
#header_nav li .children li a {
  display: block;
  padding: 10px 25px;
  color: white;
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .mobile-nav[style] {
    display: none !important;
  }
}

.mobile-nav {
  display: none;
  background: var(--color-secondary);
  color: white;
  z-index: 99;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100dvh;
  padding: 80px 1em 3em 2em;
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: scroll;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 10px !important;
  cursor: pointer;
  transition: background 0.3s ease-out;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}
.mobile-nav .mobile-nav-inner .mobile-social {
  margin-left: -6px;
}
.mobile-nav .mobile-nav-inner .mobile-social .social-links {
  justify-content: flex-start;
}
.mobile-nav .mobile-nav-inner .mobile-social a svg path {
  fill: white;
  transition: fill 0.2s ease-out;
}
.mobile-nav .mobile-nav-inner .mobile-social a:hover svg path {
  fill: var(--color-primary);
}
.mobile-nav .foe-button::after {
  background: white;
}
.mobile-nav .foe-button:hover {
  color: var(--color-primary);
}

#mobile_nav {
  clear: both;
  padding: 1em 0px;
  list-style-type: none;
}
#mobile_nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
#mobile_nav ul > li.current_page_item {
  position: relative;
}
#mobile_nav ul > li.current_page_item::before {
  content: "";
  transform: scaleX(1);
  transform-origin: 0% 50%;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  width: calc(100% - 2em);
}
#mobile_nav li {
  position: relative;
  width: fit-content;
}
#mobile_nav li.menu-item-has-children > a {
  position: relative;
}
#mobile_nav li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0px;
  width: 30px;
  height: 30px;
  margin: auto;
  transform-origin: 50% 50%;
  transform: rotate(90deg);
  background: url("/wp-content/themes/foe/images/shell/arrow.svg") center center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
  -webkit-transition: transform 0.3s ease-out;
  -moz-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
#mobile_nav li.menu-item-has-children.open > a:after {
  transform: rotate(-90deg);
}
#mobile_nav li a {
  color: white;
  text-decoration: none;
  padding: 1em 0px;
  line-height: 1.1;
  display: inline-block;
  font-weight: 400;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-underline-offset: 0.5rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.2s ease-out;
  -moz-transition: text-decoration-color 0.2s ease-out;
  -ms-transition: text-decoration-color 0.2s ease-out;
  -o-transition: text-decoration-color 0.2s ease-out;
  transition: text-decoration-color 0.2s ease-out;
}
#mobile_nav li a:hover {
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
}
#mobile_nav li .sub-menu {
  display: none;
}
#mobile_nav li .sub-menu a {
  opacity: 0.8;
}

.nav-toggle {
  padding: 14px 15px;
  border: none;
  display: none;
  background: none;
  margin: 0px;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: var(--color-secondary);
  width: 20px;
  height: 2px;
  margin: 4px 0px;
  transform-origin: 50% 50%;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.nav-toggle.open span {
  background: white;
}
.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(-6px) rotate(-135deg);
  -moz-transform: translateY(-6px) rotate(-135deg);
  -webkit-transform: translateY(-6px) rotate(-135deg);
}
.nav-toggle.open .two {
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
}
.nav-toggle:hover {
  background: none;
}
.nav-toggle:hover span {
  background: white;
}
.nav-toggle:focus {
  background: none;
}
.nav-toggle:active {
  background: none;
}
.nav-toggle:hover {
  background: none;
}

.modal-age-gate {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 99999;
  background: black url("/wp-content/uploads/2024/11/wine-club-banner.jpg") center center no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
  display: none;
}
.modal-age-gate .modal-inner {
  position: absolute;
  align-items: center;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6%;
}
.modal-age-gate:after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.7);
}
.modal-age-gate .modal-content {
  position: relative;
  z-index: 3;
}
.modal-age-gate .modal-content img {
  margin-bottom: 3em;
  width: 330px;
}
@media screen and (max-width: 540px) {
  .modal-age-gate .modal-content img {
    width: 230px;
  }
}
.modal-age-gate .modal-content .button-container {
  padding-top: 1em;
  padding-left: 1em;
}
.modal-age-gate .modal-content .age-message {
  opacity: 0;
}

/*
Footer and Navigation Styling
*/
.site-footer {
  padding: 5% 4rem;
  background: var(--color-light-background);
}
@media screen and (max-width: 1100px) {
  .site-footer {
    padding: 5% 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .site-footer {
    padding: 5% 1.5rem 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding: 7% 1rem 1rem;
  }
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top {
    display: block;
  }
}
.site-footer .footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-bot {
    flex-direction: column;
    align-items: flex-start;
  }
}
.site-footer .footer-branding {
  line-height: 0px;
  font-size: 0px;
  margin-bottom: 4%;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-branding {
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-branding {
    margin: 5% 0px;
  }
}
.site-footer .footer-branding .footer-logo {
  height: 64px;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-branding .footer-logo {
    height: 75px;
    display: block;
    margin: 0 auto;
  }
}
.site-footer .footer-newsletter {
  max-width: 320px;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-newsletter {
    order: 1;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-newsletter {
    max-width: 100%;
    padding: 0.5rem 0px 0px;
  }
}
.site-footer .footer-newsletter .captcha {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-newsletter .captcha {
    text-align: center;
    text-wrap: balance;
  }
}
.site-footer .footer-newsletter .captcha a {
  text-decoration: underline;
}
.site-footer .footer-newsletter .captcha a:hover {
  color: var(--color-secondary);
}
.site-footer .footer-newsletter .gform_heading {
  display: none;
}
.site-footer .footer-newsletter .gform_wrapper {
  padding-top: 0.5rem;
}
.site-footer .footer-newsletter #gform_2 {
  position: relative;
  padding: 0rem 0px 1.5rem 0px;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-newsletter #gform_2 {
    padding: 0rem 0px 2.5rem 0px;
  }
}
.site-footer .footer-newsletter #gform_2 input {
  padding-right: 65px;
}
.site-footer .footer-newsletter #gform_2 .gform-footer {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0px;
  margin: 0px;
}
.site-footer .footer-newsletter #gform_2 .gform-footer .gform_button {
  height: 3.5rem;
  aspect-ratio: 1/1;
  font-size: 0px;
  padding: 0px;
  background: var(--color-primary) url("/wp-content/themes/foe/images/shell/arrow-angled-white.svg") center center no-repeat;
}
.site-footer .footer-newsletter #gform_2 .gform-footer .gform_button:hover {
  background-color: var(--color-secondary);
}
.site-footer .footer-social {
  display: block;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-social {
    flex: 0 0 100%;
  }
}
.site-footer .footer-legal-wrap {
  max-width: calc(100% - 320px);
  font-size: 14px;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-legal-wrap {
    max-width: 100%;
    order: 2;
  }
}
.site-footer .footer-legal {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-legal {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-legal {
    text-align: center;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.site-footer .footer-legal span {
  display: inline-block;
  padding: 0px 0.75rem;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-legal span {
    padding: 0px 0.25rem;
    opacity: 0;
  }
}
.site-footer .footer-legal .footer-social {
  padding-left: 1rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-legal .footer-social {
    padding: 1rem 0px 0px;
  }
}
.site-footer .footer-legal a {
  color: var(--color-dark);
  text-decoration: underline;
}
.site-footer .footer-legal a:hover {
  color: var(--color-secondary);
}
.site-footer .disclaimer {
  flex: 0 0 100%;
  max-width: 600px;
  padding-top: 0.75rem;
}

.social-links {
  display: flex;
}
@media screen and (max-width: 800px) {
  .social-links {
    justify-content: center;
  }
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
  transition: background 0.3s ease-out;
}
.social-links a:hover svg path {
  fill: var(--color-secondary);
}
.social-links a svg {
  height: 20px;
  width: 20px;
}
.social-links a svg path {
  fill: var(--color-primary);
  transition: fill 0.2s ease-out;
}

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

#footer_nav {
  display: flex;
  margin-right: -1.5rem;
}
@media screen and (max-width: 800px) {
  #footer_nav {
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0px;
    margin: 0px;
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer_nav li {
  position: relative;
}
#footer_nav li:hover > a {
  color: var(--color-primary);
}
#footer_nav li:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
#footer_nav li a {
  color: var(--color-primary-dark);
  text-decoration: none;
  padding: 0.5em 1.5rem;
  line-height: 1.1;
  display: inline-block;
  font-weight: 400;
  position: relative;
  font-size: clamp(0.75rem, 0.5625rem + 0.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -ms-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
@media screen and (max-width: 800px) {
  #footer_nav li a {
    padding: 0.6em 0px;
    font-size: 16px;
    margin: 4px 0px;
  }
}
#footer_nav li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--color-secondary);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 800px) {
  #footer_nav li a:after {
    left: 0px;
    right: 0px;
  }
}
#footer_nav li .sub-menu li {
  display: block;
}
#footer_nav li .sub-menu li a {
  display: block;
  padding: 8px 25px;
  opacity: 0.5;
}
#footer_nav li .sub-menu li a:hover {
  opacity: 1;
}

/*
Block Styling

General styles for body of website along with block specific styling.
*/
body {
  background: var(--color-light-background);
}

.scroll-wrap {
  max-width: 1800px;
  margin: 0 auto;
}
.scroll-wrap section:first-of-type {
  padding-top: calc(var(--header-height) + 5.5%);
}

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

.block {
  padding: 5.5% clamp(1.25rem, 0.7813rem + 1.25vw, 1.875rem);
}
@media screen and (max-width: 900px) {
  .block {
    padding: 5.5% 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .block {
    padding: 7% 1rem;
  }
}
.block + section.block {
  padding-top: 0;
}
.block .inner {
  display: flex;
  flex-wrap: wrap;
}

.clip-reveal,
.clip-img {
  clip-path: inset(100% 0 0 0);
  opacity: 0;
}

.rank-math-breadcrumb {
  font-size: 0.85em;
}
@media screen and (max-width: 800px) {
  .rank-math-breadcrumb {
    font-size: 0.75em;
  }
}
.rank-math-breadcrumb p {
  display: flex;
  align-items: center;
}
.rank-math-breadcrumb a,
.rank-math-breadcrumb .last {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.rank-math-breadcrumb .separator {
  padding: 10px 15px;
  background: url("/wp-content/themes/foe/images/shell/arrow.svg") center center no-repeat;
  background-size: 8px;
  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;
  padding-top: 2rem;
}
.pagination span,
.pagination a {
  display: inline-block;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 0px;
  border: 1px solid var(--color-primary);
  margin: 0px 2px;
}
.pagination a {
  border: 1px solid rgba(var(--color-primary), 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  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;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .inner {
  width: 100%;
  display: block;
}
.hero .hero-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(1.25rem, 1.1563rem + 0.25vw, 1.375rem);
}
@media screen and (max-width: 800px) {
  .hero .hero-content {
    flex-wrap: wrap;
  }
}
.hero .content-wrapper {
  max-width: 1024px;
}
@media screen and (max-width: 800px) {
  .hero .content-wrapper {
    flex: 0 0 100%;
    order: 2;
  }
}
.hero .tag {
  flex: 0 0 auto;
  font-size: 22px;
}
@media screen and (max-width: 1100px) {
  .hero .tag {
    font-size: 16px;
  }
}
@media screen and (max-width: 800px) {
  .hero .tag {
    flex: 0 0 100%;
    order: 1;
    margin-bottom: 1rem;
  }
}
.hero .media-row {
  display: flex;
  gap: clamp(1.25rem, 0.7813rem + 1.25vw, 1.875rem);
  margin-bottom: clamp(1.25rem, 0.5rem + 2vw, 2.25rem);
}
@media screen and (max-width: 900px) {
  .hero .media-row {
    gap: 1rem;
  }
}
.hero .media-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 905/426;
}
@media screen and (max-width: 900px) {
  .hero .media-item {
    aspect-ratio: 905/600;
  }
}
.hero .media-item img,
.hero .media-item video {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  .hero .media-item img,
  .hero .media-item video {
    top: -15px;
  }
}
.hero .media-item.large {
  flex: 0 0 calc(70% - clamp(0.625rem, 0.3906rem + 0.625vw, 0.9375rem));
}
@media screen and (max-width: 900px) {
  .hero .media-item.large {
    flex: 0 0 58%;
  }
}
.hero .media-item.small {
  flex: auto;
}
.hero .media-item.media-excerpt {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-cream);
  padding: 1.5rem;
}
@media screen and (max-width: 800px) {
  .hero .media-item.media-excerpt {
    flex: 0 0 100%;
    aspect-ratio: auto;
  }
}
.hero .media-item.media-excerpt .excerpt {
  font-size: 22px;
}
@media screen and (max-width: 1200px) {
  .hero .media-item.media-excerpt .excerpt {
    font-size: 18px;
  }
}
.hero .media-item.media-excerpt .excerpt p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 5) {
  .hero .media-item.media-excerpt .excerpt p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }
}
.hero .media-item.media-excerpt .post-date {
  text-align: right;
  color: var(--color-secondary);
}

@media screen and (max-width: 800px) {
  body.single-post .hero .media-row {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 800px) {
  body.single-post .hero .media-item.large {
    flex: 0 0 100%;
  }
}

.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%;
  object-fit: cover;
}
.wide-media .media-wrapper img {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
}
.wide-media .text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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;
}

.split-text-block .inner {
  flex-wrap: nowrap;
}
@media screen and (max-width: 800px) {
  .split-text-block .inner {
    flex-wrap: wrap;
  }
}
.split-text-block .column {
  flex: 0 0 50%;
}
@media screen and (max-width: 800px) {
  .split-text-block .column {
    flex: 0 0 100%;
  }
}
.split-text-block .column .content-wrapper {
  max-width: 55ch;
}
.split-text-block .column .content-wrapper h2 {
  max-width: 450px;
}
@media screen and (max-width: 1100px) {
  .split-text-block .column .content-wrapper h2 {
    max-width: 400px;
  }
}

.portals-block .inner {
  display: block;
}
.portals-block .portal-slider {
  width: 100%;
  margin-top: clamp(1.25rem, 1.1563rem + 0.25vw, 1.375rem);
}
.portals-block .portal-slider .swiper-wrapper {
  width: 100%;
}
.portals-block .portal-slider .portal-slide {
  position: relative;
  overflow: hidden;
  flex-basis: calc(25% - 25px);
  transition: flex-basis 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 32vw;
}
@media screen and (max-width: 1300px) {
  .portals-block .portal-slider .portal-slide {
    flex-basis: calc(25% - 20px);
  }
}
@media screen and (max-width: 1100px) {
  .portals-block .portal-slider .portal-slide {
    flex-basis: calc(50% - 10px);
    min-height: 45vw;
  }
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide {
    min-height: 65vw;
    flex-basis: 100%;
  }
}
@media screen and (max-width: 500px) {
  .portals-block .portal-slider .portal-slide {
    min-height: 100vw;
  }
}
.portals-block .portal-slider .portal-slide.flex-active {
  flex-basis: calc(50% - 25px);
}
.portals-block .portal-slider .portal-slide.flex-active .description-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease-out 0.3s;
}
@media screen and (max-width: 1300px) {
  .portals-block .portal-slider .portal-slide.flex-active {
    flex-basis: calc(50% - 10px);
  }
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide.flex-active {
    flex-basis: 100%;
  }
}
.portals-block .portal-slider .portal-slide:hover .title-link-wrapper a {
  text-decoration-color: var(--color-secondary);
}
.portals-block .portal-slider .portal-slide:hover .text-wrapper {
  opacity: 1;
  transition: opacity 0.3s ease-out 0.3s;
}
.portals-block .portal-slider .portal-slide:hover .image-wrapper:before {
  opacity: 0.4;
}
.portals-block .portal-slider .portal-slide .title-link-wrapper {
  margin-bottom: clamp(1rem, 0.625rem + 1vw, 1.5rem);
  width: 100%;
}
.portals-block .portal-slider .portal-slide .title-link-wrapper a {
  color: var(--color-primary);
  position: relative;
  display: block;
  width: 100%;
  font-size: 22px;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: all 0.2s ease-out;
  text-decoration-color: transparent;
}
@media screen and (max-width: 800px) {
  .portals-block .portal-slider .portal-slide .title-link-wrapper a {
    font-size: 18px;
  }
}
.portals-block .portal-slider .portal-slide .title-link-wrapper a::before, .portals-block .portal-slider .portal-slide .title-link-wrapper a::after {
  content: "";
  position: absolute;
  width: clamp(1rem, 0.625rem + 1vw, 1.5rem);
  height: clamp(1rem, 0.625rem + 1vw, 1.5rem);
  background: url("/wp-content/themes/foe/images/shell/arrow-angled.svg") center center no-repeat;
  background-size: 13px;
  z-index: -1;
  right: 0;
  transition: all 0.2s ease-out;
  transition-delay: 0.5s;
}
.portals-block .portal-slider .portal-slide .title-link-wrapper a::before {
  transform: translate(-50%, 50%);
  display: none;
  opacity: 0;
}
.portals-block .portal-slider .portal-slide .image-wrapper {
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 32vw;
}
@media screen and (max-width: 1100px) {
  .portals-block .portal-slider .portal-slide .image-wrapper {
    min-height: 45vw;
  }
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide .image-wrapper {
    min-height: 65vw;
  }
}
@media screen and (max-width: 500px) {
  .portals-block .portal-slider .portal-slide .image-wrapper {
    min-height: 100vw;
  }
}
.portals-block .portal-slider .portal-slide .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0px);
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.67) 0%, rgba(0, 0, 0, 0) 80%);
}
.portals-block .portal-slider .portal-slide .image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  z-index: 4;
  transform: translateZ(0px);
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide .image-wrapper::before {
    opacity: 0.2;
  }
}
.portals-block .portal-slider .portal-slide .image-wrapper img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-width: 900px;
  background-attachment: fixed;
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide.swiper-slide-active .text-wrapper {
    opacity: 1 !important;
  }
}
.portals-block .portal-slider .portal-slide .text-wrapper {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: clamp(1rem, 0.25rem + 2vw, 2rem);
  font-size: clamp(0.875rem, 0.5938rem + 0.75vw, 1.25rem);
  opacity: 0;
  transition: opacity 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 999;
  transform: translateZ(0px);
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide .text-wrapper {
    opacity: 1;
  }
}
.portals-block .portal-slider .portal-slide .text-wrapper .description {
  max-width: 425px;
}
@media screen and (max-width: 650px) {
  .portals-block .portal-slider .portal-slide .text-wrapper .description {
    font-size: 17px;
    text-wrap: balance;
  }
}
.portals-block .portal-slider .portal-slide .text-wrapper a {
  margin-top: clamp(1.25rem, 1.0625rem + 0.5vw, 1.5rem);
  color: white;
}
.portals-block .portal-slider .portal-slide .text-wrapper a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.portals-block .controls {
  display: none !important;
}
@media screen and (max-width: 1100px) {
  .portals-block .controls {
    display: flex !important;
  }
}

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
}
.text-block .text-heading {
  flex: 0 0 50%;
}
@media screen and (max-width: 800px) {
  .text-block .text-heading {
    flex: 0 0 100%;
  }
}
.text-block .text-heading h2 {
  max-width: 500px;
}
@media screen and (max-width: 1100px) {
  .text-block .text-heading h2 {
    max-width: 400px;
  }
}
.text-block .text-content {
  flex: 0 0 50%;
}
@media screen and (max-width: 800px) {
  .text-block .text-content {
    flex: 0 0 100%;
    padding-top: 1rem;
  }
}
.text-block .button-container {
  padding-top: 1em;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  padding-bottom: 0px;
}
.cta .inner {
  justify-content: flex-end;
  align-items: flex-end;
  aspect-ratio: 137/58;
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 1rem 2rem;
}
@media screen and (max-width: 1100px) {
  .cta .inner {
    aspect-ratio: 137/80;
  }
}
@media screen and (max-width: 800px) {
  .cta .inner {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .cta .inner {
    aspect-ratio: 1/1;
  }
}
.cta .inner:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  opacity: 0.65;
  background: linear-gradient(to top left, black, transparent 45%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .cta .inner:after {
    background: linear-gradient(to top left, black, transparent 80%);
  }
}
.cta .cta-content {
  max-width: 500px;
  text-align: right;
  color: white;
}
@media screen and (max-width: 1400px) {
  .cta .cta-content {
    max-width: 450px;
  }
}
@media screen and (max-width: 1100px) {
  .cta .cta-content {
    max-width: 400px;
  }
}
@media screen and (max-width: 800px) {
  .cta .cta-content {
    max-width: 300px;
  }
}
.cta .button-container .foe-button {
  margin-left: 1em;
  margin-right: 0em;
}
.cta .cta-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.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;
}
.content-image-block .content-text {
  flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-text {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.content-image-block .content-image {
  flex: 0 0 50%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-image {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}

.services-block .service-item {
  flex: 0 0 100%;
  display: flex;
  padding-bottom: 2rem;
}
@media screen and (max-width: 900px) {
  .services-block .service-item {
    flex-direction: column;
    padding-bottom: 1rem;
  }
}
.services-block .service-item:last-child {
  padding-bottom: 0px;
}
.services-block .service-item .service-image {
  flex: 0 0 calc(50% - 3rem);
  overflow: hidden;
  position: relative;
  min-height: 550px;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-image {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: unset;
    aspect-ratio: 16/11;
  }
}
.services-block .service-item .service-image img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-block .service-item .service-content {
  flex: 0 0 calc(50% + 3rem);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content {
    flex: 0 0 auto;
    width: 100%;
    padding: 2rem 0px;
  }
}
.services-block .service-item .service-content .service-text h2 {
  font-size: 32px;
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-text h2 {
    font-size: 24px;
  }
}
.services-block .service-item .service-content .service-text .service-description {
  font-size: 22px;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
@media screen and (max-width: 1500px) {
  .services-block .service-item .service-content .service-text .service-description {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-text .service-description {
    font-size: 16px;
  }
}
.services-block .service-item .service-content .service-text .details-toggle {
  padding: 1.5rem 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: url("/wp-content/themes/foe/images/shell/arrow-angled.svg") right center no-repeat;
  cursor: pointer;
}
.services-block .service-item .service-content .service-text .details-toggle:hover h3 {
  color: var(--color-secondary);
}
.services-block .service-item .service-content .service-text .details-toggle h3 {
  margin: 0px;
  transition: color 0.2s ease-out;
}
.services-block .service-item .service-content .service-text .service-pricing {
  margin: 0px 0px 1.5rem 0px;
  padding: 1.5rem 0px 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.services-block .service-item .service-content .service-text .service-pricing h3 {
  margin-top: 0px;
}
.services-block .service-item .service-content .service-text .service-pricing .pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
}
@media screen and (max-width: 1500px) {
  .services-block .service-item .service-content .service-text .service-pricing .pricing-item {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-text .service-pricing .pricing-item {
    font-size: 16px;
  }
}
.services-block .service-item .service-content .service-text .service-pricing .pricing-item .service-price {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: 32px;
}
@media screen and (max-width: 1500px) {
  .services-block .service-item .service-content .service-text .service-pricing .pricing-item .service-price {
    font-size: 24px;
  }
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-text .service-pricing .pricing-item .service-price {
    font-size: 20px;
  }
}
.services-block .service-item .service-content .service-text .link {
  text-align: right;
  width: 100%;
  display: flex;
}
.services-block .service-item .service-content .service-text .foe-button {
  margin: 0px 0px 0px auto;
}
.services-block .service-item .service-content .service-details {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  padding: 3rem;
  background: var(--color-cream);
  display: none;
  z-index: 5;
  overflow-y: scroll;
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-details {
    padding: 2rem 1.5rem;
  }
}
.services-block .service-item .service-content .service-details .detail-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-details .detail-close {
    right: 1rem;
    top: 1rem;
  }
}
.services-block .service-item .service-content .service-details .detail-close:hover {
  background: var(--color-primary);
}
.services-block .service-item .service-content .service-details .detail-close:hover svg path {
  stroke: white;
}
.services-block .service-item .service-content .service-details .detail-close svg path {
  transition: stroke 0.2s ease-out;
}
.services-block .service-item .service-content .service-details .service-title {
  padding-right: 40px;
}
.services-block .service-item .service-content .service-details .detail-item {
  padding: 1.5rem 0px 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.services-block .service-item .service-content .service-details .detail-item h3 {
  margin-top: 0px;
}
.services-block .service-item .service-content .service-details .detail-item .detail-content {
  font-size: 22px;
}
@media screen and (max-width: 1500px) {
  .services-block .service-item .service-content .service-details .detail-item .detail-content {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .services-block .service-item .service-content .service-details .detail-item .detail-content {
    font-size: 16px;
  }
}

.scroll::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0px !important;
  cursor: pointer;
  transition: background 0.3s ease-out;
}
.scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}
.scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-left: 1px solid transparent;
  border-radius: 0px !important;
}
.scroll::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}

.contact-block .inner {
  background: var(--color-cream);
  padding: 4rem;
}
@media screen and (max-width: 1500px) {
  .contact-block .inner {
    padding: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .contact-block .inner {
    padding: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .contact-block .inner {
    padding: 1.5rem;
  }
}
.contact-block .contact-intro {
  flex: 0 0 100%;
  padding-bottom: 0.5rem;
}
.contact-block .contact-intro p {
  max-width: 680px;
  text-wrap: balance;
}
.contact-block .contact-form {
  flex: 0 0 75%;
  padding-right: 2rem;
}
@media screen and (max-width: 1550px) {
  .contact-block .contact-form {
    flex: 0 0 65%;
  }
}
@media screen and (max-width: 1024px) {
  .contact-block .contact-form {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
    order: 3;
  }
}
.contact-block .contact-details {
  flex: 0 0 25%;
  padding-left: 2rem;
  text-align: right;
  letter-spacing: 1px;
}
@media screen and (max-width: 1550px) {
  .contact-block .contact-details {
    flex: 0 0 35%;
  }
}
@media screen and (max-width: 1024px) {
  .contact-block .contact-details {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.contact-block .contact-details a {
  display: inline-block;
  padding-top: 5px;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: transparent;
  color: var(--color-dark);
  transition: text-decoration-color 0.2s ease-out;
}
.contact-block .contact-details a:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-secondary);
}
.contact-block .contact-details .social-links {
  justify-content: flex-end;
}

.map-block .acf-map {
  width: 100%;
  height: 400px;
}
.map-block .acf-map img {
  max-width: inherit !important;
}

.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: 3em;
  position: relative;
  z-index: 9;
}
.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%;
}

.blog-feed-block .blog-feed-header {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1100px) {
  .blog-feed-block .post-list .post:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .blog-feed-block .post-list .post:nth-child(2) {
    display: none;
  }
}

.post-list {
  flex: 0 0 100%;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .post-list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .post-list {
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 650px) {
  .post-list {
    grid-template-columns: 1fr;
  }
}
.post-list .post {
  display: flex;
  flex-direction: column;
  color: var(--color-primary);
}
.post-list .post.post-featured {
  grid-column: span 3;
  flex-direction: row;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .post-list .post.post-featured {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .post-list .post.post-featured {
    grid-column: span 2;
  }
}
@media screen and (max-width: 650px) {
  .post-list .post.post-featured {
    grid-column: span 1;
    flex-direction: column;
  }
}
.post-list .post.post-featured .post-text {
  order: 1;
  margin-right: 2rem;
  padding: 3.5rem;
}
@media screen and (max-width: 1500px) {
  .post-list .post.post-featured .post-text {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .post-list .post.post-featured .post-text {
    padding: 2rem;
    margin-right: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .post-list .post.post-featured .post-text {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 800px) {
  .post-list .post.post-featured .post-text {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 650px) {
  .post-list .post.post-featured .post-text {
    grid-column: span 1;
    order: 3;
  }
}
.post-list .post.post-featured .post-text .excerpt {
  padding-top: 3.5rem;
  padding-bottom: 0px;
  max-width: 440px;
}
.post-list .post.post-featured .post-text .post-bottom {
  align-items: flex-end;
}
@media screen and (max-width: 650px) {
  .post-list .post.post-featured .post-text .post-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.post-list .post.post-featured .post-text .post-bottom .foe-button {
  min-width: none;
}
@media screen and (max-width: 650px) {
  .post-list .post.post-featured .post-text .post-bottom .foe-button {
    margin-top: 1.5rem;
  }
}
.post-list .post.post-featured .post-img {
  order: 2;
  aspect-ratio: 43/35;
  flex: 0 0 calc(33.3333% - 1.3333rem);
}
@media screen and (max-width: 1200px) {
  .post-list .post.post-featured .post-img {
    flex: 0 0 calc(33.3333% - 1rem);
  }
}
.post-list .post .post-img {
  width: 100%;
  aspect-ratio: 43/35;
  background: center center no-repeat;
  background-size: cover;
  display: block;
  position: relative;
}
.post-list .post .post-img:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.post-list .post .post-img:hover:after {
  opacity: 0.2;
}
.post-list .post .post-img.placeholder {
  background: var(--color-cream) url("/wp-content/themes/foe/images/shell/Bastion-Logo-01.svg") center center no-repeat;
  background-size: 40%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.post-list .post .post-img.placeholder:hover:after {
  opacity: 0.05;
}
.post-list .post .post-img .category {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 0.75em;
}
.post-list .post .post-text {
  padding: 1.5em;
  background: var(--color-cream);
  flex-grow: 3;
  display: flex;
  flex-direction: column;
}
.post-list .post .post-text h2,
.post-list .post .post-text h3,
.post-list .post .post-text h4 {
  margin-top: 0px;
}
.post-list .post .post-text .excerpt {
  padding-bottom: 1.5rem;
}
.post-list .post .post-text .post-bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.post-list .post .post-text .post-bottom .foe-button {
  margin: 0px;
}
.post-list .post .post-text .post-bottom .post-date {
  color: var(--color-secondary);
  letter-spacing: 1px;
}

.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%;
  object-fit: cover;
}
.post-content .post-text {
  flex: 0 0 100%;
  padding-bottom: 2rem;
}
@media screen and (max-width: 800px) {
  .post-content .post-text {
    padding-bottom: 1.5rem;
  }
}
.post-content .post-links {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0px 0px;
  border-top: 1px solid var(--color-primary);
}
@media screen and (max-width: 800px) {
  .post-content .post-links {
    padding-top: 1rem;
  }
}
.post-content .post-links a {
  display: block;
  background: url("/wp-content/themes/foe/images/shell/arrow-angled.svg") right center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
  padding: 0.5em calc(1em + 11px) 0.5em 0px;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: transparent;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 800px) {
  .post-content .post-links a {
    font-size: 80%;
  }
}
.post-content .post-links a:hover {
  text-decoration-color: var(--color-primary);
}
.post-content .post-links .post-prev a {
  background: url("/wp-content/themes/foe/images/shell/arrow-angled-left.svg") left center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
  padding: 0.5em 0px 0.5em calc(1em + 11px);
}

.single-share {
  text-align: center;
  flex: 0 0 100%;
}
.single-share ul {
  list-style-type: none;
  margin: 10px 0px 0px 10px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

.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-cream);
  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-primary);
}
.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%;
  object-fit: cover;
  display: block;
}

.faq-block .inner {
  display: block;
}
.faq-block .inner .faq-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.faq-block .inner .faqs {
  padding: 5% 0px 0px 0px;
}
.faq-block .inner .faq {
  border-bottom: 2px solid var(--color-primary);
  transition: all 0.4s ease-out;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .faq-block .inner .faq {
    margin-bottom: 0.6rem;
  }
}
.faq-block .inner .faq .question {
  font-family: var(--font-secondary);
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.15;
  padding: 1.5rem 3rem 2rem 0rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1500px) {
  .faq-block .inner .faq .question {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 700px) {
  .faq-block .inner .faq .question {
    font-size: 1.3em;
    line-height: 1.2;
    padding: 1.3rem 4rem 1.3rem 0rem;
  }
}
.faq-block .inner .faq .question.open .status:before {
  transform: rotate(0deg);
}
.faq-block .inner .faq .question.open .status:after {
  transform: rotate(0deg);
}
.faq-block .inner .faq .question .status {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 36px;
  display: block;
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .question .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
  }
}
.faq-block .inner .faq .question .status:after, .faq-block .inner .faq .question .status:before {
  content: "";
  width: 24px;
  height: 4px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: var(--color-primary);
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.5s ease-out;
}
.faq-block .inner .faq .question .status:before {
  transform: rotate(-90deg);
}
.faq-block .inner .faq .answer {
  padding: 2.9rem 3.5rem;
  display: none;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
  font-size: 18px;
}
.faq-block .inner .faq .answer .answer-inner {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .answer {
    padding: 0rem 5rem 1.5rem 0rem;
  }
}
.faq-block .inner .faq .answer p:last-child {
  margin-bottom: 0px;
}

.accordion-block .inner {
  background: var(--color-cream);
  padding: 4rem;
}
@media screen and (max-width: 1500px) {
  .accordion-block .inner {
    padding: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .accordion-block .inner {
    padding: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .accordion-block .inner {
    padding: 1.5rem;
  }
}
.accordion-block .intro {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .accordion-block .intro {
    flex: 0 0 100%;
  }
}
.accordion-block .intro > h2 {
  margin-bottom: auto;
}
.accordion-block .intro p {
  max-width: 250px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .accordion-block .intro p {
    padding-top: 1rem;
  }
}
.accordion-block .intro .button-container .foe-button {
  margin-bottom: 0px;
}
.accordion-block .accordions {
  flex: 0 0 50%;
}
@media screen and (max-width: 900px) {
  .accordion-block .accordions {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}
.accordion-block .accordions .accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-out;
}
.accordion-block .accordions .accordion .accordion-title {
  font-family: var(--font-secondary);
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.15;
  padding: 1rem 3rem 1rem 0rem;
  position: relative;
  cursor: pointer;
  transition: color 0.2s ease-out;
}
@media screen and (max-width: 1500px) {
  .accordion-block .accordions .accordion .accordion-title {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 700px) {
  .accordion-block .accordions .accordion .accordion-title {
    font-size: 1.3em;
    line-height: 1.2;
    padding: 0.75rem 3rem 0.75rem 0rem;
  }
}
.accordion-block .accordions .accordion .accordion-title:hover {
  color: var(--color-secondary);
}
.accordion-block .accordions .accordion .accordion-title.open .status {
  transform: rotate(0deg);
}
.accordion-block .accordions .accordion .accordion-title .status {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 14px;
  height: 14px;
  margin: auto;
  background: url("/wp-content/themes/foe/images/shell/arrow-dark.svg") center center no-repeat;
  background-size: 14px;
  display: block;
  transform-origin: 50% 50%;
  transform: rotate(180deg);
  transition: transform 0.3s ease-out;
}
.accordion-block .accordions .accordion .accordion-content {
  padding: 0px 0px 1.75rem 0px;
  display: none;
}
.accordion-block .accordions .accordion .accordion-content .accordion-text {
  max-width: 600px;
}
.accordion-block .accordions .accordion .accordion-content p:last-child {
  margin-bottom: 0px;
}

.philosophy-block .inner {
  background: var(--color-cream);
  padding: 4rem;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .philosophy-block .inner {
    padding: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .philosophy-block .inner {
    padding: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .philosophy-block .inner {
    padding: 1.5rem;
  }
}
.philosophy-block .intro {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .philosophy-block .intro {
    flex: 0 0 100%;
  }
}
.philosophy-block .intro p {
  max-width: 500px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 900px) {
  .philosophy-block .intro p {
    padding-top: 1rem;
  }
}
.philosophy-block .intro .button-container {
  padding-top: 1.5rem;
}
.philosophy-block .intro .button-container .foe-button {
  margin-bottom: 0px;
}
.philosophy-block .arrows {
  flex: 1 0 auto;
  margin: 1.5rem 5%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .philosophy-block .arrows {
    height: 250px;
    width: 200px;
    flex: 1 0 200px;
    rotate: 90deg;
    max-width: 200px;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .philosophy-block .arrows {
    height: 200px;
  }
}
.philosophy-block .arrows:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 50%;
  height: 2px;
  margin: auto;
  background: #d6ccc7;
}
.philosophy-block .arrows .arrow-left {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 50%;
  height: 2px;
  margin: auto;
  background: #d6ccc7;
}
.philosophy-block .arrows .vert {
  position: absolute;
  left: 50%;
  width: 2px;
  display: block;
  top: 0px;
  bottom: 0px;
}
.philosophy-block .arrows .vert:after, .philosophy-block .arrows .vert:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 2px;
  height: calc(50% - 10px);
  background: #d6ccc7;
  margin: auto;
}
.philosophy-block .arrows .vert:after {
  top: auto;
  bottom: 0px;
}
.philosophy-block .arrows .arrow {
  height: 2px;
  background: #d6ccc7;
  width: 50%;
  margin-left: auto;
  position: relative;
}
.philosophy-block .arrows .arrow:after {
  content: "";
  position: absolute;
  right: 4px;
  top: -9px;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--color-secondary);
  border-right: 2px solid var(--color-secondary);
}
.philosophy-block .terms {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .philosophy-block .terms {
    flex: 0 0 100%;
    padding: 1rem 0px;
    flex-direction: row;
    justify-content: center;
    font-family: var(--font-secondary);
  }
}
.philosophy-block .terms .term h4 {
  font-family: var(--font-secondary);
}
@media screen and (max-width: 900px) {
  .philosophy-block .terms .term h4 {
    font-family: var(--font-secondary);
    padding: 0px 1rem;
  }
}
@media screen and (max-width: 500px) {
  .philosophy-block .terms .term h4 {
    font-size: 14px;
    padding: 0px 0.75rem;
  }
}

.features-block .inner {
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 1250px) {
  .features-block .inner {
    row-gap: 2rem;
  }
}
.features-block .inner .feature-col {
  flex: 0 0 21%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1250px) {
  .features-block .inner .feature-col {
    flex: 0 0 45%;
  }
}
@media screen and (max-width: 700px) {
  .features-block .inner .feature-col {
    flex: 0 0 50%;
  }
}
.features-block .inner .feature-col h4 {
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 1250px) {
  .features-block .inner .feature-col h4 {
    padding-bottom: 0.5rem;
  }
}
.features-block .inner .feature-col .feature-text {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5rem 1.5rem 0.5rem 1.5rem;
  flex-grow: 4;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1500px) {
  .features-block .inner .feature-col .feature-text {
    font-size: 16px;
    padding: 2rem 1.5rem 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 1250px) {
  .features-block .inner .feature-col .feature-text {
    padding: 1.5rem 1rem 0rem 1rem;
  }
}
@media screen and (max-width: 700px) {
  .features-block .inner .feature-col .feature-text {
    font-size: 14px;
  }
}

.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-primary);
  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%;
  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-primary);
}
.slider-block .slider .slide .slide-content .button-container .foe-button::after {
  background-color: var(--color-primary);
}
.slider-block .slider .controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#smooth-wrapper .controls {
  margin-top: 1em;
  margin-bottom: 1em;
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 0;
  margin-right: auto;
}
#smooth-wrapper .controls .arrows {
  margin-left: auto;
  display: flex;
  align-items: center;
}
#smooth-wrapper .controls .arrows .button-prev {
  margin-right: 0.5em;
}
#smooth-wrapper .controls .swiper-pagination-bullets {
  width: auto;
  display: flex;
  font-size: 0px;
}
#smooth-wrapper .controls .swiper-pagination-bullets .swiper-pagination-bullet {
  border: none;
  padding: 0;
  border-radius: 0px;
  height: 2px;
  position: relative;
  width: 30px;
  border-radius: 0px;
  margin: 0px;
  cursor: pointer;
  opacity: 1;
  background-color: #d9d9d9;
  transition: background 0.3s ease-out, border 0.3s ease-out;
}
#smooth-wrapper .controls .swiper-pagination-bullets .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  left: 0px;
  top: -15px;
  bottom: -15px;
  right: 0px;
}
#smooth-wrapper .controls .swiper-pagination-bullets .swiper-pagination-bullet:hover {
  background: var(--color-secondary);
}
#smooth-wrapper .controls .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
#smooth-wrapper .controls .button-next,
#smooth-wrapper .controls .button-prev {
  padding: 0.5rem 0px;
  margin: 0px 0px 0px 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border 0.3s ease-out;
}
#smooth-wrapper .controls .button-next:hover,
#smooth-wrapper .controls .button-prev:hover {
  border-bottom: 2px solid var(--color-secondary);
}
#smooth-wrapper .controls .button-next svg,
#smooth-wrapper .controls .button-prev svg {
  width: 24px;
  height: 13px;
  transition: transform 0.3s ease-out;
}

.card-slider-section .inner {
  align-items: center;
}
.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: 100%;
  flex: 0 0 100%;
  position: relative;
}
.card-slider-section .slider-wrap .slider-inner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.card-slider-section .card-slider {
  width: 100%;
}
.card-slider-section .card-slider .swiper-slide {
  width: 33.33333%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
@media screen and (max-width: 475px) {
  .card-slider-section .card-slider .swiper-slide {
    width: 100%;
  }
}
.card-slider-section .card-slider .swiper-slide:hover .slide-content {
  opacity: 1;
  pointer-events: auto;
}
.card-slider-section .card-slider .swiper-slide .slide-img {
  position: relative;
  aspect-ratio: 32/55;
  flex: 0 0 100%;
  overflow: hidden;
}
@media screen and (max-width: 475px) {
  .card-slider-section .card-slider .swiper-slide .slide-img {
    aspect-ratio: 43/55;
  }
}
.card-slider-section .card-slider .swiper-slide img {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: calc(100% + 60px);
  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;
}
@media screen and (max-width: 475px) {
  .card-slider-section .card-slider .swiper-slide .slide-content {
    opacity: 1;
  }
}
.card-slider-section .card-slider .swiper-slide .slide-content h3 {
  margin-bottom: 0px;
}
@media screen and (max-width: 600px) {
  .card-slider-section .card-slider .swiper-slide .slide-content p {
    font-size: 90%;
  }
}
.card-slider-section .card-slider .swiper-slide .foe-link {
  color: white;
  width: fit-content;
}

.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%;
  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-primary);
}
#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-secondary);
  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-primary);
  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-primary);
}
#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.
*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel] {
  border: none;
  background: #fff;
  padding: 0px 1.15em;
  height: 3.5em;
  font-size: 16px;
  border-left: 2px solid #d9d9d9;
  transition: border 0.3s ease-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus {
  outline: none;
  border-color: var(--color-primary);
}

textarea {
  border: none;
  background: #fff;
  padding: 0.8em 1.15em;
  height: 135px;
  font-size: 16px;
  border-left: 2px solid #d9d9d9;
  transition: border 0.3s ease-out;
}
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff url("/wp-content/themes/foe/images/shell/arrow.svg") right 13px center no-repeat;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  background-size: 11px;
  height: 3em;
  transition: border 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 2.3em 0px 1.3em;
  box-shadow: none;
}
select:focus {
  outline: none;
  border: 1px solid var(--color-primary);
  box-shadow: none;
}

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: var(--font-primary);
  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;
  gap: 1.5rem;
}
@media screen and (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    gap: 1rem;
  }
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield {
  width: 102%;
  margin-left: -1%;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield > legend {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield .ginput_container_address span {
  padding-left: 1%;
  padding-right: 1%;
}
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-secondary);
  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-secondary);
}
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 {
  border: none;
  background: #fff;
  padding: 0px 1.15em;
  height: 3.5em;
  font-size: 16px;
  border-left: 2px solid #d9d9d9;
  transition: border 0.3s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: var(--color-primary);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  border: none;
  background: #fff;
  padding: 0.8em 1.15em;
  height: 135px;
  font-size: 16px;
  border-left: 2px solid #d9d9d9;
  transition: border 0.3s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
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;
  -webkit-background-size: 11px;
  -moz-background-size: 11px;
  -o-background-size: 11px;
  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: #e7e7e7;
}
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-primary) !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: white;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 0px;
  display: block;
  border: 3px solid white;
  -webkit-box-shadow: 0px 0px 0px 3px #e0e1e2;
  -moz-box-shadow: 0px 0px 0px 3px #e0e1e2;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  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: #cfd2d3;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox {
  padding-left: 1%;
}
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-primary) !important;
  -webkit-box-shadow: 0px 0px 0px 3px var(--color-primary);
  -moz-box-shadow: 0px 0px 0px 3px var(--color-primary);
  box-shadow: 0px 0px 0px 3px var(--color-primary);
}
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: 400;
  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: 22px;
  height: 22px;
  left: 3px;
  display: block;
  -webkit-box-shadow: 0px 0px 0px 3px #e0e1e2;
  -moz-box-shadow: 0px 0px 0px 3px #e0e1e2;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s 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: 14px;
  height: 8px;
  top: 13px;
  left: 7px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #e0e1e2;
}
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;
}
@media screen and (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_footer {
    padding: 1rem 0px 0px 0px;
  }
}
body .gform_wrapper.gravity-theme input[type=submit] {
  height: auto;
  padding: clamp(0.9375rem, 1.1719rem - 0.625vw, 0.625rem) clamp(1.5625rem, 1.8906rem - 0.875vw, 1.125rem);
  background: var(--color-primary);
  border: none;
  border-radius: 0px;
  color: white;
  font-weight: bold;
  margin: 0px 1em 0px 0px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 1 !important;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: var(--color-secondary);
}
@media screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    line-height: inherit;
    min-height: 0px;
    width: auto;
  }
}
body .gform_wrapper.gravity-theme .gform_confirmation_message {
  padding-bottom: 1.5rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

.search-form {
  display: flex;
}
.search-form .search-field {
  border: none;
  height: 2.2em;
  padding: 0px 15px;
  background: #f4f4f4;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -webkit-transition: background 0.2s ease-out;
  -moz-transition: background 0.2s ease-out;
  -ms-transition: background 0.2s ease-out;
  -o-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.search-form .search-field:focus {
  outline: none;
  background: #e7e7e7;
}
.search-form .search-submit {
  background: #e7e7e7 url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  -webkit-background-size: 17px;
  -moz-background-size: 17px;
  -o-background-size: 17px;
  background-size: 17px;
  padding: 0px;
  width: 44px;
  border: none;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.search-form .search-submit:hover {
  background: #c1c1c1 url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  -webkit-background-size: 17px;
  -moz-background-size: 17px;
  -o-background-size: 17px;
  background-size: 17px;
}

input.ajax-keyword {
  background: #f4f4f4 url("/wp-content/themes/foe/images/shell/search.svg") right 15px center no-repeat;
  -webkit-background-size: 17px;
  -moz-background-size: 17px;
  -o-background-size: 17px;
  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-primary), 0.45);
  border-top: 4px solid var(--color-primary);
  -webkit-animation: spin 2s linear infinite;
  -moz-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}/*# sourceMappingURL=styles.css.map */