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

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 {
  margin: 0;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  position: relative;
  font-style: normal;
  padding-left: 1em;
  max-width: 30em;
  text-wrap: balance;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #003199;
}
@media screen and (max-width: 800px) {
  blockquote {
    font-size: 1.1rem;
  }
}
blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #003199, #FF5959);
  border-radius: 1000px;
}
blockquote p:first-child em {
  font-style: normal;
}
blockquote p:first-child::after {
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.4em;
  color: #003199;
  margin-left: 0.2em;
  position: absolute;
  right: 0.2em;
  bottom: 0;
}

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: #003199;
}

a:hover,
a:focus,
a:active {
  color: rgb(0, 32.6666666667, 102);
}

a:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

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

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

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

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

/*
Fonts Styling

@font-face imports included here along with heading and button styles.
*/
@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: local(""), url("../fonts/Manrope-Regular.woff") format("woff"), url("../fonts/Manrope-Regular.ttf") format("truetype"), url("../fonts/Manrope-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 700;
  src: local(""), url("../fonts/Manrope-Bold.woff") format("woff"), url("../fonts/Manrope-Bold.ttf") format("truetype"), url("../fonts/Manrope-Bold.otf") format("opentype");
}
/*
GLOBALS
*/
body {
  font-family: "Poppins", sans-serif;
  font-display: swap;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #003199;
  transition: color 0.2s ease-out;
}
a:hover {
  color: rgb(0, 32.6666666667, 102);
}

ul,
ol {
  margin-left: 0px;
  padding-left: 1.8em;
}
@media screen and (max-width: 800px) {
  ul,
  ol {
    padding-left: 1em;
  }
}

/*
HEADINGS
*/
h1,
.primary-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 1.875rem + 1vw, 2.75rem);
  display: block;
  font-weight: 500;
  line-height: 1.2;
  margin: 0.4em 0px 1em;
  letter-spacing: -0.02em;
}
h1:has(+ h2),
.primary-heading:has(+ h2) {
  margin-bottom: 0.25em;
}
h1 strong,
.primary-heading strong {
  font-size: clamp(3rem, 1.8438rem + 5.75vw, 6.875rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0 0 0.2em;
  opacity: 0;
}
h1 strong .split-line,
.primary-heading strong .split-line {
  background: linear-gradient(to right, #3263c9 20%, #ff5959 40%, #ff5959 60%, #3263c9 80%);
  background-size: 200% auto;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 14s linear infinite;
  font-weight: 400;
}

h2,
.secondary-heading {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-size: clamp(1.75rem, 1.5625rem + 0.5vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0.4em 0px 1em;
  display: block;
  text-wrap: balance;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  h2,
  .secondary-heading {
    margin: 0.4em 0px 0.5em;
  }
}

h3,
.small-heading {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 1.125rem + 1vw, 2rem);
  line-height: 1.4;
  margin: 0 0 1.5rem;
  display: block;
  text-wrap: balance;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  h3,
  .small-heading {
    line-height: 1.2;
  }
}

h4,
.sub-heading {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

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

.line-wrapper {
  overflow: hidden;
}

/*
LINKS
*/
.foe-link {
  display: inline-block;
  background: url("/wp-content/themes/foe/images/shell/arrow-right-dark.svg") right center no-repeat;
  background-size: 14px;
  background-position: 98% 50%;
  padding: 0.5em 1.3em 0.5em 0px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  will-change: background-position;
  transition: all 0.2s ease-out;
}
.foe-link:hover {
  color: #FF5959 !important;
  background-position: 100% 50%;
}

.foe-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  line-height: 1.2;
  background: #003199;
  color: white;
  border-radius: 8px;
  font-weight: 400;
  margin: 0px 1em 1em 0px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 800px) {
  .foe-button {
    margin: 0px 0px 1em 0px;
    font-size: 90%;
    padding: 0.8rem 1.2rem;
  }
}
.foe-button:hover {
  background: #FF5959;
  color: white;
  transform: scale(1.02);
}
.foe-button:active {
  transform: scale(0.98);
}
.foe-button.red {
  background: #FF5959;
}
.foe-button.red:hover {
  background: white;
  color: #FF5959;
}

.gradient {
  background: linear-gradient(to right, #3263c9 20%, #ff5959 40%, #ff5959 60%, #3263c9 80%);
  background-size: 200% auto;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 14s linear infinite;
}

@keyframes shine {
  to {
    background-position: 400% center;
  }
}
/*
Header and Navigation Styling
*/
body #header svg path {
  fill: #FF5959;
}
body #header .foe-button {
  background: #FF5959;
  color: white;
}
@media screen and (max-width: 900px) {
  body #header .foe-button {
    display: none;
  }
}
body #header .foe-button:hover {
  background: white;
  color: #FF5959;
}
body.blue-to-white #header svg path {
  fill: white;
}
body.blue-to-white #header a:not(.foe-button) {
  color: white;
}
body.blue-to-white #header #header_nav li a:after {
  background: #FF5959;
}
body.blue-to-white .nav-toggle span {
  background: white;
}
body.white-blue-white #header .foe-button:hover {
  background: #003199;
  color: white;
}
body.white-blue-white #header.scrolled a:not(.foe-button) {
  color: white;
}
body.white-blue-white #header.scrolled .foe-button:hover {
  background: white;
  color: #FF5959;
}
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 {
  overflow: hidden;
  background: transparent;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  transition: box-shadow 0.3s ease-out, background 0.3s ease-out, padding 0.3s ease-out;
  will-change: padding;
}
@media screen and (max-width: 900px) {
  #header {
    padding: 10px 0;
  }
}
#header .main-nav {
  margin-left: auto;
  margin-right: auto;
}
#header .header-button {
  margin: 0px;
}
#header .header-inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header::after {
  content: "";
  backdrop-filter: blur(20px) saturate(100%);
  -webkit-backdrop-filter: blur(20px) saturate(100%);
  background-color: black;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease-out;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 900px) {
  #header.scrolled {
    padding: 0 0;
  }
}
#header.scrolled::after {
  opacity: 1;
}
#header.scrolled svg path {
  fill: white !important;
}
#header.open::after {
  opacity: 0 !important;
}
#header.open svg path {
  fill: white !important;
}

