@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: bold;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

figure {
  margin: 2em 0px;
}

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

pre {
  overflow: auto;
}

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

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

p {
  margin-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 {
  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%;
  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: #084467;
}

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

a:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

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

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

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

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

/*
Fonts Styling

@font-face imports included here along with heading and button styles.
*/
/*
GLOBALS
*/
body {
  font-family: "parabolica", sans-serif;
  font-display: swap;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

a {
  color: currentColor;
  transition: color 0.2s ease-out;
}
a:hover {
  color: #fcc614;
}

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

/*
HEADINGS
*/
h1,
.primary-heading {
  font-family: "cora", sans-serif;
  font-size: 3em;
  line-height: 1.2;
  margin: 0.4em 0px;
  display: block;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: clamp(1.875rem, 1.1719rem + 1.875vw, 2.8125rem);
}

h2,
.secondary-heading {
  font-family: "cora", sans-serif;
  font-size: clamp(1.875rem, 1.1719rem + 1.875vw, 2.8125rem);
  line-height: 1.2;
  margin: 0.4em 0px;
  display: block;
  letter-spacing: -0.01em;
  font-weight: 500;
}

h3,
.small-heading {
  font-family: "cora", sans-serif;
  font-size: clamp(1.125rem, 0.4687rem + 1.75vw, 2rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0.4em 0px;
  display: block;
  letter-spacing: -0.01em;
}
h3 strong,
.small-heading strong {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 2px;
  text-decoration-color: #fcc614;
  line-height: 1.6;
}

h4,
.sub-heading {
  font-family: "cora", sans-serif;
  font-size: clamp(1.25rem, 0.7813rem + 1.25vw, 1.875rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
}
h4 strong,
.sub-heading strong {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 2px;
  text-decoration-color: #fcc614;
}

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

.line-wrapper {
  overflow: hidden;
}

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

.foe-button {
  display: inline-block;
  padding: 0.8em 1.5em;
  font-size: 90%;
  line-height: 1.2;
  background: #fcc614;
  color: #2f3180;
  border-radius: 1000px;
  font-weight: bold;
  margin: 0px 0em 1em 0px;
  cursor: pointer;
  font-weight: 500;
  font-family: "parabolica", sans-serif;
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 1400px) {
  .foe-button {
    font-size: 0.9rem;
  }
}
.foe-button:hover {
  background: #108690;
  color: white;
}

.quick-exit-button {
  position: relative;
  padding-right: calc(1.5em + 18px);
}
.quick-exit-button::after {
  content: "";
  background: currentColor;
  position: absolute;
  top: -1px;
  right: calc(1.5em - 4px);
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/link.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/link.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: right center;
          mask-position: right center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

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

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

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

#header {
  position: fixed;
  z-index: 9999;
  top: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  left: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  right: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  border-radius: clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  background: transparent;
  color: white;
  padding: 2em 1em 1em;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 900px) {
  #header {
    padding: 1.5em 1em;
  }
}
@media screen and (max-width: 600px) {
  #header {
    padding: 1em 0;
  }
}
#header.open {
  background: #2f3180 !important;
  color: #084467;
  top: 1rem;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 1em 1em 1em;
}
@media screen and (max-width: 600px) {
  #header.open {
    padding: 1em 0;
  }
}
#header.open .site-logo {
  opacity: 1;
}
#header.open .floating-logo {
  opacity: 0;
  pointer-events: none;
}
#header.scrolled {
  background: #2f3180;
  color: #084467;
  top: 1rem;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 1em 1em;
}
@media screen and (max-width: 900px) {
  #header.scrolled {
    padding: 0.8em 0.5em;
  }
}
@media screen and (max-width: 600px) {
  #header.scrolled {
    padding: 0.8em 0;
  }
}
#header.scrolled .site-logo {
  opacity: 1;
  visibility: visible;
  height: 50px;
}
#header.scrolled .floating-logo {
  opacity: 0;
  pointer-events: none;
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 1em;
}
@media screen and (max-width: 600px) {
  #header .header-inner {
    padding: 0 0 0 20px;
  }
}
#header .main-nav {
  margin-left: auto;
  margin-right: 1.5em;
}
@media screen and (max-width: 1400px) {
  #header .main-nav {
    margin-right: 1em;
  }
}
#header .header-button {
  margin: 0px;
}

