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

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

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

e.g.
input, 
textarea { 
    @include placeholder {
        color: #333333;
    }
}
*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

figure {
  margin: 2em 0px;
}

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

pre {
  overflow: auto;
}

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

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

p {
  margin-bottom: 1.5em;
  margin-top: 0px;
}

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

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

body {
  background: #fff;
}

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

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

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

textarea {
  vertical-align: middle;
}

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

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

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

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #0588ff;
}

a:hover,
a:focus,
a:active {
  color: rgb(0, 109.516, 209);
}

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: "sofia-pro", sans-serif;
  font-display: swap;
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: #242424;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

p {
  color: #5d5d5d;
}

a {
  color: #0588ff;
  transition: color 0.2s ease-out;
}
a:hover {
  color: rgb(0, 109.516, 209);
}

section ul,
section ol {
  margin-left: 0px;
  padding-left: 1em;
  list-style: none;
  padding-left: 0;
}
section ul li,
section ol li {
  position: relative;
  padding-left: 2em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 650px) {
  section ul li,
  section ol li {
    margin-bottom: 0.25em;
    padding-left: 1.5em;
  }
}
section ul li::before,
section ol li::before {
  content: "";
  background-image: url("/wp-content/themes/foe/images/shell/check.svg");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8em;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 650px) {
  section ul li::before,
  section ol li::before {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 400px) {
  section ul li::before,
  section ol li::before {
    width: 14px;
    height: 14px;
    top: 0.5rem;
  }
}

/*
  HEADINGS
  */
h1,
.primary-heading {
  font-family: "sofia-pro", sans-serif;
  font-size: clamp(2rem, 1.3906rem + 1.625vw, 2.8125rem);
  line-height: 1.1;
  margin: 0 0 0.4em;
  display: block;
  text-wrap: balance;
  font-weight: 600;
  color: #242424;
}
h1 strong,
.primary-heading strong {
  font-weight: 900;
}
h1 + h4,
.primary-heading + h4 {
  margin-top: -0.4em;
}

h2,
.secondary-heading {
  font-family: "sofia-pro", sans-serif;
  font-size: clamp(2rem, 1.3906rem + 1.625vw, 2.8125rem);
  line-height: 1.2;
  margin: 0 0 0.4em;
  display: block;
  text-wrap: balance;
  font-weight: 700;
  text-transform: capitalize;
}
h2 + h4,
.secondary-heading + h4 {
  margin-top: 1.2em;
}

h3,
.small-heading {
  font-family: "sofia-pro", sans-serif;
  font-size: clamp(1.4375rem, 1.0804rem + 0.9524vw, 1.9375rem);
  line-height: 1.4;
  margin: 0 0 0.4em;
  display: block;
  text-wrap: balance;
  font-weight: 700;
  text-transform: capitalize;
}
h3 + h4,
.small-heading + h4 {
  margin-top: -0.4em;
}

h4,
.sub-heading {
  font-size: 18px;
  font-family: "sofia-pro", sans-serif;
  color: #0588ff;
  margin: 0 0 0.6em;
  font-weight: 800;
  line-height: 1.2;
}

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

.line-wrapper {
  overflow: hidden;
}

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

.foe-button,
.quote-button a {
  display: inline-block;
  padding: 15px clamp(1.5rem, 0.9196rem + 1.5476vw, 2.3125rem);
  font-size: clamp(0.8125rem, 0.7232rem + 0.2232vw, 0.9375rem);
  line-height: 1.2;
  background: linear-gradient(to right, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
  background-size: 100% 100%;
  background-position: 0% 50%;
  color: white;
  border-radius: 100px;
  margin: 0px 1em 1em 0px;
  font-weight: 800;
  cursor: pointer;
  transition: background-size 0.5s ease-out, background-position 0.5s ease-out, transform 0.2s ease-out;
}
.foe-button.outline,
.quote-button a.outline {
  background: white;
  color: #0588ff;
  transition: background 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
}
.foe-button:hover,
.quote-button a:hover {
  color: white;
  background-size: 500% 500%;
  background-position: 100% 50%;
  transform: scale(0.98);
}
.foe-button:hover.outline,
.quote-button a:hover.outline {
  background: #242424;
  color: white;
}

/*
Header and Navigation Styling
*/
.admin-bar #header {
  margin-top: 32px;
}
.admin-bar .ScrollSmoother-wrapper {
  margin-top: 32px;
}

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

#header {
  background: white;
  padding: 15px 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 9999;
  border-bottom: 1px solid #c4e5ff;
}
@media screen and (max-width: 1200px) {
  #header {
    padding: 15px 1em;
  }
}
#header .header-inner {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
#header .main-nav .menu {
  display: flex;
  align-items: center;
}
#header .main-nav .menu .quote-button a {
  margin: 0;
  margin-left: 1em;
}
#header .header-button {
  margin: 0px;
}

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

.site-branding {
  line-height: 0px;
  font-size: 0px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .site-branding {
    position: static;
    margin-left: 0;
  }
}
.site-branding .site-logo {
  height: 50px;
  margin-bottom: 4px;
}
@media screen and (max-width: 900px) {
  .site-branding .site-logo {
    height: 36px;
  }
}

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