/*
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;
}
.site-branding .site-logo {
  height: 60px;
}
@media screen and (max-width: 900px) {
  .site-branding .site-logo {
    padding: 10px 20px;
  }
}

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

#header_nav {
  display: flex;
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}
#header_nav > li.current-menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: white;
  transform: scaleX(1);
  transform-origin: 0% 50%;
  transition: transform 0.4s ease-out;
  z-index: -1;
}
#header_nav > li.current-menu-item:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
  background: #FF5959;
}
#header_nav li {
  position: relative;
  padding: 0px 1em;
}
#header_nav li:hover > a {
  color: #003199;
}
#header_nav li:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
#header_nav li a {
  color: #000;
  text-decoration: none;
  padding: 0.5em 0px;
  line-height: 1.1;
  display: inline-block;
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease-out;
}
#header_nav li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #003199;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.4s 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: #003199;
  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: #003199;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
#header_nav li .sub-menu li,
#header_nav li .children li {
  background: #003199;
  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;
  }
}

.mobile-nav {
  display: none;
  background: linear-gradient(180deg, rgb(0, 49, 153) 15%, rgb(50, 99, 201) 100%);
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100svh;
  padding: calc(60px + 2em) 1em 3em 2em;
  overflow: hidden;
}
.mobile-nav .graphic {
  position: absolute;
  bottom: 0;
  right: -15%;
  width: 100%;
  max-width: 30em;
  pointer-events: none;
}
.mobile-nav .foe-button {
  display: block !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5em 0;
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.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 .mobile-nav-inner .mobile-contact {
  margin-top: 2em;
  color: white;
}
.mobile-nav .mobile-nav-inner .mobile-contact a {
  color: white;
}
.mobile-nav .mobile-nav-inner .mobile-contact a:not(.social-links a) {
  margin-bottom: 0.5em;
  display: block;
}
.mobile-nav .mobile-nav-inner .mobile-contact a svg path {
  fill: white;
}
.mobile-nav .mobile-nav-inner .mobile-contact a:hover {
  color: #FF5959;
}
.mobile-nav .mobile-nav-inner .mobile-contact a:hover svg path {
  fill: #FF5959;
}
.mobile-nav .foe-button {
  background: #FF5959;
}
.mobile-nav .foe-button:hover {
  background: white;
  color: #FF5959;
}

#mobile_nav {
  clear: both;
  padding: 1em 0px;
  list-style-type: none;
  padding-top: 0;
  padding-bottom: 0;
}
#mobile_nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
#mobile_nav ul > li.current_page_item {
  position: relative;
}
#mobile_nav ul > li.current_page_item::before {
  content: "";
  transform: scaleX(1);
  transform-origin: 0% 50%;
  height: 2px;
  background: white;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  width: calc(100% - 2em);
}
#mobile_nav li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#mobile_nav li.menu-item-has-children > a {
  position: relative;
}
#mobile_nav li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0px;
  width: 30px;
  height: 30px;
  margin: auto;
  transform-origin: 50% 50%;
  transform: rotate(90deg);
  background: url("/wp-content/themes/foe/images/shell/arrow.svg") center center no-repeat;
  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: inline-block;
  text-decoration: none;
  padding: 0.25rem 0px;
  color: white;
  font-size: 2rem;
  font-weight: 500;
  transition: background 0.2s ease-out;
}
#mobile_nav li .sub-menu {
  display: none;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: none;
  display: none;
  background: rgb(0, 65.3333333333, 204);
  border-radius: 8px;
  margin-left: 1rem;
  margin-right: 1rem;
  padding: 0;
  position: relative;
  transition: background 0.2s ease-out;
}
.nav-toggle::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
}
@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: white !important;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.nav-toggle span.one {
  width: 24px;
  height: 2px;
  position: absolute;
}
.nav-toggle span.two {
  height: 24px;
  width: 2px;
}
.nav-toggle.open {
  background: #FF5959 !important;
}
.nav-toggle.open span {
  transform: rotate(135deg);
}
.nav-toggle:hover, .nav-toggle:active, .nav-toggle:focus {
  background: rgb(0, 65.3333333333, 204);
}

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

/*
Footer and Navigation Styling
*/
.site-footer {
  padding: 8% 5.6% 2em;
}
@media screen and (max-width: 800px) {
  .site-footer {
    justify-content: center;
    padding-bottom: 1rem;
  }
}
.site-footer .footer-inner {
  max-width: 1600px;
  margin: 0 auto;
}
.site-footer h3 {
  font-size: 24px;
  margin-top: 0;
}
.site-footer h4 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 500;
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-top {
    flex-wrap: wrap;
  }
}
.site-footer .footer-middle {
  margin-top: 5%;
}
.site-footer .footer-branding {
  line-height: 0px;
  font-size: 0px;
  flex: 0 0 100%;
  margin-bottom: 4%;
}
@media screen and (max-width: 475px) {
  .site-footer .footer-branding {
    margin-bottom: 1em;
  }
}
.site-footer .footer-branding a {
  display: block;
  overflow: hidden;
}
.site-footer .footer-branding .footer-logo {
  width: 100%;
  transform: translateY(100%);
  max-width: 800px;
}
@media screen and (max-width: 900px) {
  .site-footer .footer-branding .footer-logo {
    width: 80%;
  }
}
@media screen and (max-width: 475px) {
  .site-footer .footer-branding .footer-logo {
    width: 100%;
  }
}
.site-footer .footer-newsletter {
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-newsletter {
    flex: 0 0 100%;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 650px) {
  .site-footer .footer-newsletter {
    max-width: 100%;
  }
}
.site-footer .footer-newsletter .gform_wrapper {
  max-width: 375px;
}
@media screen and (max-width: 650px) {
  .site-footer .footer-newsletter .gform_wrapper {
    max-width: 100%;
  }
}
.site-footer .footer-social {
  display: block;
}
@media screen and (max-width: 768px) {
  .site-footer .footer-contact {
    flex: 0 0 50%;
    margin-right: auto;
  }
}
@media screen and (max-width: 475px) {
  .site-footer .footer-contact {
    margin-right: 0;
  }
}
.site-footer .footer-contact a:not(.social-links a) {
  display: block;
  margin-bottom: 1rem;
  color: #000;
}
.site-footer .footer-contact a:not(.social-links a):hover {
  color: #FF5959;
}
.site-footer .footer-contact .social-links {
  margin-top: 2em;
}
.site-footer nav {
  margin-left: auto;
  margin-right: 8%;
}
@media screen and (max-width: 768px) {
  .site-footer nav {
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 30%;
  }
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-top: 4rem;
  font-size: 0.85rem;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
.footer-bottom a {
  color: #000;
}
.footer-bottom a:hover {
  color: #FF5959;
}

.social-links {
  display: flex;
  margin-top: 1em;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 10px 10px 0px;
  transition: background 0.3s ease-out;
}
.social-links a:hover svg path {
  fill: #FF5959;
}
.social-links a svg {
  max-height: 20px;
  max-width: 20px;
  width: 20px;
}
.social-links a svg path {
  fill: #003199;
  transition: fill 0.3s ease-out;
}

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

#footer_nav {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #footer_nav {
    flex-wrap: wrap;
    width: 100%;
  }
}
#footer_nav li {
  position: relative;
}
@media screen and (max-width: 800px) {
  #footer_nav li {
    width: 100%;
  }
}
#footer_nav li:first-child a {
  padding-top: 0;
}
#footer_nav li a {
  color: #000;
  text-decoration: none;
  padding: 0.5rem 25px 0.5rem 0;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s ease-out;
}
#footer_nav li a:hover {
  color: #FF5959;
}
@media screen and (max-width: 800px) {
  #footer_nav li a {
    display: block;
    width: 100%;
    padding: 8px 25px 8px 0;
  }
}
#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: 5% 5%;
}
@media screen and (max-width: 800px) {
  .site-main {
    padding: 9% 5%;
  }
}