/*
Adding top padding to offset fixed header. 
For transparent headers bonus padding should be moved into hero/first block.
*/
.site-branding {
  line-height: 0px;
  font-size: 0px;
  position: relative;
}
.site-branding .site-logo {
  height: 60px;
  opacity: 0;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 1400px) {
  .site-branding .site-logo {
    height: 50px;
  }
}
@media screen and (max-width: 600px) {
  .site-branding .site-logo {
    height: 40px !important;
  }
}
.site-branding .floating-logo {
  position: absolute;
  height: 135px;
  width: auto;
  top: -2vw;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 1400px) {
  .site-branding .floating-logo {
    height: 100px;
  }
}
@media screen and (max-width: 600px) {
  .site-branding .floating-logo {
    height: 66px;
  }
}

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

#header_nav {
  display: flex;
}
@media screen and (max-width: 1100px) {
  #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(8, 68, 103, 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 1em;
}
@media screen and (max-width: 1400px) {
  #header_nav li {
    padding: 0px 0.8em;
  }
}
#header_nav li:hover > a {
  color: #fcc614 !important;
  text-decoration-color: #fcc614 !important;
}
#header_nav li a:not(.foe-button) {
  color: white;
  text-decoration: none;
  padding: 0.5em 0px;
  line-height: 1.1;
  display: inline-block;
  font-weight: 400;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 1400px) {
  #header_nav li a:not(.foe-button) {
    font-size: 0.9rem;
  }
}
#header_nav li a:not(.foe-button):after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #084467;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 900px) {
  #header_nav li a:not(.foe-button) {
    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: #084467;
  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: #084467;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
#header_nav li .sub-menu li,
#header_nav li .children li {
  background: #084467;
  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: 1101px) {
  .mobile-nav[style] {
    display: none !important;
  }
}

.mobile-nav {
  display: none;
  background: #f8f5e7;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  padding: 3em 1em 3em 2em;
  background: #f8f5e7;
  background: linear-gradient(180deg, rgb(248, 245, 231) 0%, rgb(255, 255, 255) 100%);
  overflow-y: auto;
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 5%;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
  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-top: 1em;
}
.mobile-nav .inquiry-content {
  font-size: 1rem;
}
.mobile-nav .inquiry-content strong {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: #fcc614;
}
.mobile-nav #footer_nav {
  clear: both;
  padding: 1em 0px;
  list-style-type: none;
}
.mobile-nav #footer_nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.mobile-nav #footer_nav ul > li.current_page_item {
  position: relative;
}
.mobile-nav #footer_nav ul > li.current_page_item::before {
  content: "";
  transform: scaleX(1);
  transform-origin: 0% 50%;
  height: 2px;
  background: #084467;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  width: calc(100% - 2em);
}
.mobile-nav #footer_nav li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.mobile-nav #footer_nav li.menu-item-has-children > a {
  position: relative;
}
.mobile-nav #footer_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;
  background-size: 11px;
  transition: transform 0.3s ease-out;
}
.mobile-nav #footer_nav li.menu-item-has-children.open > a:after {
  transform: rotate(-90deg);
}
.mobile-nav #footer_nav li a {
  display: inline-block;
  text-decoration: none;
  font-family: "cora", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5em 2em 0.5em 0px;
  color: #2f3180;
  transition: all 0.15s ease-in-out;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}
@media screen and (max-width: 600px) {
  .mobile-nav #footer_nav li a {
    font-size: 1.1em;
    padding: 0.25em 0;
  }
}
.mobile-nav #footer_nav li a:hover {
  color: #fcc614;
  text-decoration-color: #fcc614;
}
.mobile-nav #footer_nav li .sub-menu {
  display: none;
}
.mobile-nav #footer_nav li .sub-menu a {
  opacity: 0.8;
}

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

