/*
Global Variables

@import this file at the top of each page 
template file to make variables available.
*/
/*
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: 1em 40px;
}

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: rgb(4.3243243243, 36.7567567568, 55.6756756757);
}

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;
  }
}
/*--------------------------------------------------------------
# Social Sharing
--------------------------------------------------------------*/
.foe-share ul,
.foe-share li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.foe-share li {
  display: inline-block;
}
.foe-share li a {
  display: block;
}
.foe-share li svg {
  width: 20px;
  height: 20px;
  display: block;
}
.foe-share li path {
  transition: fill 0.3s ease-out;
}

/*--------------------------------------------------------------
# Wysiwyg Image Resets
--------------------------------------------------------------*/
img.alignright {
  float: right;
  margin: 0 0 1.5em 1.5em;
}

img.alignleft {
  float: left;
  margin: 0 1.5em 1.5em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# 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");
}
@font-face {
  font-family: "Ramillas";
  font-weight: 500;
  src: local(""), url("../fonts/TT_Ramillas_Medium.woff") format("woff"), url("../fonts/TT_Ramillas_Medium.woff2") format("woff2"), url("../fonts/TT_Ramillas_Medium.ttf") format("truetype"), url("../fonts/TT_Ramillas_Medium.otf") format("opentype");
}
@font-face {
  font-family: "Larsseit";
  font-weight: 400;
  src: local(""), url("../fonts/Larsseit-Regular.ttf") format("truetype");
}
/*
GLOBALS
*/
body {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #084467;
  transition: color 0.2s ease-out;
}
a:hover {
  color: rgb(4.3243243243, 36.7567567568, 55.6756756757);
}

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

/*
HEADINGS
*/
h1,
.primary-heading {
  font-family: "IBM Plex Sans Condensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: clamp(1.8em, 3vw, 2.77em);
  line-height: 1.1;
  margin: 0.4em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 600;
}

h2,
.secondary-heading {
  font-family: "IBM Plex Sans Condensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: clamp(1.5em, 3vw, 2.3em);
  font-weight: 600;
  line-height: 1.1;
  margin: 0.4em 0px 0.8em;
  display: block;
  text-wrap: balance;
}

h3,
.small-heading {
  font-family: "IBM Plex Sans Condensed", Helvetica, Arial, Lucida, sans-serif;
  font-size: 1.3em;
  line-height: 1.4;
  margin: 0.4em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}

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

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

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

.foe-button {
  display: inline-block;
  padding: 1em 2em;
  line-height: 1.2;
  background: #084467;
  color: white;
  border-radius: 5px;
  font-weight: bold;
  margin: 0px 1em 1em 0px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.foe-button:hover {
  background: rgb(4.3243243243, 36.7567567568, 55.6756756757);
  color: white;
}

/*
Header and Navigation Styling
*/
#sticky-target {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

#header {
  background: #f4f4f4;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  #header {
    padding: 0;
  }
}
#header.sticky-header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
}

.site-branding {
  line-height: 0px;
  font-size: 0px;
}
.site-branding .site-logo {
  height: 60px;
}

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 {
  position: relative;
}
#header_nav li:hover > a {
  color: #084467;
  background: rgba(0, 0, 0, 0.05);
}
#header_nav li a {
  color: #444444;
  text-decoration: none;
  padding: 0.5em 1em;
  display: inline-block;
  font-weight: 400;
  transition: color 0.2s ease-out;
}
@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: #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: 900px) {
  #mobile_nav[style] {
    display: none !important;
  }
}

#mobile_nav {
  display: none;
  clear: both;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 0px;
  right: 0px;
  background: rgb(231.25, 231.25, 231.25);
  padding: 15px 0px;
}
#mobile_nav li {
  position: relative;
}
#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;
  background-size: 11px;
  transition: transform 0.3s ease-out;
}
#mobile_nav li.menu-item-has-children.open > a:after {
  transform: rotate(-90deg);
}
#mobile_nav li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  color: #444444;
  transition: background 0.2s ease-out;
}
#mobile_nav li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#mobile_nav li .sub-menu {
  display: none;
}
#mobile_nav li .sub-menu a {
  opacity: 0.5;
}

.nav-toggle {
  padding: 19px 20px;
  border: none;
  display: none;
  background: none;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: #444444;
  width: 20px;
  height: 2px;
  margin: 4px 0px;
  transform-origin: 50% 50%;
  border-radius: 2px;
  transition: all 0.4s 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: rgba(0, 0, 0, 0.13);
}
.nav-toggle:hover {
  background: rgba(0, 0, 0, 0.13);
}