.site-content {
  padding-top: 90px;
}
@media screen and (max-width: 900px) {
  .site-content {
    padding-top: 60px;
  }
}

body .site-content {
  background: linear-gradient(to bottom, #fff 0%, #bde7fb 50%, #fff 100%);
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: #003199;
}
body.blue-to-white .site-content {
  background: linear-gradient(to bottom, #003199 15%, #bde7fb 50%, #fff 100%);
}

.block {
  padding: 5% 5.6%;
}
@media screen and (max-width: 800px) {
  .block {
    padding: 10% 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .block {
    padding: 10% 5%;
  }
}
.block .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1600px;
  margin: 0 auto;
}

section {
  background: transparent;
}

.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 #003199;
  margin: 0px 2px;
}
.pagination a {
  border: 1px solid rgba(0, 49, 153, 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid #003199;
  background: #003199;
  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;
  padding-bottom: 4.5%;
}
.hero.light {
  color: white;
}
.hero.light h1,
.hero.light h2,
.hero.light h3,
.hero.light h4,
.hero.light h5,
.hero.light h6 {
  color: white;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.hero .mobile-media {
  display: none;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  margin: 2.5rem 0;
}
@media screen and (max-width: 650px) {
  .hero .mobile-media {
    display: block;
    aspect-ratio: 8/9;
  }
}
.hero .mobile-media img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.hero .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 650px) {
  .hero .inner {
    display: block;
  }
}
.hero .content-col {
  flex: 0 0 64%;
}
.hero .content-col .hero-content {
  padding-right: 8%;
  max-width: 50em;
}
@media screen and (max-width: 650px) {
  .hero .content-col .hero-content {
    padding-right: 0;
  }
}
.hero .content-col .hero-content h3 {
  text-wrap: unset;
}
.hero .content-col .hero-content p {
  max-width: 35em;
}
.hero .media-col {
  flex: 0 0 36%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 650px) {
  .hero .media-col {
    display: none;
  }
}
.hero .media-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  aspect-ratio: 7/9;
  max-height: 41%;
}
.hero .hero-bg {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top 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-block .inner {
  position: relative;
  z-index: 2;
}
.text-block .text-content {
  max-width: 48em;
  margin: 0 auto;
  text-wrap: balance;
}
.text-block .button-container {
  padding-top: 1em;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}
.text-block .graphic {
  pointer-events: none;
  position: absolute;
  top: 20%;
  left: -10%;
  max-width: 40vw;
}
@media screen and (max-width: 1024px) {
  .text-block .graphic {
    max-width: 50vw;
    top: unset;
    bottom: -10%;
  }
}
.text-block.light {
  color: white;
}
.text-block.light h1,
.text-block.light h2,
.text-block.light h3,
.text-block.light h4,
.text-block.light h5,
.text-block.light h6 {
  color: white;
}

.cta {
  position: relative;
  overflow: hidden;
  color: white;
}
.cta h1,
.cta h2,
.cta h3,
.cta h4,
.cta h5,
.cta h6 {
  color: white;
}
.cta h2 {
  font-size: clamp(2rem, 2.125rem + 1vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.cta:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.cta .inner {
  background: linear-gradient(90deg, #003199, #FF5959);
  padding: 8% 5%;
  border-radius: 8px;
  transition: border-radius 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 768px) {
  .cta .inner:hover {
    border-radius: 8px;
  }
}
.cta .cta-content {
  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 {
  position: relative;
}
.content-image-block.ori-right .content-col {
  order: 2;
  padding: 0px 0px 0px 4%;
}
.content-image-block .inner {
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.content-image-block .content-col {
  flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-col {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.content-image-block .content-col .content-text {
  max-width: 40em;
}
.content-image-block .image-col {
  flex: 0 0 36%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .content-image-block .image-col {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}
.content-image-block .media-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  aspect-ratio: 7/9;
  max-height: 40%;
}
@media screen and (max-width: 1024px) {
  .content-image-block .media-wrapper {
    max-height: 40%;
    aspect-ratio: 4/3;
  }
}
.content-image-block .media-wrapper img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
}
.content-image-block .graphic {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: -5%;
  max-width: 40vw;
}
@media screen and (max-width: 1024px) {
  .content-image-block .graphic {
    max-width: 50vw;
    top: 40%;
  }
}

.contact-block {
  padding-left: 8%;
  padding-right: 8%;
  padding-top: 2.5%;
}
@media screen and (max-width: 800px) {
  .contact-block {
    padding-top: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.contact-block .inner {
  align-items: center;
  justify-content: space-between;
}
.contact-block .contact-intro {
  flex: 0 0 45%;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .contact-block .contact-intro {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.contact-block .contact-intro .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 8/9;
}
@media screen and (max-width: 768px) {
  .contact-block .contact-intro .image-wrapper {
    aspect-ratio: 4/3;
    display: none;
  }
}
.contact-block .contact-intro .image-wrapper img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: calc(100% + 60px);
  -o-object-position: top center;
     object-position: top center;
}
.contact-block .contact-form {
  flex: 0 0 55%;
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  .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: #003199;
  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: #003199;
  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;
}

.post-content p {
  margin-bottom: 8%;
}
.post-content .inner {
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .post-content .inner {
    display: block;
  }
}
.post-content .post-head {
  flex: 0 0 100%;
}
.post-content .body-col {
  flex: 0 0 50%;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .post-content .body-col {
    flex: 0 0 100%;
    padding-right: 0px;
    padding-bottom: 5%;
    padding-bottom: 0;
  }
}
.post-content .body-col .body-content {
  max-width: 40em;
}
.post-content .image-col {
  flex: 0 0 50%;
}
@media screen and (max-width: 900px) {
  .post-content .image-col {
    display: none;
  }
}
.post-content blockquote {
  margin-top: 8%;
  margin-bottom: 8%;
}
.post-content .post-img {
  position: relative;
  width: 100%;
  aspect-ratio: 12/9;
}
@media screen and (max-width: 1024px) {
  .post-content .post-img {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 600px) {
  .post-content .post-img {
    aspect-ratio: 4/3;
  }
}
.post-content .post-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.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;
  text-wrap: balance;
  font-size: 120%;
  position: relative;
}
.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: flex;
  background: white;
  padding: 2.5em;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .faq-block .inner {
    padding: 2.5em;
  }
}
@media screen and (max-width: 1024px) {
  .faq-block .inner {
    display: block;
    padding: 1.5em;
  }
}
.faq-block .inner .heading-col {
  flex: 0 0 50%;
  padding-right: 5%;
}
.faq-block .inner .faq-intro {
  max-width: 24em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
}
.faq-block .inner .faq-intro h2 {
  margin-bottom: auto;
  max-width: 8em;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq-intro h2 {
    max-width: 100%;
    margin-bottom: 0.5em;
    margin-top: 0;
  }
}
.faq-block .inner .faq-col {
  flex: 0 0 50%;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq-col {
    margin-top: 2em;
  }
}
.faq-block .inner .faq {
  border-bottom: 1px solid #000;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 700px) {
  .faq-block .inner .faq {
    margin-bottom: 0.6rem;
  }
}
.faq-block .inner .faq:last-child {
  border-bottom: none;
}
.faq-block .inner .faq .question {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
  padding: 1.5rem 3rem 1.5rem 0rem;
  position: relative;
  cursor: pointer;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .faq-block .inner .faq .question {
    font-size: 1.1rem;
  }
}
.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 .question-text {
  max-width: 27em;
  display: block;
}
.faq-block .inner .faq .question .status {
  position: absolute;
  right: 0px;
  top: 50%;
  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: 3px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: #FF5959;
  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: 0 1.5rem 1.5rem 0;
  display: none;
  font-size: 1rem;
}
.faq-block .inner .faq .answer .answer-inner {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .answer {
    padding: 0 1.5rem 1.5rem 0;
    margin-bottom: 2em;
  }
}
.faq-block .inner .faq .answer p:last-child {
  margin-bottom: 0px;
}

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

#container .controls {
  margin-top: 1em;
  margin-bottom: 1em;
}
#container .controls .arrows {
  display: flex;
  align-items: center;
}
#container .controls .arrows .button-prev {
  margin-right: 0.5em;
}
#container .controls .slider-pagination {
  width: auto;
}
#container .controls .slider-pagination .swiper-pagination-bullet {
  border: 2px solid rgba(0, 0, 0, 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;
}
#container .controls .slider-pagination .swiper-pagination-bullet:hover {
  border-color: #000;
}
#container .controls .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003199;
}

.button-next,
.button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease-out;
}
.button-next:hover,
.button-prev:hover {
  background: #003199;
}
.button-next svg,
.button-prev svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-out;
}

.button-prev {
  padding-left: 0px;
}

.button-next svg {
  transform: rotate(180deg);
}

.slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-slider-section {
  color: white;
}
@media screen and (max-width: 800px) {
  .card-slider-section {
    padding-right: 0;
  }
}
.card-slider-section h1,
.card-slider-section h2,
.card-slider-section h3,
.card-slider-section h4,
.card-slider-section h5,
.card-slider-section h6 {
  color: white;
}
.card-slider-section .inner {
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 800px) {
  .card-slider-section .inner {
    display: block;
  }
}
.card-slider-section.dark {
  color: #000;
}
.card-slider-section.dark h1,
.card-slider-section.dark h2,
.card-slider-section.dark h3,
.card-slider-section.dark h4,
.card-slider-section.dark h5,
.card-slider-section.dark h6 {
  color: #003199;
}
.card-slider-section.dark .controls svg path {
  fill: #000;
}
.card-slider-section.dark .controls .button-next:hover,
.card-slider-section.dark .controls .button-prev:hover {
  background: #BDE7FB !important;
}
.card-slider-section .slider-intro {
  padding-right: 5%;
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .card-slider-section .slider-intro {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .card-slider-section .slider-intro .content {
    max-width: 32em;
  }
}
.card-slider-section .slider-col {
  flex: 0 0 81%;
  width: 81%;
}
@media screen and (max-width: 800px) {
  .card-slider-section .slider-col {
    flex: 0 0 100%;
    width: 100%;
  }
}
.card-slider-section .card-slider {
  width: 100%;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .card-slider-section .card-slider {
    padding-right: 1.5rem;
  }
}
.card-slider-section .card-slider .swiper-slide {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  max-width: 420px;
  min-height: 500px;
  height: auto;
}
@media screen and (max-width: 800px) {
  .card-slider-section .card-slider .swiper-slide {
    max-width: 400px;
    min-height: 400px;
  }
}
.card-slider-section .card-slider .swiper-slide:hover .slide-content .card-caption {
  opacity: 1;
}
.card-slider-section .card-slider .swiper-slide.swiper-slide-active .slide-content .card-caption {
  opacity: 1;
}
.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 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  width: 100%;
  height: 100%;
  padding: 1em;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  z-index: 2;
}
.card-slider-section .card-slider .swiper-slide .slide-content .card-title {
  margin-bottom: auto;
  max-width: 18em;
}
.card-slider-section .card-slider .swiper-slide .slide-content .card-title h3 {
  font-size: 1.5rem;
  color: white;
}
.card-slider-section .card-slider .swiper-slide .slide-content .card-caption {
  font-size: 1rem;
  background: white;
  border-radius: 8px;
  color: #003199;
  padding: 5% 5% calc(5% - 0.5em);
  line-height: 1.4;
  max-width: 20em;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.card-slider-section .card-slider .swiper-slide .slide-content .card-caption p {
  margin-bottom: 0;
}
.card-slider-section .card-slider .swiper-slide .foe-link {
  color: #000;
  width: -moz-fit-content;
  width: fit-content;
}
.card-slider-section .controls {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0;
  margin-right: auto;
  padding-top: 5%;
}
@media screen and (max-width: 800px) {
  .card-slider-section .controls {
    padding-top: 0;
    margin-right: 0;
    margin-bottom: 1rem;
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 800px) {
  .card-slider-section .buttons {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1.5em;
  }
}

.testimonials-block {
  overflow: hidden;
}
.testimonials-block h1,
.testimonials-block h2,
.testimonials-block h3,
.testimonials-block h4,
.testimonials-block h5,
.testimonials-block h6 {
  color: #000;
}
.testimonials-block .inner {
  position: relative;
  display: block;
}
.testimonials-block .heading-wrapper {
  margin-bottom: 2em;
}
.testimonials-block .swiper {
  width: 100%;
  overflow: visible;
  position: static;
}
.testimonials-block .swiper .swiper-slide {
  background: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-out;
  max-width: 420px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .testimonials-block .swiper .swiper-slide {
    max-width: 100%;
    padding: 1.5rem;
  }
}
.testimonials-block .swiper .swiper-slide.swiper-slide-prev {
  opacity: 0;
}
.testimonials-block .swiper .swiper-slide .content {
  margin-bottom: 2em;
  text-wrap: balance;
}
@media screen and (max-width: 600px) {
  .testimonials-block .swiper .swiper-slide .content {
    margin-top: 0.5rem;
    margin-bottom: auto;
  }
}
@media screen and (max-width: 600px) {
  .testimonials-block .swiper .swiper-slide .author {
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
}
.testimonials-block .swiper .swiper-slide .quote {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 600px) {
  .testimonials-block .swiper .swiper-slide .quote {
    margin-bottom: 0;
  }
}
.testimonials-block .swiper .swiper-slide .quote svg {
  max-width: 30px;
}
@media screen and (max-width: 600px) {
  .testimonials-block .swiper .swiper-slide .quote svg {
    max-width: 20px;
    height: 20px;
  }
}
.testimonials-block .swiper .swiper-slide h4 {
  margin: 0;
}
.testimonials-block .swiper .swiper-slide h4 .company {
  margin-top: 0.2em;
  font-size: 1.1rem;
}
.testimonials-block .slider-controls .slider-buttons {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 768px) {
  .testimonials-block .slider-controls .slider-buttons {
    position: static;
    justify-content: flex-start;
    margin-top: 1.5em;
  }
}
.testimonials-block .slider-controls .swiper-pagination {
  position: static;
  max-width: 400px;
  margin: 3.125em auto auto;
  background: white;
  border-radius: 1000px;
  overflow: hidden;
  height: 4px;
}
@media screen and (max-width: 768px) {
  .testimonials-block .slider-controls .swiper-pagination {
    max-width: 100%;
    margin-top: 1.5em;
  }
}
.testimonials-block .slider-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background: linear-gradient(to right, #003199, #FF5959);
  border-radius: 1000px;
  display: block;
  overflow: hidden;
  height: 4px;
}
.testimonials-block .slider-controls .button-prev svg path,
.testimonials-block .slider-controls .button-next svg path {
  fill: #000;
  transition: fill 0.3s ease-out;
}
.testimonials-block .slider-controls .button-prev:hover svg path,
.testimonials-block .slider-controls .button-next:hover svg path {
  fill: white;
}
.testimonials-block.light h1,
.testimonials-block.light h2,
.testimonials-block.light h3,
.testimonials-block.light h4,
.testimonials-block.light h5,
.testimonials-block.light h6 {
  color: #000;
}
.testimonials-block.light .swiper-slide {
  color: #000;
}
.testimonials-block.dark h1,
.testimonials-block.dark h2,
.testimonials-block.dark h3,
.testimonials-block.dark h4,
.testimonials-block.dark h5,
.testimonials-block.dark h6 {
  color: #000;
}
.testimonials-block.dark .swiper-slide {
  background: #003199;
  color: white;
}
.testimonials-block.dark .swiper-slide .content {
  color: white;
}
.testimonials-block.dark .swiper-slide h4 {
  color: white;
}

.featured-case-studies-block .inner {
  display: block;
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .featured-case-studies-block .inner {
    padding: 1.5rem;
  }
}
.featured-case-studies-block .inner h2 {
  margin-top: 0;
  color: #000;
}
.featured-case-studies-block .case-study-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 800px) {
  .featured-case-studies-block .case-study-inner {
    display: block;
  }
}
.featured-case-studies-block .case-study-inner .content-col {
  flex: 0 0 50%;
  padding-right: 5%;
}
.featured-case-studies-block .case-study-inner .content {
  max-width: 32em;
}
.featured-case-studies-block .case-study-inner .content h3 {
  font-size: clamp(1.25rem, 1.25rem + 2vw, 3rem);
  line-height: 1.2;
}
.featured-case-studies-block .case-study-inner .content .foe-button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2em;
}
@media screen and (max-width: 800px) {
  .featured-case-studies-block .case-study-inner .content .foe-button {
    margin-bottom: 3rem;
  }
}
.featured-case-studies-block .case-study-inner .content p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 3) {
  .featured-case-studies-block .case-study-inner .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.featured-case-studies-block .case-study-inner .image-col {
  flex: 0 0 45%;
}
.featured-case-studies-block .case-study-inner .image-col .image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: #003199;
}
.featured-case-studies-block .case-study-inner .image-col .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.featured-case-studies-block .case-studies-wrapper {
  position: static;
}
.featured-case-studies-block .slider-buttons {
  position: absolute;
  top: 2.3rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 800px) {
  .featured-case-studies-block .slider-buttons {
    top: 1rem;
    right: 1rem;
  }
}
.featured-case-studies-block .slider-buttons .button-prev svg path,
.featured-case-studies-block .slider-buttons .button-next svg path {
  fill: #000;
  transition: fill 0.3s ease-out;
}
.featured-case-studies-block .slider-buttons .button-prev:hover,
.featured-case-studies-block .slider-buttons .button-next:hover {
  background: #BDE7FB;
}

@media screen and (max-width: 1024px) {
  .services {
    padding-bottom: 0;
  }
}
.services .inner {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1024px) {
  .services .inner {
    display: block;
  }
}
.services .inner .title-column {
  flex: 0 0 50%;
}
@media screen and (max-width: 1024px) {
  .services .inner .title-column {
    display: none;
  }
}
.services .inner .sticky-parent {
  padding-right: 5%;
}
.services .inner .sticky-parent .sticky-child {
  list-style: none;
}
.services .inner .sticky-parent .sticky-child ul {
  list-style: none;
  padding: 0;
}
.services .inner .sticky-parent .sticky-child ul li {
  padding: 2em 0;
  border-bottom: 1px solid #003199;
}
.services .inner .sticky-parent .sticky-child ul li.active a {
  color: #FF5959;
}
.services .inner .sticky-parent .sticky-child ul li.active a:hover {
  color: #FF5959;
}
.services .inner .sticky-parent .sticky-child ul li:hover a {
  color: #FF5959;
}
.services .inner .sticky-parent .sticky-child ul li a {
  color: rgb(0, 65.3333333333, 204);
}
.services .inner .sticky-parent .sticky-child ul li:first-child {
  padding-top: 0;
}
.services .inner .sticky-parent .sticky-child ul li:last-child {
  border-bottom: none;
}
.services .inner .sticky-parent .sticky-child ul li h3 {
  margin: 0;
  line-height: 1.2;
}
.services .inner .content-column {
  flex: 0 0 50%;
}
.services .inner .content-column blockquote {
  margin-bottom: 0;
}
.services .inner .content-column .column-inner img {
  border-radius: 8px;
}
.services .inner .content-column .column-inner .service-content {
  margin-bottom: 15%;
}
.services .inner .content-column .column-inner .service-content:last-child {
  margin-bottom: 0;
}
.services .inner .content-column .column-inner .service-content img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2em;
}
@media screen and (max-width: 1024px) {
  .services .inner .content-column .column-inner .service-content img {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .services .inner .content-column .column-inner .service-content img {
    margin-bottom: 1em;
    aspect-ratio: 4/3;
  }
}
.services .inner .content-column .column-inner .service-content .content-wrapper {
  max-width: 40em;
}
.services .inner .content-column .column-inner .service-content .content-wrapper p:not(:last-child),
.services .inner .content-column .column-inner .service-content .content-wrapper ul,
.services .inner .content-column .column-inner .service-content .content-wrapper ol {
  margin-bottom: 3em;
}
.services .inner .content-column .column-inner .service-content .content-wrapper ul li {
  padding: 0.25rem 0;
}

.values {
  padding-bottom: 2.5%;
}
.values .inner {
  display: block;
}
@media screen and (max-width: 1024px) {
  .values .inner {
    display: block;
  }
}
.values .values-container {
  position: relative;
  overflow: hidden;
}
.values .value-card {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2em;
  position: relative;
}
.values .value-card .card-inner {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 80vh;
  color: white;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .values .value-card .card-inner {
    min-height: 50vh;
  }
}
.values .value-card .card-inner h3 {
  color: white;
}
.values .value-card .card-inner .content {
  padding: 3em 4% 3em 8%;
  opacity: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 35em;
  margin-left: auto;
  background: #080707;
  background: linear-gradient(-90deg, rgb(8, 7, 7) 25%, rgba(8, 7, 7, 0) 100%);
}
@media screen and (max-width: 1024px) {
  .values .value-card .card-inner .content {
    padding: 1.5em;
    background: linear-gradient(-180deg, rgba(8, 7, 7, 0.7) 50%, rgba(8, 7, 7, 0) 100%);
    max-width: 100%;
  }
}
.values .value-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.page-id-550 .site-content {
  padding-top: 0;
}

.hero-with-logo {
  overflow: hidden;
  padding-bottom: 4.5%;
  padding-top: 5%;
}
@media screen and (max-width: 1024px) {
  .hero-with-logo {
    padding-top: calc(4.5% + 50px);
  }
}
@media screen and (max-width: 800px) {
  .hero-with-logo {
    overflow: visible;
  }
}
.hero-with-logo.light {
  color: white;
}
.hero-with-logo.light h1,
.hero-with-logo.light h2,
.hero-with-logo.light h3,
.hero-with-logo.light h4,
.hero-with-logo.light h5,
.hero-with-logo.light h6 {
  color: white;
}
.hero-with-logo:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
.hero-with-logo .inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .hero-with-logo .inner {
    flex-direction: column-reverse;
    display: block;
    position: relative;
  }
}
.hero-with-logo .content-col {
  flex: 0 0 50%;
  padding-top: 5%;
}
@media screen and (max-width: 800px) {
  .hero-with-logo .content-col {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 40vw;
  }
}
@media screen and (max-width: 800px) {
  .hero-with-logo .content-col {
    padding-right: 20vw;
  }
}
@media screen and (max-width: 600px) {
  .hero-with-logo .content-col {
    padding-right: 0;
  }
}
.hero-with-logo .content-col .hero-content {
  padding-right: 8%;
}
.hero-with-logo .content-col .hero-content h3 {
  text-wrap: unset;
}
.hero-with-logo .content-col .hero-content p {
  max-width: 35em;
}
.hero-with-logo .media-col {
  flex: 0 0 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .hero-with-logo .media-col {
    flex: 0 0 100%;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .hero-with-logo .media-col {
    display: block;
    position: relative;
  }
}
.hero-with-logo .media-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  aspect-ratio: 1;
  max-height: 80svh;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/inertia-icon-mask.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/inertia-icon-mask.svg");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  top: -100px;
  right: -20%;
}
@media screen and (max-width: 800px) {
  .hero-with-logo .media-wrapper {
    top: unset;
    max-height: 80vh;
    max-width: 100%;
    right: -40%;
    position: absolute;
    bottom: -20svw;
    min-height: 40svw;
  }
}
@media screen and (max-width: 600px) {
  .hero-with-logo .media-wrapper {
    right: -50%;
  }
}
.hero-with-logo .hero-bg {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: calc(100% + 30px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}
.hero-with-logo .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-with-logo .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;
}