#site-navigation-left,
#site-navigation-right {
  display: flex;
}
@media screen and (max-width: 900px) {
  #site-navigation-left,
  #site-navigation-right {
    display: none;
  }
}
#site-navigation-left > li.current-menu-item > a:before,
#site-navigation-right > li.current-menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: rgba(5, 136, 255, 0.2);
  transform: scaleX(1);
  transform-origin: 0% 50%;
  transition: transform 0.4s ease-out;
  z-index: -1;
  display: none;
}
#site-navigation-left > li.current-menu-item:hover > a:after,
#site-navigation-right > li.current-menu-item:hover > a:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
  background: #0588ff;
}
#site-navigation-left li:not(.quote-button),
#site-navigation-right li:not(.quote-button) {
  position: relative;
  padding: 0px 1em;
}
@media screen and (max-width: 1200px) {
  #site-navigation-left li:not(.quote-button),
  #site-navigation-right li:not(.quote-button) {
    padding: 0px 0.5em;
  }
}
#site-navigation-left li:not(.quote-button):hover > a,
#site-navigation-right li:not(.quote-button):hover > a {
  color: #0588ff;
}
#site-navigation-left li:not(.quote-button):hover > a:after,
#site-navigation-right li:not(.quote-button):hover > a:after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
#site-navigation-left li:not(.quote-button) a,
#site-navigation-right li:not(.quote-button) a {
  color: #242424;
  text-decoration: none;
  padding: 0.5em 0px;
  line-height: 1.1;
  display: inline-block;
  position: relative;
  font-weight: 800;
  font-size: 1.1rem;
  transition: color 0.2s ease-out;
}
@media screen and (max-width: 1200px) {
  #site-navigation-left li:not(.quote-button) a,
  #site-navigation-right li:not(.quote-button) a {
    font-size: 1rem;
  }
}
#site-navigation-left li:not(.quote-button) a:after,
#site-navigation-right li:not(.quote-button) a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #0588ff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 900px) {
  #site-navigation-left li:not(.quote-button) a,
  #site-navigation-right li:not(.quote-button) a {
    display: block;
    width: 100%;
  }
}
#site-navigation-left li:not(.quote-button) .sub-menu,
#site-navigation-left li:not(.quote-button) .children,
#site-navigation-right li:not(.quote-button) .sub-menu,
#site-navigation-right li:not(.quote-button) .children {
  position: absolute;
  left: -200px;
  right: -200px;
  margin: auto;
  width: 200px;
  top: 54px;
  background: #0588ff;
  padding: 15px 0px;
  text-align: center;
  display: none;
  border-radius: 3px;
}
#site-navigation-left li:not(.quote-button) .sub-menu:after,
#site-navigation-left li:not(.quote-button) .children:after,
#site-navigation-right li:not(.quote-button) .sub-menu:after,
#site-navigation-right li:not(.quote-button) .children:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: -5px;
  margin: auto;
  width: 10px;
  height: 10px;
  background: #0588ff;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
#site-navigation-left li:not(.quote-button) .sub-menu li,
#site-navigation-left li:not(.quote-button) .children li,
#site-navigation-right li:not(.quote-button) .sub-menu li,
#site-navigation-right li:not(.quote-button) .children li {
  background: #0588ff;
  display: block;
  float: none;
}
#site-navigation-left li:not(.quote-button) .sub-menu li a,
#site-navigation-left li:not(.quote-button) .children li a,
#site-navigation-right li:not(.quote-button) .sub-menu li a,
#site-navigation-right li:not(.quote-button) .children li a {
  display: block;
  padding: 10px 25px;
  color: white;
}
@media screen and (max-width: 900px) {
  #site-navigation-left,
  #site-navigation-right {
    display: none;
  }
}

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

.mobile-nav {
  display: none;
  background: white;
  z-index: 99;
  position: fixed;
  top: 60px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: calc(100dvh - 60px);
  padding: 3em 1em 3em 2em;
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: scroll;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  background: 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-navigation {
  clear: both;
  padding: 2em 0px;
  list-style-type: none;
}
#mobile-navigation ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
#mobile-navigation ul > li.current_page_item {
  position: relative;
}
#mobile-navigation ul > li.current_page_item::before {
  content: "";
  transform: scaleX(1);
  transform-origin: 0% 50%;
  height: 2px;
  background: #0588ff;
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  width: calc(100% - 2em);
  display: none;
}
#mobile-navigation li:not(.quote-button) {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#mobile-navigation li:not(.quote-button).menu-item-has-children > a {
  position: relative;
}
#mobile-navigation li:not(.quote-button).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-navigation li:not(.quote-button).menu-item-has-children.open > a:after {
  transform: rotate(-90deg);
}
#mobile-navigation li:not(.quote-button) a {
  display: inline-block;
  text-decoration: none;
  padding: 0.5em 2em 0.5em 0px;
  color: #242424;
  transition: background 0.2s ease-out;
  font-weight: 800;
  font-size: 1rem;
}
#mobile-navigation li:not(.quote-button) .sub-menu {
  display: none;
}
#mobile-navigation li:not(.quote-button) .sub-menu a {
  opacity: 0.8;
}
#mobile-navigation .quote-button {
  color: white;
  margin-top: 1em;
}