/*
Footer and Navigation Styling
*/
.site-footer {
  padding: 8% 10%;
  background: #f4f4f4;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 800px) {
  .site-footer {
    justify-content: center;
  }
}
.site-footer .footer-branding {
  line-height: 0px;
  font-size: 0px;
}
.site-footer .footer-branding .footer-logo {
  height: 60px;
}
.site-footer .footer-social .social-links {
  display: flex;
}
.site-footer .footer-social .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;
}
.site-footer .footer-social .social-links a:hover {
  background: #444444;
}
.site-footer .footer-social .social-links a svg {
  max-height: 20px;
  max-width: 20px;
}
.site-footer .footer-social .social-links a svg path {
  fill: white;
}
.site-footer .footer-legal {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  padding: 4rem 0px 0px 0px;
}
.site-footer .footer-legal a {
  color: #444444;
  text-decoration: underline;
}
.site-footer .footer-legal a:hover {
  color: #084467;
}

#footer_nav {
  display: flex;
}
@media screen and (max-width: 800px) {
  #footer_nav {
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0px;
  }
}
#footer_nav li {
  position: relative;
}
@media screen and (max-width: 800px) {
  #footer_nav li {
    width: 100%;
  }
}
#footer_nav li a {
  color: #444444;
  text-decoration: none;
  padding: 10px 25px;
  display: inline-block;
  transition: color 0.2s ease-out;
}
#footer_nav li a:hover {
  color: #084467;
}
@media screen and (max-width: 800px) {
  #footer_nav li a {
    display: block;
    width: 100%;
    padding: 8px 25px;
  }
}
#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.
*/
.site-main {
  padding: 8% 10%;
}
@media screen and (max-width: 800px) {
  .site-main {
    padding: 9% 8%;
  }
}

.block {
  padding: 8% 10%;
}
@media screen and (max-width: 800px) {
  .block {
    padding: 9% 8%;
  }
}
.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;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.hero .hero-content {
  max-width: 600px;
}
.hero .hero-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;
}

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

.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;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 0.75em;
}
.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;
}

.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: "IBM Plex Sans Condensed", Helvetica, Arial, Lucida, 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 .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: #084467;
}
.slider-block .slider .slide img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
}
.slider-block .slider .slide .slide-text {
  padding: 5vw;
  max-width: 1440px;
  position: relative;
  z-index: 5;
  color: white;
}
@media screen and (max-width: 500px) {
  .slider-block .slider .slide .slide-text {
    padding: 25px 0;
  }
}
.slider-block .slider .slide .slide-text h4 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.slider-block .slider .slide .slide-text p {
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  text-align: left;
}
.slider-block .slider .slide .slide-text .button-container {
  justify-content: flex-start;
  margin-top: 40px;
}
.slider-block .slider .slide .slide-text .button-container .foe-button {
  margin: 0;
}
.slider-block .slider .slide .slide-text .button-container .foe-button::before {
  background-color: #084467;
}
.slider-block .slider .slide .slide-text .button-container .foe-button::after {
  background-color: #084467;
}
.slider-block .slider .controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-block .slider .controls .slider-pagination .dot {
  border: 2px solid #444444;
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
.slider-block .slider .controls .slider-pagination .dot--active {
  background-color: #444444;
}
.slider-block .slider .controls .slider-arrows {
  display: flex;
  align-items: center;
}
.slider-block .slider .controls .slider-arrows > div {
  display: block;
  right: 45px;
  height: 40px;
  width: 40px;
  background-color: rbga(0, 0, 0, 0);
  background-size: cover;
  cursor: pointer;
  border-radius: 50rem;
  margin-left: 10px;
}
.slider-block .slider .controls .slider-arrows .slider-prev {
  background-image: url("../../images/icons/prev.jpg");
}
.slider-block .slider .controls .slider-arrows .slider-next {
  background-image: url("../../images/icons/next.jpg");
}

.page-id-349 #header {
  display: none;
}
.page-id-349 .site-footer {
  display: none;
}

#landing .site-main {
  padding: 0;
  display: flex;
  text-align: center;
}
@media screen and (max-width: 900px) {
  #landing .site-main {
    flex-direction: column;
  }
}
#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;
}
@media screen and (max-width: 900px) {
  #landing .brand-col .bg-image-left,
  #landing .content-col .bg-image-left {
    -o-object-position: top;
       object-position: top;
  }
}
#landing .brand-col .inner,
#landing .content-col .inner {
  position: sticky;
  top: 20%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