.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 !important;
}
.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: 8% 5% 2em;
  color: white;
  background: #2f3180;
  background: linear-gradient(180deg, rgb(47, 49, 128) 42%, rgb(38, 43, 104) 76%, rgb(29, 36, 78) 100%);
}
@media screen and (max-width: 800px) {
  .site-footer {
    padding-top: 5em;
  }
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.site-footer .footer-top .branding-col {
  flex: 1 1 50%;
}
@media screen and (max-width: 1400px) {
  .site-footer .footer-top .branding-col {
    flex: 1 1 30%;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top .branding-col {
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .footer-top .branding-col {
    margin-bottom: 8%;
  }
}
.site-footer .footer-top .branding-col .site-logo img {
  height: 163px;
}
@media screen and (max-width: 1400px) {
  .site-footer .footer-top .branding-col .site-logo img {
    height: 100px;
  }
}
.site-footer .footer-top .nav-col {
  flex: 0 0 20%;
  padding: 0 2em;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-top .nav-col {
    flex: 1 1 30%;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-top .nav-col {
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .footer-top .nav-col {
    margin-bottom: 8%;
  }
}
.site-footer .footer-top .nav-col ul {
  list-style: none;
  padding: 0;
}
.site-footer .footer-top .nav-col ul li {
  padding: 8px 0;
}
.site-footer .footer-top .nav-col ul li:first-child {
  padding-top: 0;
}
.site-footer .footer-top .nav-col ul li a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: all 0.15s ease-in-out;
  font-weight: 500;
}
.site-footer .footer-top .nav-col ul li a:hover {
  text-decoration-color: #fcc614;
  color: #fcc614;
}
.site-footer .footer-top .nav-col .foe-button {
  margin-right: 0;
}
.site-footer .footer-top .inquiry-col {
  flex: 0 0 20%;
}
.site-footer .footer-top .inquiry-col a {
  color: #fcc614;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: all 0.15s ease-in-out;
}
.site-footer .footer-top .inquiry-col a:hover {
  text-decoration-color: #fcc614;
}
.site-footer .footer-bottom {
  padding-top: 5%;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-bottom {
    text-align: center;
  }
}
.site-footer .footer-bottom .footer-content {
  font-family: "cora", sans-serif;
  font-weight: 500;
  padding-bottom: 5%;
  max-width: 35em;
  text-wrap: balance;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-bottom .footer-content {
    max-width: 100%;
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .footer-bottom .footer-content {
    max-width: 100%;
    margin-bottom: 8%;
  }
}
.site-footer .footer-bottom .footer-legal {
  font-size: 0.8rem;
}
.site-footer .footer-bottom .footer-legal a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: white;
  transition: all 0.15s ease-in-out;
}
.site-footer .footer-bottom .footer-legal a:hover {
  text-decoration-color: #fcc614;
}

.social-links {
  display: flex;
  margin-top: 1em;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #084467;
  border-radius: 50%;
  margin: 0px 10px 10px 0px;
  transition: background 0.3s ease-out;
}
.social-links a:hover {
  background: #2f3180;
}
.social-links a svg {
  max-height: 20px;
  max-width: 20px;
}
.social-links a svg path {
  fill: white;
}

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

/*
Block Styling

General styles for body of website along with block specific styling.
*/
.site-main {
  padding: 8% 10%;
}
@media screen and (max-width: 800px) {
  .site-main {
    padding: 9% 8%;
  }
}

.block {
  padding: 5% 5%;
}
@media screen and (max-width: 800px) {
  .block {
    padding: 9% 5%;
  }
}
.block .inner {
  display: flex;
  flex-wrap: wrap;
}

.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;
}
.pagination span,
.pagination a {
  display: inline-block;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #084467;
  margin: 0px 2px;
}
.pagination a {
  border: 1px solid rgba(8, 68, 103, 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid #084467;
  background: #084467;
  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;
  color: white;
  margin-top: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  padding-left: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  padding-right: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  padding-bottom: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
}
.hero .block {
  background: #2f3180;
  background: linear-gradient(180deg, rgb(47, 49, 128) 42%, rgb(38, 43, 104) 76%, rgb(29, 36, 78) 100%);
  border-radius: clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  padding-top: calc(var(--header-height) + 10%);
}
@media screen and (max-width: 1400px) {
  .hero .block {
    padding-top: calc(var(--header-height) + 5%);
  }
}
@media screen and (max-width: 600px) {
  .hero .block {
    padding-top: calc(var(--header-height) + 8%);
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.hero .hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  text-wrap: pretty;
}
@media screen and (max-width: 600px) {
  .hero .hero-content {
    text-wrap: balance;
  }
}
.hero .hero-bg {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}
.hero .hero-video {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}
.hero .hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -100;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.text-block h2 {
  color: #2f3180;
}
.text-block .text-content {
  max-width: 65ch;
  margin: 0 auto;
  text-align: center;
  color: #1d244e;
}
.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;
}
.cta:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta .button-container .foe-button {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.cta .cta-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     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;
  }
}

.contact-block .contact-intro {
  flex: 0 0 40%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .contact-block .contact-intro {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.contact-block .contact-intro .address {
  padding: 1em 0px;
}
.contact-block .contact-form {
  flex: 0 0 60%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .contact-block .contact-form {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}

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

.post-list {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
}
.post-list .post {
  flex: 0 0 31.33333%;
  margin: 0px 3% 3% 0px;
  background: #f4f4f4;
}
.post-list .post:nth-of-type(3n + 3) {
  margin-right: 0px;
}
.post-list .post .post-img {
  width: 100%;
  padding-top: 65%;
  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: #084467;
  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: rgb(231.25, 231.25, 231.25) url("/wp-content/themes/foe/images/shell/foe.svg") center center no-repeat;
  background-size: 25%;
}
.post-list .post .post-img .category {
  display: inline-block;
  background: #084467;
  color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  font-weight: bold;
  font-size: 0.75em;
}
@media screen and (max-width: 600px) {
  .post-list .post .post-img .category {
    position: sticky;
    top: 0;
  }
}
.post-list .post .post-text {
  padding: 1em 1.5em;
}
.post-list .load {
  flex: 0 0 100%;
  text-align: center;
  order: 9999;
}
.post-list .load .foe-button {
  margin-right: 0px;
}

.post-content .inner {
  max-width: 900px;
  margin: 0 auto;
}
.post-content .post-head {
  flex: 0 0 100%;
}
.post-content .post-img {
  aspect-ratio: 10/5;
  position: relative;
  flex: 0 0 100%;
  margin: 1em 0px 2em 0px;
}
.post-content .post-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content .post-text {
  flex: 0 0 100%;
}
.post-content .post-links {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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: #f4f4f4;
  margin: 2em 0px;
  padding: 1.5em 1.5em 1.5em 3.75em;
  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: #084467;
}
.wp-block-quote p:last-child {
  margin-bottom: 0px;
}

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

.faq-block .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 #084467;
  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: "cora", sans-serif;
  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: #084467;
  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;
}

.slider-block {
  overflow: hidden;
  background: #108690;
  color: white;
  position: relative;
}
.slider-block .graphic {
  pointer-events: none;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/htpn-icon-background.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/htpn-icon-background.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  max-width: 600px;
  background: #2f3180;
  opacity: 0.1;
  position: absolute;
  top: -5%;
  right: -10%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1200px) {
  .slider-block .graphic {
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .slider-block .graphic {
    max-width: 80%;
    top: -5%;
    right: -30%;
  }
}
.slider-block h1,
.slider-block h2,
.slider-block h3,
.slider-block h4,
.slider-block h5,
.slider-block h6 {
  color: #fcc614;
}
.slider-block .block {
  padding-bottom: 8%;
}
.slider-block .slider-intro {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.slider-block .slider-intro .content {
  flex: 0 0 40%;
}
@media screen and (max-width: 1024px) {
  .slider-block .slider-intro .content {
    flex: 0 0 60%;
  }
}
@media screen and (max-width: 800px) {
  .slider-block .slider-intro .content {
    flex: 0 0 100%;
  }
}
.slider-block .slider-intro .controls {
  justify-content: flex-end;
  width: auto;
  display: flex;
  gap: 0.5em;
}
@media screen and (max-width: 800px) {
  .slider-block .slider-intro .controls {
    width: 100%;
    margin-bottom: 0;
  }
}
.slider-block .inner {
  display: block;
}
.slider-block .slider {
  width: 100%;
}
.slider-block .slider .slide {
  width: 100%;
  position: relative;
  max-width: 900px;
}
@media screen and (max-width: 1200px) {
  .slider-block .slider .slide {
    max-width: 80vw;
  }
}
.slider-block .slider .slide.swiper-slide-active .slide-content {
  opacity: 1;
}
.slider-block .slider .slide .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  aspect-ratio: 14/9;
  overflow: hidden;
  max-width: 900px;
}
@media screen and (max-width: 1200px) {
  .slider-block .slider .slide .image-wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .slider-block .slider .slide .image-wrapper {
    aspect-ratio: 4/3;
  }
}
.slider-block .slider .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-block .slider .slide .slide-content {
  max-width: 1000px;
  position: relative;
  z-index: 5;
  color: white;
  margin-top: 5%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 500px) {
  .slider-block .slider .slide .slide-content {
    padding: 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: #084467;
}
.slider-block .slider .slide .slide-content .button-container .foe-button::after {
  background-color: #084467;
}

.controls {
  margin-top: 1em;
  margin-bottom: 1em;
}
.controls .arrows {
  display: flex;
  align-items: center;
}
.controls .arrows .button-prev {
  margin-right: 0.5em;
}
.controls .slider-pagination,
.controls .partner-slider-pagination {
  width: auto;
}
.controls .slider-pagination .swiper-pagination-bullet,
.controls .partner-slider-pagination .swiper-pagination-bullet {
  border: 2px solid rgba(47, 49, 128, 0.2);
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background 0.3s ease-out, border 0.3s ease-out;
}
.controls .slider-pagination .swiper-pagination-bullet:hover,
.controls .partner-slider-pagination .swiper-pagination-bullet:hover {
  border-color: #2f3180;
}
.controls .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.controls .partner-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #084467;
}
.controls .button-next,
.controls .button-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding-left: 3px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  background: #f8f5e7;
  border: 2px solid #f8f5e7;
}
@media screen and (max-width: 600px) {
  .controls .button-next,
  .controls .button-prev {
    width: 34px;
    height: 34px;
  }
}
.controls .button-next:hover,
.controls .button-prev:hover {
  border: 2px solid #fcc614;
  background: #fcc614;
}
.controls .button-next:hover::after,
.controls .button-prev:hover::after {
  transform: scale(0.9);
}
.controls .button-next::after,
.controls .button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.15s ease-in-out;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  margin: auto;
  background: #2f3180;
}
@media screen and (max-width: 600px) {
  .controls .button-next::after,
  .controls .button-prev::after {
    width: 14px;
    height: 14px;
  }
}
.controls .button-prev {
  padding-left: 0px;
  padding-right: 3px;
}
.controls .button-prev::after {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/arrow-prev.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/arrow-prev.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.controls .button-next::after {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/arrow-next.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/arrow-next.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

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

.partners-block {
  border-radius: 0 0 clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem) clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  margin-bottom: -15px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: white;
}
.partners-block + section {
  padding-top: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
}
.partners-block + section.logos-block {
  z-index: 1;
}
.partners-block + section.logos-block .block {
  padding-top: 2em;
}
@media screen and (max-width: 600px) {
  .partners-block + section.logos-block .block {
    padding-top: 0;
  }
}
.partners-block + section.logos-block .block .inner {
  border-top: solid 1px #2f3180;
  padding-top: 5%;
}
.partners-block .inner {
  display: block;
}
.partners-block .block {
  padding-top: 0;
}
.partners-block .partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .partners-block .partners-grid {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .partners-block .partners-grid {
    flex-wrap: nowrap;
  }
}
.partners-block .partners-grid .partner-logo {
  flex: 0 0 calc(18% - 2em);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .partners-block .partners-grid .partner-logo {
    flex: 0 0 calc(16% - 1em);
  }
}
@media screen and (max-width: 600px) {
  .partners-block .partners-grid .partner-logo {
    flex: 0 0 auto;
  }
}
.partners-block .partners-grid .partner-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 125px;
  max-height: 80px;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 600px) {
  .partners-block .partners-grid .partner-logo img {
    max-width: 150px;
    max-height: 100px;
  }
}
.partners-block .partners-grid .partner-logo.featured-mobile {
  display: none;
}
@media screen and (max-width: 600px) {
  .partners-block .partners-grid .partner-logo.featured-mobile {
    display: flex;
  }
}
@media screen and (min-width: 600px) {
  .partners-block .partners-grid .partner-logo.duplicate {
    display: none !important;
  }
}
.partners-block .featured-partners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 4em;
}
@media screen and (max-width: 800px) {
  .partners-block .featured-partners {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .partners-block .featured-partners {
    flex-wrap: nowrap;
  }
}
.partners-block .featured-partners .partner-logo {
  flex: 0 0 calc(16.66666% - 2em);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .partners-block .featured-partners .partner-logo {
    flex: 0 0 calc(16% - 1em);
  }
}
@media screen and (max-width: 600px) {
  .partners-block .featured-partners .partner-logo {
    flex: 0 0 calc(25% - 1em);
  }
}
.partners-block .featured-partners .partner-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 125px;
  max-height: 100px;
  aspect-ratio: 4/3;
}
.partners-block .featured-partners {
  margin-bottom: 2em;
}
@media screen and (max-width: 800px) {
  .partners-block .featured-partners {
    display: none;
  }
}
.partners-block .partners-link {
  text-align: center;
  margin-top: 5em;
}

.partner-slider-block {
  overflow: hidden;
  color: white;
  position: relative;
  background: #1d244e;
  background: linear-gradient(0deg, rgb(29, 36, 78) 25%, rgb(28, 40, 81) 40%, rgb(16, 134, 144) 75%);
  border-radius: 0 0 clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem) clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  overflow: hidden;
}
.partner-slider-block .graphic {
  pointer-events: none;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/htpn-icon-background.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/htpn-icon-background.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: top;
          mask-position: top;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  max-width: 600px;
  background: #2f3180;
  opacity: 0.1;
  position: absolute;
  top: -5%;
  right: -10%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1200px) {
  .partner-slider-block .graphic {
    max-width: 8vw;
  }
}
.partner-slider-block h1,
.partner-slider-block h2,
.partner-slider-block h3,
.partner-slider-block h4,
.partner-slider-block h5,
.partner-slider-block h6 {
  color: #fcc614;
  text-wrap: pretty;
}
.partner-slider-block .block {
  padding-bottom: 10%;
}
.partner-slider-block .slider-intro {
  margin-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 800px) {
  .partner-slider-block .slider-intro {
    margin-bottom: 0;
  }
}
.partner-slider-block .slider-intro .content {
  flex: 0 0 40%;
}
@media screen and (max-width: 1024px) {
  .partner-slider-block .slider-intro .content {
    flex: 0 0 60%;
  }
}
@media screen and (max-width: 800px) {
  .partner-slider-block .slider-intro .content {
    flex: 0 0 100%;
  }
}
.partner-slider-block .slider-intro .controls {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  display: flex;
  gap: 0.5em;
}
@media screen and (max-width: 800px) {
  .partner-slider-block .slider-intro .controls {
    width: 100%;
    margin-bottom: 0.5em;
    padding-top: 2em;
  }
}
.partner-slider-block .slider-intro .partner-slider-pagination {
  margin-right: 2em;
}
@media screen and (max-width: 800px) {
  .partner-slider-block .slider-intro .partner-slider-pagination {
    margin-right: 1em;
  }
}
.partner-slider-block .inner {
  display: block;
}
.partner-slider-block .partner-slider {
  width: 100%;
}
.partner-slider-block .partner-slider .slide {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-center;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .partner-slider-block .partner-slider .slide {
    display: block;
  }
}
.partner-slider-block .partner-slider .slide.swiper-slide-active .slide-content {
  opacity: 1;
}
.partner-slider-block .partner-slider .slide .image-col {
  flex: 0 0 55%;
}
.partner-slider-block .partner-slider .slide .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 15/9;
}
.partner-slider-block .partner-slider .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.partner-slider-block .partner-slider .slide .slide-content {
  position: relative;
  z-index: 5;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  padding-top: 2em;
  padding-right: 10%;
  flex: 0 0 45%;
  max-width: 65ch;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .partner-slider-block .partner-slider .slide .slide-content {
    margin-bottom: 2em;
    padding-top: 0;
  }
}
@media screen and (max-width: 500px) {
  .partner-slider-block .partner-slider .slide .slide-content {
    padding: 1em 0;
  }
}
.partner-slider-block .partner-slider .slide .slide-content .slide-logo {
  max-height: 120px;
  max-width: 250px;
  display: flex;
  align-items: flex-start;
  position: relative;
  aspect-ratio: 2.5/1;
  margin-bottom: 2em;
}
.partner-slider-block .partner-slider .slide .slide-content .slide-logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
.partner-slider-block .partner-slider .slide .slide-content h4 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.partner-slider-block .partner-slider .slide .slide-content p {
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  text-align: left;
}
.partner-slider-block .partner-slider .slide .slide-content .button-container {
  justify-content: flex-start;
  margin-top: 40px;
}
.partner-slider-block .partner-slider .slide .slide-content .button-container .foe-button {
  margin: 0;
}
.partner-slider-block .partner-slider .slide .slide-content .button-container .foe-button::before {
  background-color: #084467;
}
.partner-slider-block .partner-slider .slide .slide-content .button-container .foe-button::after {
  background-color: #084467;
}

.logos-block {
  border-radius: 0 0 clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem) clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  margin-bottom: -15px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: white;
}
.logos-block + section,
.logos-block + footer {
  padding-top: 15px;
}
.logos-block .inner {
  display: block;
}
.logos-block .intro {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5%;
  text-wrap: balance;
}
.logos-block .intro h1,
.logos-block .intro h2,
.logos-block .intro h3,
.logos-block .intro h4,
.logos-block .intro h5,
.logos-block .intro h6 {
  color: #2f3180;
}
.logos-block .logos-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 5%;
}
@media screen and (max-width: 600px) {
  .logos-block .logos-grid {
    display: none;
  }
}
.logos-block .logo {
  flex: 0 0 calc(25% - 2em);
  display: flex;
  justify-content: center;
  align-items: center;
}
.logos-block .logo:nth-child(1), .logos-block .logo:nth-child(2), .logos-block .logo:nth-child(3) {
  flex: 0 0 calc(26% - 2em);
}
.logos-block .logo a {
  display: flex;
  text-align: center;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.logos-block .logo a:hover img {
  transform: scale(1.05);
}
.logos-block .logo a:hover span {
  text-decoration: underline;
}
.logos-block .logo span {
  display: block;
  transition: -webkit-text-decoration 0.3s ease-out;
  transition: text-decoration 0.3s ease-out;
  transition: text-decoration 0.3s ease-out, -webkit-text-decoration 0.3s ease-out;
  text-underline-offset: 0.3em;
  margin-top: 0.5em;
  color: #2f3180;
}
.logos-block .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 125px;
  max-height: 100px;
  aspect-ratio: 4/3;
  transition: transform 0.3s ease-out;
}
.logos-block .logos-slider {
  display: none;
  padding-top: 8%;
}
@media screen and (max-width: 600px) {
  .logos-block .logos-slider {
    display: block;
  }
}
.logos-block .logos-slider .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-top: 2em;
}
.logos-block .logos-slider .controls .logos-slider-pagination {
  width: auto;
  margin: 0 1em;
}
.logos-block .logos-slider .controls .button-prev,
.logos-block .logos-slider .controls .button-next {
  display: block;
  width: 35px;
  height: 35px;
  padding: 0;
  border-radius: 50%;
  background: #fcc614;
  border: 2px solid #fcc614;
}
.logos-block .logos-slider .controls .button-prev:hover,
.logos-block .logos-slider .controls .button-next:hover {
  background: #108690;
  border: 2px solid #108690;
}
.logos-block .logos-slider .controls .button-prev:hover::after,
.logos-block .logos-slider .controls .button-next:hover::after {
  background: white;
}
.logos-block .featured-partners {
  margin-bottom: 2em;
}
.logos-block .partners-link {
  text-align: center;
  margin-top: 5em;
}
.logos-block .cta-content {
  padding: 5%;
  background: #108690;
  color: white;
  border-radius: clamp(0.5rem, 0.1719rem + 0.875vw, 0.9375rem);
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 3em;
  text-wrap: balance;
}
@media screen and (max-width: 800px) {
  .logos-block .cta-content {
    padding: 2em;
  }
  .logos-block .cta-content br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .logos-block .cta-content {
    margin-top: 5em;
  }
}
.logos-block .cta-content h4 {
  margin: 0;
}