.nav-toggle {
  padding: 10px 10px;
  border-radius: 4px;
  border: none;
  display: none;
  background: none;
  transition: background 0.2s ease-out;
  background: linear-gradient(to right, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
}
@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: white;
  width: 20px;
  height: 2px;
  margin: 4px 0px;
  transform-origin: 50% 50%;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.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: linear-gradient(to right, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
}
.nav-toggle:active {
  background: linear-gradient(to right, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
}
.nav-toggle:hover {
  background: linear-gradient(to right, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
}

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

/*
Footer and Navigation Styling
*/
.site-footer {
  padding: 5% 5% 2em;
  background: #242424;
  color: white;
  font-size: clamp(0.75rem, 0.6094rem + 0.375vw, 0.9375rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .site-footer {
    line-height: 1.8;
    padding-top: 8%;
  }
}
.site-footer .grid-container {
  display: flex;
  flex-wrap: wrap;
}
.site-footer .grid-container .grid-item {
  flex: 0 0 25%;
  padding-right: 2em;
}
@media screen and (max-width: 768px) {
  .site-footer .grid-container .grid-item {
    padding-right: 5%;
    flex: 0 0 45%;
    margin-bottom: 1em;
    flex: 0 0 50%;
  }
}
.site-footer .grid-container .grid-item-longer {
  flex: 0 0 25%;
}
.site-footer .grid-container .footer-branding {
  margin-right: auto;
  padding-right: 2em;
  order: 0;
}
@media screen and (max-width: 768px) {
  .site-footer .grid-container .footer-branding {
    flex: 0 0 50%;
    margin-right: 0;
    padding-right: 5%;
  }
}
.site-footer .grid-container .footer-branding img {
  position: relative;
  top: -10px;
  max-height: 108px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .site-footer .grid-container .footer-branding img {
    max-height: 55px;
    top: -8px;
  }
}
.site-footer .grid-container .footer-fda,
.site-footer .grid-container .footer-nsf {
  padding-top: 5%;
  display: flex;
  align-items: center;
  gap: 2em;
  line-height: 1.2;
  padding-right: 2em;
}
@media screen and (max-width: 600px) {
  .site-footer .grid-container .footer-fda,
  .site-footer .grid-container .footer-nsf {
    display: block;
    flex: 0 0 50%;
    padding-right: 5%;
  }
}
.site-footer .grid-container .footer-fda img,
.site-footer .grid-container .footer-nsf img {
  height: 85px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .site-footer .grid-container .footer-fda img,
  .site-footer .grid-container .footer-nsf img {
    width: 60px;
    height: 60px;
    margin-bottom: 1em;
  }
}
.site-footer .grid-container .footer-fda a,
.site-footer .grid-container .footer-nsf a {
  display: block;
  flex: 0 0 85px;
}
.site-footer .grid-container .footer-fda .fda-info,
.site-footer .grid-container .footer-nsf .fda-info {
  white-space: nowrap;
}
.site-footer .grid-container .footer-fda .nsf-content,
.site-footer .grid-container .footer-nsf .nsf-content {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 800px) {
  .site-footer .grid-container .footer-fda .nsf-content,
  .site-footer .grid-container .footer-nsf .nsf-content {
    display: block;
  }
}
.site-footer .grid-container .footer-fda .nsf-content .info,
.site-footer .grid-container .footer-fda .nsf-content .audit,
.site-footer .grid-container .footer-nsf .nsf-content .info,
.site-footer .grid-container .footer-nsf .nsf-content .audit {
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .site-footer .grid-container .footer-fda .nsf-content .info,
  .site-footer .grid-container .footer-fda .nsf-content .audit,
  .site-footer .grid-container .footer-nsf .nsf-content .info,
  .site-footer .grid-container .footer-nsf .nsf-content .audit {
    white-space: normal;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .grid-container .footer-fda .nsf-content .audit,
  .site-footer .grid-container .footer-nsf .nsf-content .audit {
    margin-top: 1em;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-social {
    flex: 0 0 50%;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-address {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-contact {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-nsf {
    order: 4;
  }
}
@media screen and (max-width: 768px) {
  .site-footer .footer-fda {
    order: 5;
  }
}
.site-footer .footer-certifications {
  flex: 0 0 100%;
  order: 10;
}
.site-footer .footer-certifications .certification-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 3em;
}
.site-footer .footer-certifications .certification-wrapper .certification {
  display: flex;
  align-items: center;
}
.site-footer .footer-certifications .certification-wrapper .certification img {
  width: 100%;
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 700px) {
  .site-footer .footer-certifications .certification-wrapper .certification img {
    height: 38px;
  }
}
.site-footer a {
  color: white;
}
.site-footer a img {
  transition: transform 0.3s ease-out;
}
.site-footer a:hover {
  color: #b3dbff;
}
.site-footer a:hover img {
  transform: scale(1.05);
}
.site-footer h4 {
  font-size: clamp(1.4375rem, 1.2969rem + 0.375vw, 1.625rem);
  font-weight: 700;
  color: white;
}
.site-footer .footer-legal {
  display: flex;
  justify-content: space-between;
  font-size: clamp(0.75rem, 0.7031rem + 0.125vw, 0.8125rem);
  border-top: 1px solid white;
  padding-top: 2em;
  margin-top: 3em;
}
.site-footer .footer-legal .legal-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .site-footer .footer-legal .legal-items {
    gap: 1em 0;
  }
}
.site-footer .footer-legal .legal-items .legal-item {
  margin-right: 1em;
  border-right: 1px solid white;
  padding-right: 1em;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .site-footer .footer-legal .legal-items .legal-item:first-child {
    flex: 0 0 100%;
    border-right: none;
  }
}
.site-footer .footer-legal .legal-items .legal-item:last-child {
  border-right: none;
  padding-right: 0;
}
.site-footer .created-by {
  white-space: nowrap;
  font-size: clamp(0.75rem, 0.7031rem + 0.125vw, 0.8125rem);
}

.social-links {
  display: flex;
  margin-top: 1em;
}
.social-links a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0588ff;
  border-radius: 50%;
  margin: 0 10px 10px 0;
  transition: background 0.3s ease-out;
}
.social-links a:hover {
  background: #242424;
}
.social-links a:hover svg rect {
  fill: white;
}
.social-links a:hover svg path {
  fill: #0588ff;
}
.social-links a svg {
  max-height: 40px;
  max-width: 40px;
}
.social-links a svg rect {
  transition: fill 0.3s ease-out;
}
.social-links a svg path {
  fill: white;
  transition: fill 0.3s ease-out;
}

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

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

.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: 1200px) {
  .block {
    padding: 8% 5%;
  }
}
.block .inner {
  display: flex;
  flex-wrap: wrap;
}

.bg-texture {
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.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 #0588ff;
  margin: 0px 2px;
}
.pagination a {
  border: 1px solid rgba(5, 136, 255, 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid #0588ff;
  background: #0588ff;
  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;
  z-index: 2;
  padding-top: 5%;
  padding-bottom: 0;
  padding-right: 0;
  background: linear-gradient(135deg, rgb(255, 255, 255) 20%, rgb(196, 229, 255) 100%);
}
.hero.iframe-hero {
  padding-bottom: 8%;
}
.hero.iframe-hero .hero-media {
  margin-bottom: 0;
  overflow: hidden;
  aspect-ratio: 12/9;
  flex: 0 0 42%;
  max-height: 500px;
}
.hero.iframe-hero .inner {
  align-items: center;
}
.hero .inner {
  position: relative;
}
@media screen and (max-width: 650px) {
  .hero .inner {
    flex-direction: column;
  }
}
.hero .hero-content {
  flex: 0 0 50%;
  position: relative;
  padding-right: 2.5%;
}
@media screen and (max-width: 650px) {
  .hero .hero-content {
    margin-bottom: 2em;
    padding-right: 5%;
    display: block;
    padding-top: 30px;
  }
}
.hero .hero-content .hero-text {
  max-width: 510px;
  position: relative;
  z-index: 4;
}
.hero .hero-media {
  flex: 0 0 50%;
  position: relative;
  z-index: 3;
  margin-bottom: -2.5em;
  padding-bottom: 6px;
  aspect-ratio: 14/9;
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 650px) {
  .hero .hero-media {
    max-height: unset;
    aspect-ratio: 11/9;
  }
}
.hero .hero-media::after {
  content: "";
  position: absolute;
  z-index: -3;
  left: 0;
  right: 0;
  height: 50px;
  bottom: -6px;
  background: linear-gradient(135deg, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
  border-radius: 6px 0 0 6px;
}
.hero .hero-media .bullet-points {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 0;
  list-style: none;
  color: white;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin: 0;
  padding: 2em;
  max-width: 800px;
}
@media screen and (max-width: 650px) {
  .hero .hero-media .bullet-points {
    padding: 5%;
  }
}
.hero .hero-media .bullet-points li {
  display: flex;
  line-height: 1.2;
  margin-top: 0.8em;
}
.hero .hero-media .bullet-points span {
  font-size: clamp(0.875rem, 0.7813rem + 0.2344vw, 1rem);
  font-weight: 500;
}
.hero .hero-media .bullet-points .bullet {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #0588ff;
  display: inline;
  margin-right: 0.8em;
}
.hero .hero-media .bullet-points .bullet.bullet-checkmark {
  background-image: url("/wp-content/themes/foe/images/shell/check.svg");
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero .hero-media .hero-video {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.hero .hero-media .hero-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.hero .hero-media .hero-video video {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.hero .hero-media .hero-bg {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}

.testimonials-block {
  position: relative;
  padding-top: calc(8% + 2.5em);
  overflow: hidden;
}
.testimonials-block .controls {
  position: static;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}
@media screen and (max-width: 650px) {
  .testimonials-block .controls {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.5em;
    padding-top: 2em;
  }
}
.testimonials-block .controls .button-prev,
.testimonials-block .controls .button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 650px) {
  .testimonials-block .controls .button-prev,
  .testimonials-block .controls .button-next {
    position: static;
    transform: translateY(0);
  }
}
.testimonials-block .controls .button-prev {
  left: 0;
}
.testimonials-block .controls .button-next {
  right: 0;
}
.testimonials-block .inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .testimonials-block .inner {
    display: block;
    padding-top: 10%;
  }
}
.testimonials-block .testimonial-slider {
  width: 100%;
  position: relative;
  z-index: 2;
}
.testimonials-block .testimonial-slider .testimonial-content .content {
  font-size: clamp(1.4375rem, 1.0804rem + 0.8929vw, 1.9375rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 700px;
  text-wrap: balance;
  margin: auto;
}
.testimonials-block .testimonial-slider .testimonial-content .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5%;
}
.testimonials-block .testimonial-slider .testimonial-content .testimonial-author .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials-block .testimonial-slider .testimonial-content .testimonial-author .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.testimonials-block .testimonial-slider .testimonial-content .testimonial-author .author-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5em;
}
.testimonials-block .testimonial-slider .testimonial-content .testimonial-author .author-info h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: unset;
  line-height: 1.2;
}
@media screen and (max-width: 650px) {
  .testimonials-block .testimonial-slider .testimonial-content .testimonial-author .author-info h5 {
    font-size: 1rem;
  }
}
.testimonials-block .testimonial-slider .testimonial-content .testimonial-author .author-info .title {
  font-weight: 700;
}
@media screen and (max-width: 650px) {
  .testimonials-block .testimonial-slider .testimonial-content .testimonial-author .author-info .title {
    font-size: 0.9rem;
  }
}
.testimonials-block .bg-texture {
  position: absolute;
  top: -35%;
  right: -35%;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("/wp-content/themes/foe/images/shell/bg-texture-2.webp");
  height: 532px;
  width: 100%;
  background-size: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 650px) {
  .testimonials-block .bg-texture {
    right: unset;
    left: 0;
    background-position: bottom left;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.2;
    top: -60%;
  }
}

.partners-block {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: calc(10% + 3em);
}
@media screen and (max-width: 650px) {
  .partners-block {
    padding-bottom: calc(10% + 5em);
  }
}
.partners-block .inner {
  text-align: center;
  flex-direction: column;
}
.partners-block .inner .heading-wrapper {
  margin-bottom: 1em;
}
.partners-block .inner .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2em;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 650px) {
  .partners-block .inner .partners-grid {
    gap: 1.5rem;
  }
}
.partners-block .inner .partners-grid .partner-item {
  flex: 0 0 calc(16.66% - 2em);
  aspect-ratio: 4/3;
  padding: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  max-width: 150px;
}
@media screen and (max-width: 650px) {
  .partners-block .inner .partners-grid .partner-item {
    flex: 0 0 calc(33.33% - 1em);
    aspect-ratio: unset;
  }
}
.partners-block .inner .partners-grid .partner-item a:hover img {
  transform: scale(1.08);
}
.partners-block .inner .partners-grid .partner-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 50px;
  max-width: 100%;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 650px) {
  .partners-block .inner .partners-grid .partner-item img {
    max-height: 30px;
    max-width: 100px;
  }
}
.partners-block .bg-texture {
  position: absolute;
  left: -10%;
  bottom: -55%;
  background-image: url("/wp-content/themes/foe/images/shell/bg-texture-2.webp");
  height: 532px;
  width: 100%;
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 650px) {
  .partners-block .bg-texture {
    bottom: -100%;
    left: -20%;
  }
}

.marketplaces-block {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(10% + 2em);
}
@media screen and (max-width: 900px) {
  .marketplaces-block {
    background: linear-gradient(79deg, rgb(255, 255, 255) 0%, rgb(196, 229, 255) 100%);
  }
}
.marketplaces-block .inner {
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 900px) {
  .marketplaces-block .inner {
    display: block;
  }
}
.marketplaces-block .inner .intro-wrapper {
  margin-bottom: 1em;
  flex: 0 0 45%;
  padding-left: 4%;
  max-width: 800px;
}
@media screen and (max-width: 900px) {
  .marketplaces-block .inner .intro-wrapper {
    padding: 0;
  }
}
.marketplaces-block .inner .intro-wrapper p {
  max-width: 475px;
}
.marketplaces-block .inner .marketplaces-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  flex: 0 0 55%;
}
@media screen and (max-width: 900px) {
  .marketplaces-block .inner .marketplaces-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
  }
}
.marketplaces-block .inner .marketplaces-grid .marketplace-item {
  flex: 0 0 calc(20% - 1em);
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 8px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3dbff;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .marketplaces-block .inner .marketplaces-grid .marketplace-item {
    padding: 0.7em;
    background: white;
  }
}
.marketplaces-block .inner .marketplaces-grid .marketplace-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.marketplaces-block .inner .marketplaces-grid .marketplace-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  background: #c4e5ff;
}
.marketplaces-block .inner .marketplaces-grid .marketplace-item a:hover::before {
  opacity: 1;
}
.marketplaces-block .inner .marketplaces-grid .marketplace-item a:hover img {
  transform: scale(1.08);
}
.marketplaces-block .inner .marketplaces-grid .marketplace-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 50px;
  max-width: 100%;
  transition: transform 0.3s ease-out;
}
@media screen and (max-width: 900px) {
  .marketplaces-block .inner .marketplaces-grid .marketplace-item img {
    max-height: 30px;
  }
}
@media (max-width: 768px) {
  .marketplaces-block .inner .marketplaces-grid .partner-item {
    flex: 0 0 calc(33.33% - 1em);
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .marketplaces-block .inner .marketplaces-grid {
    gap: 0.5em;
  }
  .marketplaces-block .inner .marketplaces-grid .partner-item {
    flex: 0 0 calc(50% - 0.5em);
    max-width: 100px;
  }
  .marketplaces-block .inner .marketplaces-grid .partner-item img {
    max-height: 40px;
  }
}
@media (max-width: 320px) {
  .marketplaces-block .inner .marketplaces-grid .partner-item {
    flex: 0 0 calc(100% - 0.5em);
    max-width: 80px;
    margin: 0 auto;
  }
}
.marketplaces-block .bg-texture {
  position: absolute;
  left: -10%;
  bottom: -50%;
}

.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;
}
@media screen and (max-width: 650px) {
  .wide-media .media-wrapper img {
    top: 0;
    height: calc(100% + 200px);
  }
}
.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;
}
.wide-media.contained {
  padding-top: 0;
  padding-bottom: 30%;
  background: linear-gradient(30deg, rgb(255, 255, 255) 0%, rgb(196, 229, 255) 100%);
}
.wide-media.contained .media-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  aspect-ratio: 20/9;
  margin: 0 auto;
  border-radius: 8px;
  top: -4em;
}
@media screen and (max-width: 650px) {
  .wide-media.contained .media-wrapper {
    top: -3em;
    aspect-ratio: 15/9;
  }
}
.wide-media.contained .text-overlay {
  display: none;
}
.wide-media.contained .inner {
  color: #242424;
}
.wide-media.contained .inner .content {
  margin-top: 3em;
  max-width: 800px;
}
@media screen and (max-width: 650px) {
  .wide-media.contained .inner .content {
    margin-top: 0em;
  }
}

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, rgb(255, 255, 255) 20%, rgb(196, 229, 255) 100%);
  padding-top: 5%;
}
@media screen and (max-width: 650px) {
  .text-block {
    padding-top: 10%;
  }
}
.text-block .text-content {
  max-width: 800px;
  margin: 0 auto;
}
.text-block .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}
.text-block .icon svg {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 650px) {
  .text-block .icon svg {
    width: 25px;
    height: 25px;
  }
}
.text-block .button-container {
  padding-top: 1em;
  display: flex;
  justify-content: center;
}
.text-block .button-container .foe-button {
  margin: 0;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}