#landing .brand-col {
  background: #084467;
}
#landing .brand-col .lines-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  #landing .brand-col .lines-1 {
    height: 5em;
  }
}
#landing .brand-col .lines-2 {
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  #landing .brand-col .lines-2 {
    height: 5em;
  }
}
#landing .brand-col .site-logo img {
  max-width: 13vw;
  min-width: 100px;
}
#landing .brand-col .coming-soon {
  padding-top: 10%;
}
#landing .content-col {
  background: #444444;
  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: 3rem;
  border-radius: 30px;
  border: none;
  padding-left: 1.5em;
}
#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: 3rem;
  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;
  align-items: center;
}
#landing .social-links .custom-social-link {
  margin-bottom: 10px;
  margin-left: 10px;
}
#landing .social-links a:not(.custom-social-link) {
  width: 30px;
  display: block;
  align-items: center;
  justify-content: center;
  margin: 0;
  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: #f4f4f4;
  height: 3em;
  transition: border 0.3s ease-out;
  padding: 0px 1.3em;
}
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: #f4f4f4;
  height: 6em;
  transition: border 0.3s ease-out;
  padding: 1em 1.3em;
}
textarea:focus {
  outline: none;
  border: 1px solid #084467;
}

select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f4f4f4 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;
}

#page .gform_wrapper {
  margin: 0px;
}
#page .gform_wrapper .gform_validation_errors > h2 {
  color: white;
  padding-left: 20px;
  line-height: 1.4;
  position: relative;
}
#page .gform_wrapper .gform_validation_errors > h2:before {
  position: absolute;
  left: 0px;
  top: 3px;
}
#page .gform_wrapper .gform_validation_errors > h2 .gform-icon {
  height: 60px;
}
#page .gform_wrapper .validation_error,
#page .gform_wrapper .gform_validation_errors {
  background: #444444;
  color: white;
  border: none;
  border-radius: 0px;
  padding: 1.75em 2em;
  margin: 0px 0px 1.5em 0px;
  width: auto;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
#page .gform_wrapper .validation_error .gform_submission_error,
#page .gform_wrapper .gform_validation_errors .gform_submission_error {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  padding: 0px;
}
#page .gform_wrapper .validation_error .gform_submission_error .gform-icon,
#page .gform_wrapper .gform_validation_errors .gform_submission_error .gform-icon {
  display: none;
}
#page .gform_wrapper .validation_error ol,
#page .gform_wrapper .gform_validation_errors ol {
  margin: 0px;
}
#page .gform_wrapper .validation_error ol li,
#page .gform_wrapper .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
#page .gform_wrapper .validation_error ol li a,
#page .gform_wrapper .gform_validation_errors ol li a {
  color: white;
}
#page .gform_wrapper .gform_fields {
  margin: 0px;
  padding: 0px;
  grid-column-gap: 2%;
}
#page .gform_wrapper .gform_fields fieldset.gfield {
  width: 102%;
  margin-left: -1%;
}
#page .gform_wrapper .gform_fields fieldset.gfield > legend {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields fieldset.gfield .ginput_container_address span {
  padding-left: 1%;
  padding-right: 1%;
}
#page .gform_wrapper .gform_fields .gfield {
  width: 100%;
  clear: none;
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error {
  background: none;
  border: none;
  max-width: none !important;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container input,
#page .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: red;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .validation_message {
  padding: 10px 0px 0px 0px;
  color: #444444;
  border: none;
  background: none;
  margin: 0px;
  color: red;
  font-size: 0.8em;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .gfield_label {
  margin-top: 0px;
  color: #444444;
}
#page .gform_wrapper .gform_fields .gfield label {
  font-size: 14px;
  padding: 0px 0px 8px 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 44px;
  padding: 0px 15px;
  background: #f4f4f4;
  border-radius: 2px;
  border: 1px solid #f4f4f4;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  background: rgb(231.25, 231.25, 231.25);
  border-color: #084467;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 150px;
  padding: 10px 15px;
  background: #f4f4f4;
  border-radius: 2px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  background: rgb(231.25, 231.25, 231.25);
}
#page .gform_wrapper .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;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  background-color: rgb(231.25, 231.25, 231.25);
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: #084467 !important;
}
#page .gform_wrapper .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;
}
#page .gform_wrapper .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;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: #cfd2d3;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input {
  display: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input:checked + label:after {
  background: #084467 !important;
  box-shadow: 0px 0px 0px 3px #084467;
}
#page .gform_wrapper .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;
}
#page .gform_wrapper .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;
}
#page .gform_wrapper .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;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #e0e1e2;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
#page .gform_wrapper .gform_footer {
  margin: 0px;
  padding: 0px;
}
#page .gform_wrapper input[type=submit] {
  height: auto;
  padding: 15px 25px;
  background: #084467;
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  margin-right: 1em;
  transition: background 0.2s ease-out;
}
#page .gform_wrapper input[type=submit]:hover {
  background: rgb(4.3243243243, 36.7567567568, 55.6756756757);
}
@media screen and (max-width: 641px) {
  #page .gform_wrapper 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 */