.resources-block {
  background: #ffffff;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 214, 80, 0.8) 37%, rgba(255, 195, 0, 0.8) 100%);
  color: #2f3180;
}
.resources-block .inner {
  display: block;
}
.resources-block .resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
@media screen and (max-width: 600px) {
  .resources-block .resources-grid {
    flex-direction: column;
    padding-top: 5%;
    position: relative;
  }
}
.resources-block .resource-category {
  flex: 0 0 calc(50% - 1em);
  padding-top: 5%;
}
@media screen and (max-width: 600px) {
  .resources-block .resource-category {
    flex: 0 0 100%;
    padding-top: 0;
  }
}
.resources-block .resource-category .category {
  border-bottom: 1px solid #2f3180;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
@media screen and (max-width: 1400px) {
  .resources-block .resource-category .category {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 600px) {
  .resources-block .resource-category .category {
    min-height: auto;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    background: #2f3180;
    color: white;
    z-index: 2;
    padding: 1rem 0.8rem;
    border-radius: 8px;
  }
}
.resources-block .resource-category .resource-item {
  padding: 1em 0;
  padding-right: 1em;
  margin: 0.5em 0;
  border-bottom: 1px solid #2f3180;
  min-height: 150px;
}
@media screen and (max-width: 600px) {
  .resources-block .resource-category .resource-item {
    min-height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
    margin: 0 auto;
    padding-right: 0;
  }
}
.resources-block .resource-category .resource-item:first-child {
  padding-top: 0;
}
.resources-block .resource-category h4 {
  font-size: clamp(1rem, 0.8125rem + 0.5vw, 1.25rem);
  margin: 0;
  line-height: 1.2;
  max-width: 32em;
  text-wrap: pretty;
}
@media screen and (max-width: 1100px) {
  .resources-block .resource-category h4 {
    padding-right: 2em;
  }
}
@media screen and (max-width: 800px) {
  .resources-block .resource-category h4 {
    max-width: 18em;
  }
}
.resources-block .resource-category .resource-item-description {
  max-width: 32em;
  text-wrap: pretty;
  margin-top: 0.5em;
}
@media screen and (max-width: 600px) {
  .resources-block .resource-category .resource-item-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.resources-block .resource-category h3 {
  line-height: 1.2;
  margin: 0;
  font-size: clamp(1.125rem, 0.4687rem + 1.75vw, 2rem);
}
.resources-block .resource-category a {
  position: relative;
  display: block;
}
.resources-block .resource-category a:hover {
  color: #108690;
}
.resources-block .resource-category a:hover::after {
  background: #108690;
}
.resources-block .resource-category a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  height: clamp(1rem, 0.5781rem + 1.125vw, 1.5625rem);
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/link.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/link.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: #2f3180;
}

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

#landing .landing-container {
  display: block;
}
#landing .landing-container.side-by-side {
  display: flex;
}
#landing .brand-col,
#landing .content-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  color: white;
  flex: 0 0 50%;
  padding-top: 10%;
  position: relative;
}
@media screen and (max-width: 600px) {
  #landing .brand-col,
  #landing .content-col {
    padding: 15% 5%;
  }
}
#landing .brand-col .bg-image-left,
#landing .brand-col .bg-image-right,
#landing .content-col .bg-image-left,
#landing .content-col .bg-image-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#landing .brand-col .inner,
#landing .content-col .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
#landing .brand-col {
  background: #084467;
}
#landing .brand-col .site-logo img {
  max-width: 13vw;
  min-width: 100px;
}
#landing .brand-col .coming-soon {
  padding-top: 10%;
}
#landing .content-col {
  background: #2f3180;
  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: #084467;
  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: #084467;
}
#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: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0px 1em;
  height: 3em;
  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: 1px solid #084467;
}

textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 10em;
  transition: border 0.3s ease-out;
  padding: 0.8em 1em;
}
textarea:focus {
  outline: none;
  border: 1px solid #084467;
}

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;
  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 #084467;
  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: "parabolica", sans-serif;
  line-height: 1.4;
  font-size: 1em;
  padding: 0px;
  color: white;
  display: flex;
  align-items: center;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error .gform-icon,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error .gform-icon {
  position: relative;
  inset-inline-start: 0px;
  margin-right: 0.5em;
}
body .gform_wrapper.gravity-theme .validation_error ol,
body .gform_wrapper.gravity-theme .gform_validation_errors ol {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li a,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: white;
}
body .gform_wrapper.gravity-theme .gform_fields {
  margin: 0px;
  padding: 0px;
  grid-column-gap: 2%;
}
body .gform_wrapper.gravity-theme .gform_fields 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: #2f3180;
  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: #2f3180;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label {
  font-size: 14px;
  padding: 0px 0px 8px 0px;
  margin-bottom: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 3em;
  padding: 0px 1em;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: #084467;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 10em;
  padding: 0.8em 1em;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: #084467;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  background: #f4f4f4 url("/wp-content/themes/foe/images/shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  border-radius: 2px;
  height: 40px;
  padding: 0px 15px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  background-color: rgb(231.25, 231.25, 231.25);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: #084467 !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;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: #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: #084467 !important;
  box-shadow: 0px 0px 0px 3px #084467;
}
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;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_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;
}
body .gform_wrapper.gravity-theme input[type=submit] {
  height: auto;
  padding: 15px 25px;
  background: #084467;
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  margin: 0px 1em 0px 0px;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: #000;
}
@media screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    line-height: inherit;
    min-height: 0px;
    width: auto;
  }
}

.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;
  transition: background 0.2s ease-out;
}
.search-form .search-field:focus {
  outline: none;
  background: rgb(231.25, 231.25, 231.25);
}
.search-form .search-submit {
  background: rgb(231.25, 231.25, 231.25) url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  background-size: 17px;
  padding: 0px;
  width: 44px;
  border: none;
  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;
  background-size: 17px;
}

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

.ajax-spinner {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 5;
  display: none;
  justify-content: center;
  padding: 18% 0px 0px 0px;
}
.ajax-spinner .spinner {
  margin: 0 auto;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(8, 68, 103, 0.45);
  border-top: 4px solid #084467;
  animation: spin 2s linear infinite;
}/*# sourceMappingURL=styles.css.map */