.case-studies-block {
  padding-top: 0;
}
.case-studies-block .header-wrapper h2 {
  color: white;
}
.case-studies-block .inner {
  display: block;
}
.case-studies-block .button-list {
  display: flex;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 800px) {
  .case-studies-block .button-list {
    display: block;
  }
}
.case-studies-block .button-list .foe-button {
  background: transparent;
  border: solid 1px white;
}
@media screen and (max-width: 800px) {
  .case-studies-block .button-list .foe-button {
    margin-bottom: 0.8em;
  }
}
.case-studies-block .button-list .foe-button:hover {
  background: #000;
  border: solid 1px #000;
}
.case-studies-block .button-list .foe-button.active {
  background: #000;
  pointer-events: none;
  border: solid 1px #000;
}
.case-studies-block .case-studies-container {
  background: white;
  border-radius: 8px;
  padding: 2.5rem;
}
@media screen and (max-width: 800px) {
  .case-studies-block .case-studies-container {
    padding: 1.5rem;
  }
}
.case-studies-block .case-studies-container .case-study-inner {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 800px) {
  .case-studies-block .case-studies-container .case-study-inner {
    display: block;
  }
}
.case-studies-block .case-studies-container .case-study-inner .image-col {
  flex: 0 0 45%;
  width: 45%;
}
@media screen and (max-width: 800px) {
  .case-studies-block .case-studies-container .case-study-inner .image-col {
    flex: 0 0 100%;
    width: 100%;
    margin-bottom: 2em;
  }
}
.case-studies-block .case-studies-container .case-study-inner .image-col .case-study-gallery {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  height: 70svh;
}
@media screen and (max-width: 800px) {
  .case-studies-block .case-studies-container .case-study-inner .image-col .case-study-gallery {
    height: unset;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 600px) {
  .case-studies-block .case-studies-container .case-study-inner .image-col .case-study-gallery {
    aspect-ratio: 4/3;
  }
}
.case-studies-block .case-studies-container .case-study-inner .image-col .case-study-gallery .swiper-slide {
  position: relative;
  height: 100%;
}
.case-studies-block .case-studies-container .case-study-inner .image-col .case-study-gallery .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.case-studies-block .case-studies-container .case-study-inner .content-col {
  flex: 0 0 55%;
  padding-left: 2em;
  padding-right: 1rem;
}
@media screen and (max-width: 800px) {
  .case-studies-block .case-studies-container .case-study-inner .content-col {
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.case-studies-block .case-studies-container .case-study-inner .content-col h3 {
  font-size: 24px;
  margin-bottom: 0.8rem;
}
.case-studies-block .case-studies-container .case-study-inner .content-col p + h3 {
  margin-top: 1.5em;
}
@media screen and (max-width: 800px) {
  .case-studies-block .case-studies-container .case-study-inner .content-col p + h3 {
    margin-top: 1.5em;
  }
}
.case-studies-block .case-studies-container .case-study-inner .content-col li {
  margin-bottom: 0.5em;
}
.case-studies-block .case-studies-container .case-study-inner .content-col ul {
  margin-bottom: 0;
}
.case-studies-block .case-studies-container .case-study-inner .content-col .case-study-text p:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 800px) {
  .gradient-text {
    display: none;
  }
}
.gradient-text .inner {
  display: flex;
  flex-wrap: nowrap;
  background: white;
  border-radius: 8px;
}
.gradient-text .inner .foe-button {
  display: block;
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.gradient-text .inner .text-col {
  padding: 2.5rem;
  flex: 0 0 50%;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gradient-text .inner .text-col h3 {
  font-size: clamp(2.5rem, 0.3906rem + 5.625vw, 5.3125rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 0;
  background: linear-gradient(to right, #3263c9 20%, #ff5959 40%, #ff5959 60%, #3263c9 80%);
  background-size: 200% auto;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 14s linear infinite;
  font-weight: 400;
}
.gradient-text .inner .img-col {
  flex: 0 0 50%;
  padding: 1rem;
}
.gradient-text .inner .img-col .image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  aspect-ratio: 12/9;
}
.gradient-text .inner .img-col .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.single h1 {
  font-size: clamp(2rem, 1.125rem + 1vw, 3rem);
}

.error-404-inner {
  text-align: center;
  border-radius: 8px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .error-404-inner {
    padding: 1.5rem;
    background: white;
  }
}
.error-404-inner h1 {
  font-size: clamp(3rem, 1.125rem + 1vw, 6rem);
  margin-bottom: 1rem;
}

.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: #003199;
}
#landing .brand-col .site-logo img {
  max-width: 13vw;
  min-width: 100px;
}
#landing .brand-col .coming-soon {
  padding-top: 10%;
}
#landing .content-col {
  background: #000;
  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: #003199;
  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: #003199;
}
#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 #003199;
}

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 #003199;
}

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 #003199;
  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 .gfield_required.gfield_required_asterisk {
  font-size: 11px;
  transform: translateY(-2px);
}
body .gform_wrapper.gravity-theme .validation_error,
body .gform_wrapper.gravity-theme .gform_validation_errors {
  background: black;
  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: "Poppins", 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: #000;
  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: #000;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label {
  font-size: 16px;
  padding: 0px 0px 8px 0px;
  margin-bottom: 0px;
  font-weight: 400;
}
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 0em;
  background: transparent;
  border-radius: 0;
  border-bottom: solid 1px #000;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: #003199;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 10em;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: solid 1px #000;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: #003199;
}
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: #003199 !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: #003199 !important;
  box-shadow: 0px 0px 0px 3px #003199;
}
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: 1rem 1.8rem;
  background: #FF5959;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  margin: 0px 1em 0px 0px;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: rgb(0, 32.6666666667, 102);
}
@media screen and (max-width: 768px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    padding: 0.5rem 1.8rem;
  }
}

.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;
  display: block !important;
  position: static !important;
}
.ajax-spinner .spinner {
  margin: 0 auto;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid rgba(0, 49, 153, 0.45);
  border-top: 4px solid #003199;
  animation: spin 2s linear infinite;
}

#newsletter .gform_fields {
  position: relative;
}
#newsletter .gform_fields:after {
  content: "";
  position: absolute;
  top: 3em;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
}
#newsletter input {
  background: transparent;
  border: none;
  padding-left: 0;
  background-size: 20px;
}
#newsletter #field_2_3 {
  grid-column: span 11 !important;
}
#newsletter #field_submit {
  position: relative;
  height: 3em;
  grid-column: span 1 !important;
}
#newsletter #field_submit input {
  height: 3em;
  transform: scale(0.7);
  transform-origin: right center;
}
@media screen and (max-width: 768px) {
  #newsletter #field_submit input {
    transform: scale(1);
  }
}
#newsletter .gform-loader {
  position: absolute;
  right: -8em;
}/*# sourceMappingURL=styles.css.map */