.boxes {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 1em;
}
@media screen and (max-width: 650px) {
  .boxes {
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 10%;
  }
}
.boxes .box {
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #9ecaee;
  aspect-ratio: 4/3;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
}
.boxes h3 {
  font-size: clamp(1.1em, 2.5vw, 1.5em);
  line-height: 1.1;
}
.boxes .foe-button {
  margin: 1em 0 0;
}

.cta {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .cta {
    padding-top: 10%;
  }
}
.cta:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(90deg, rgb(5, 136, 255) 33%, rgba(5, 136, 255, 0) 100%);
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .cta:after {
    background: linear-gradient(90deg, rgb(5, 136, 255) 33%, rgba(5, 136, 255, 0.5) 100%);
  }
}
.cta .cta-content {
  max-width: 800px;
  color: white;
}
.cta .cta-content p {
  color: white;
}
.cta .button-container .foe-button {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.cta .cta-bg,
.cta .cta-video {
  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;
}
.cta .cta-bg img, .cta .cta-bg video,
.cta .cta-video img,
.cta .cta-video video {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .cta .cta-bg img,
  .cta .cta-bg video,
  .cta .cta-video img,
  .cta .cta-video video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

.content-image-block.boxed-in {
  padding: 0 2em;
}
@media screen and (max-width: 650px) {
  .content-image-block.boxed-in {
    padding: 5%;
  }
}
.content-image-block.boxed-in .inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  margin-top: -25%;
  background: white;
  box-shadow: 10px 0px 50px 0 #eaf5ff;
  align-items: unset;
}
@media screen and (max-width: 1500px) {
  .content-image-block.boxed-in .inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .content-image-block.boxed-in .inner {
    display: block;
  }
}
.content-image-block.boxed-in .inner h3 {
  margin-top: 0;
}
.content-image-block.boxed-in .inner .content-text {
  padding: 5%;
}
.content-image-block.boxed-in .inner .content-image {
  height: auto;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 0;
}
.content-image-block.boxed-in .inner .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 650px) {
  .content-image-block.boxed-in .inner .content-image img {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 475px) {
  .content-image-block.boxed-in .inner .content-image img {
    aspect-ratio: 4/3;
  }
}
.content-image-block .inner {
  align-items: center;
}
.content-image-block .content-text {
  flex: 0 0 50%;
}
.content-image-block .content-image {
  flex: 0 0 50%;
}

@media screen and (max-width: 650px) {
  .numbers-section {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}
.numbers-section .inner {
  display: block;
}
.numbers-section .heading-wrapper {
  text-align: center;
  margin-bottom: 5%;
}
@media screen and (max-width: 650px) {
  .numbers-section .heading-wrapper {
    margin-bottom: 2em;
  }
}
.numbers-section .numbers-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 8%;
}
@media screen and (max-width: 650px) {
  .numbers-section .numbers-container {
    display: block;
    text-align: center;
    padding: 0;
  }
}
.numbers-section .numbers-container .number {
  border-left: solid 1px #9ecaee;
  padding-left: 10%;
}
@media screen and (max-width: 650px) {
  .numbers-section .numbers-container .number {
    border-left: none;
    padding-left: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.numbers-section .numbers-container .number::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  height: 1px;
  background: #9ecaee;
  display: none;
  margin-top: 2em;
  margin-bottom: 1em;
  max-width: 56px;
}
@media screen and (max-width: 650px) {
  .numbers-section .numbers-container .number::after {
    display: block;
  }
}
.numbers-section .numbers-container .number:last-child::after {
  display: none;
}
.numbers-section .numbers-container .number .number-wrap {
  font-size: clamp(3rem, 2.6875rem + 0.8333vw, 3.4375rem);
  display: flex;
  color: #0588ff;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 650px) {
  .numbers-section .numbers-container .number .number-wrap {
    text-align: center;
    justify-content: center;
  }
}
.numbers-section .numbers-container .number .number-subtitle {
  font-size: clamp(0.9375rem, 0.8482rem + 0.2381vw, 1.0625rem);
  color: #242424;
  font-weight: 800;
  line-height: 1.2;
  max-width: 12em;
  text-wrap: balance;
  padding-top: 0.5em;
}

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

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

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

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

.post-list {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
}
.post-list .post {
  flex: 0 0 31.33333%;
  margin: 0px 3% 3% 0px;
  background: #f4f4f4;
}
.post-list .post:nth-of-type(3n + 3) {
  margin-right: 0px;
}
.post-list .post .post-img {
  width: 100%;
  padding-top: 65%;
  background: center center no-repeat;
  background-size: cover;
  display: block;
  position: relative;
}
.post-list .post .post-img:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #0588ff;
  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: #0588ff;
  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 .inner {
  max-width: 900px;
  margin: 0 auto;
}
.post-content .post-head {
  flex: 0 0 100%;
}
.post-content .post-img {
  aspect-ratio: 10/5;
  position: relative;
  flex: 0 0 100%;
  margin: 1em 0px 2em 0px;
}
.post-content .post-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content .post-text {
  flex: 0 0 100%;
}
.post-content .post-links {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

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

.faq-block .inner {
  display: block;
}
.faq-block .inner .faq-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.faq-block .inner .faqs {
  padding: 5% 0px 0px 0px;
}
.faq-block .inner .faq {
  border-bottom: 2px solid #0588ff;
  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: "sofia-pro", 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: #0588ff;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.5s ease-out;
}
.faq-block .inner .faq .question .status:before {
  transform: rotate(-90deg);
}
.faq-block .inner .faq .answer {
  padding: 2.9rem 3.5rem;
  display: none;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
  font-size: 18px;
}
.faq-block .inner .faq .answer .answer-inner {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .answer {
    padding: 0rem 5rem 1.5rem 0rem;
  }
}
.faq-block .inner .faq .answer p:last-child {
  margin-bottom: 0px;
}

.slider-block {
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  padding-bottom: 10%;
}
.slider-block .slider-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 3%;
  padding-left: 5%;
  padding-right: 5%;
}
@media screen and (max-width: 900px) {
  .slider-block .slider-intro {
    display: none;
  }
}
.slider-block .slider-intro h4 {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: unset;
}
.slider-block .inner {
  display: block;
}
.slider-block .slider {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .slider-block .slider {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media screen and (max-width: 600px) {
  .slider-block .slider {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.slider-block .slider .slide {
  width: 100%;
  position: relative;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  width: 384px;
  height: 438px;
}
@media screen and (max-width: 1024px) {
  .slider-block .slider .slide {
    width: unset;
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 767px) {
  .slider-block .slider .slide {
    aspect-ratio: 11/9;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 600px) {
  .slider-block .slider .slide {
    aspect-ratio: 8/9;
  }
}
.slider-block .slider .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 2;
  opacity: 0.5;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.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;
}
.slider-block .slider .slide .slide-content {
  max-width: 1000px;
  position: relative;
  z-index: 5;
  color: white;
  margin-top: auto;
  transition: opacity 0.75s ease-out;
  padding: 1rem 1.6rem;
}
.slider-block .slider .slide .slide-content h3 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: clamp(1.4375rem, 1.2969rem + 0.375vw, 1.625rem);
  font-weight: 700;
}
.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: #0588ff;
}
.slider-block .slider .slide .slide-content .button-container .foe-button::after {
  background-color: #0588ff;
}
.slider-block .slider .controls {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  padding-top: 2em;
}
.slider-block .bg-texture {
  position: absolute;
  left: -20%;
  transform: scaleX(-1);
  bottom: -30%;
  z-index: -1;
  pointer-events: none;
  background-image: url("/wp-content/themes/foe/images/shell/bg-texture-2.webp");
  height: 532px;
  width: 100%;
  background-size: 100%;
}
@media screen and (max-width: 900px) {
  .slider-block .bg-texture {
    display: none;
  }
}

.controls {
  margin-top: 1em;
  margin-bottom: 1em;
}
.controls .arrows {
  display: flex;
  align-items: center;
}
.controls .arrows .button-prev {
  margin-right: 0.5em;
}
.controls .slider-pagination {
  width: auto;
}
.controls .slider-pagination .swiper-pagination-bullet {
  border: 2px solid rgba(36, 36, 36, 0.2);
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background 0.3s ease-out, border 0.3s ease-out;
}
.controls .slider-pagination .swiper-pagination-bullet:hover {
  border-color: #242424;
}
.controls .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #0588ff;
}
.controls .button-next,
.controls .button-prev {
  position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  overflow: hidden;
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  background: linear-gradient(to right, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
  margin: 0;
  background-size: 100% 100%;
  background-position: 0% 50%;
  outline: none;
  transition: all 0.3s ease-out;
}
.controls .button-next.swiper-button-lock,
.controls .button-prev.swiper-button-lock {
  display: none;
}
.controls .button-next::before,
.controls .button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background: #242424;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.controls .button-next::after,
.controls .button-prev::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: 30% 30%;
  background-position: center center;
  z-index: 2;
}
.controls .button-next.swiper-button-disabled,
.controls .button-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border: none;
}
.controls .button-next:hover,
.controls .button-prev:hover {
  border: none;
}
.controls .button-next:hover.swiper-button-disabled,
.controls .button-prev:hover.swiper-button-disabled {
  border: none;
}
.controls .button-next:hover.swiper-button-disabled::before,
.controls .button-prev:hover.swiper-button-disabled::before {
  opacity: 0;
}
.controls .button-next:hover::before,
.controls .button-prev:hover::before {
  opacity: 1;
}
.controls .button-next svg,
.controls .button-prev svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease-out;
}
.controls .button-prev::after {
  background-image: url("/wp-content/themes/foe/images/shell/arrow-left.svg");
  right: 2px;
}
.controls .button-next::after {
  background-image: url("/wp-content/themes/foe/images/shell/arrow-right.svg");
  left: 2px;
}

.card-slider-section {
  padding-left: 0;
  padding-right: 0;
}
.card-slider-section .inner {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 900px) {
  .card-slider-section .inner {
    display: block;
  }
}
.card-slider-section .inner h2 {
  margin-top: 0;
}
.card-slider-section .inner .image-col {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .card-slider-section .inner .image-col {
    padding-right: 5%;
  }
}
.card-slider-section .inner .image-col .media-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0 8px 8px 0;
  aspect-ratio: 12/9;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .card-slider-section .inner .image-col .media-container {
    aspect-ratio: 16/9;
    margin-bottom: 2em;
  }
}
.card-slider-section .inner .image-col .media-container::after {
  content: "";
  position: absolute;
  z-index: -3;
  left: 0;
  right: 0;
  height: 50px;
  bottom: -6px;
  background: linear-gradient(-135deg, rgb(5, 136, 255) 0%, rgb(57, 46, 217) 100%);
  border-radius: 0 0 6px 0;
}
.card-slider-section .inner .image-col .media-container .media-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0 8px 8px 0;
  aspect-ratio: 12/9;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .card-slider-section .inner .image-col .media-container .media-wrapper {
    aspect-ratio: 16/9;
  }
}
.card-slider-section .inner .image-col .media-container img,
.card-slider-section .inner .image-col .media-container video {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.card-slider-section .inner .content-col {
  padding: 5% 0 5% 5%;
  overflow: hidden;
  flex: 0 0 55%;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .card-slider-section .inner .content-col {
    padding-top: 0;
  }
}
.card-slider-section .inner .content-col .content-wrap {
  margin-bottom: 5%;
  max-width: 800px;
}
.card-slider-section .inner .content-col .card-slider {
  width: 100%;
  padding-right: 10%;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .card-slider-section .inner .content-col .card-slider {
    padding-top: 1em;
  }
}
@media screen and (max-width: 500px) {
  .card-slider-section .inner .content-col .card-slider {
    padding-right: 30%;
  }
}
.card-slider-section .inner .content-col .card-slider .card-slide {
  padding: 2em 1.5em 1.5em;
  border: solid 1px #b3dbff;
  border-radius: 8px;
  transition: opacity 0.3s ease-out;
  height: auto;
  min-height: 200px;
}
.card-slider-section .inner .content-col .card-slider .card-slide.swiper-slide-prev {
  opacity: 0;
}
.card-slider-section .inner .content-col .card-slider .card-slide .slide-icon {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 34px;
  width: auto;
}
.card-slider-section .inner .content-col .card-slider .card-slide .slide-icon img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: auto;
}
.card-slider-section .inner .content-col .card-slider .card-slide .slide-title {
  font-size: clamp(0.875rem, 0.8304rem + 0.119vw, 0.9375rem);
  font-weight: 900;
}
.card-slider-section .inner .content-col .card-slider .card-slide .slide-content {
  line-height: 1.5;
}
.card-slider-section .inner .content-col .card-slider .card-slide img {
  margin-bottom: 1rem;
}
.card-slider-section .inner .content-col .card-slider .controls {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.card-slider-section .inner.orientation-right {
  flex-direction: row-reverse;
}
.card-slider-section .inner.orientation-right .content-col {
  padding: 5% 5% 5% 8%;
}
@media screen and (max-width: 1200px) {
  .card-slider-section .inner.orientation-right .content-col {
    padding: 5% 5% 5% 5%;
  }
}
.card-slider-section .inner.orientation-right .card-slider .card-slider {
  padding-right: 0;
}
.card-slider-section .inner.media-small .image-col {
  flex: 0 0 45%;
}
@media screen and (max-width: 900px) {
  .card-slider-section .inner.media-small .image-col {
    display: none;
  }
}
.card-slider-section .inner.media-small .image-col .media-wrapper {
  border-radius: 8px 0 0 8px;
}
.card-slider-section .inner.media-small .content-col {
  flex: 0 0 55%;
}
.card-slider-section .inner.media-small .content-col .card-slider {
  padding-right: 0;
  overflow: hidden;
}

#how-it-works {
  background: linear-gradient(100deg, rgb(255, 255, 255) 0%, rgb(196, 229, 255) 100%);
  padding-bottom: 30%;
}
#how-it-works + section.slider-block {
  margin-top: -35%;
  padding-top: 10%;
}
#how-it-works .media-container {
  margin-top: -5em;
}
#how-it-works .media-container::after {
  display: none;
}
#how-it-works .card-slide {
  background: white;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  display: none;
}
.modal .ca-icon {
  margin-bottom: 1em;
  text-align: center;
}
.modal .ca-icon img {
  height: 60px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .modal .ca-icon img {
    height: 50px;
  }
}
.modal .modal-inner {
  margin: auto;
  height: 100%;
  width: 100%;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-inner .content-wrapper {
  position: relative;
  border-radius: 8px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 20%, rgb(196, 229, 255) 100%);
  width: 100%;
  height: auto;
  margin: auto;
  padding: 5% 5% 5% 5%;
  max-width: 800px;
}
.modal .modal-inner .content {
  width: 100%;
  max-height: 50vh;
  overflow-y: scroll;
  padding: 0 1em;
}
.modal .modal-inner .content::-webkit-scrollbar {
  scrollbar-color: rgba(0, 0, 0, 0.2) white;
  width: 8px;
  border-radius: 10px;
}
.modal .modal-inner .content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.modal .modal-inner .content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.modal .modal-inner .content .pipedriveWebForms {
  width: 100%;
  display: flex;
  justify-content: center;
}
.modal .modal-inner .close-modal {
  position: absolute;
  top: 2em;
  right: 5%;
  cursor: pointer;
  z-index: 9;
}
@media screen and (max-width: 800px) {
  .modal .modal-inner .close-modal {
    top: 1em;
    right: 1em;
  }
}
.modal .modal-inner .close-modal svg {
  width: 17px;
}
.modal .modal-inner .close-modal svg path {
  stroke: #242424;
}
.modal .modal-inner .close-modal:hover svg path {
  stroke: #0588ff;
}

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

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 #0588ff;
}

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 #0588ff;
  box-shadow: none;
}

body .gform_wrapper.gravity-theme {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
body .gform_wrapper.gravity-theme .validation_error,
body .gform_wrapper.gravity-theme .gform_validation_errors {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 1em;
  margin: 0px 0px 1.5em 0px;
  width: auto;
  box-shadow: none;
  font-weight: 400;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
  font-family: "sofia-pro", 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: #242424;
  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: #242424;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label {
  font-size: 14px;
  padding: 0px 0px 8px 0px;
  margin-bottom: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 3em;
  padding: 0px 1em;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: #0588ff;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 10em;
  padding: 0.8em 1em;
  background: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: #0588ff;
}
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: #0588ff !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: #0588ff !important;
  box-shadow: 0px 0px 0px 3px #0588ff;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 40px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 7px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 3px;
  display: block;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:before {
  content: "";
  position: absolute;
  z-index: 9;
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
  border: 3px solid white;
  border-right: 0px;
  border-top: 0px;
  width: 14px;
  height: 8px;
  top: 13px;
  left: 7px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #e0e1e2;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
body .gform_wrapper.gravity-theme .gform_footer {
  margin: 0px;
  padding: 1.5em 0px 0px 0px;
}
body .gform_wrapper.gravity-theme input[type=submit] {
  height: auto;
  padding: 15px 25px;
  background: #0588ff;
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  margin: 0px 1em 0px 0px;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: rgb(0, 109.516, 209);
}
@media screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    line-height: inherit;
    min-height: 0px;
    width: auto;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

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

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

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