@charset "UTF-8";
/*
Global Variables

@import this file at the top of each page 
template file to make variables available.
*/
/*
Font Families
Font files imported at the top of _fonts.scss 
*/
/*
Mixins
Add mixins to any css page using @include
*/
/*
CSS Transitions

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

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

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

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          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] {
  -webkit-box-sizing: border-box;
          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;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

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

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  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;
}
ul li {
  margin-bottom: 1em;
}
ul li::marker {
  color: #F9DD75;
}

ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 0px;
  width: 100%;
  -webkit-box-sizing: border-box;
  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: #211d1e;
}

a:hover,
a:focus,
a:active {
  color: rgb(5.7402597403, 16.2077922078, 20.2597402597);
}

a:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

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

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

@media screen and (max-width: 750px) {
  .col-1,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-10,
  .col-11,
  .col-12 {
    float: left;
    position: relative;
  }
}
/*--------------------------------------------------------------
# Social Sharing
--------------------------------------------------------------*/
.foe-share ul,
.foe-share li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.foe-share li {
  display: inline-block;
}
.foe-share li a {
  display: block;
}
.foe-share li svg {
  width: 20px;
  height: 20px;
  display: block;
}
.foe-share li path {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}

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

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

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

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

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

/*--------------------------------------------------------------
# ACF Google Maps Reset.
--------------------------------------------------------------*/
.acf-map {
  width: 100%;
  min-height: 100px;
  border: none;
  margin: 0px;
}

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

/*
Fonts Styling

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

a {
  color: #211d1e;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
a:hover {
  color: rgb(5.7402597403, 16.2077922078, 20.2597402597);
}

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

/*
HEADINGS
*/
@media screen and (max-width: 600px) {
  h1 br, h2 br, h3 br,
  h4 br, h5 br, h6 br {
    display: none;
  }
}

h1,
.primary-heading {
  font-family: "new-kansas", sans-serif;
  font-size: clamp(1.333rem, 4vw + 1rem, 4.444rem);
  line-height: 1.2;
  margin: 0.4em 0px 0.5em;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  h1,
  .primary-heading {
    margin-bottom: 0.4em;
  }
}
@media screen and (max-width: 900px) {
  h1,
  .primary-heading {
    margin-bottom: 0.6em;
    font-size: clamp(1.556rem, 2vw + 1rem, 80px);
  }
}

h2,
.secondary-heading {
  font-family: "new-kansas", sans-serif;
  font-size: clamp(1.333rem, 1vw + 1rem, 2rem);
  line-height: 1.1;
  margin: 0 0px 0.8em;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  h2,
  .secondary-heading {
    margin-bottom: 0.6em;
  }
}

h3,
.small-heading {
  font-family: "new-kansas", sans-serif;
  font-size: 1.3em;
  line-height: 1.4;
  margin: 0.4em 0px;
  display: block;
  font-weight: 400;
  text-wrap: balance;
}

h4,
.sub-heading {
  font-family: "new-kansas", sans-serif;
  font-size: 1.1em;
  margin-bottom: 0.4em;
  font-weight: 400;
}

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

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

.button-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.foe-button {
  display: inline-block;
  padding: 1em 1.5em 1em 1.5em;
  line-height: 1.1;
  background: #11303C;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: white;
  border-radius: 31px;
  margin: 0px 0em 0em 0px;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  position: relative;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 1300px) {
  .foe-button {
    font-size: 0.9em;
  }
}
.foe-button .letter {
  display: inline-block;
  opacity: 0;
  min-width: 0.3em;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.foe-button .text {
  display: inline-block;
  opacity: 0;
  min-width: 0.3em;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.foe-button:after {
  content: attr(title);
  position: absolute;
  left: 0px;
  right: 0px;
  text-align: center;
  -webkit-transition: 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.foe-button:hover {
  background: #F9DD75;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  text-decoration: none;
}
.foe-button:hover:after {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}
.foe-button:hover .text {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.foe-button:active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.foe-button:focus {
  color: white;
}
.foe-button.white {
  background: white;
  color: #211d1e;
}
.foe-button.white:hover {
  background: #11303C;
  color: white;
}
.foe-button.yellow, .foe-button.solid-alt {
  background: #F9DD75;
  color: #211d1e;
}
.foe-button.yellow:hover, .foe-button.solid-alt:hover {
  background: #11303C;
  color: white;
}
.foe-button.outline {
  border: 2px solid #11303C;
  background: none;
  color: #211d1e;
  padding: 0.6em 1.2em 0.7em 1.2em;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.8em;
}
@media screen and (max-width: 800px) {
  .foe-button.outline {
    margin: 0px 0.8em 0.8em 0px;
    padding: 0.5em 1.1em 0.6em 1.1em;
  }
}
.foe-button.outline .text {
  color: white;
}
.foe-button.outline.active {
  background: #11303C;
  color: white;
  border-color: #11303C;
}
.foe-button.outline.active:hover {
  border-color: #F9DD75;
}
.foe-button.outline:hover {
  background: #F9DD75;
  color: white;
}
.foe-button.dark {
  background: #F9DD75;
}
.foe-button.dark:hover {
  background: #11303C;
  color: white;
}

.sell-sheet {
  font-family: "new-kansas", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.1em;
  position: relative;
  padding-right: calc(0.5em + 20px);
  text-decoration: none !important;
  margin-right: 2em;
}
.sell-sheet:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1100px) {
  .sell-sheet {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .sell-sheet {
    font-size: 1em;
    padding-right: 0;
    position: static;
  }
}
.sell-sheet:hover .icon img.prev {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.sell-sheet:hover .icon img.after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.sell-sheet .icon {
  margin-left: 0.5em;
  width: 20px;
  height: 20px;
  display: block;
  border-bottom: solid 2px #11303C;
  overflow: hidden;
  position: absolute;
  right: 0%;
}
@media screen and (max-width: 1100px) {
  .sell-sheet .icon {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .sell-sheet .icon {
    right: 5%;
  }
}
@media screen and (max-width: 375px) {
  .sell-sheet .icon {
    width: 12px;
    height: 12px;
  }
}
.sell-sheet .icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 2px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sell-sheet .icon img.prev {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.sell-sheet .icon img.after {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}

body.no-scroll {
  overflow: hidden;
}
body.no-scroll #header .nav-toggle span {
  background: #11303C;
}

#header {
  padding: 15px 30px;
  border-radius: 15px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 5%;
  right: 5%;
  z-index: 900;
  -webkit-transition: background 0.3s ease-out, padding 0.3s ease-out, left 0.3s ease-out, right 0.3s ease-out, top 0.3s ease-out, border-radius 0.3s ease-out 0.2s, -webkit-box-shadow 0.3s ease-out;
  transition: background 0.3s ease-out, padding 0.3s ease-out, left 0.3s ease-out, right 0.3s ease-out, top 0.3s ease-out, border-radius 0.3s ease-out 0.2s, -webkit-box-shadow 0.3s ease-out;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out, padding 0.3s ease-out, left 0.3s ease-out, right 0.3s ease-out, top 0.3s ease-out, border-radius 0.3s ease-out 0.2s;
  transition: background 0.3s ease-out, box-shadow 0.3s ease-out, padding 0.3s ease-out, left 0.3s ease-out, right 0.3s ease-out, top 0.3s ease-out, border-radius 0.3s ease-out 0.2s, -webkit-box-shadow 0.3s ease-out;
  top: 30px;
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 15px;
}
@media screen and (max-width: 1300px) {
  #header {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 1100px) {
  #header {
    left: 3%;
    right: 3%;
    border-radius: 15px;
    padding: 15px 20px;
  }
}
@media screen and (max-width: 900px) {
  #header {
    padding: 10px 10px 10px 25px;
    top: 15px;
  }
}
@media screen and (max-width: 500px) {
  #header {
    top: 12px;
  }
}
#header.scrolled {
  padding: 15px 50px 15px;
  top: 35px;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  top: 0px;
}
@media screen and (max-width: 1300px) {
  #header.scrolled {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 900px) {
  #header.scrolled {
    padding: 10px 10px 10px 25px;
    top: 0;
  }
}
#header.scrolled .site-branding .site-logo {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
@media screen and (max-width: 900px) {
  #header.scrolled .site-branding .site-logo {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#header.scrolled .nav-toggle {
  background: none;
}
#header.scrolled .main-nav > .menu > .mega-menu > .sub-menu {
  left: 2em;
  right: 2em;
}

.site-branding {
  line-height: 0px;
  font-size: 0px;
  position: relative;
  z-index: 9;
}
.site-branding .site-logo {
  height: 41px;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media screen and (max-width: 1500px) {
  .site-branding .site-logo {
    height: 35px;
    width: auto;
  }
}
@media screen and (max-width: 1200px) {
  .site-branding .site-logo {
    height: 25px;
  }
}
@media screen and (max-width: 900px) {
  .site-branding .site-logo {
    height: 28px;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  .site-branding .site-logo {
    margin-top: 2px;
    height: 30px;
  }
}
.site-branding .site-logo path {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}

.main-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-left: 2em;
}
@media screen and (max-width: 1300px) {
  .main-nav {
    padding-left: 1em;
  }
}
@media screen and (max-width: 900px) {
  .main-nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.main-nav .foe-button {
  margin-left: 1em;
  font-size: 1rem;
}
@media screen and (max-width: 1300px) {
  .main-nav .foe-button {
    display: none;
  }
}
.main-nav .split {
  margin-left: auto;
}
.main-nav ul {
  margin: 0;
  padding: 0;
}
.main-nav ul li {
  list-style: none;
  margin: 0;
}
.main-nav > .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .main-nav > .menu {
    display: none;
  }
}
.main-nav > .menu > li {
  padding: 0 15px;
}
@media screen and (max-width: 1500px) {
  .main-nav > .menu > li {
    padding: 0 8px;
  }
}
.main-nav > .menu > li.split {
  margin-left: auto;
}
.main-nav > .menu > li span {
  font-size: 0.7rem;
  font-weight: 600;
}
.main-nav > .menu > li.menu-item-has-children > a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.main-nav > .menu > li.menu-item-has-children > a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.main-nav > .menu > li.menu-item-has-children > a:hover:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.main-nav > .menu > li.menu-item-has-children > a:after {
  content: "";
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 10px;
  width: 12px;
  height: 7px;
  margin: auto;
  margin-left: 10px;
  line-height: 0px;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  background: url("/wp-content/themes/foe/images/shell/arrow-down.svg") center center no-repeat;
}
@media screen and (max-width: 1200px) {
  .main-nav > .menu > li.menu-item-has-children > a:after {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.main-nav > .menu > li.menu-item-has-children > .sub-menu {
  position: absolute;
  display: none;
  background: color-mix(in srgb, #F8F8F5 90%, transparent);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px;
  -webkit-transition: padding 0.3s ease-out;
  transition: padding 0.3s ease-out;
}
.main-nav > .menu > li.menu-item-has-children > .sub-menu.open {
  opacity: 1;
  display: block;
}
.main-nav > .menu > li.menu-item-has-children > .sub-menu a {
  display: block;
  line-height: 1.4;
  position: relative;
  padding-right: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1500px) {
  .main-nav > .menu > li.menu-item-has-children > .sub-menu a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1200px) {
  .main-nav > .menu > li.menu-item-has-children > .sub-menu a {
    font-size: 0.9rem;
  }
}
.main-nav > .menu > li.menu-item-has-children > .sub-menu a:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}
.main-nav > .menu > li.menu-item-has-children > .sub-menu a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  margin: auto;
  background: #11303C;
  top: 0;
  right: 0;
  bottom: 0;
  mask: url("/wp-content/themes/foe/images/shell/arrow-right.svg") center center no-repeat;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/arrow-right.svg") center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu {
  position: static;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu > .sub-menu {
  left: 0;
  right: 0;
  top: calc(var(--header-height) + 10px);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: left 0.3s ease-out, right 0.3s ease-out, -webkit-transform 0.2s ease-out;
  transition: left 0.3s ease-out, right 0.3s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, left 0.3s ease-out, right 0.3s ease-out;
  transition: transform 0.2s ease-out, left 0.3s ease-out, right 0.3s ease-out, -webkit-transform 0.2s ease-out;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu > .sub-menu.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  overflow: hidden;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-cat {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  padding: 1em;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-cat > a {
  pointer-events: none;
  font-family: "new-kansas", sans-serif;
  font-size: 1.2em;
  color: #597947;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1300px) {
  .main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-cat > a {
    font-size: 1rem;
  }
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-cat > a::after {
  content: unset;
  display: none;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-cat .sub-menu li:not(.mega-sub-cat) {
  padding: 8px 0;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-cat .sub-menu li:not(.mega-sub-cat) a {
  color: #626262 !important;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-menu-intro {
  position: relative;
  padding: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 20%;
          flex: 0 1 20%;
  max-width: 266px;
  border-radius: 5px;
  overflow: hidden;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-menu-intro li {
  padding: 8px 0;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-menu-intro a {
  position: relative;
  z-index: 2;
  font-family: "new-kansas", sans-serif;
  font-size: 1.2em;
  padding-right: 24px;
}
@media screen and (max-width: 1300px) {
  .main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-menu-intro a {
    font-size: 1rem;
  }
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-menu-intro img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  -o-object-position: top;
     object-position: top;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat {
  padding-bottom: 8%;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat:last-child {
  padding-bottom: 0;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat > a {
  font-size: 0.8em;
  color: #597947;
  pointer-events: none;
}
@media screen and (max-width: 1300px) {
  .main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat > a {
    font-size: 0.8rem;
  }
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat > a::after {
  content: unset;
  display: none;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat > .sub-menu li {
  padding: 8px 0;
}
.main-nav > .menu > li.menu-item-has-children.mega-menu .mega-menu-inner .mega-sub-cat > .sub-menu li a {
  color: #626262;
}
.main-nav > .menu > li > a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  -webkit-transition: border-color 0.15s ease-out;
  transition: border-color 0.15s ease-out;
  font-size: 1rem;
}
@media screen and (max-width: 1300px) {
  .main-nav > .menu > li > a {
    font-size: 0.9rem;
  }
}
.main-nav > .menu > li > a:hover {
  border-color: #11303C;
}
.main-nav > .menu > li:not(.mega-menu) {
  position: relative;
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu,
.main-nav > .menu > li:not(.mega-menu) .children {
  position: absolute;
  left: -5px;
  margin: auto;
  width: 250px;
  top: 45px;
  padding: 10px 0px;
  display: none;
  border-radius: 8px;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 1300px) {
  .main-nav > .menu > li:not(.mega-menu) .sub-menu,
  .main-nav > .menu > li:not(.mega-menu) .children {
    top: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .main-nav > .menu > li:not(.mega-menu) .sub-menu,
  .main-nav > .menu > li:not(.mega-menu) .children {
    padding: 5px 0px;
    width: 220px;
    left: -15px;
  }
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu.open,
.main-nav > .menu > li:not(.mega-menu) .children.open {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li,
.main-nav > .menu > li:not(.mega-menu) .children li {
  display: block;
  float: none;
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li:hover a,
.main-nav > .menu > li:not(.mega-menu) .children li:hover a {
  color: #211d1e;
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li:hover a:after,
.main-nav > .menu > li:not(.mega-menu) .children li:hover a:after {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li:first-child a,
.main-nav > .menu > li:not(.mega-menu) .children li:first-child a {
  border-top: none;
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li:last-child a,
.main-nav > .menu > li:not(.mega-menu) .children li:last-child a {
  border-bottom: none;
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li a,
.main-nav > .menu > li:not(.mega-menu) .children li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4;
  position: relative;
  padding-right: 24px;
  width: auto;
  padding: 12px 0px;
  margin: 0px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1300px) {
  .main-nav > .menu > li:not(.mega-menu) .sub-menu li a,
  .main-nav > .menu > li:not(.mega-menu) .children li a {
    font-size: 1rem;
  }
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li a:hover::after,
.main-nav > .menu > li:not(.mega-menu) .children li a:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
}
.main-nav > .menu > li:not(.mega-menu) .sub-menu li a::after,
.main-nav > .menu > li:not(.mega-menu) .children li a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  margin: auto;
  background: #11303C;
  top: 0;
  right: 0;
  bottom: 0;
  mask: url("/wp-content/themes/foe/images/shell/arrow-right.svg") center center no-repeat;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/arrow-right.svg") center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
}

.cart-icon {
  position: relative;
  margin-right: 2.5em;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.cart-icon svg {
  width: 20px;
  height: 25px;
}
.cart-icon .cart-count {
  position: absolute;
  bottom: 0;
  right: -7px;
  background: white;
  border-radius: 50%;
  color: #211d1e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1px !important;
  width: 15px;
  height: 15px;
  font-size: 10px;
}

.mobile-cart-icon {
  display: none;
  position: relative;
}
@media screen and (max-width: 900px) {
  .mobile-cart-icon {
    display: block;
    padding: 10px;
  }
  .mobile-cart-icon svg {
    width: 23px;
    height: auto;
  }
}
.mobile-cart-icon .cart-count {
  position: absolute;
  bottom: 10px;
  right: 0px;
  background: #11303C;
  border-radius: 50%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1px !important;
  width: 17px;
  height: 17px;
  font-size: 10px;
}

.nav-toggle {
  border: none;
  padding: 5px 12px;
  background: none;
  -webkit-transition: scale 0.3s ease-out;
  transition: scale 0.3s ease-out;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  display: none;
}
@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: #11303C;
  width: 39px;
  height: 3px;
  margin: 10px 0px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  border-radius: 1px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 600px) {
  .nav-toggle span {
    margin: 8px 0;
    width: 30px;
  }
}
.nav-toggle span.two {
  width: 29px;
  margin: 0;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  .nav-toggle span.two {
    width: 25px;
  }
}
.nav-toggle span.three {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0;
  width: 29px;
  margin: 0px;
}
@media screen and (max-width: 600px) {
  .nav-toggle span.three {
    width: 25px;
  }
}
.nav-toggle span.four {
  width: 39px;
}
@media screen and (max-width: 600px) {
  .nav-toggle span.four {
    width: 30px;
  }
}
.nav-toggle.open .one,
.nav-toggle.open .four {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.nav-toggle.open .three {
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.nav-toggle.open .two {
  transform: rotate(125deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.nav-toggle.open .four {
  -webkit-transform: scale(0);
  transform: scale(0);
}
.nav-toggle:focus {
  background: none;
}
.nav-toggle:active {
  background: none;
}
.nav-toggle:hover {
  background: none;
}
.nav-toggle:hover span {
  background-color: #11303C;
}

#scrollbar {
  position: absolute;
  z-index: 999;
}

#greenHeader {
  padding: 10px 30px 12px 30px;
  background: #224F40;
  margin: auto;
  z-index: 901;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  border-radius: 0 0 15px 15px;
  top: 0;
  font-size: 15px;
  display: none;
}
@media screen and (max-width: 900px) {
  #greenHeader {
    display: none;
  }
}
#greenHeader .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
#greenHeader nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#greenHeader nav a {
  padding: 0 1.5em 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #F8F8F5;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#greenHeader nav a:hover {
  color: #F9DD75;
}
#greenHeader nav a span {
  padding-left: 10px;
}
#greenHeader nav a svg {
  margin-bottom: 1px;
  padding: 1px;
}
#greenHeader .green-nav-right svg {
  padding: 0;
}

#currencySelector {
  position: relative;
  width: 100px;
  height: 100%;
}
#currencySelector .inner {
  position: absolute;
  top: -6px;
  display: block;
}
#currencySelector .inner .shortcode-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#currencySelector .selectron23 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  height: 20px;
}
#currencySelector .selectron23 .selectron23-container {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#currencySelector .selectron23 .selectron23-container .selectron23-option {
  background: #224F40;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  margin-bottom: 0;
  padding-top: 12px;
}
#currencySelector .selectron23 .selectron23-container .selectron23-option .selectron23-option-title {
  color: white;
}
#currencySelector .selectron23 .selectron23-container .selectron23-option .selectron23-img {
  max-height: 20px !important;
}
#currencySelector .selectron23 .selectron23-container span {
  color: white;
}

.mobile-nav {
  display: none;
  background: url("/wp-content/themes/foe/images/shell/mobile-bg.webp") bottom right no-repeat;
  background-size: contain;
  background-color: #F8F8F5;
  display: none;
  z-index: 205;
  position: fixed;
  top: 0;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding-top: var(--header-height);
}
.mobile-nav .foe-button {
  background: #11303C;
  color: white;
  margin-left: 1em;
}
.mobile-nav.open {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.mobile-nav.open ul > li {
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}
.mobile-nav .mobile-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  background: var(--color-oxford-blue-100);
  max-width: 375px;
  margin-left: auto;
  padding: 0em 0em 3em 2em;
}
@media screen and (max-width: 600px) {
  .mobile-nav .mobile-nav-inner {
    max-width: 100%;
    margin: 0;
  }
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
  background: #626262;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb:hover {
  background: #11303C;
  border-radius: 10px;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-track {
  background: rgba(128, 128, 128, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
  border-left: 1px solid transparent;
}
.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-social .social-links svg path {
  fill: white;
}
.mobile-nav .mobile-nav-inner .mobile-social .social-links a:hover svg path {
  fill: #F9DD75;
}

#mobile_nav {
  position: relative;
  padding-top: var(--header-height);
}
#mobile_nav li {
  list-style: none;
}
#mobile_nav a {
  display: block;
  font-size: 1.25em;
  font-weight: 500;
  color: #211d1e;
  display: block;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
  -webkit-transition: font-size 0.2s ease-out, color 0.2s ease-out, text-decoration-color 0.15s ease-out;
  transition: font-size 0.2s ease-out, color 0.2s ease-out, text-decoration-color 0.15s ease-out;
  text-decoration: none;
}
#mobile_nav a:hover {
  text-decoration-color: white;
}
#mobile_nav > li {
  margin-bottom: 1em;
  overflow: hidden;
  min-height: 28px;
}
#mobile_nav > li .nav-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
#mobile_nav > li .nav-item-wrapper:hover .trigger {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
#mobile_nav > li .nav-item-wrapper .trigger {
  width: 30px;
  height: 30px;
  display: block;
  line-height: 1.1;
  margin-left: 0.5em;
  margin-top: -2px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
  border-radius: 4px;
}
#mobile_nav > li .nav-item-wrapper .trigger::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #11303C;
  -webkit-mask-size: 7px;
          mask-size: 7px;
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/arrow-right.svg");
          mask-image: url("/wp-content/themes/foe/images/shell/arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
#mobile_nav > li .nav-item-wrapper.open .trigger::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#mobile_nav > li > .sub-menu {
  position: absolute;
  top: 0;
  left: -4em;
  right: 0em;
  height: calc(100svh - var(--header-height));
  background: var(--color-oxford-blue-100);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1000;
  -webkit-transform: translateX(calc(100% + 2em));
          transform: translateX(calc(100% + 2em));
  overflow-y: auto;
  overflow-x: hidden;
  padding: calc(var(--header-height)) 1em 5em 4em;
  background: #F8F8F5;
}
#mobile_nav > li > .sub-menu .sub-menu {
  display: block !important;
}
#mobile_nav > li > .sub-menu.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  z-index: 2;
}
#mobile_nav .sub-menu::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
  background: #11303C;
}
#mobile_nav .sub-menu::-webkit-scrollbar-thumb:hover {
  background: #F9DD75;
  border-radius: 10px;
}
#mobile_nav .sub-menu::-webkit-scrollbar-track {
  background: rgba(128, 128, 128, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
  border-left: 1px solid transparent;
}
#mobile_nav .sub-menu::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}
#mobile_nav .sub-menu > li {
  border-bottom: solid 1px color-mix(in srgb, var(--color-oxford-blue-100) 85%, white);
}
#mobile_nav .sub-menu > li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#mobile_nav .sub-menu > li > a {
  font-size: 1em;
}
#mobile_nav .sub-menu > li .sub-menu {
  padding-top: 0.5em;
}
#mobile_nav .sub-menu > li .sub-menu li {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#mobile_nav .sub-menu > li .sub-menu li a {
  padding: 0.25rem 0;
  font-size: 90%;
  line-height: 1.5;
  font-weight: 400;
}
#mobile_nav .sub-menu .mega-cat {
  border-top: solid 1px color-mix(in srgb, #626262 50%, white);
  padding-top: 1em;
  margin-bottom: 1em;
}
#mobile_nav .sub-menu .mega-cat > a {
  color: #597947;
  font-family: "new-kansas", sans-serif;
  font-size: 1.2em;
}
#mobile_nav .sub-menu .mega-cat ul {
  padding: 0;
  margin: 0;
}
#mobile_nav .sub-menu .mega-sub-cat > a {
  font-size: 0.8em;
  color: #597947;
}
#mobile_nav .sub-menu .parent-link a[href="#rnd"] {
  pointer-events: none;
  color: #626262;
  font-family: "new-kansas", sans-serif;
}
#mobile_nav .sub-menu .back-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  border-bottom: 1px solid color-mix(in srgb, #626262 50%, white);
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#mobile_nav .sub-menu .back-button:hover .icon {
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
#mobile_nav .sub-menu .back-button span {
  color: #626262;
  display: block;
}
#mobile_nav .sub-menu .back-button .icon {
  width: 14px;
  height: 14px;
  margin-right: 0.5em;
  background: currentColor;
  -webkit-mask: url("/wp-content/themes/foe/images/shell/arrow-left.svg") no-repeat center center;
          mask: url("/wp-content/themes/foe/images/shell/arrow-left.svg") no-repeat center center;
  -webkit-mask-size: 7px;
          mask-size: 7px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}

/*
Footer and Navigation Styling
*/
@media screen and (max-width: 900px) {
  .page-id-356 .site-footer {
    margin-top: -100px;
  }
}
.page-id-356 .site-footer::before {
  display: block;
}

@media screen and (max-width: 900px) {
  .page-id-12 .site-footer {
    margin-top: -100px;
  }
}

.site-footer {
  padding: 5% 5% 3%;
  position: relative;
  background: #F6F1EB;
  color: white;
  overflow: hidden;
  margin-top: -5%;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .site-footer {
    font-size: 1rem;
  }
}
@media screen and (max-width: 500px) {
  .site-footer {
    font-size: 14px;
  }
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #F9DD75;
  z-index: 1;
  display: none;
}
.site-footer::after {
  content: "";
  bottom: 0;
  left: 0;
  height: 20%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, rgb(0, 0, 0)));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgb(0, 0, 0) 80%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, rgb(0, 0, 0)));
          mask-image: linear-gradient(180deg, transparent 0%, rgb(0, 0, 0) 80%);
  background: #0B0403;
  z-index: 3;
  width: 100%;
  position: absolute;
}
.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer h5, .site-footer h6 {
  color: #F9DD75;
}
@media screen and (max-width: 1300px) {
  .site-footer {
    padding: 3%;
  }
}
.site-footer ul {
  list-style: none;
}
.site-footer .footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-footer .footer-inner {
  padding: 10% 6% 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 1400px) {
  .site-footer .footer-inner {
    padding: 10% 3% 0%;
  }
}
@media screen and (max-width: 900px) {
  .site-footer .footer-inner {
    padding: 0% 5% 0;
    margin: auto;
  }
}
.site-footer .footer-branding {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 5%;
  padding-bottom: 8%;
}
@media screen and (max-widtH: 1100px) {
  .site-footer .footer-branding {
    padding-top: 8vw;
    padding-bottom: 5%;
  }
}
@media screen and (max-width: 900px) {
  .site-footer .footer-branding {
    text-align: center;
    padding-top: 200px;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .footer-branding {
    padding-bottom: 100px;
  }
}
.site-footer .footer-branding .footer-logo {
  height: 94px;
  line-height: 0px;
  font-size: 0px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .site-footer .footer-branding .footer-logo {
    height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-branding .footer-logo {
    height: 41px;
  }
}
.site-footer .newsletter {
  max-width: 430px;
}
@media screen and (max-width: 900px) {
  .site-footer .newsletter {
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .site-footer .newsletter .newsletter-inner {
    max-width: 400px;
    margin: auto;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .newsletter .newsletter-inner {
    margin: 0;
    text-align: left;
  }
}
.site-footer .footer-contact {
  margin-top: 4.7em;
}
@media screen and (max-width: 900px) {
  .site-footer .footer-contact {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-top: 2em;
  }
}
.site-footer .footer-contact .address {
  margin-bottom: 1.35em;
}
.site-footer .footer-contact a {
  color: white;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.site-footer .footer-contact a:hover {
  color: #F9DD75;
  border-bottom: 2px solid #F9DD75;
}
.site-footer .nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .site-footer .nav-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}
@media screen and (max-width: 900px) {
  .site-footer .nav-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66%;
            flex: 0 0 66%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .nav-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.site-footer nav {
  margin-top: 4.6em;
  margin-right: 3em;
}
@media screen and (max-width: 1400px) {
  .site-footer nav {
    margin-right: 1em;
  }
}
@media screen and (max-width: 900px) {
  .site-footer nav {
    margin-top: 4.6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 1.5em;
  }
}
@media screen and (max-width: 500px) {
  .site-footer nav {
    text-align: center;
  }
}
@media screen and (max-width: 1100px) {
  .site-footer nav:last-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 900px) {
  .site-footer nav:last-child {
    margin-top: 4.6em;
  }
}
.site-footer nav li {
  position: relative;
}
.site-footer nav li a {
  color: white;
  text-decoration: none;
  padding: 7px 25px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
.site-footer nav li a:hover {
  color: #F9DD75;
}
@media screen and (max-width: 900px) {
  .site-footer nav li a {
    display: block;
    width: 100%;
    padding: 5px 0px;
  }
}
@media screen and (max-width: 500px) {
  .site-footer nav li a {
    font-size: 14px;
  }
}
.site-footer nav li .sub-menu li {
  display: block;
}
.site-footer nav li .sub-menu li a {
  display: block;
  padding: 8px 25px;
  opacity: 0.5;
}
.site-footer nav li .sub-menu li a:hover {
  opacity: 1;
}
.site-footer .footer-legal {
  width: 100%;
  font-size: 0.8rem;
  padding: 0rem 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .site-footer .footer-legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-legal {
    font-size: 14px;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 375px) {
  .site-footer .footer-legal {
    font-size: 11px;
  }
}
.site-footer .footer-legal .captcha {
  max-width: 26em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: right;
  gap: 0.5em;
}
@media screen and (max-width: 900px) {
  .site-footer .footer-legal .captcha {
    display: inline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    max-width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer .footer-legal a {
  color: white;
}
.site-footer .footer-legal a:hover {
  color: #F9DD75;
}
.site-footer .footer-legal .copyright {
  text-transform: uppercase;
  max-width: 30em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5em;
}
@media screen and (max-width: 900px) {
  .site-footer .footer-legal .copyright {
    display: inline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.site-footer .accreditions-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  padding-top: 2em;
  gap: 1em;
}
@media screen and (max-width: 900px) {
  .site-footer .accreditions-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .accreditions-wrapper {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
    padding-top: 0;
  }
}
.site-footer .accreditions-wrapper .accredition {
  margin-right: auto;
}
@media screen and (max-width: 500px) {
  .site-footer .accreditions-wrapper .accredition {
    margin: 0;
  }
}
.site-footer .accreditions-wrapper .accredition img {
  height: 80px;
}
.site-footer .dotted-line {
  margin: 2em 0;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line.svg");
  background-position: center center;
  height: 3px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
}

#footer {
  width: 100%;
}
#footer #gform_2 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
}
@media screen and (max-width: 900px) {
  #footer #gform_2 {
    display: block;
  }
}
#footer #gform_2 .gform-body {
  grid-column: 1/span 3;
}
#footer #gform_2 .gform_footer {
  margin: 0;
  display: block;
}
#footer #gform_2 input {
  border: solid 3px transparent;
  background-color: #F6F1EB;
  color: #211d1e;
  border-radius: 30px !important;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#footer #gform_2 input::-webkit-input-placeholder {
  color: #211d1e;
  opacity: 1;
}
#footer #gform_2 input::-moz-placeholder {
  color: #211d1e;
  opacity: 1;
}
#footer #gform_2 input:-ms-input-placeholder {
  color: #211d1e;
  opacity: 1;
}
#footer #gform_2 input::-ms-input-placeholder {
  color: #211d1e;
  opacity: 1;
}
#footer #gform_2 input::placeholder {
  color: #211d1e;
  opacity: 1;
}
#footer #gform_2 input:focus {
  border-color: #F9DD75;
}
#footer #gform_2 .gform_button {
  right: 0px;
  top: 0px;
  bottom: 0px;
  height: 3.5rem;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #F9DD75;
}
@media screen and (max-width: 900px) {
  #footer #gform_2 .gform_button {
    margin-top: 1em;
    width: 100%;
    height: 3rem;
  }
}
#footer #gform_2 .gform_button:hover {
  background: #11303C;
  color: white;
}

#currencySelectorFooter {
  position: relative;
  width: 100px;
  height: 100%;
  display: none;
  margin-top: 1em;
}
@media screen and (max-width: 900px) {
  #currencySelectorFooter {
    display: block;
  }
}
#currencySelectorFooter .inner {
  top: -6px;
  display: block;
}
#currencySelectorFooter .inner .shortcode-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#currencySelectorFooter .selectron23 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  height: 20px;
}
#currencySelectorFooter .selectron23 .selectron23-container {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
}
#currencySelectorFooter .selectron23 .selectron23-container .selectron23-option {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  margin-bottom: 0;
  padding-top: 12px;
}
#currencySelectorFooter .selectron23 .selectron23-container .selectron23-option .selectron23-option-title {
  color: white;
}
#currencySelectorFooter .selectron23 .selectron23-container .selectron23-option .selectron23-img {
  max-height: 20px !important;
}
#currencySelectorFooter .selectron23 .selectron23-container span {
  color: white;
}

/*
Block Styling

General styles for body of website along with block specific styling.
*/
html :where(.wp-block) {
  max-width: 100%;
  padding: 0 5%;
}

#page {
  position: relative;
  -webkit-perspective: 1px;
          perspective: 1px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
#page .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
#page .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
#page .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

body {
  background: #F6F1EB;
}

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

section {
  position: relative;
  z-index: 3;
}
section:last-child {
  margin-bottom: -100px;
}
section a:not(.foe-button) {
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
section a:not(.foe-button):hover {
  text-decoration-color: #EE6C37;
}

.slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
}
.slider-arrows > div {
  display: block;
  right: 45px;
  background-color: rbga(0, 0, 0, 0);
  background-size: cover;
  cursor: pointer;
  border-radius: 50rem;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media screen and (max-width: 600px) {
  .slider-arrows > div {
    width: 40px;
    height: 40px;
  }
}
.slider-arrows > div.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.slider-arrows > div svg {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .slider-arrows > div svg {
    width: 40px;
    height: 40px;
  }
}
.slider-arrows > div svg #leftArrowGroup g,
.slider-arrows > div svg #rightArrowGroup g {
  -webkit-transition: stroke 0.2s ease-out;
  transition: stroke 0.2s ease-out;
}
.slider-arrows > div svg #leftArrowGroup path,
.slider-arrows > div svg #rightArrowGroup path {
  -webkit-transition: fill 0.2s ease-out;
  transition: fill 0.2s ease-out;
}
.slider-arrows > div svg #leftArrowGroup circle,
.slider-arrows > div svg #rightArrowGroup circle {
  -webkit-transition: fill 0.2s ease-out;
  transition: fill 0.2s ease-out;
}
.slider-arrows > div:hover svg {
  background: #11303C;
}
.slider-arrows > div:hover svg #leftArrowGroup path,
.slider-arrows > div:hover svg #rightArrowGroup path {
  fill: white;
}

.block {
  padding: 5.7% 8%;
}
@media screen and (max-width: 900px) {
  .block {
    padding: 5% 8%;
  }
}
@media screen and (max-width: 600px) {
  .block {
    padding: 8% 5%;
  }
}
@media screen and (max-width: 500px) {
  .block {
    padding: 10% 5%;
  }
}
.block .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.5em;
}
.social-links a {
  line-height: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  margin: 0px 10px 10px 0px;
  border: none !important;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.social-links a:hover svg path {
  fill: white;
}
.social-links a svg {
  max-height: 25px;
  max-width: 25px;
  width: 25px;
  height: 25px;
}
.social-links a svg path {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
  fill: #F9DD75;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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 #11303C;
  margin: 0px 2px;
  text-decoration: none !important;
}
.pagination a {
  border: 1px solid rgba(17, 48, 60, 0.2);
  -webkit-transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid #11303C;
  background: #11303C;
  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;
  padding-top: 20%;
  color: white;
  border-radius: 0 0 35px 35px;
  overflow: hidden;
  font-size: 1.2em;
}
@media screen and (max-width: 1200px) {
  .hero {
    border-radius: 0 0 15px 15px;
    font-size: 1rem;
    padding-top: 30%;
  }
}
@media screen and (max-width: 800px) {
  .hero {
    padding-top: 50%;
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: -webkit-gradient(linear, right top, left top, color-stop(75%, rgba(0, 0, 0, 0)), color-stop(150%, rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.7) 150%);
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .hero:after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, rgba(0, 0, 0, 0)), color-stop(150%, rgb(0, 0, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 150%);
  }
}
.hero .hero-content {
  max-width: 531px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 500px) {
  .hero .hero-content {
    max-width: 20em;
  }
  .hero .hero-content br {
    display: none;
  }
}
.hero .hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #11303C;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.hero .hero-video {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.hero .hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.home-hero {
  color: #F6F1EB;
  overflow: hidden;
}
.home-hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .home-hero .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
  }
}
.home-hero .left-wrapper,
.home-hero .right-wrapper {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 18% 0% 5% 5%;
  overflow: hidden;
  border-radius: 0 0 35px 35px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  min-height: 85vh;
}
@media screen and (max-width: 1400px) {
  .home-hero .left-wrapper,
  .home-hero .right-wrapper {
    padding: 23% 0% 5% 5%;
  }
}
@media screen and (max-width: 1200px) {
  .home-hero .left-wrapper,
  .home-hero .right-wrapper {
    border-radius: 0 0 15px 15px;
    padding-left: 3%;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper,
  .home-hero .right-wrapper {
    border-radius: 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-height: 60svh;
    padding: 7%;
  }
}
.home-hero .left-wrapper::after,
.home-hero .right-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.home-hero .left-wrapper.expand,
.home-hero .right-wrapper.expand {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
@media screen and (max-width: 1000px) {
  .home-hero .left-wrapper.expand,
  .home-hero .right-wrapper.expand {
    -ms-flex-preferred-size: 59%;
        flex-basis: 59%;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper.expand,
  .home-hero .right-wrapper.expand {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-height: 60svh;
  }
}
.home-hero .left-wrapper.expand .content-wrapper,
.home-hero .right-wrapper.expand .content-wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home-hero .left-wrapper.expand .heading,
.home-hero .right-wrapper.expand .heading {
  opacity: 0;
}
.home-hero .left-wrapper.expand .content,
.home-hero .right-wrapper.expand .content {
  opacity: 1;
}
.home-hero .left-wrapper.expand img,
.home-hero .right-wrapper.expand img {
  opacity: 0;
}
.home-hero .left-wrapper.expand video,
.home-hero .right-wrapper.expand video {
  opacity: 1;
}
.home-hero .left-wrapper.shrink,
.home-hero .right-wrapper.shrink {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
@media screen and (max-width: 1000px) {
  .home-hero .left-wrapper.shrink,
  .home-hero .right-wrapper.shrink {
    -ms-flex-preferred-size: 42%;
        flex-basis: 42%;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper.shrink,
  .home-hero .right-wrapper.shrink {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    min-height: 40svh;
  }
}
.home-hero .left-wrapper.shrink .content-wrapper,
.home-hero .right-wrapper.shrink .content-wrapper {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
@media screen and (max-width: 1200px) {
  .home-hero .left-wrapper.shrink .content-wrapper,
  .home-hero .right-wrapper.shrink .content-wrapper {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.home-hero .left-wrapper.shrink .heading,
.home-hero .right-wrapper.shrink .heading {
  opacity: 1;
}
.home-hero .left-wrapper.shrink .content,
.home-hero .right-wrapper.shrink .content {
  opacity: 0;
}
.home-hero .left-wrapper.shrink img,
.home-hero .right-wrapper.shrink img {
  opacity: 1;
}
.home-hero .left-wrapper.shrink video,
.home-hero .right-wrapper.shrink video {
  opacity: 0;
}
.home-hero .left-wrapper .heading,
.home-hero .right-wrapper .heading {
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
  max-width: 12em;
  font-size: 2rem;
  position: absolute;
  top: 0px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (max-width: 1400px) {
  .home-hero .left-wrapper .heading,
  .home-hero .right-wrapper .heading {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 1100px) {
  .home-hero .left-wrapper .heading,
  .home-hero .right-wrapper .heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper .heading,
  .home-hero .right-wrapper .heading {
    margin-left: auto;
    margin-right: auto;
    left: 0px;
    right: 0px;
    font-size: 1.333rem;
  }
}
.home-hero .left-wrapper .content-wrapper,
.home-hero .right-wrapper .content-wrapper {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  position: relative;
  z-index: 3;
  max-width: 36em;
}
@media screen and (max-width: 1200px) {
  .home-hero .left-wrapper .content-wrapper,
  .home-hero .right-wrapper .content-wrapper {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@media screen and (max-width: 900px) {
  .home-hero .left-wrapper .content-wrapper,
  .home-hero .right-wrapper .content-wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper .content-wrapper,
  .home-hero .right-wrapper .content-wrapper {
    margin: 0px auto;
    text-align: center;
    max-width: 21em;
  }
}
.home-hero .left-wrapper .content,
.home-hero .right-wrapper .content {
  min-width: 560px;
  width: 560px;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}
@media screen and (max-width: 1100px) {
  .home-hero .left-wrapper .content,
  .home-hero .right-wrapper .content {
    min-width: 400px;
    width: 400px;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper .content,
  .home-hero .right-wrapper .content {
    width: 100%;
    min-width: 0px;
  }
}
.home-hero .left-wrapper img,
.home-hero .right-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  opacity: 1;
}
.home-hero .left-wrapper video,
.home-hero .right-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  opacity: 0;
  height: 100%;
  width: 100%;
}
.home-hero .left-wrapper {
  background: #11303C;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .home-hero .left-wrapper {
    margin-right: 2.5px;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .left-wrapper {
    margin-right: 0;
    margin-bottom: 2.5px;
  }
}
.home-hero .right-wrapper {
  background: #EE6C37;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .home-hero .right-wrapper {
    margin-left: 2.5px;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .right-wrapper {
    margin-left: 0;
    margin-top: 2.5px;
  }
}
@media screen and (max-width: 800px) {
  .home-hero .button-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home-hero .foe-button {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .home-hero .foe-button {
    margin-right: 0;
  }
}
.home-hero h1 {
  font-size: 3rem;
}
@media screen and (max-width: 1400px) {
  .home-hero h1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .home-hero h1 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .home-hero h1 {
    font-size: 1.556rem;
  }
}
.home-hero p {
  max-width: 20em;
}
@media screen and (max-width: 800px) {
  .home-hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
}
.text-block + section.content-image-slider-section {
  padding-top: 0;
}
@media screen and (max-width: 900px) {
  .text-block + section.line-section {
    padding-top: 0;
  }
}
.text-block h2 {
  font-size: clamp(1.333rem, 2vw + 1rem, 3rem);
}
.text-block h3 {
  font-size: 1.5em;
}
@media screen and (max-width: 600px) {
  .text-block h3 {
    font-size: 1.1em;
  }
}
.text-block .text-content {
  max-width: 800px;
  margin: 0 auto;
}
.text-block .button-container {
  padding-top: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-block .button-container .foe-button {
  margin: 0;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}

.cta {
  position: relative;
  overflow: hidden;
}
.cta:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta .button-container .foe-button {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.cta .cta-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}

.testimonials + section.content-illustration {
  padding-top: 0;
}
.testimonials.green .testimonial-image-slider .swiper-slide {
  background-color: #11303C;
}
.testimonials.green .testimonial-content-slider {
  background-color: #224F40;
}
.testimonials .inner {
  border-radius: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
@media screen and (max-width: 1200px) {
  .testimonials .inner {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .testimonials .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.testimonials .testimonial-image-slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  width: 35%;
}
@media screen and (max-width: 900px) {
  .testimonials .testimonial-image-slider {
    width: 100%;
  }
}
.testimonials .testimonial-image-slider .swiper-slide {
  position: relative;
  height: auto;
  min-height: 200px;
  background: #224F40;
}
@media screen and (max-width: 900px) {
  .testimonials .testimonial-image-slider .swiper-slide {
    aspect-ratio: 21/9;
  }
}
.testimonials .testimonial-image-slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonial-content-slider {
  padding: 5% 5% 5%;
  width: 65%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  background-color: #11303C;
  color: white;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .testimonials .testimonial-content-slider {
    width: 100%;
  }
}
.testimonials .controls {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.testimonials .controls .slider-arrows > div svg #leftArrowGroup g,
.testimonials .controls .slider-arrows > div svg #rightArrowGroup g {
  stroke: white;
}
.testimonials .controls .slider-arrows > div svg #leftArrowGroup path,
.testimonials .controls .slider-arrows > div svg #rightArrowGroup path {
  fill: white;
}
.testimonials .controls .slider-arrows > div:hover svg {
  background: white;
}
.testimonials .controls .slider-arrows > div:hover #leftArrowGroup path,
.testimonials .controls .slider-arrows > div:hover #rightArrowGroup path {
  fill: #11303C;
}

.content-image .content-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .content-image .content-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0px;
  }
}
.content-image .content-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .content-image .content-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}

.full-width-content-image {
  overflow: hidden;
}
.full-width-content-image .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .full-width-content-image .inner {
    display: block;
  }
}
.full-width-content-image .content-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 7%;
  background: #224F40;
  color: white;
}
@media screen and (max-width: 1200px) {
  .full-width-content-image .content-text {
    padding: 3% 5%;
  }
}
@media screen and (max-width: 600px) {
  .full-width-content-image .content-text {
    padding: 8% 5%;
  }
}
.full-width-content-image .content-text .content-inner {
  max-width: 36em;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .full-width-content-image .content-text .content-inner {
    margin-left: 0;
    max-width: 100%;
  }
}
.full-width-content-image .content-text h1, .full-width-content-image .content-text h2, .full-width-content-image .content-text h3,
.full-width-content-image .content-text h4, .full-width-content-image .content-text h5, .full-width-content-image .content-text h6 {
  color: #F9DD75;
}
.full-width-content-image .content-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .full-width-content-image .content-image {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 475px) {
  .full-width-content-image .content-image {
    width: 100%;
    aspect-ratio: 10/9;
  }
}
.full-width-content-image .content-image img,
.full-width-content-image .content-image video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-width-content-image .foe-button {
  margin-bottom: 0;
}
.full-width-content-image .foe-button:hover {
  background: white;
  color: #211d1e;
}

.content-illustration + section.content-illustration {
  padding-top: 0 !important;
}
.content-illustration + section.step-slider-block {
  padding-top: 0;
}
.content-illustration + section.text-block {
  padding-top: 0;
}
.content-illustration.light .inner {
  background-color: #F8F8F5;
}
.content-illustration.dark .inner {
  background-color: #11303C;
  color: white;
}
.content-illustration.dark .foe-button:hover {
  background-color: white;
  color: #211d1e;
}
.content-illustration.dark .foe-button.solid-alt {
  background-color: white;
  color: #211d1e;
}
.content-illustration.dark .foe-button.solid-alt:hover {
  background-color: #F9DD75;
  color: #211d1e;
}
.content-illustration.none .inner {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 475px) {
  .content-illustration.none .inner {
    text-align: center;
  }
}
.content-illustration.reverse .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .content-illustration.reverse .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content-illustration.reverse .content-image {
  padding-right: 4%;
  padding-left: 0;
}
@media screen and (max-width: 900px) {
  .content-illustration.reverse .content-image {
    padding-right: 0;
  }
}
.content-illustration .inner {
  border-radius: 35px;
  padding: 3% 5% 3%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .content-illustration .inner {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .content-illustration .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 8% 5%;
  }
}
@media screen and (max-width: 768px) {
  .content-illustration .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 475px) {
  .content-illustration .inner {
    text-align: left;
  }
}
.content-illustration .content-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .content-illustration .content-text {
    padding-right: 0;
  }
}
.content-illustration .content-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .content-illustration .content-image {
    margin-bottom: 5%;
  }
}
.content-illustration .content-image img {
  aspect-ratio: 10/9;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 900px) {
  .content-illustration .content-image img {
    height: 20vw;
    min-height: 139px;
  }
}
@media screen and (max-width: 768px) {
  .content-illustration .content-image img {
    height: 30vw;
    aspect-ratio: 0;
  }
}
@media screen and (max-width: 500px) {
  .content-illustration .content-image img {
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .content-illustration .button-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 475px) {
  .content-illustration .button-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.finance-block + section.content-illustration {
  padding-top: 0 !important;
}
.finance-block + section.step-slider-block {
  padding-top: 0;
}
.finance-block + section.text-block {
  padding-top: 0;
}
.finance-block.light .inner {
  background-color: white;
}
.finance-block.dark .inner {
  background-color: #11303C;
  color: white;
}
.finance-block.dark .foe-button:hover {
  background-color: white;
  color: #211d1e;
}
.finance-block.dark .foe-button.solid-alt {
  background-color: white;
  color: #211d1e;
}
.finance-block.dark .foe-button.solid-alt:hover {
  background-color: #F9DD75;
  color: #211d1e;
}
.finance-block.none .inner {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 475px) {
  .finance-block.none .inner {
    text-align: center;
  }
}
.finance-block.reverse .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .finance-block.reverse .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.finance-block.reverse .content-image {
  padding-right: 4%;
  padding-left: 0;
}
@media screen and (max-width: 900px) {
  .finance-block.reverse .content-image {
    padding-right: 0;
  }
}
.finance-block .inner {
  border-radius: 35px;
  padding: 5%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .finance-block .inner {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .finance-block .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding: 8% 5%;
  }
}
@media screen and (max-width: 768px) {
  .finance-block .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 475px) {
  .finance-block .inner {
    text-align: left;
  }
}
.finance-block .content-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .finance-block .content-text {
    padding-right: 0;
  }
}
.finance-block .content-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .finance-block .content-image {
    margin-bottom: 5%;
    padding-left: 0;
  }
}
.finance-block .content-image img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 388px;
}
@media screen and (max-width: 768px) {
  .finance-block .content-image img {
    max-width: 20em;
  }
}
@media screen and (max-width: 600px) {
  .finance-block .content-image img {
    height: unset;
    min-height: unset;
    max-width: 12em;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 475px) {
  .finance-block .content-image img {
    height: unset;
    min-height: unset;
    max-width: 12em;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .finance-block .button-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 475px) {
  .finance-block .button-container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.finance-block .line {
  height: 2px;
  background-image: url("/wp-content/themes/foe/images/shell/dashed-line-fcc.svg");
  background-size: 100%;
  background-repeat: repeat-x;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  margin: 1.5em 0 1.2em;
}
.finance-block .extra-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .finance-block .extra-links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 475px) {
  .finance-block .extra-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.finance-block .extra-links a {
  margin-right: 1em;
  margin-bottom: 1em;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  font-weight: 500;
  text-wrap: nowrap;
}

.text-form .inner {
  display: grid;
  grid-template-columns: auto -webkit-max-content;
  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 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3em;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 600px) {
  .blog .inner .blog-head {
    display: block;
  }
}
.blog .inner .blog-head .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .blog .inner .blog-head .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.blog .inner .blog-head .filters .total-results {
  margin-left: 1.5em;
  white-space: nowrap;
  font-size: 0.9em;
}
@media screen and (max-width: 600px) {
  .blog .inner .blog-head .filters .total-results {
    margin-left: 0;
  }
}
.blog .inner .blog-head .filters select {
  margin-right: 1em;
}
@media screen and (max-width: 600px) {
  .blog .inner .blog-head .filters select {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  .blog .inner .blog-head .filters select,
  .blog .inner .blog-head .filters input {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .blog .inner .blog-head .filters input {
    margin-bottom: 1em;
  }
}
.blog .inner .no-post {
  text-align: center;
  padding: 1.5em 0px;
  width: 100%;
}

.page-id-10 #page .blog select {
  border-color: #211d1e;
  min-width: 253px;
  background: white url("/wp-content/themes/foe/images/icons/arrow-down-dark.svg") right 1.5em center no-repeat;
}
.page-id-10 #page .blog input.ajax-keyword {
  border-color: #211d1e;
  background: white url("/wp-content/themes/foe/images/shell/search.svg") right 1.5em center no-repeat;
  background-size: 17px;
  color: #211d1e;
}

.page-id-3317 .hero::after {
  background: -webkit-gradient(linear, right top, left top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(131%, rgba(0, 0, 0, 0.96)));
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.96) 131%);
}
.page-id-3317 .hero .hero-content {
  max-width: 800px;
}

.page-id-3365 .hero::after {
  background: -webkit-gradient(linear, right top, left top, color-stop(25%, rgba(0, 0, 0, 0)), color-stop(131%, rgba(0, 0, 0, 0.96)));
  background: linear-gradient(to left, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.96) 131%);
}
.page-id-3365 .hero .hero-content {
  max-width: 1024px;
}
.page-id-3365 .hero .hero-content p {
  max-width: 800px;
}

.post-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .post-list {
    display: block;
  }
}
.post-list .post {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.33333%;
          flex: 0 0 31.33333%;
  margin: 0px 3% 3% 0px;
  background: #F8F8F5;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 553px;
}
@media screen and (max-width: 1100px) {
  .post-list .post {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 47%;
            flex: 0 0 47%;
    margin: 0px 3% 5% 0px;
    min-height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .post-list .post {
    margin-right: 0%;
    margin-bottom: 8%;
  }
}
.post-list .post:nth-of-type(3n + 3) {
  margin-right: 0px;
}
@media screen and (max-width: 1100px) {
  .post-list .post:nth-of-type(3n + 3) {
    margin-right: 3%;
  }
}
@media screen and (max-width: 600px) {
  .post-list .post:nth-of-type(3n + 3) {
    margin-right: 0%;
  }
}
@media screen and (max-width: 1100px) {
  .post-list .post:nth-of-type(2n + 2) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 600px) {
  .post-list .post:nth-of-type(2n + 2) {
    margin-right: 0%;
  }
}
.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: #11303C;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.post-list .post .post-img:hover:after {
  opacity: 0.2;
}
.post-list .post .post-img.placeholder {
  background: #164136 url("/wp-content/themes/foe/images/shell/Annelida-Soil-Solutions-Logo-White-02.png") center center no-repeat;
  background-size: 50%;
}
.post-list .post .post-img .category {
  display: inline-block;
  background: #F9DD75;
  color: #211d1e;
  position: absolute;
  top: 20px;
  left: 0px;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 0.75em;
  border-radius: 0 5px 5px 0;
}
.post-list .post .post-text {
  padding: 1em 1.5em;
  height: 100%;
}
.post-list .post .post-text .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.post-list .post .post-text a {
  text-decoration: none;
}
.post-list .post .post-text .excerpt {
  padding-bottom: 1em;
}
.post-list .post .post-text .link-container {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-list .post .foe-button {
  padding: 0.8em 1.5em 0.8em 1.5em;
}
.post-list .load {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.post-list .load .foe-button {
  margin-right: 0px;
}

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

.navigation-cta {
  background: #224F40;
  color: white;
}
.navigation-cta h1, .navigation-cta h2, .navigation-cta h3,
.navigation-cta h4, .navigation-cta h5, .navigation-cta h6 {
  color: #F9DD75;
}
.navigation-cta h2 {
  font-size: clamp(1.333rem, 2vw + 1rem, 3rem);
}
.navigation-cta .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1120px;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .navigation-cta .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 500px;
  }
}
@media screen and (max-width: 600px) {
  .navigation-cta .inner {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.navigation-cta .left-wrapper,
.navigation-cta .right-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1100px) {
  .navigation-cta .left-wrapper,
  .navigation-cta .right-wrapper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.navigation-cta .left-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
.navigation-cta .right-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
.navigation-cta .image-wrapper {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  width: 225px;
  height: 225px;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
@media screen and (max-width: 900px) {
  .navigation-cta .image-wrapper {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .navigation-cta .image-wrapper {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 375px) {
  .navigation-cta .image-wrapper {
    width: 125px;
    height: 125px;
  }
}
.navigation-cta .image-wrapper img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
}
.navigation-cta .foe-button {
  margin-top: 1em;
  margin-right: 0;
  margin-bottom: 0;
}
.navigation-cta .content {
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .navigation-cta .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.faq-block + section.testimonials {
  padding-top: 0;
}
@media screen and (max-width: 1200px) {
  .faq-block {
    padding: 5% 5%;
  }
}
.faq-block a:not(.foe-button) {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.faq-block a:not(.foe-button):hover {
  border-color: #F9DD75;
}
.faq-block .inner {
  max-width: 1316px;
  margin: auto;
  padding: 3% 5% 3%;
  border-radius: 35px;
  display: block;
  background: white;
}
@media screen and (max-width: 1200px) {
  .faq-block .inner {
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .faq-block .inner {
    border-radius: 15px;
    padding-bottom: 5%;
  }
}
.faq-block .inner .faq-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.faq-block .inner .faq-intro h2 {
  font-size: clamp(1.333rem, 2vw + 1rem, 3rem);
}
.faq-block .inner .faqs {
  padding: 1em 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .faq-block .inner .faqs {
    display: block;
    padding-top: 0;
  }
}
.faq-block .inner .column-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 2em);
          flex: 0 0 calc(50% - 2em);
}
.faq-block .inner .column-wrapper:last-child .faq:last-child::after {
  display: none;
}
.faq-block .inner .faq {
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  position: relative;
}
.faq-block .inner .faq:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .faq-block .inner .faq:last-child::after {
    display: block;
  }
}
.faq-block .inner .faq::after {
  content: "";
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  position: absolute;
  bottom: 0;
  left: 0;
}
.faq-block .inner .faq .question {
  font-family: "new-kansas", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.15;
  padding: 1.5rem 0rem 2rem 0rem;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .faq-block .inner .faq .question {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 900px) {
  .faq-block .inner .faq .question {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  .faq-block .inner .faq .question {
    padding: 1rem 0rem 1rem 0rem;
  }
}
.faq-block .inner .faq .question.open .status svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq-block .inner .faq .question.open .status svg circle {
  fill: #11303C;
}
.faq-block .inner .faq .question.open .status svg path {
  fill: white;
}
.faq-block .inner .faq .question .question-text {
  margin-top: 0.4em;
}
.faq-block .inner .faq .question .status {
  margin-left: 3em;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 36px;
  height: 36px;
  display: block;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .question .status {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
@media screen and (max-width: 768px) {
  .faq-block .inner .faq .question .status {
    margin-left: 1em;
  }
}
.faq-block .inner .faq .question .status svg {
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-block .inner .faq .question .status svg circle,
.faq-block .inner .faq .question .status svg path {
  -webkit-transition: fill 0.7s ease;
  transition: fill 0.7s ease;
}
.faq-block .inner .faq .answer {
  padding: 0rem 3.5rem 1em 0;
  display: none;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .faq-block .inner .faq .answer {
    font-size: 1em;
    padding-right: 0;
  }
}
.faq-block .inner .faq .answer .answer-inner {
  max-width: 900px;
}
.faq-block .inner .faq .answer p:last-child {
  margin-bottom: 0px;
}
.faq-block .button-container {
  padding-top: 0;
}

@media screen and (max-width: 800px) {
  .illustration-grid-section {
    padding: 9% 8%;
  }
}
.illustration-grid-section + section.list-only-block {
  padding-top: 0;
}
.illustration-grid-section + section.testimonials {
  padding-top: 0;
}
.illustration-grid-section.dark {
  background-color: #11303C;
  color: white;
}
.illustration-grid-section.heading {
  font-family: "new-kansas", sans-serif;
  font-weight: 400;
}
.illustration-grid-section .intro {
  text-align: center;
  max-width: 36em;
  margin: auto auto 5%;
}
.illustration-grid-section .inner {
  display: block;
}
.illustration-grid-section .heading-wrapper {
  margin: 0.4em 0 3em;
}
.illustration-grid-section .heading-wrapper h2 {
  margin: 0;
}
.illustration-grid-section .illustration-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  margin: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .illustration-grid-section .illustration-grid {
    margin-top: 4em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4em;
  }
}
.illustration-grid-section .illustration-grid .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 2em);
          flex: 0 0 calc(33.33% - 2em);
}
.illustration-grid-section .illustration-grid .card .illustration {
  position: relative;
  aspect-ratio: 9/9;
  max-width: 150px;
  margin: auto auto 1.5em;
}
@media screen and (max-width: 600px) {
  .illustration-grid-section .illustration-grid .card .illustration {
    max-width: 120px;
  }
}
.illustration-grid-section .illustration-grid .card .illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.illustration-grid-section .illustration-grid .card .content {
  text-align: center;
  max-width: 16em;
  font-size: 1em;
  margin: auto;
}
.illustration-grid-section .button-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2em;
}

.service-slider-section {
  background: #F9DD75;
}
.service-slider-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .service-slider-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}
.service-slider-section .service-title-slider-wrapper {
  width: 40%;
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding: 3% 8%;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .service-slider-section .service-title-slider-wrapper {
    width: 100%;
    padding: 5% 3%;
  }
}
.service-slider-section .service-title-slider-wrapper .service-title-slider {
  width: 100%;
  height: 475px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .service-slider-section .service-title-slider-wrapper .service-title-slider {
    height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .service-slider-section .service-title-slider-wrapper .service-title-slider {
    height: auto;
    text-align: center;
    margin: 2em auto;
    max-width: 300px;
    overflow: hidden;
  }
}
@media screen and (max-width: 375px) {
  .service-slider-section .service-title-slider-wrapper .service-title-slider {
    max-width: 200px;
  }
}
.service-slider-section .service-title-slider-wrapper .service-title-slider .swiper-slide {
  height: auto;
}
.service-slider-section .service-title-slider-wrapper .service-title-slider .swiper-slide.swiper-slide-active .service-title {
  font-weight: 500;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.service-slider-section .service-title-slider-wrapper .service-title-slider .swiper-slide .service-title {
  font-family: "new-kansas", sans-serif;
  font-size: clamp(1.1rem, 1vw + 1rem, 2rem);
  line-height: 1.1;
  font-weight: 400;
  width: 100%;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform-origin: left;
          transform-origin: left;
  opacity: 0.7;
}
@media screen and (max-width: 1100px) {
  .service-slider-section .service-title-slider-wrapper .service-title-slider .swiper-slide .service-title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 600px) {
  .service-slider-section .service-title-slider-wrapper .service-title-slider .swiper-slide .service-title {
    font-size: 1.1rem;
  }
}
.service-slider-section .controls {
  display: none;
}
.service-slider-section .controls .slider-arrows {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 5%;
  right: 5%;
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 375px) {
  .service-slider-section .controls .slider-arrows {
    top: -55px;
  }
}
@media screen and (max-width: 600px) {
  .service-slider-section .controls {
    display: block;
  }
}
.service-slider-section .service-image-slider-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  width: 100%;
  overflow: hidden;
}
.service-slider-section .service-image-slider-wrapper .service-image-slider {
  width: 100%;
  overflow: hidden;
  height: 100%;
}
.service-slider-section .service-image-slider-wrapper .service-image-slider .swiper-slide {
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 475px) {
  .service-slider-section .service-image-slider-wrapper .service-image-slider .swiper-slide {
    aspect-ratio: 12/9;
  }
}
.service-slider-section .service-image-slider-wrapper .service-image-slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner {
  overflow: hidden;
  background: #11303C;
  margin-top: -1px;
  position: relative;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 650px;
}
@media screen and (max-width: 1023px) {
  .banner {
    min-height: 500px;
  }
}
@media screen and (max-width: 900px) {
  .banner {
    min-height: 300px;
  }
}
@media screen and (max-width: 600px) {
  .banner {
    min-height: 250px;
  }
}
.banner.has-content::after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0)), color-stop(200%, rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 200%);
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
@media screen and (max-width: 600px) {
  .banner.has-content::after {
    background: rgba(0, 0, 0, 0.5);
  }
}
.banner h1, .banner h2, .banner h3,
.banner h4, .banner h5, .banner h6 {
  color: #F9DD75;
}
.banner .inner {
  position: relative;
  z-index: 3;
  display: block;
  text-align: center;
  max-width: 40em;
  margin: auto;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
@media screen and (max-width: 600px) {
  .banner .inner {
    max-width: 20em;
  }
}
.banner .button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.banner .img-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.banner .img-container img,
.banner .img-container video {
  position: absolute;
  left: 0;
  top: -10%;
  height: 120%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.content-image-slider-section + section.content-illustration {
  padding-top: 0;
}
.content-image-slider-section + section.text-block {
  padding-top: 0;
}
.content-image-slider-section + section.faq-block {
  padding-top: 0;
}
.content-image-slider-section .inner {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .content-image-slider-section .inner {
    padding: 0;
    display: block;
  }
}
.content-image-slider-section .logos-wrapper {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-image-slider-section .logos-wrapper img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  max-width: 150px;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .content-image-slider-section .logos-wrapper img {
    max-width: 125px;
    max-height: 50px;
  }
}
.content-image-slider-section .video-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  width: 35%;
  position: relative;
  aspect-ratio: 9/9;
  overflow: hidden;
  border-radius: 15px;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
@media screen and (max-width: 900px) {
  .content-image-slider-section .video-wrapper {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 500px) {
  .content-image-slider-section .video-wrapper {
    aspect-ratio: 12/9;
  }
}
.content-image-slider-section .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-image-slider-section .content-image-slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  width: 35%;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .content-image-slider-section .content-image-slider {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.content-image-slider-section .content-image-slider .swiper-slide {
  position: relative;
  aspect-ratio: 9/9;
  overflow: hidden;
  border-radius: 15px;
}
@media screen and (max-width: 900px) {
  .content-image-slider-section .content-image-slider .swiper-slide {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 500px) {
  .content-image-slider-section .content-image-slider .swiper-slide {
    aspect-ratio: 12/9;
  }
}
.content-image-slider-section .content-image-slider .swiper-slide.swiper-slide-active .image-wrapper {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.content-image-slider-section .content-image-slider .swiper-slide .image-wrapper {
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  background: #11303C;
}
.content-image-slider-section .content-image-slider .swiper-slide img {
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: calc(100% + 90px);
  -o-object-fit: cover;
     object-fit: cover;
}
.content-image-slider-section .content-image-slider .content-image-slider-pagination {
  margin-top: 1em;
}
.content-image-slider-section .content-image-slider .content-image-slider-pagination .swiper-pagination-bullet {
  background: #F9DD75;
  opacity: 1;
}
.content-image-slider-section .content-image-slider .content-image-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #11303C;
}
.content-image-slider-section .content-wrapper {
  max-width: 36em;
  padding-left: 5%;
}
@media screen and (max-width: 900px) {
  .content-image-slider-section .content-wrapper {
    max-width: 100%;
    padding-top: 1em;
    padding-left: 0;
  }
}
.content-image-slider-section .download-link {
  font-family: "Inter", sans-serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.5em;
  text-decoration: none;
  font-size: 0.9em;
  position: relative;
  padding-right: calc(0.5em + 20px);
  padding-left: 1.5em;
  display: block;
}
@media screen and (max-width: 600px) {
  .content-image-slider-section .download-link {
    padding-left: 0;
  }
}
.content-image-slider-section .download-link:hover {
  color: #224F40;
}
.content-image-slider-section .download-link:hover .icon img.prev {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.content-image-slider-section .download-link:hover .icon img.after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.content-image-slider-section .download-link .icon {
  margin-left: 0.5em;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0%;
  border-bottom: 2px solid #11303C;
}
@media screen and (max-width: 1100px) {
  .content-image-slider-section .download-link .icon {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .content-image-slider-section .download-link .icon svg {
    padding: 1px;
  }
}
@media screen and (max-width: 375px) {
  .content-image-slider-section .download-link .icon {
    width: 14px;
    height: 14px;
  }
}
.content-image-slider-section .download-link .icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 2px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.content-image-slider-section .download-link .icon img.prev {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.content-image-slider-section .download-link .icon img.after {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}

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

.two-way-slider-section {
  overflow: hidden;
  color: white;
}
@media screen and (max-width: 900px) {
  .two-way-slider-section {
    padding: 5% 0 0;
  }
}
.two-way-slider-section li {
  font-family: "new-kansas", sans-serif;
  font-size: 1.1em;
}
.two-way-slider-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .two-way-slider-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.two-way-slider-section .two-way-content-slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  height: 100%;
  padding: 5% 10% 5% 5%;
  background: #11303C;
}
@media screen and (max-width: 768px) {
  .two-way-slider-section .two-way-content-slider {
    width: 100%;
  }
}
.two-way-slider-section .two-way-image-slider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .two-way-slider-section .two-way-image-slider {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.two-way-slider-section .two-way-image-slider .swiper-slide {
  position: relative;
  overflow: hidden;
  height: auto;
}
.two-way-slider-section .two-way-image-slider .swiper-slide img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 100px);
  -o-object-fit: cover;
     object-fit: cover;
}
.two-way-slider-section .controls {
  margin-top: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  display: block;
}
.two-way-slider-section .controls .slider-arrows > div svg #leftArrowGroup g,
.two-way-slider-section .controls .slider-arrows > div svg #rightArrowGroup g {
  stroke: white;
}
.two-way-slider-section .controls .slider-arrows > div svg #leftArrowGroup path,
.two-way-slider-section .controls .slider-arrows > div svg #rightArrowGroup path {
  fill: white;
}
.two-way-slider-section .controls .slider-arrows > div:hover svg {
  background: white;
}
.two-way-slider-section .controls .slider-arrows > div:hover #leftArrowGroup path,
.two-way-slider-section .controls .slider-arrows > div:hover #rightArrowGroup path {
  fill: #11303C;
}

.list-block {
  padding-top: 5%;
  position: relative;
  z-index: 2;
}
.list-block h1, .list-block h2, .list-block h3,
.list-block h4, .list-block h5, .list-block h6 {
  margin-top: 0;
}
.list-block.yellow {
  background: #F9DD75;
  color: #211d1e;
}
.list-block.yellow .foe-button.solid:hover {
  background-color: white;
  color: #211d1e;
}
.list-block.green {
  background: #224F40;
  color: white;
}
.list-block.green .right-content ul li::after {
  background: url("/wp-content/themes/foe/images/shell/dotted-line-yellow.svg");
}
.list-block .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  .list-block .inner {
    display: block;
  }
}
.list-block .heading-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-left: 5%;
}
.list-block .heading-wrapper h2 {
  max-width: 18em;
}
@media screen and (max-width: 900px) {
  .list-block .heading-wrapper {
    padding: 0;
  }
}
.list-block .left-content,
.list-block .right-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 0% 5% 5%;
}
@media screen and (max-width: 900px) {
  .list-block .left-content,
  .list-block .right-content {
    padding-top: 5%;
  }
}
.list-block .right-content ul {
  list-style: none;
  font-family: "new-kansas", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .list-block .right-content ul {
    padding-left: 0;
    padding-bottom: 0;
  }
}
.list-block .right-content ul.is-inview li {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.list-block .right-content ul li {
  padding: 1.5em 5em 1.5em 0;
  margin: 0;
  position: relative;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media screen and (max-width: 1200px) {
  .list-block .right-content ul li {
    padding-right: 1.5em;
  }
}
.list-block .right-content ul li:nth-child(1) {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}
.list-block .right-content ul li:nth-child(2) {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}
.list-block .right-content ul li:nth-child(3) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}
.list-block .right-content ul li:nth-child(4) {
  -webkit-transition-delay: 0.32s;
          transition-delay: 0.32s;
}
.list-block .right-content ul li:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.list-block .right-content ul li:nth-child(6) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.list-block .right-content ul li:nth-child(7) {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}
.list-block .right-content ul li:nth-child(8) {
  -webkit-transition-delay: 0.64s;
          transition-delay: 0.64s;
}
.list-block .right-content ul li:nth-child(9) {
  -webkit-transition-delay: 0.72s;
          transition-delay: 0.72s;
}
.list-block .right-content ul li:nth-child(10) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.list-block .right-content ul li:nth-child(11) {
  -webkit-transition-delay: 0.88s;
          transition-delay: 0.88s;
}
.list-block .right-content ul li:nth-child(12) {
  -webkit-transition-delay: 0.96s;
          transition-delay: 0.96s;
}
.list-block .right-content ul li:nth-child(13) {
  -webkit-transition-delay: 1.04s;
          transition-delay: 1.04s;
}
.list-block .right-content ul li:nth-child(14) {
  -webkit-transition-delay: 1.12s;
          transition-delay: 1.12s;
}
.list-block .right-content ul li:nth-child(15) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.list-block .right-content ul li:nth-child(16) {
  -webkit-transition-delay: 1.28s;
          transition-delay: 1.28s;
}
.list-block .right-content ul li:nth-child(17) {
  -webkit-transition-delay: 1.36s;
          transition-delay: 1.36s;
}
.list-block .right-content ul li:nth-child(18) {
  -webkit-transition-delay: 1.44s;
          transition-delay: 1.44s;
}
.list-block .right-content ul li:nth-child(19) {
  -webkit-transition-delay: 1.52s;
          transition-delay: 1.52s;
}
.list-block .right-content ul li:nth-child(20) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.list-block .right-content ul li:nth-child(21) {
  -webkit-transition-delay: 1.68s;
          transition-delay: 1.68s;
}
.list-block .right-content ul li:nth-child(22) {
  -webkit-transition-delay: 1.76s;
          transition-delay: 1.76s;
}
.list-block .right-content ul li:nth-child(23) {
  -webkit-transition-delay: 1.84s;
          transition-delay: 1.84s;
}
.list-block .right-content ul li:nth-child(24) {
  -webkit-transition-delay: 1.92s;
          transition-delay: 1.92s;
}
.list-block .right-content ul li:nth-child(25) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.list-block .right-content ul li:nth-child(26) {
  -webkit-transition-delay: 2.08s;
          transition-delay: 2.08s;
}
.list-block .right-content ul li:nth-child(27) {
  -webkit-transition-delay: 2.16s;
          transition-delay: 2.16s;
}
.list-block .right-content ul li:nth-child(28) {
  -webkit-transition-delay: 2.24s;
          transition-delay: 2.24s;
}
.list-block .right-content ul li:nth-child(29) {
  -webkit-transition-delay: 2.32s;
          transition-delay: 2.32s;
}
.list-block .right-content ul li:nth-child(30) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.list-block .right-content ul li::after {
  content: "";
  position: absolute;
  height: 1px;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  left: 0;
  bottom: 0;
  width: 100%;
}
.list-block .right-content ul li:first-child {
  padding-top: 0;
}
.list-block .right-content ul li:last-child {
  padding-bottom: 0;
}
.list-block .right-content ul li:last-child::after {
  display: none;
}

.product-grid-block {
  padding-top: 5%;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .product-grid-block {
    padding: 8% 5% 0;
  }
}
@media screen and (max-width: 375px) {
  .product-grid-block {
    padding: 8% 3% 0;
  }
}
.product-grid-block.agriculture .title, .product-grid-block.horticulture .title {
  background: #F9DD75;
  color: #211d1e;
}
.product-grid-block.retail .title {
  background: #11303C;
  color: white;
}
.product-grid-block.retail .title a {
  color: white;
}
.product-grid-block.retail .product-grid .product:first-child {
  pointer-events: all;
}
.product-grid-block .inner {
  display: block;
}
.product-grid-block .intro {
  text-align: center;
  margin: auto;
  margin-bottom: 5%;
  max-width: 26em;
}
.product-grid-block .product-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .product-grid-block .product-grid {
    gap: 1em;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid {
    gap: 0;
  }
}
.product-grid-block .product-grid .product {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 2em);
          flex: 0 0 calc(33.33% - 2em);
  margin: 0 1em 2em 0em;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 8px 5px rgba(155, 155, 155, 0.26);
  box-shadow: 0px 3px 8px 5px rgba(155, 155, 155, 0.1);
}
@media screen and (max-width: 900px) {
  .product-grid-block .product-grid .product {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33% - 1em);
            flex: 0 0 calc(33.33% - 1em);
    margin: 0.5em;
  }
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid .product {
    border-radius: 10px;
  }
}
@media screen and (max-width: 375px) {
  .product-grid-block .product-grid .product {
    border-radius: 5px;
  }
}
.product-grid-block .product-grid .product:nth-of-type(3n + 3) {
  margin-right: 0;
}
@media screen and (max-width: 900px) {
  .product-grid-block .product-grid .product:nth-of-type(3n + 3) {
    margin: 0.5em;
  }
}
.product-grid-block .product-grid .product.hoverable {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.product-grid-block .product-grid .product.hoverable a {
  text-decoration: none;
}
.product-grid-block .product-grid .product.hoverable:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.product-grid-block .product-grid .product .image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10%;
  overflow: hidden;
  background: white;
  aspect-ratio: 1;
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid .product .image {
    padding-top: 0;
  }
}
.product-grid-block .product-grid .product .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid .product .image img {
    max-width: 8em;
  }
}
.product-grid-block .product-grid .product .title {
  text-wrap: balance;
  font-weight: 500;
  padding: 5%;
  height: 100%;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid .product .title {
    font-size: 0.8em;
    padding-right: 5%;
  }
}
@media screen and (max-width: 375px) {
  .product-grid-block .product-grid .product .title {
    font-size: 0.7em;
  }
}
.product-grid-block .product-grid .product .title .text {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9em;
}
.product-grid-block .product-grid .product .title .line {
  width: 100%;
  margin: 0.5em 0;
}
.product-grid-block .product-grid .product .title .file {
  font-family: "Inter", sans-serif;
  width: 100%;
  text-decoration: none;
  font-size: 0.9em;
  position: relative;
  padding-right: calc(0.5em + 20px);
  display: block;
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid .product .title .file {
    padding-right: 0;
  }
}
.product-grid-block .product-grid .product .title .file:hover .icon img.prev {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}
.product-grid-block .product-grid .product .title .file:hover .icon img.after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.product-grid-block .product-grid .product .title .file .icon {
  margin-left: 0.5em;
  width: 20px;
  height: 20px;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0%;
}
@media screen and (max-width: 1100px) {
  .product-grid-block .product-grid .product .title .file .icon {
    width: 15px;
    height: 15px;
  }
}
@media screen and (max-width: 600px) {
  .product-grid-block .product-grid .product .title .file .icon svg {
    padding: 1px;
  }
}
@media screen and (max-width: 375px) {
  .product-grid-block .product-grid .product .title .file .icon {
    width: 12px;
    height: 12px;
  }
}
.product-grid-block .product-grid .product .title .file .icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 2px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product-grid-block .product-grid .product .title .file .icon img.prev {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.product-grid-block .product-grid .product .title .file .icon img.after {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}
.product-grid-block .title {
  background: #11303C;
  color: white;
}

.step-slider-block {
  padding-right: 0;
  overflow: hidden;
  padding-left: 5%;
}
@media screen and (max-width: 1200px) {
  .step-slider-block {
    padding-left: 8%;
    padding-top: 0;
  }
}
.step-slider-block .slider-intro {
  text-align: center;
  margin: auto;
  margin-bottom: 5%;
  padding: 0 5%;
  max-width: 40em;
}
.step-slider-block .slider-intro h2 {
  margin-left: -10%;
}
@media screen and (max-width: 600px) {
  .step-slider-block .slider-intro {
    margin-bottom: 8%;
    padding-left: 0;
  }
  .step-slider-block .slider-intro h2 {
    font-size: 1.3em;
    margin-left: 0;
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  .step-slider-block .slider-intro h2 {
    font-size: 1.1em;
  }
}
.step-slider-block .inner {
  display: block;
}
.step-slider-block .step-slider {
  width: 50%;
  max-width: 1200px;
  padding-left: 8%;
}
@media screen and (max-width: 1600px) {
  .step-slider-block .step-slider {
    padding-left: 0;
  }
}
@media screen and (max-width: 900px) {
  .step-slider-block .step-slider {
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .step-slider-block .step-slider {
    width: 80%;
    padding-left: 0;
  }
}
.step-slider-block .step-slider .slide {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 900px) {
  .step-slider-block .step-slider .slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    margin-right: 2em;
  }
}
.step-slider-block .step-slider .slide.swiper-slide-active, .step-slider-block .step-slider .slide.swiper-slide-next {
  opacity: 1;
}
.step-slider-block .step-slider .slide.swiper-slide-active .image-wrapper img, .step-slider-block .step-slider .slide.swiper-slide-next .image-wrapper img {
  opacity: 1;
}
.step-slider-block .step-slider .slide.swiper-slide-active .image-wrapper img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.step-slider-block .step-slider .slide .image-wrapper {
  position: relative;
  aspect-ratio: 12/9;
  background: #11303C;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  padding: 4vw;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.step-slider-block .step-slider .slide .image-wrapper img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.1s;
  transition: opacity 0.6s ease-out 0.2s, -webkit-transform 0.8s ease-out 0.1s;
  transition: opacity 0.6s ease-out 0.2s, transform 0.8s ease-out 0.1s;
  transition: opacity 0.6s ease-out 0.2s, transform 0.8s ease-out 0.1s, -webkit-transform 0.8s ease-out 0.1s;
}
.step-slider-block .step-slider .slide .slide-text {
  padding: 4vw 6vw 1vw 4vw;
  max-width: 30em;
  position: relative;
  z-index: 5;
  color: #211d1e;
  font-family: "new-kansas", sans-serif;
  font-size: 1.3em;
  font-weight: 400;
}
@media screen and (max-width: 900px) {
  .step-slider-block .step-slider .slide .slide-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .step-slider-block .step-slider .slide .slide-text .illustration {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    margin-right: 2em;
  }
}
.step-slider-block .step-slider .slide .slide-text h4 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.step-slider-block .step-slider .slide .slide-text p {
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  text-align: left;
}
.step-slider-block .step-slider .slide .slide-text .button-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
}
.step-slider-block .step-slider .slide .slide-text .button-container .foe-button {
  margin: 0;
}
.step-slider-block .step-slider .slide .slide-text .button-container .foe-button::before {
  background-color: #11303C;
}
.step-slider-block .step-slider .slide .slide-text .button-container .foe-button::after {
  background-color: #11303C;
}
.step-slider-block .step-slider .controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2em;
}
.step-slider-block .step-slider .controls .slider-pagination .dot {
  border: 2px solid #F9DD75;
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
.step-slider-block .step-slider .controls .slider-pagination .dot--active {
  background-color: #F9DD75;
}
.step-slider-block .step-slider .controls .slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
}
.step-slider-block .step-slider .controls .slider-arrows > div {
  display: block;
  right: 45px;
  background-color: rbga(0, 0, 0, 0);
  background-size: cover;
  cursor: pointer;
  border-radius: 50rem;
}

.team {
  overflow: hidden;
}
.team + section.text-block {
  padding-top: 0;
}
.team .inner {
  display: block;
  margin-left: auto;
}
.team .intro {
  position: relative;
  margin-right: 10%;
}
.team .heading-wrapper {
  max-width: 40em;
  padding-right: 5%;
}
.team .controls {
  padding-top: 5%;
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .team .controls {
    position: static;
  }
}
.team .team-slider-wrapper {
  overflow: hidden;
}
.team .team-slider-wrapper.is-inview .team-slider .swiper-slide .member-inner-wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .team .team-slider-wrapper.is-inview .team-slider .swiper-slide.filler-slide {
    display: none;
  }
}
.team .team-slider-wrapper .team-grid {
  width: 100% !important;
  border-radius: unset !important;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(375px, 1fr));
  gap: 1rem;
}
@media screen and (max-width: 1400px) {
  .team .team-slider-wrapper .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  }
}
@media screen and (max-width: 1024px) {
  .team .team-slider-wrapper .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .team .team-slider-wrapper .team-grid {
    gap: 0.5rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.team .team-slider-wrapper .team-grid .swiper-slide .member-inner-wrapper {
  padding: 5%;
  border-radius: 10px;
  background: #F8F8F5;
  height: 100%;
  min-height: 180px;
}
@media screen and (max-width: 1024px) {
  .team .team-slider-wrapper .team-grid .swiper-slide .member-inner-wrapper {
    min-height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .team .team-slider-wrapper .team-grid .swiper-slide .member-inner-wrapper {
    min-height: 100px;
  }
}
.team .team-slider-wrapper .team-slider,
.team .team-slider-wrapper .team-grid {
  width: 110%;
  border-radius: 15px;
}
@media screen and (max-width: 600px) {
  .team .team-slider-wrapper .team-slider,
  .team .team-slider-wrapper .team-grid {
    width: 80%;
  }
}
.team .team-slider-wrapper .team-slider .swiper-slide,
.team .team-slider-wrapper .team-grid .swiper-slide {
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper {
  position: relative;
  aspect-ratio: 8/9;
  border-radius: 15px;
  overflow: hidden;
  background: #11303C;
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper:hover .plus-icon,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper:hover .plus-icon {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
@media screen and (max-width: 768px) {
  .team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper:hover .plus-icon,
  .team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper:hover .plus-icon {
    -webkit-transform: rotate(270deg) scale(0.8);
            transform: rotate(270deg) scale(0.8);
  }
}
@media screen and (max-width: 475px) {
  .team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper:hover .plus-icon,
  .team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper:hover .plus-icon {
    -webkit-transform: rotate(270deg) scale(0.6);
            transform: rotate(270deg) scale(0.6);
  }
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper:hover .plus-icon circle,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper:hover .plus-icon circle {
  fill: white;
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper.has-bio,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper.has-bio {
  cursor: pointer;
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper img,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper .plus-icon,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper .plus-icon {
  position: absolute;
  z-index: 1;
  bottom: 4%;
  left: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
@media screen and (max-width: 768px) {
  .team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper .plus-icon,
  .team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper .plus-icon {
    -webkit-transform: rotate(0deg) scale(0.8);
            transform: rotate(0deg) scale(0.8);
  }
}
@media screen and (max-width: 475px) {
  .team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper .plus-icon,
  .team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper .plus-icon {
    -webkit-transform: rotate(0deg) scale(0.6);
            transform: rotate(0deg) scale(0.6);
  }
}
.team .team-slider-wrapper .team-slider .swiper-slide .image-wrapper .plus-icon circle,
.team .team-slider-wrapper .team-grid .swiper-slide .image-wrapper .plus-icon circle {
  -webkit-transition: fill 0.7s ease;
  transition: fill 0.7s ease;
}
.team .team-slider-wrapper .team-slider .swiper-slide .name,
.team .team-slider-wrapper .team-grid .swiper-slide .name {
  margin-bottom: 0.3em;
}
.team .full-bio {
  display: none;
}

.regional-list {
  padding-bottom: 0em;
}
.regional-list + section.text-block {
  padding-top: 0;
}
.regional-list .inner {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
}
.regional-list .intro {
  position: relative;
  margin-right: 10%;
  margin-bottom: 5%;
}
.regional-list .heading-wrapper {
  max-width: 40em;
  padding-right: 5%;
}
.regional-list .controls {
  padding-top: 5%;
  padding-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .regional-list .controls {
    position: static;
  }
}
.regional-list .team-slider-wrapper {
  overflow: hidden;
}
.regional-list .team-slider-wrapper.is-inview .team-slider .swiper-slide .member-inner-wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .regional-list .team-slider-wrapper.is-inview .team-slider .swiper-slide.filler-slide {
    display: none;
  }
}
.regional-list .team-slider-wrapper .team-grid {
  width: 100% !important;
  border-radius: unset !important;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .regional-list .team-slider-wrapper .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.regional-list .team-slider-wrapper .team-grid .swiper-slide .member-inner-wrapper {
  padding: 5%;
  border-radius: 10px;
  background: #11303C;
  color: white;
  height: 100%;
  min-height: 180px;
}
@media screen and (max-width: 1024px) {
  .regional-list .team-slider-wrapper .team-grid .swiper-slide .member-inner-wrapper {
    min-height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .regional-list .team-slider-wrapper .team-grid .swiper-slide .member-inner-wrapper {
    min-height: 100px;
  }
}
.regional-list .team-slider-wrapper .team-slider,
.regional-list .team-slider-wrapper .team-grid {
  width: 110%;
  border-radius: 15px;
}
@media screen and (max-width: 600px) {
  .regional-list .team-slider-wrapper .team-slider,
  .regional-list .team-slider-wrapper .team-grid {
    width: 80%;
  }
}
.regional-list .team-slider-wrapper .team-slider .swiper-slide,
.regional-list .team-slider-wrapper .team-grid .swiper-slide {
  -webkit-transition: opacity 0.7s ease;
  transition: opacity 0.7s ease;
}
.regional-list .team-slider-wrapper .team-slider .swiper-slide .name,
.regional-list .team-slider-wrapper .team-grid .swiper-slide .name {
  margin-bottom: 0.3em;
}
.regional-list .team-slider-wrapper .team-slider .swiper-slide .title,
.regional-list .team-slider-wrapper .team-grid .swiper-slide .title {
  font-size: 0.8em;
}
.regional-list .full-bio {
  display: none;
}
.regional-list .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.regional-list a {
  color: white;
  text-decoration-color: transparent !important;
  text-underline-offset: 4px;
}
.regional-list a:hover {
  color: #F9DD75;
  text-decoration-color: #F9DD75 !important;
}
.regional-list .icon {
  display: block;
  background: white;
}
.regional-list .icon.icon-phone {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(/wp-content/themes/foe/images/shell/icon-phone.svg);
          mask-image: url(/wp-content/themes/foe/images/shell/icon-phone.svg);
  -webkit-mask-size: 20px 20px;
          mask-size: 20px 20px;
}
.regional-list .icon.icon-email {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url(/wp-content/themes/foe/images/shell/icon-mail.svg);
          mask-image: url(/wp-content/themes/foe/images/shell/icon-mail.svg);
  -webkit-mask-size: 20px 20px;
          mask-size: 20px 20px;
}

.team-modal-wrap {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(17, 48, 60, 0.8);
  backdrop-filter: blur(10px);
}
.team-modal-wrap .team-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team-modal-wrap .team-modal .team-modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1316px;
  margin: auto;
  background: #11303C;
  width: 100%;
  height: 100%;
  max-height: 650px;
  overflow: hidden;
  border-radius: 35px;
  color: white;
}
@media screen and (max-width: 1600px) {
  .team-modal-wrap .team-modal .team-modal-inner {
    max-width: 800px;
    max-height: 450px;
  }
  .team-modal-wrap .team-modal .team-modal-inner h2 {
    margin-bottom: 0.4em;
  }
  .team-modal-wrap .team-modal .team-modal-inner h4 {
    margin: 0.4em 0;
  }
}
@media screen and (max-width: 900px) {
  .team-modal-wrap .team-modal .team-modal-inner {
    max-width: 600px;
    max-height: 300px;
    border-radius: 15px;
  }
  .team-modal-wrap .team-modal .team-modal-inner h2 {
    margin-bottom: 0.4em;
    font-size: clamp(1.1rem, 1vw + 1rem, 2rem);
  }
}
@media screen and (max-width: 600px) {
  .team-modal-wrap .team-modal .team-modal-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
    max-width: 100%;
    border-radius: 0;
    overflow-y: auto;
  }
  .team-modal-wrap .team-modal .team-modal-inner::-webkit-scrollbar {
    width: 10px;
  }
  .team-modal-wrap .team-modal .team-modal-inner::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
  }
  .team-modal-wrap .team-modal .team-modal-inner::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
  }
}
.team-modal-wrap .team-modal .team-modal-inner .left-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
  background: #EE6C37;
  position: relative;
}
@media screen and (max-width: 600px) {
  .team-modal-wrap .team-modal .team-modal-inner .left-wrapper {
    aspect-ratio: 12/9;
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
}
.team-modal-wrap .team-modal .team-modal-inner .left-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 1px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66%;
          flex: 0 0 66.66%;
  padding: 5%;
  position: relative;
}
@media screen and (max-width: 600px) {
  .team-modal-wrap .team-modal .team-modal-inner .right-wrapper {
    position: static;
  }
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .modal-close-icon {
  position: absolute;
  top: 3%;
  right: 3%;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 900px) {
  .team-modal-wrap .team-modal .team-modal-inner .right-wrapper .modal-close-icon {
    -webkit-transform: rotate(0deg) scale(0.8);
            transform: rotate(0deg) scale(0.8);
  }
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .modal-close-icon:hover {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
@media screen and (max-width: 900px) {
  .team-modal-wrap .team-modal .team-modal-inner .right-wrapper .modal-close-icon:hover {
    -webkit-transform: rotate(270deg) scale(0.8);
            transform: rotate(270deg) scale(0.8);
  }
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .modal-close-icon:hover circle {
  fill: white;
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .modal-close-icon circle {
  -webkit-transition: fill 0.7s ease;
  transition: fill 0.7s ease;
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper {
  max-height: 400px;
  padding: 5% 30px 5% 0;
  overflow-y: auto;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(12%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), color-stop(95%, transparent));
  -webkit-mask-image: linear-gradient(180deg, transparent 5%, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 80%, transparent 95%);
          mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(12%, rgb(0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), color-stop(95%, transparent));
          mask-image: linear-gradient(180deg, transparent 5%, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 80%, transparent 95%);
}
@media screen and (max-width: 1600px) {
  .team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper {
    max-height: 300px;
  }
}
@media screen and (max-width: 900px) {
  .team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper {
    max-height: 180px;
  }
}
@media screen and (max-width: 600px) {
  .team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper {
    overflow-y: visible;
    max-height: 100%;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper::-webkit-scrollbar {
  width: 10px;
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.4);
}
.team-modal-wrap .team-modal .team-modal-inner .right-wrapper .content-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}

.instagram {
  padding-top: 5%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .instagram {
    padding: 5% 0 0;
  }
}
.instagram .inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1337px;
  margin: 0 auto;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 900px) {
  .instagram .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .instagram .inner .foe-button {
    margin: 0em 0 1em;
  }
}
.instagram .content {
  padding-right: 5%;
}
.instagram .instagram-shortcode {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  width: 100%;
}
.instagram #instagramBlock #sb_instagram .sbi_photo_wrap {
  border-radius: 15px;
  overflow: hidden;
}

#newsletter-hero .gform-body input {
  background: white !important;
  color: #211d1e !important;
}
#newsletter-hero .gform-body input:focus {
  border-color: #211d1e !important;
}
#newsletter-hero .gform-body label {
  color: #211d1e !important;
}
#newsletter-hero .gform-body .gfield_required {
  color: #c02b0a !important;
}
#newsletter-hero .gform_footer .gform_button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#newsletter-hero .gform_footer .gform_button:hover {
  background: #224F40 !important;
  color: #F9DD75 !important;
}
#newsletter-hero .gform_validation_errors {
  border: solid 2px #11303C !important;
}
#newsletter-hero #gform_ajax_spinner_11,
#newsletter-hero #gform_ajax_spinner_12 {
  width: 30px;
  height: 30px;
  top: unset;
  left: unset;
  right: 5%;
  bottom: 5%;
}
#newsletter-hero .gform_ajax_spinner {
  max-width: 100%;
  width: 100px;
  display: block;
  margin: 20px auto;
}

.page-id-2110 .newsletter-hero .heading-wrapper {
  background: #adcb54;
  color: white;
  color: #211d1e;
}
.page-id-2110 .newsletter-hero .heading-wrapper h2 {
  font-size: clamp(1.333rem, 1vw + 1rem, 1.8rem);
}
.page-id-2110 .newsletter-hero .heading-wrapper .logo-wrapper img {
  max-width: 200px;
}

.newsletter-hero {
  border-radius: 0 0 35px 35px;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .newsletter-hero {
    border-radius: 0 0 15px 15px;
  }
}
.newsletter-hero + section {
  margin-top: -35px;
}
@media screen and (max-width: 1200px) {
  .newsletter-hero + section {
    margin-top: -15px;
  }
}
@media screen and (max-width: 600px) {
  .newsletter-hero + section {
    padding-top: calc(8% + 15px);
  }
}
.newsletter-hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 600px) {
  .newsletter-hero .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.newsletter-hero .heading-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 1em;
  background: #F9DD75;
  color: #211d1e;
  border-radius: 15px;
}
.newsletter-hero .heading-wrapper h2 {
  margin: 0 !important;
}
.newsletter-hero .heading-wrapper .logo-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.newsletter-hero .heading-wrapper .logo-wrapper img {
  max-width: 200px;
}
.newsletter-hero .right-wrapper img {
  position: absolute;
  top: -30px;
  height: calc(100% + 60px);
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.newsletter-hero .left-wrapper,
.newsletter-hero .right-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
.newsletter-hero .left-wrapper {
  padding: calc(10% + 20px) 5% 5% 10%;
  background: white;
}
@media screen and (max-width: 1400px) {
  .newsletter-hero .left-wrapper {
    padding: calc(10% + 20px) 5% 5% 5%;
  }
}
@media screen and (max-width: 600px) {
  .newsletter-hero .left-wrapper {
    padding: 8% 5% 8%;
    display: block;
  }
}
.newsletter-hero .left-wrapper .content {
  max-width: 30em;
}
@media screen and (max-width: 600px) {
  .newsletter-hero .left-wrapper .content {
    max-width: 100%;
  }
}
.newsletter-hero .right-wrapper {
  padding: 12% 5% 5% 5%;
  background: #224F40;
  color: white;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .newsletter-hero .right-wrapper {
    padding: 12% 3% 5% 3%;
  }
}
@media screen and (max-width: 1000px) {
  .newsletter-hero .right-wrapper {
    width: 100%;
    padding-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 900px) {
  .newsletter-hero .right-wrapper {
    padding: 8% 5% 8% 5%;
  }
}
@media screen and (max-width: 600px) {
  .newsletter-hero .right-wrapper {
    min-height: 40svh;
  }
}
.newsletter-hero .right-wrapper .filter-wrapper {
  width: 100%;
}
.newsletter-hero .right-wrapper .filter-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.newsletter-hero .right-wrapper .filter-tabs .filter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.newsletter-hero .right-wrapper .filter-tabs .filter.active h4 {
  border-color: #F9DD75;
}
.newsletter-hero .right-wrapper .filter-tabs .filter h4 {
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1400px) {
  .newsletter-hero .right-wrapper .filter-tabs .filter h4 {
    font-size: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .newsletter-hero .right-wrapper .filter-tabs .filter h4 {
    font-size: 1.2em;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .newsletter-hero .right-wrapper .filter-tabs .filter h4 {
    font-size: 1em;
  }
}
.newsletter-hero .right-wrapper .form-slider-wrapper {
  width: 50%;
}
.newsletter-hero .right-wrapper .form-wrapper {
  padding-top: 5%;
}

.contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .contact .inner {
    display: block;
  }
}
.contact .left-wrapper,
.contact .right-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.contact .left-wrapper {
  padding: 12% 5% 5% 10%;
}
@media screen and (max-width: 1000px) {
  .contact .left-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 20% 8% 5% 8%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 800px;
    margin: auto;
  }
}
@media screen and (max-width: 500px) {
  .contact .left-wrapper {
    padding: 0 5% 5%;
    display: block;
  }
}
.contact .left-wrapper .illustration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}
.contact .left-wrapper .illustration img {
  min-width: 100px;
  max-width: 19vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .contact .left-wrapper .illustration img {
    max-width: 30vw;
    min-height: 200px;
  }
}
@media screen and (max-width: 500px) {
  .contact .left-wrapper .illustration img {
    max-width: 50vw;
    margin: auto;
    margin-top: 50px;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.contact .left-wrapper .content {
  max-width: 30em;
}
@media screen and (max-width: 1000px) {
  .contact .left-wrapper .content {
    padding-right: 5%;
    max-width: 20em;
  }
}
@media screen and (max-width: 500px) {
  .contact .left-wrapper .content {
    max-width: 26em;
  }
}
.contact .right-wrapper {
  padding: 8% 5% 5% 5%;
  background: #224F40;
  color: white;
  width: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .contact .right-wrapper {
    padding: 12% 3% 5% 3%;
  }
}
@media screen and (max-width: 1000px) {
  .contact .right-wrapper {
    width: 100%;
    padding-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .contact .right-wrapper .filter-wrapper,
  .contact .right-wrapper .form-wrapper {
    max-width: 800px;
    margin: auto;
  }
}
@media screen and (max-width: 900px) {
  .contact .right-wrapper {
    padding: 8% 5% 8% 5%;
  }
}
.contact .right-wrapper .filter-wrapper {
  width: 100%;
}
.contact .right-wrapper .filter-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.contact .right-wrapper .filter-tabs .filter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.contact .right-wrapper .filter-tabs .filter.active h4 {
  border-color: #F9DD75;
}
.contact .right-wrapper .filter-tabs .filter h4 {
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1400px) {
  .contact .right-wrapper .filter-tabs .filter h4 {
    font-size: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .contact .right-wrapper .filter-tabs .filter h4 {
    font-size: 1.2em;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .contact .right-wrapper .filter-tabs .filter h4 {
    font-size: 1em;
  }
}
.contact .right-wrapper .form-slider-wrapper {
  width: 50%;
}
.contact .right-wrapper .form-wrapper {
  padding-top: 5%;
}

.line-section {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .line-section {
    padding-bottom: 0;
  }
}
.line-section .line {
  height: 2px;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: 100%;
  background-repeat: repeat-x;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  max-width: 1094px;
  margin: auto;
}

.list-only-block {
  position: relative;
  text-align: center;
}
.list-only-block .inner {
  display: block;
}
.list-only-block .list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1094px;
  margin: auto;
  width: 100%;
  font-family: "new-kansas", sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .list-only-block .list-container {
    font-size: 1em;
  }
}
@media screen and (max-width: 375px) {
  .list-only-block .list-container {
    display: block;
  }
}
.list-only-block .list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1em);
          flex: 0 0 calc(50% - 1em);
  padding: 1.5em;
  margin: 0;
  position: relative;
  opacity: 1;
}
@media screen and (max-width: 475px) {
  .list-only-block .list-item {
    padding: 1em 0 1em;
  }
}
.list-only-block .list-item.is-inview {
  opacity: 1;
}
.list-only-block .list-item::after {
  content: "";
  position: absolute;
  height: 1px;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.list-only-block .list-item .list-text {
  max-width: 26em;
  text-wrap: balance;
  display: block;
  margin: auto;
}
.list-only-block .list-item:last-child::after {
  display: none;
}
.list-only-block .list-item:nth-last-child(2)::after {
  display: none;
}
@media screen and (max-width: 375px) {
  .list-only-block .list-item:nth-last-child(2)::after {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  .error-404 {
    padding-top: 100px;
  }
}

.page-id-1084 .content-image .inner {
  display: block;
}

.benefits-section .inner {
  border-radius: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
@media screen and (max-width: 1200px) {
  .benefits-section .inner {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .benefits-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.benefits-section .inner .benefits-image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  position: relative;
}
@media screen and (max-width: 900px) {
  .benefits-section .inner .benefits-image-col {
    aspect-ratio: 18/9;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .benefits-section .inner .benefits-image-col {
    aspect-ratio: 11/9;
    width: 100%;
  }
}
.benefits-section .inner .benefits-image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits-section .inner .benefits-content-col {
  padding: 5% 5% 3%;
  width: 65%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  background-color: #F8F8F5;
  color: #11303C;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .benefits-section .inner .benefits-content-col {
    padding: 5% 8% 3%;
  }
}
.benefits-section .inner .benefits-content-col ul li::marker {
  color: #11303C;
}
@media screen and (max-width: 900px) {
  .benefits-section .inner .benefits-content-col {
    width: 100%;
  }
}

.shop-intro {
  padding-top: 10%;
  padding-bottom: 2em;
}
@media screen and (max-width: 1100px) {
  .shop-intro {
    padding-top: 100px;
  }
}
@media screen and (max-width: 600px) {
  .shop-intro {
    padding-top: 130px;
  }
}
.shop-intro + div {
  padding-top: 0 !important;
}
.shop-intro .inner {
  display: block;
}
.shop-intro .inner a {
  text-decoration: none;
}

.breadcrumb-wrapper {
  margin-bottom: 2%;
}
.breadcrumb-wrapper a {
  text-decoration: none !important;
  border-bottom: solid 1px transparent;
}
.breadcrumb-wrapper a:hover {
  border-color: #11303C;
}

#page #ag-form label {
  color: #211d1e;
  font-weight: 500;
}
#page #ag-form .gfield_required_asterisk {
  color: #FF0000;
}
#page #ag-form input,
#page #ag-form textarea {
  background: white;
  border: solid 2px #e8e7de;
  color: #8B8989;
}
#page #ag-form input:focus,
#page #ag-form textarea:focus {
  border-color: #211d1e;
}
#page #ag-form select {
  border: solid 2px #e8e7de;
  background: white url("/wp-content/themes/foe/images/icons/arrow-down-dark.svg") right 1.5em center no-repeat;
  color: #8B8989;
}
#page #ag-form .gform_button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.8em 2em;
  font-weight: 500;
  font-size: 0.9em;
  cursor: pointer;
}
#page #ag-form .gform_button:hover {
  background: #224F40;
  color: white;
}

section.video {
  padding-top: 1em;
  padding-bottom: 1em;
}
section.video + section.video {
  padding-top: 0.8em;
}
section.video .inner {
  display: block;
  max-width: 1000px;
  margin: auto;
}
section.video .inner .video-wrap {
  width: 100%;
}
section.video .inner .video-wrap video {
  width: 100%;
  aspect-ratio: 16/9;
  background: black;
  border-radius: 15px;
}
section.video .inner .video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.post-intro {
  padding-bottom: 0;
}
.post-intro .inner {
  display: block;
  max-width: 1000px;
  margin: auto;
}
.post-intro .foe-underline {
  max-width: 35em;
}

.post-link-container {
  padding-top: 2em;
}
.post-link-container .inner {
  display: block;
  max-width: 1000px;
  margin: auto;
}
.post-link-container .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 1em 0 2em;
}
.post-link-container .post-links {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 500px) {
  .post-link-container .post-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
.post-link-container .post-links .foe-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.post-link-container .post-links .post-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.post-link-container .post-links .post-controls .post-prev-wrapper .foe-button {
  padding: 0.8em 1.8em 0.8em 1.3em;
  background: #F9DD75 url("/wp-content/themes/foe/images/shell/arrow-right.svg") right 17px center no-repeat;
}
.post-link-container .post-links .post-controls .post-prev-wrapper .foe-button:hover {
  background: #11303C url("/wp-content/themes/foe/images/shell/arrow-right-white.svg") right 17px center no-repeat;
}
.post-link-container .post-links .post-controls .post-prev-wrapper .foe-button::after {
  margin: auto;
  left: -0.5em;
}
.post-link-container .post-links .post-controls .post-next-wrapper .foe-button {
  padding: 0.8em 1.3em 0.8em 1.8em;
  background: #F9DD75 url("/wp-content/themes/foe/images/shell/arrow-left.svg") left 17px center no-repeat;
}
.post-link-container .post-links .post-controls .post-next-wrapper .foe-button:hover {
  background: #11303C url("/wp-content/themes/foe/images/shell/arrow-left-white.svg") left 17px center no-repeat;
}
.post-link-container .post-links .post-controls .post-next-wrapper .foe-button::after {
  margin: auto;
  right: -0.5em;
}

.post-block {
  padding-top: 0;
  padding-bottom: 0;
}
.post-block .inner {
  max-width: 1000px;
  margin: auto;
}

.post-image {
  padding-top: 1em;
  padding-bottom: 1em;
}
.post-image .image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 18/9;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.post-image .image-wrap img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
}

.post-gallery {
  padding-top: 1em;
  padding-bottom: 1em;
}
.post-gallery .gallery-container {
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 2em;
  height: 100%;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.post-gallery .image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/9;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.post-gallery .image-wrap img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 900px) {
  .map-section {
    padding: 8% 0 0;
  }
}
.map-section .inner {
  display: block;
}
.map-section .intro {
  max-width: 36em;
  margin: auto;
  text-align: center;
}
.map-section .intro .button-container {
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.map-section .map-wrapper {
  margin-top: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  border-radius: 35px;
}
@media screen and (max-width: 900px) {
  .map-section .map-wrapper {
    border-radius: 0;
  }
}
.map-section .map-wrapper a {
  text-decoration: none;
  border-bottom: 1px solid #11303C;
}
.map-section .map-wrapper p {
  font-weight: 600;
}
.map-section .map-wrapper #foeMap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  background: #11303C;
  color: white;
  padding: 5%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  border-bottom-left-radius: 35px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .map-section .map-wrapper #foeMap .wpgmza-store-locator {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-radius: 20px 20px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .map-section .map-wrapper #foeMap .wpgmza-store-locator {
    padding-bottom: 8%;
  }
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.horticulture {
  background: #224F40;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture {
  background: #F9DD75;
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture span {
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture .wpgmza_checkbox + label {
  background: white !important;
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture .wpgmza_checkbox + label:hover {
  background: #224F40 !important;
  color: white !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture .wpgmza_checkbox + label.active {
  background: #224F40 !important;
  color: white !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture input[type=text] {
  border-color: #211d1e !important;
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture input[type=text]::-webkit-input-placeholder {
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture input[type=text]::-moz-placeholder {
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture input[type=text]:-ms-input-placeholder {
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture input[type=text]::-ms-input-placeholder {
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture input[type=text]::placeholder {
  color: #211d1e !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture select {
  border-color: #211d1e !important;
  color: #211d1e !important;
  background: transparent url("/wp-content/themes/foe/images/icons/arrow-down-dark.svg") right 1.5em center no-repeat !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture .wpgmza-search:hover {
  background: #11303C !important;
  color: white !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture .wpgmza-reset {
  background: #224F40 !important;
  color: white !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator.agriculture .wpgmza-reset:hover {
  background: #11303C !important;
  color: white !important;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter select {
  margin-top: 1em;
  border-color: white;
  color: white;
  background: url("/wp-content/themes/foe/images/icons/map-arrow-down.svg") right 1.5em center no-repeat;
  background-size: 14px;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter select:active {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter select:focus {
  border-color: #F9DD75;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter .wpgmza_checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.1rem;
  border-radius: 0.5rem;
  display: none;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  margin-right: 0.5em;
  display: inline-block;
  padding: 1em 1.5em 1em 1.5em;
  line-height: 1.1;
  font-family: "Inter", sans-serif;
  border-radius: 31px;
  margin: 0px 0em 0em 0px;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  position: relative;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #11303C;
  font-size: 1rem;
  background: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter label:hover {
  background: #F9DD75;
  color: #211d1e;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-marker-listing-category-filter label.active {
  background: #F9DD75;
  color: #211d1e;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput {
  margin-top: 1em;
  border-color: white;
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput::-webkit-input-placeholder {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput::-moz-placeholder {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput:-ms-input-placeholder {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput::-ms-input-placeholder {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput::placeholder {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput:active {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-address.addressInput:focus {
  border-color: #F9DD75;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-radius-container {
  margin-top: 1em;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-radius-container + div.wpgmza-category-filter-container {
  display: none;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-radius-container select.wpgmza-radius {
  margin-top: 1em;
  border-color: white;
  color: white;
  background: url("/wp-content/themes/foe/images/icons/map-arrow-down.svg") right 1.5em center no-repeat;
  background-size: 14px;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-radius-container select.wpgmza-radius:active {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-radius-container select.wpgmza-radius:focus {
  border-color: #F9DD75;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-category-filter-container {
  margin-top: 1em;
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-category-filter-container select.wpgmza-form-field__input {
  margin-top: 1em;
  border-color: white;
  color: white;
  background: url("/wp-content/themes/foe/images/icons/map-arrow-down.svg") right 1.5em center no-repeat;
  background-size: 14px;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-category-filter-container select.wpgmza-form-field__input:active {
  color: white;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-category-filter-container select.wpgmza-form-field__input:focus {
  border-color: #F9DD75;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-search,
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-reset {
  border: none;
  padding: 0;
  margin-right: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  border-radius: 30px;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-search input,
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-reset input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  margin-right: 0.5em;
  display: inline-block;
  padding: 1em 1.5em 1em 1.5em;
  line-height: 1.1;
  font-family: "Inter", sans-serif;
  border-radius: 31px;
  margin: 0px 0em 0em 0px;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  position: relative;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #11303C;
  font-size: 1rem;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-search .wpgmza-search,
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-reset .wpgmza-search {
  background: #F8F8F5;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-reset input {
  background: #F9DD75;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-reset input:hover {
  background: #F8F8F5;
}
.map-section .map-wrapper #foeMap .wpgmza-store-locator .wpgmza-search input:hover {
  background: #F9DD75;
}
.map-section .map-wrapper .wpgmza_map {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  border-bottom-right-radius: 35px;
  height: 800px !important;
}
@media screen and (max-width: 900px) {
  .map-section .map-wrapper .wpgmza_map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .wpgmza_map {
    height: 400px !important;
  }
}
.map-section .map-wrapper .wpgmza-marker-listing-category-filter {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 1em 0em;
  background: transparent;
  border-radius: 35px 35px 0 0;
  width: 100%;
  color: white;
}
@media screen and (max-width: 900px) {
  .map-section .map-wrapper .wpgmza-marker-listing-category-filter {
    border-radius: 0;
    margin-top: 0;
  }
}
.map-section .map-wrapper .wpgmza-marker-listing-category-filter #wpgmza_filter_select {
  margin-left: 1em;
  background: white url("/wp-content/themes/foe/images/icons/arrow-down-dark.svg") right 1.5em center no-repeat;
}
.map-section .map-wrapper .wpgmza-marker-listing-category-filter .wpgmza_cat_checkbox_holder {
  height: unset;
}
.map-section .map-wrapper .wpgmza_marker_list_class {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 2em;
  padding: 2em 4em 2em;
  background: #F8F8F5;
  border-radius: 35px 35px 0 0;
}
@media screen and (max-width: 900px) {
  .map-section .map-wrapper .wpgmza_marker_list_class {
    border-radius: 0;
    padding-top: 5%;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .wpgmza_marker_list_class {
    padding: 5% 5% 5%;
  }
}
.map-section .map-wrapper .wpgmza-pagination {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  padding: 2em 4em 2em;
  background: #F8F8F5;
  border-radius: 0 0 35px 35px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .map-section .map-wrapper .wpgmza-pagination {
    border-radius: 0 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .wpgmza-pagination {
    padding: 0 5% 5%;
  }
}
.map-section .map-wrapper .wpgmza-pagination .paginationjs-pages ul li {
  border: 2px solid #224F40;
  font-size: 26px;
  border-left: 0px;
}
@media screen and (max-width: 768px) {
  .map-section .map-wrapper .wpgmza-pagination .paginationjs-pages ul li {
    font-size: 0.6em;
  }
}
.map-section .map-wrapper .wpgmza-pagination .paginationjs-pages ul li:first-child {
  border-left: 2px solid #224F40;
}
.map-section .map-wrapper .wpgmza-pagination .paginationjs-pages ul li.active {
  background: #224F40;
}
.map-section .map-wrapper .wpgmza-pagination .paginationjs-pages ul li a {
  background: none;
  font-weight: bold;
  font-size: 20px;
  height: 34px;
  line-height: 34px;
  padding-top: 2px;
  border: none;
}
.map-section .map-wrapper .wpgmza-pagination .paginationjs-pages ul li a:hover {
  background: rgba(34, 79, 64, 0.2);
}

.page-id-1971 {
  background: #F6F1EB;
}
.page-id-1971 .hero {
  padding-top: 10%;
}
.page-id-1971 .hero .hero-content {
  max-width: 800px;
}
.page-id-1971 .hero:after {
  background: rgba(0, 0, 0, 0.5);
}
.page-id-1971 .hero .inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page-id-1971 .cta {
  background: #224F40;
}
.page-id-1971 .cta .cta-content {
  color: white;
  text-align: left;
  max-width: 1000px;
}
.page-id-1971 .cta h1, .page-id-1971 .cta h2, .page-id-1971 .cta h3,
.page-id-1971 .cta h4, .page-id-1971 .cta h5, .page-id-1971 .cta h6 {
  color: white;
}
.page-id-1971 .cta:after {
  display: none;
}
.page-id-1971 .shortcode {
  background: #F6F1EB;
  padding-left: 10%;
  padding-right: 10%;
}
.page-id-1971 .shortcode .inner {
  padding-left: 10%;
  padding-right: 10%;
}
.page-id-1971 .text-block {
  padding-top: 5% !important;
  background: #F6F1EB;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .page-id-1971 .text-block {
    padding-top: 10% !important;
  }
}
.page-id-1971 #page .text-block .gform_wrapper {
  margin: 0;
  width: 100%;
  text-align: left;
}
.page-id-1971 #page .text-block .gform_wrapper .gfield_label {
  color: #211d1e !important;
}
.page-id-1971 #page .gform_wrapper input[type=submit]:hover {
  background: #224F40;
  color: white;
}
.page-id-1971 .instagram {
  display: block;
  background: #F9DD75;
  margin-top: -1px;
  padding-bottom: 0;
}
.page-id-1971 #footer {
  background: #F9DD75;
}

.image-grid-section {
  background: #F6F1EB;
  margin-top: -1px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  text-align: center;
}
.image-grid-section::after {
  content: "";
  height: 250px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #F9DD75;
}
@media screen and (max-width: 575px) {
  .image-grid-section::after {
    height: 150px;
  }
}
.image-grid-section .inner {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.image-grid-section .image-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  padding-top: 5%;
}
.image-grid-section .image-grid .image-top {
  z-index: 2;
  grid-column: 1/span 5;
  /* Span 3 columns starting from column 1 */
  grid-row: 1;
  /* Positioned in the first row */
  align-self: start;
  /* Aligns .image-top to the start of the grid cell */
}
.image-grid-section .image-grid .image-top img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.image-grid-section .image-grid .image-bottom {
  grid-row: 1;
  /* Ensure image-bottom stays on the same row */
  grid-column: 5/span 7;
  /* Adjusted grid-column to span 7 columns */
  padding-top: 30%;
}
.image-grid-section .image-grid .image-bottom img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 900px) {
  .image-grid-section .image-grid .image-bottom {
    margin-bottom: 0;
  }
}

.page-id-2885 .content-wrapper h2 {
  font-size: clamp(1.333rem, 2vw + 1rem, 2.5rem);
}
.page-id-2885 .content-image-slider-section .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-id-2885 .content-image-slider-section .inner .content-wrapper {
  padding-right: 5%;
  padding-left: 0;
}
.page-id-2885 .content-image-slider-section .content-image-slider {
  aspect-ratio: unset;
}
.page-id-2885 .content-image-slider-section .content-image-slider .swiper-slide {
  aspect-ratio: unset;
}
.page-id-2885 .content-image-slider-section .content-image-slider .swiper-slide .image-wrapper {
  position: static;
}
.page-id-2885 .content-image-slider-section .content-image-slider .swiper-slide .image-wrapper img {
  position: static;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-id-2885 .text-block {
  max-width: 100%;
}
.page-id-2885 .text-block ul li::marker {
  color: #224F40;
}
.page-id-2885 .text-block ul li ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.page-id-2885 .text-block h2 {
  font-size: clamp(1.333rem, 2vw + 1rem, 2.5rem);
}
.page-id-2885 .text-block .text-content {
  max-width: 1000px;
  text-align: left;
  overflow: hidden;
}
.page-id-2885 .text-block + section.text-block {
  padding-top: 0;
}
.page-id-2885 .table-container {
  width: 100%;
  overflow-x: auto;
}
.page-id-2885 table {
  min-width: 1000px;
  border-collapse: collapse;
  background-color: transparent;
  border: 1px solid black;
}
.page-id-2885 th {
  background-color: #164136;
  color: #F6F1EB;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  border: 1px solid black;
  white-space: nowrap;
}
.page-id-2885 td {
  padding: 10px;
  border: 1px solid black;
  color: black;
  background-color: transparent;
}
.page-id-2885 td:first-child, .page-id-2885 td:nth-child(2) {
  text-align: center;
}

.trials-list-section {
  padding-top: calc(var(--header-height) + 5%);
  padding-bottom: 10%;
}
@media screen and (max-width: 800px) {
  .trials-list-section {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.trials-list-section .inner {
  max-width: 1100px;
  margin: auto;
  display: block;
}
.trials-list-section .intro {
  max-width: 52em;
  margin: auto;
  text-align: center;
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 5%;
}
.trials-list-section .filter-section {
  padding: 5%;
  background: #F8F8F5;
  border-radius: 30px;
  padding: 2rem;
  margin-bottom: 2em;
}
@media screen and (max-width: 800px) {
  .trials-list-section .filter-section {
    padding: 8% 5% 8%;
    border-radius: 15px;
  }
}
.trials-list-section .filter-section .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 800px) {
  .trials-list-section .filter-section .filters {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.trials-list-section .filter-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a202c;
}
.trials-list-section .filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.trials-list-section .filter-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #11303C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 800px) {
  .trials-list-section .filter-group label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
}
.trials-list-section .filter-group select {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: white;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background: transparent url("/wp-content/themes/foe/images/shell/arrow-down.svg") right 1.5em center no-repeat;
  border-color: #11303C;
}
@media screen and (max-width: 600px) {
  .trials-list-section .filter-group select {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }
}
.trials-list-section .filter-group select:focus {
  outline: none;
  border-color: #11303C;
}
.trials-list-section .filter-group select:hover {
  border-color: #3b82f6;
}
.trials-list-section .filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.trials-list-section .filter-actions .foe-button:hover, .trials-list-section .filter-actions .foe-button:focus {
  background: #224F40;
  color: white;
  border-color: #224F40;
}
.trials-list-section {
  /* Results Section */
}
.trials-list-section .results-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
}
.trials-list-section .results-count {
  font-size: 1.125rem;
  color: #4a5568;
}
.trials-list-section .results-count strong {
  color: #2d3748;
  font-size: 1.25rem;
}
.trials-list-section {
  /* Trial Content */
}
.trials-list-section .trial-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.trials-list-section .trial-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a202c;
}
.trials-list-section {
  /* Tag Styles */
}
.trials-list-section .tags {
  margin-top: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.trials-list-section .tags .tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 1000px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid #11303C;
}
@media screen and (max-width: 800px) {
  .trials-list-section .tags .tag {
    font-size: 12px;
  }
}
.trials-list-section .tags .tag-year {
  background: #11303C;
  color: white;
}
.trials-list-section .tags .crop {
  background: #224F40;
  color: white;
}
.trials-list-section .tags .crop-canola {
  background: #F9DD75;
  color: #211d1e;
  border: 1px solid #F9DD75;
}
.trials-list-section .tags .crop-wheat {
  background: #EE6C37;
  color: white;
  border: 1px solid #EE6C37;
}
.trials-list-section .tags .crop-pea {
  background: #597947;
  color: white;
  border: 1px solid #597947;
}
.trials-list-section .tag-location {
  background: transparent;
  color: #11303C;
}
.trials-list-section .tag-report {
  background: #805ad5;
  color: white;
  display: none;
}
.trials-list-section .tag-coming-soon {
  background: #f7fafc;
  color: #718096;
  border: 1px dashed #cbd5e0;
}
.trials-list-section {
  /* Grouped Report Info */
}
.trials-list-section .grouped-info {
  font-size: 0.85rem;
  color: #718096;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  display: none;
}
.trials-list-section .grouped-info::before {
  content: "📑";
}
.trials-list-section {
  /* Action Button */
}
.trials-list-section .trial-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.trials-list-section .view-btn {
  padding: 0.6rem 1.25rem;
  background: #2d3748;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  white-space: nowrap;
}
.trials-list-section .view-btn:hover {
  background: #1a202c;
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.trials-list-section .coming-soon-text {
  padding: 0.6rem 1.25rem;
  color: #718096;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.trials-list-section {
  /* No Results */
}
.trials-list-section .no-results {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.trials-list-section .no-results h3 {
  font-size: 1.5rem;
  color: #4a5568;
  margin-bottom: 1rem;
}
.trials-list-section .no-results p {
  color: #718096;
}
.trials-list-section .trial-select {
  display: none;
  background: #164136 url("/wp-content/themes/foe/images/icons/arrow-down.svg") right 12px center no-repeat;
  background-size: 14px;
  color: white;
  border-radius: 12px;
  padding: 0.5em 1.5em 0.5em 1.5em;
  width: 300px;
  min-height: 3em;
  font-size: 1rem;
  margin: auto auto 5%;
}
@media screen and (max-width: 1100px) {
  .trials-list-section .trial-select {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .trials-list-section .trial-select {
    top: calc(var(--header-height) + 10px);
    width: 100%;
    z-index: 5;
    position: sticky;
  }
}
.trials-list-section .trial-categories {
  display: grid;
  gap: 1em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin-bottom: 5%;
}
@media screen and (max-width: 1100px) {
  .trials-list-section .trial-categories {
    display: none;
  }
}
.trials-list-section .trial-categories .trial-category {
  aspect-ratio: 4/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-radius: 12px;
  background: #11303C;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.trials-list-section .trial-categories .trial-category.selected {
  pointer-events: none;
  outline: solid 1px #11303C;
  outline-offset: -1px;
}
.trials-list-section .trial-categories .trial-category.selected::after {
  opacity: 0.3;
  background: #000000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.trials-list-section .trial-categories .trial-category::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #000000;
}
.trials-list-section .trial-categories .trial-category:hover::after {
  opacity: 0.3;
  background: #000000;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
.trials-list-section .trial-categories .trial-category img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.trials-list-section .trial-categories .trial-category .trial-category-title {
  font-size: 1.5rem;
  font-family: "new-kansas", sans-serif;
  color: white;
  z-index: 3;
  position: relative;
}
.trials-list-section .trials-container {
  display: none;
  -webkit-animation: fadeEffect 0.5s;
          animation: fadeEffect 0.5s;
}
.trials-list-section .trials-container.selected {
  display: block;
}
.trials-list-section .trials-container .trial-category:last-child {
  padding-bottom: 0;
}
.trials-list-section .trials-container .trial-category h2 {
  font-size: clamp(1.875rem, 0.9375rem + 2.5vw, 3.125rem);
  text-align: center;
}
.trials-list-section .trial {
  background: #F8F8F5;
  border-radius: 35px;
  margin-bottom: 2rem;
  padding: 2.5rem 2rem 2rem;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .trials-list-section .trial {
    padding: 5% 5% 5%;
    border-radius: 15px;
    margin-bottom: 1rem;
  }
}
.trials-list-section .trial.open {
  padding-bottom: 8% !important;
}
.trials-list-section .trial.open .icon {
  -webkit-transform: rotate(0deg) !important;
          transform: rotate(0deg) !important;
}
.trials-list-section .trial:hover h3 {
  color: #597947;
}
.trials-list-section .trial:hover .icon-wrapper {
  background: #224F40 !important;
  cursor: pointer;
}
.trials-list-section .trial:hover .icon-wrapper .icon {
  background: white !important;
}
.trials-list-section .trial .trial-header {
  padding-right: calc(2.1875rem + 1.875vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin-bottom: 1em;
}
.trials-list-section .trial .trial-header .title-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-right: 5%;
}
.trials-list-section .trial .trial-header h3 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1rem, 0.625rem + 1vw, 1.5rem);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  line-height: 1.2;
  text-wrap: pretty;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .trials-list-section .trial .trial-header h3 {
    margin-top: 0.25em;
  }
}
.trials-list-section .trial .trial-header h3:first-child {
  text-transform: unset;
}
.trials-list-section .trial .trial-header .icon-wrapper {
  width: clamp(1.25rem, 0.5469rem + 1.875vw, 2.1875rem);
  height: clamp(1.25rem, 0.5469rem + 1.875vw, 2.1875rem);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  line-height: 1.4;
  background: #F9DD75;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  top: 0;
  right: 0;
}
@media screen and (max-width: 600px) {
  .trials-list-section .trial .trial-header .icon-wrapper {
    width: 25px;
    height: 25px;
  }
}
.trials-list-section .trial .trial-header .icon-wrapper .icon {
  width: 100%;
  height: 100%;
  background: #11303C;
  -webkit-mask: url("/wp-content/themes/foe/images/icons/chevron-up.svg") no-repeat 50% 46%;
          mask: url("/wp-content/themes/foe/images/icons/chevron-up.svg") no-repeat 50% 46%;
  -webkit-mask-size: 12px;
          mask-size: 12px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 600px) {
  .trials-list-section .trial .trial-header .icon-wrapper .icon {
    -webkit-mask-size: 8px;
            mask-size: 8px;
  }
}
.trials-list-section .trial .trial-content {
  display: none;
  padding: 0 5%;
}
@media screen and (max-width: 800px) {
  .trials-list-section .trial .trial-content {
    padding: 0;
  }
}
.trials-list-section .trial .trial-content .chart-wrapper {
  display: none;
  -webkit-animation: fadeEffect 0.5s;
          animation: fadeEffect 0.5s;
}
.trials-list-section .trial .trial-content .chart-wrapper .chart-inner {
  overflow-x: auto;
}
.trials-list-section .trial .trial-content .chart-wrapper .chart-inner::-webkit-scrollbar {
  height: 8px;
}
.trials-list-section .trial .trial-content .chart-wrapper .chart-inner::-webkit-scrollbar-track {
  background: #F8F8F5;
  border-radius: 5px;
}
.trials-list-section .trial .trial-content .chart-wrapper .chart-inner::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
.trials-list-section .trial .trial-content .chart-wrapper.active {
  display: block;
}
.trials-list-section .trial .trial-content .chart img {
  min-width: 650px;
}
@media screen and (max-width: 500px) {
  .trials-list-section .trial .trial-content .chart img {
    min-width: 500px;
  }
}
.trials-list-section .trial .trial-content .trial-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  margin: 5% 0 0;
}
.trials-list-section .trial .trial-content .trial-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.trials-list-section .full-result-description {
  margin-top: 2em;
}
.trials-list-section .line-section {
  padding-left: 0;
  padding-right: 0;
  max-width: 100% !important;
}
.trials-list-section .line-section .line {
  max-width: 100%;
}
.trials-list-section .content-swapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0em 0 1em;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .trials-list-section .content-swapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.trials-list-section .content-swapper .download-button {
  padding: 1em 1.5em 0.9em 1.5em;
  border-radius: 1000px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #F9DD75;
  color: #11303C;
  border: none;
  outline: none;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .trials-list-section .content-swapper .download-button {
    font-size: 90%;
  }
}
.trials-list-section .content-swapper .download-button:hover {
  background: #11303C;
  color: white;
}
.trials-list-section .content-swapper .download-button.active {
  pointer-events: none;
}
.trials-list-section .table-wrapper {
  padding-bottom: 1em;
}
@media screen and (max-width: 800px) {
  .trials-list-section .table-wrapper {
    font-size: 12px;
  }
}
.trials-list-section .table-wrapper .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5em 0;
  border-bottom: solid 1px #11303C;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 1em;
  min-width: 650px;
}
@media screen and (max-width: 800px) {
  .trials-list-section .table-wrapper .table-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 500px) {
  .trials-list-section .table-wrapper .table-row {
    min-width: 500px;
  }
}
.trials-list-section .table-wrapper .table-row:last-child {
  margin-bottom: 2em;
}
.trials-list-section .table-wrapper .table-row .table-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.5%;
          flex: 0 0 16.5%;
  text-align: center;
  padding: 0 0.5em;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .trials-list-section .table-wrapper .table-row .table-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    padding: 0 0.5em 0 0;
  }
}
.trials-list-section .table-wrapper .table-row .label {
  margin-right: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: left;
  padding-left: 0;
  color: #11303C;
}
@media screen and (max-width: 800px) {
  .trials-list-section .table-wrapper .table-row .label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    line-height: 1.2;
    margin-right: auto;
  }
}
.trials-list-section .table-wrapper .instructions {
  display: none;
  font-size: 12px;
  margin-top: 1em;
  margin-bottom: 1em;
  font-style: italic;
}
@media screen and (max-width: 800px) {
  .trials-list-section .table-wrapper .instructions {
    display: block;
  }
}

/* Go from zero to full opacity */
@-webkit-keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.safety-data-sheets-block .files-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3em;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .safety-data-sheets-block .files-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
}
@media screen and (max-width: 600px) {
  .safety-data-sheets-block .files-wrapper {
    gap: 1em;
    grid-template-columns: repeat(1, 1fr);
  }
}
.safety-data-sheets-block .file-item {
  background: #F9DD75;
  padding: 2em 1.5em;
  border-radius: 16px;
  position: relative;
  border: solid 2px transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .safety-data-sheets-block .file-item {
    padding: 1.5em;
    border-radius: 10px;
    gap: 0.5em;
  }
}
.safety-data-sheets-block .file-item h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  margin: 0;
  font-size: clamp(1rem, 0.5vw + 0.75rem, 1.3rem);
}
.safety-data-sheets-block .file-item:hover {
  border-color: #224F40;
}
.safety-data-sheets-block .line {
  height: 2px;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: repeat-x;
  width: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  max-width: 1094px;
  margin: 0.5em 0;
}
.safety-data-sheets-block .sell-sheet {
  color: #11303C;
  font-family: "Inter", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: static;
  font-size: 1rem;
}
.safety-data-sheets-block .sell-sheet::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.safety-data-sheets-block .sell-sheet .icon {
  position: relative;
  margin-top: 2px;
  border-color: #11303C;
}
@media screen and (max-width: 1200px) {
  .safety-data-sheets-block .sell-sheet .icon {
    margin-left: 15px;
    width: 15px;
    height: 15px;
    margin-top: 0;
    border-bottom: 2px solid #11303C;
  }
}

.trial-summaries-section {
  padding-bottom: 3em;
}
.trial-summaries-section + .content-illustration {
  padding-top: 3em;
}
.trial-summaries-section + .trial-summaries-section {
  padding-top: 0;
}
.trial-summaries-section .inner {
  display: block;
}
.trial-summaries-section .intro {
  margin-bottom: 1em;
}
.trial-summaries-section .table-overflow {
  overflow-x: auto;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-overflow {
    border-radius: 8px;
  }
}
.trial-summaries-section .table-overflow::-webkit-scrollbar {
  height: 8px;
}
.trial-summaries-section .table-overflow::-webkit-scrollbar-track {
  background: #F8F8F5;
  border-radius: 5px;
}
.trial-summaries-section .table-overflow::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}
.trial-summaries-section .table-wrapper {
  padding-bottom: 1em;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper {
    font-size: 12px;
  }
}
.trial-summaries-section .table-wrapper .table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.8em 2em;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: 1em;
  min-width: 650px;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper .table-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0;
  }
}
.trial-summaries-section .table-wrapper .table-row:nth-child(even) {
  background: #E6E6E3;
}
.trial-summaries-section .table-wrapper .table-row:nth-child(odd):not(:first-child) {
  background: #F8F8F5;
}
.trial-summaries-section .table-wrapper .table-row:first-child {
  background: #224F40;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px 16px 0 0;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper .table-row:first-child {
    border-radius: 0;
  }
}
.trial-summaries-section .table-wrapper .table-row:first-child .table-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: white;
  height: auto;
  text-align: left;
  font-weight: 800;
}
.trial-summaries-section .table-wrapper .table-row:last-of-type {
  margin-bottom: 2em;
  border-radius: 0 0 16px 16px;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper .table-row:last-of-type {
    border-radius: 0;
  }
}
.trial-summaries-section .table-wrapper .table-row .table-cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.5%;
          flex: 0 0 16.5%;
  text-align: center;
  padding: 0.8em;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper .table-row .table-cell {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 150px;
            flex: 0 1 150px;
    padding: 0 0.5em;
  }
}
.trial-summaries-section .table-wrapper .table-row .label {
  margin-right: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  text-align: left;
  padding-left: 0;
  color: #11303C;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper .table-row .label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    line-height: 1.2;
    margin-right: auto;
  }
}
.trial-summaries-section .table-wrapper .instructions {
  display: none;
  font-size: 12px;
  margin-top: 1em;
  margin-bottom: 1em;
  font-style: italic;
}
@media screen and (max-width: 800px) {
  .trial-summaries-section .table-wrapper .instructions {
    display: block;
  }
}

.woocommerce.single-product .tagline {
  font-family: "new-kansas", sans-serif;
  margin: 0.4em 0;
}
.woocommerce.single-product section .inner {
  width: 100%;
}
.woocommerce.single-product .site-main {
  padding-left: 0;
  padding-right: 0;
  background: #F8F8F5;
}
@media screen and (max-width: 900px) {
  .woocommerce.single-product .site-main {
    padding-top: 100px;
  }
}
.woocommerce.single-product div.product {
  padding: 0 8% 0;
  background: #F8F8F5;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .woocommerce.single-product div.product {
    padding: 0 5%;
  }
}
@media screen and (max-width: 1200px) {
  .woocommerce.single-product div.product {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .woocommerce.single-product div.product {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product div.product {
    padding-top: 8em;
  }
}
.woocommerce.single-product div.product + section {
  margin-top: -35px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 900px) {
  .woocommerce.single-product div.product {
    padding: 5% 8%;
  }
}
@media screen and (max-width: 600px) {
  .woocommerce.single-product div.product {
    padding: 8% 5%;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product div.product {
    padding: 10% 5%;
  }
}
.woocommerce.single-product div.product .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.woocommerce.single-product #page h1 {
  font-family: "new-kansas", sans-serif;
  font-size: clamp(1.333rem, 3vw + 1rem, 3.444rem);
  line-height: 1.2;
  margin: 0.4em 0px 0.5em;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
.woocommerce.single-product #page .wc-tabs {
  display: none;
}
.woocommerce.single-product #page .woocommerce-breadcrumb {
  margin-top: 2em;
  margin-bottom: 2em;
  padding: 0 8.5%;
}
.woocommerce.single-product #page .product .images img {
  max-width: 30em;
}
@media screen and (max-width: 768px) {
  .woocommerce.single-product #page .product .images img {
    margin: auto;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce.single-product #page .product .images img {
    max-width: 20em;
  }
}
.woocommerce.single-product #page .flex-control-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.5em;
  padding-bottom: 2em;
  max-width: 30em;
}
@media screen and (max-width: 768px) {
  .woocommerce.single-product #page .flex-control-nav {
    margin: 1.5em auto 0;
  }
}
.woocommerce.single-product #page .flex-control-nav li {
  position: relative;
  border: solid 2px #224F40;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  aspect-ratio: 1;
  width: 10%;
  margin: 0 0.5em;
}
.woocommerce.single-product #page .flex-control-nav li img {
  max-width: 10em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .woocommerce.single-product #page .product_title {
    text-align: center;
  }
}
.woocommerce.single-product #page .logo-wrapper + h1 {
  display: none;
}
.woocommerce.single-product #page .woocommerce-product-gallery {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .woocommerce.single-product #page .woocommerce-product-gallery {
    width: 100%;
  }
}
.woocommerce.single-product #page .entry-summary {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .woocommerce.single-product #page .entry-summary {
    width: 100%;
  }
}
.woocommerce.single-product #page .entry-summary .price {
  margin: 2em 0;
}
.woocommerce.single-product #page .entry-summary .logo {
  max-width: 45em;
}
.woocommerce.single-product #page .price {
  margin-top: 1em;
  margin-bottom: 1em;
  color: #211d1e;
}
.woocommerce.single-product #page .price .amount {
  color: #211d1e;
}
.woocommerce.single-product #page .line {
  height: 2px;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: repeat-x;
  width: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  max-width: 1094px;
  margin: 1em 0 1.5em;
}
.woocommerce.single-product #page .foe-quantity {
  border: solid 2px #211d1e;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  margin-right: 0.8em;
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product #page .foe-quantity {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 1em;
    margin-right: 0;
  }
}
.woocommerce.single-product #page .foe-quantity input {
  color: #211d1e;
  width: 3em;
  border: none;
  background: transparent;
  padding: 0.5em;
}
.woocommerce.single-product #page .foe-quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce.single-product #page .foe-quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce.single-product #page .foe-quantity button {
  background: none;
  padding: 0.8em 1em;
  font-size: 1.1em;
  border: none;
}
@media screen and (max-width: 1500px) {
  .woocommerce.single-product #page .foe-quantity button {
    padding: 0.8em 0.8em;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product #page .foe-quantity button {
    padding: 0.8em 3em;
  }
}
.woocommerce.single-product #page .variations {
  border: none;
  margin-bottom: 0;
}
.woocommerce.single-product #page .variations label {
  display: none;
}
.woocommerce.single-product #page .variations select {
  background: white;
  border: solid 2px #211d1e;
  height: 53px;
}
@media screen and (max-width: 1100px) {
  .woocommerce.single-product #page .variations select {
    border-radius: 30px;
  }
}
.woocommerce.single-product #page .variations_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  .woocommerce.single-product #page .variations_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce.single-product #page .variations_form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 600px) {
  .woocommerce.single-product #page .variations_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce.single-product #page .variations_form::before {
  display: none;
}
.woocommerce.single-product #page .variations_form .variations {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0em;
}
@media screen and (max-width: 1100px) {
  .woocommerce.single-product #page .variations_form .variations {
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product #page .variations_form .variations {
    width: 100%;
  }
}
.woocommerce.single-product #page .variations_form .variations tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8em;
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product #page .variations_form .variations .value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce.single-product #page .variations_form .variations select {
  margin-right: 0;
  background: white url("/wp-content/themes/foe/images/icons/arrow-down-dark.svg") right 1.5em center no-repeat;
  height: 3.5em;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 2.55em 0px 1.55em;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 30px;
  background-size: 11px;
}
.woocommerce.single-product #page .variations_form .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product #page .variations_form .woocommerce-variation-add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce.single-product #page .variations_form .woocommerce-variation {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-top: 1em;
  margin-bottom: 1em;
}
.woocommerce.single-product #page .single_add_to_cart_button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .woocommerce.single-product #page .single_add_to_cart_button {
    height: 3.5em;
  }
}
.woocommerce.single-product #page .single_add_to_cart_button:hover {
  background: rgb(18.6548672566, 43.3451327434, 35.1150442478);
  color: white;
}
.woocommerce.single-product #page .up-sells,
.woocommerce.single-product #page .related {
  padding: 8% 5%;
}
.woocommerce.single-product #page .up-sells + section,
.woocommerce.single-product #page .related + section {
  padding-top: 0;
}
.woocommerce.single-product #page .up-sells h2,
.woocommerce.single-product #page .related h2 {
  text-align: center;
  margin: 1em 0 0;
}
.woocommerce.single-product #page .up-sells .products,
.woocommerce.single-product #page .related .products {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: auto;
  margin-top: 2em;
}
@media screen and (max-width: 375px) {
  .woocommerce.single-product #page .up-sells .products,
  .woocommerce.single-product #page .related .products {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
.woocommerce.single-product #page .up-sells .products::before,
.woocommerce.single-product #page .related .products::before {
  display: none;
  content: none;
}
.woocommerce.single-product #page .up-sells .products .product,
.woocommerce.single-product #page .related .products .product {
  margin: 0;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.woocommerce.single-product #page .up-sells .products .product .foe-related-product-wrap,
.woocommerce.single-product #page .related .products .product .foe-related-product-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woocommerce.single-product #page .up-sells .products .product .foe-related-product-wrap img,
.woocommerce.single-product #page .related .products .product .foe-related-product-wrap img {
  border-radius: 20px;
  height: 20em;
}
@media screen and (max-width: 600px) {
  .woocommerce.single-product #page .up-sells .products .product .foe-related-product-wrap img,
  .woocommerce.single-product #page .related .products .product .foe-related-product-wrap img {
    height: 15em;
    border-radius: 12px;
  }
}
.woocommerce.single-product #page .up-sells .products .product .woocommerce-loop-product__title,
.woocommerce.single-product #page .related .products .product .woocommerce-loop-product__title {
  font-size: 1.2em;
}
.woocommerce.single-product #page .up-sells .products .product img,
.woocommerce.single-product #page .related .products .product img {
  width: auto;
  margin: auto;
}
.woocommerce.single-product #page .up-sells .products .product .price,
.woocommerce.single-product #page .related .products .product .price {
  display: none;
}
.woocommerce.single-product #page .up-sells .products .product .button,
.woocommerce.single-product #page .related .products .product .button {
  background: #224F40;
  color: white;
  border: none;
  padding: 1em 1.5em 1em 1.5em;
  border-radius: 28px;
  font-weight: 500;
  font-size: 0.9em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce.single-product #page .up-sells .products .product .button:hover,
.woocommerce.single-product #page .related .products .product .button:hover {
  background: #F9DD75;
  color: #211d1e;
}
.woocommerce.single-product #page .text-block .line {
  margin: 0em auto 5%;
}
@media screen and (max-width: 600px) {
  .woocommerce.single-product #page .text-block .line {
    margin: 0 auto 3em;
  }
}
.woocommerce #page .delimiter {
  padding: 10px 15px;
  background: url(/wp-content/themes/foe/images/shell/arrow.svg) center center/8px no-repeat;
  font-size: 0px;
  background-position: 8px 0;
}
.woocommerce #page .test-location {
  width: 200px;
  border: solid 1px red;
}
.woocommerce #page .woocommerce-notices-wrapper {
  padding: 0 5%;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error {
  background: #224F40;
  color: white;
  border-radius: 10px;
  margin-top: 1em;
  border-top: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .woocommerce #page .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce #page .woocommerce-notices-wrapper .woocommerce-error {
    display: block;
  }
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error::before {
  top: 1.5em;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error .button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 1em;
  border-radius: 28px;
  font-size: 0.9em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 500;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-left: auto;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error .button:hover {
  background: #211d1e;
  color: white;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error {
  background: #211d1e;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error::before {
  position: absolute;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error a {
  color: #F9DD75;
}
.woocommerce #page .woocommerce-notices-wrapper .woocommerce-error li {
  padding-left: 2.5em !important;
}
.woocommerce #footer {
  width: 100%;
}
.woocommerce #secondary-add-to-cart {
  max-width: 1479px;
  margin: auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #211d1e;
  padding: 1em 2em;
  border-radius: 15px 15px 0 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.woocommerce #secondary-add-to-cart.slide-up {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .woocommerce #secondary-add-to-cart {
    display: none;
  }
}
.woocommerce #secondary-add-to-cart .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce #secondary-add-to-cart h3 {
  color: #F9DD75;
  margin: 0;
}
.woocommerce #secondary-add-to-cart form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce #secondary-add-to-cart .foe-quantity {
  border: solid 2px #211d1e;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  margin-right: 0.8em;
}
.woocommerce #secondary-add-to-cart .foe-quantity .qty {
  color: #211d1e;
  width: 5em;
  border: none;
  background: transparent;
  text-align: center;
}
.woocommerce #secondary-add-to-cart .foe-quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce #secondary-add-to-cart .foe-quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce #secondary-add-to-cart .foe-quantity .minus,
.woocommerce #secondary-add-to-cart .foe-quantity .plus {
  background: none;
  padding: 0.8em 1em;
  font-size: 1.1em;
  border: none;
}
.woocommerce #secondary-add-to-cart .logo {
  max-width: 20em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .woocommerce #secondary-add-to-cart .logo {
    max-width: 25em;
    margin: auto;
  }
}
.woocommerce #secondary-add-to-cart .logo svg {
  width: 100%;
  height: auto;
}
.woocommerce #secondary-add-to-cart .variations {
  border: none;
  margin-bottom: 0;
}
.woocommerce #secondary-add-to-cart .variations label {
  display: none;
}
.woocommerce #secondary-add-to-cart .variations select {
  background: white;
  border: solid 2px #211d1e;
  height: 53px;
  margin-right: 0.8em;
  border-radius: 30px;
}
.woocommerce #secondary-add-to-cart .button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce #secondary-add-to-cart .button:hover {
  background: #224F40;
  color: white;
}
.woocommerce button {
  font-weight: 500 !important;
}

#page .wp-block-woocommerce-empty-cart-block {
  padding: 0 8% 8%;
}
#page .wp-block-woocommerce-empty-cart-block .wp-block-button a {
  background: #F9DD75;
  color: #211d1e;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#page .wp-block-woocommerce-empty-cart-block .wp-block-button a:hover {
  background: #224F40;
  color: white;
}
#page .wp-block-woocommerce-cart,
#page .wp-block-woocommerce-checkout {
  padding-left: 8%;
  padding-right: 8%;
}
@media screen and (max-width: 600px) {
  #page .wp-block-woocommerce-cart,
  #page .wp-block-woocommerce-checkout {
    padding-left: 5%;
    padding-right: 5%;
  }
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items {
  border-bottom: solid 2px #8B8989;
  margin-bottom: 40px;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items th {
  font-family: "new-kansas", sans-serif;
  font-weight: 500;
  font-size: 1.1em;
  padding: 8px 0;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__header {
  text-transform: capitalize;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__header-image {
  text-align: left;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items td {
  border-top: solid 2px #8B8989;
}
@media screen and (max-width: 375px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 848px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row:first-child td {
    border-top: none;
  }
}
@media screen and (max-width: 600px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row:first-child td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 848px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row td {
    padding-top: 1em;
  }
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 600px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image {
    padding-right: 5%;
  }
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
  padding-left: 3%;
}
@media screen and (max-width: 375px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
    border-top: none;
  }
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-components-product-name {
  margin-bottom: 1em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__prices {
  margin-bottom: 1em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
  padding-right: 0;
}
@media screen and (max-width: 375px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
    border-top: none;
  }
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-item__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-item__prices,
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-product-metadata,
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-product-name {
  font-size: 1em;
  line-height: 1;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector {
  border: solid 2px #211d1e;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector input {
  border: none;
  height: 3em;
  width: 1em;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector input:focus {
  border: none !important;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector button {
  color: #211d1e;
  opacity: 1;
  font-weight: 600;
  padding: 0 0.6em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector button:disabled {
  opacity: 0.4;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector button.wc-block-components-quantity-selector__button--minus {
  padding-left: 0.8em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-components-quantity-selector button.wc-block-components-quantity-selector__button--plus {
  padding-right: 0.8em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar {
  background: white;
  padding: 2em 2em;
  border-radius: 35px;
  height: 100%;
}
@media screen and (max-width: 600px) {
  #page .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    border-radius: 20px;
    padding: 5%;
  }
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-cart__totals-title {
  font-size: 1.5em;
  font-family: "new-kansas", sans-serif;
  margin: auto;
  text-align: center;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1em;
  display: block !important;
  font-weight: 400;
  text-transform: capitalize;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-coupon-link {
  text-decoration: underline;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-coupon__input input {
  border-radius: 30px;
  height: 3em;
  padding-left: 1em;
  font-size: 16px;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-coupon__input label {
  padding-left: 0.5em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-coupon__form button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-coupon__form button:hover {
  background: #224F40;
  color: white;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-discount__coupon-list-item {
  padding: 0.5em 0.9em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-cart__submit-button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-cart__submit-button:hover {
  background: #224F40;
  color: white;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wp-block-woocommerce-cart-order-summary-coupon-form-block {
  border: none;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-wrapper {
  border-color: #8B8989;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-wrapper > div {
  padding-left: 0;
  padding-right: 0;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping .wc-block-components-totals-item {
  padding: 0;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping .wc-block-components-shipping-rates-control__package {
  padding: 0;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address__link {
  text-decoration: underline;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping .wc-block-components-totals-shipping__change-address__link:hover {
  text-decoration-color: #EE6C37;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping input {
  border-radius: 30px;
  padding-left: 1em;
  border: solid 2px #211d1e;
  font-size: 16px;
  height: 3.5em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping label {
  padding-left: 0.5em;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-totals-shipping button:hover {
  background: #224F40;
  color: white;
}
#page .wc-block-components-sidebar-layout .wc-block-components-sidebar .wc-block-components-order-summary-item__quantity {
  background-color: #224F40;
  color: white;
  font-size: 0.8em;
  padding-top: 0.2em;
}
#page .woocommerce-order {
  padding: 0 8%;
}
@media screen and (max-width: 600px) {
  #page .woocommerce-order {
    padding: 0 5%;
  }
}
#page .woocommerce-order .woocommerce-order-details {
  background: white;
  border-radius: 20px;
  padding: 3%;
}
@media screen and (max-width: 768px) {
  #page .woocommerce-order .woocommerce-order-details {
    padding: 5%;
    border-radius: 15px;
  }
}
@media screen and (max-width: 475px) {
  #page .woocommerce-order .woocommerce-order-details {
    padding: 2em;
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  #page .woocommerce-order .woocommerce-thankyou-order-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #page .woocommerce-order .woocommerce-thankyou-order-details li {
    border-right: none;
  }
}
#page .woocommerce-order .woocommerce-table {
  border: none;
}
#page .woocommerce-order .woocommerce-table a {
  text-decoration: none;
}
#page .woocommerce-order .woocommerce-table ul {
  margin-left: 0;
  padding-left: 0;
  font-size: 0.9em;
}
#page .woocommerce-order td,
#page .woocommerce-order th {
  border-color: #8b8989;
}
#page .woocommerce-order .woocommerce-customer-details {
  border: none;
  background: #11303C;
  color: white;
  border-radius: 20px;
  padding: 3% 3%;
}
@media screen and (max-width: 768px) {
  #page .woocommerce-order .woocommerce-customer-details {
    padding: 5%;
    border-radius: 15px;
  }
}
@media screen and (max-width: 475px) {
  #page .woocommerce-order .woocommerce-customer-details {
    padding: 2em;
    border-radius: 15px;
  }
}
#page .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 475px) {
  #page .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
#page .woocommerce-order .woocommerce-customer-details .woocommerce-columns::before, #page .woocommerce-order .woocommerce-customer-details .woocommerce-columns::after {
  display: none;
}
#page .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
  margin-top: 0;
  width: 100%;
}
#page .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column p {
  margin-bottom: 0;
}
#page .woocommerce-order .woocommerce-customer-details ul {
  margin-left: 0;
  padding-left: 0;
  font-size: 0.9em;
}
#page .woocommerce-order .woocommerce-customer-details address {
  border: none;
  padding-left: 0;
}
#page .wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-cart-items-block {
  border-top: none;
  padding-top: 0;
}
#page .wp-block-woocommerce-checkout input[type=text],
#page .wp-block-woocommerce-checkout input[type=email],
#page .wp-block-woocommerce-checkout input[type=tel],
#page .wp-block-woocommerce-checkout input[type=number],
#page .wp-block-woocommerce-checkout input[type=password],
#page .wp-block-woocommerce-checkout select {
  border-radius: 30px;
  padding-left: 1em;
  border: solid 2px #211d1e;
  font-size: 16px;
}
@media screen and (max-width: 375px) {
  #page .wp-block-woocommerce-checkout input[type=text],
  #page .wp-block-woocommerce-checkout input[type=email],
  #page .wp-block-woocommerce-checkout input[type=tel],
  #page .wp-block-woocommerce-checkout input[type=number],
  #page .wp-block-woocommerce-checkout input[type=password],
  #page .wp-block-woocommerce-checkout select {
    height: 3.5em;
    border-radius: 12px;
  }
}
#page .wp-block-woocommerce-checkout label {
  padding-left: 0.5em;
}
#page .wc-block-components-checkout-place-order-button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page .wc-block-components-checkout-place-order-button:hover {
  background: #224F40;
  color: white;
}
#page .wc-block-components-checkout-place-order-button:hover:focus {
  border: none;
}
#page .components-form-token-field__suggestions-list {
  border-top: solid 2px #211d1e;
}
#page .wc-block-components-radio-control {
  background: white;
  border: solid 2px #211d1e;
  border-radius: 28px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 600px) {
  #page .wc-block-components-radio-control {
    border-radius: 20px;
  }
}

.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-order {
  background: #F8F8F5;
}
.woocommerce-cart #footer,
.woocommerce-checkout #footer,
.woocommerce-order #footer {
  background: #F8F8F5;
}
@media screen and (max-width: 768px) {
  .woocommerce-cart #page .woocommerce-column--shipping-address,
  .woocommerce-checkout #page .woocommerce-column--shipping-address,
  .woocommerce-order #page .woocommerce-column--shipping-address {
    margin-top: 2em;
  }
}

.woocommerce-account #page .hero {
  padding-top: 20%;
  padding-bottom: 2%;
}
@media screen and (max-width: 800px) {
  .woocommerce-account #page .hero {
    padding-top: 40%;
  }
}
.woocommerce-account #page .shortcode .inner {
  display: block;
}
.woocommerce-account #page .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  .woocommerce-account #page .woocommerce {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.woocommerce-account #page .woocommerce-notices-wrapper {
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.woocommerce-account #page .woocommerce-MyAccount-navigation {
  width: 100%;
  padding: 3%;
  background: #11303C;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 1100px) {
  .woocommerce-account #page .woocommerce-MyAccount-navigation {
    border-radius: 15px 0 0 15px;
  }
}
@media screen and (max-width: 900px) {
  .woocommerce-account #page .woocommerce-MyAccount-navigation {
    width: 100%;
    border-radius: 15px 15px 0 0;
    padding: 2em 5%;
  }
  .woocommerce-account #page .woocommerce-MyAccount-navigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
  }
  .woocommerce-account #page .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0;
  }
  .woocommerce-account #page .woocommerce-MyAccount-navigation ul li:last-child {
    margin-left: auto;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-account #page .woocommerce-MyAccount-navigation {
    width: 100%;
    border-radius: 15px 15px 0 0;
    padding: 2em 6%;
  }
  .woocommerce-account #page .woocommerce-MyAccount-navigation ul {
    display: block;
    gap: 0;
  }
  .woocommerce-account #page .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 1em;
  }
  .woocommerce-account #page .woocommerce-MyAccount-navigation ul li:last-child {
    margin-left: unset;
  }
}
.woocommerce-account #page .woocommerce-MyAccount-navigation li.is-active a {
  color: #F9DD75;
}
.woocommerce-account #page .woocommerce-MyAccount-navigation a {
  color: white;
  text-decoration: none;
}
.woocommerce-account #page .woocommerce-MyAccount-content {
  width: 100%;
  padding: 3%;
  background: white;
  border-radius: 0 20px 20px 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
}
@media screen and (max-width: 1100px) {
  .woocommerce-account #page .woocommerce-MyAccount-content {
    border-radius: 0 15px 15px 0;
  }
}
@media screen and (max-width: 900px) {
  .woocommerce-account #page .woocommerce-MyAccount-content {
    padding: 5%;
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
}
@media screen and (max-width: 575px) {
  .woocommerce-account #page .woocommerce-MyAccount-content {
    padding: 2em 5%;
  }
}
.woocommerce-account #page .woocommerce-MyAccount-content .woocommerce-orders-table {
  border: none;
}
.woocommerce-account #page .woocommerce-MyAccount-content .button {
  background: #F9DD75;
  color: #211d1e;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 20px;
  padding: 0.8em 1.8em;
}
.woocommerce-account #page .woocommerce-MyAccount-content .button:hover {
  background: #224F40;
  color: white;
}
.woocommerce-account #page .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message {
  background: #224F40;
  color: white;
  padding: 1em;
  border-radius: 10px;
  margin-top: 1em;
  border-top: none;
}
.woocommerce-account #page .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message::before {
  position: static;
}
.woocommerce-account #page .woocommerce-MyAccount-content form input {
  color: #211d1e;
  height: 3em;
}
.woocommerce-account #page .woocommerce-MyAccount-content form input:focus {
  border-color: #11303C;
}
.woocommerce-account #page .woocommerce-MyAccount-content form fieldset {
  border: none;
  border-top: solid 2px #211d1e;
  margin-top: 3%;
  margin-bottom: 10px;
  padding: 0 0px;
  position: relative;
}
.woocommerce-account #page .woocommerce-MyAccount-content form fieldset legend {
  font-family: "new-kansas", sans-serif;
  padding-right: 0.3em;
  margin-bottom: 0.5em;
}
.woocommerce-account #page .woocommerce-MyAccount-content form fieldset .woocommerce-password-strength {
  margin-top: 0.5em;
  border-radius: 20px;
}
.woocommerce-account #page .woocommerce-MyAccount-content form fieldset p {
  padding: 0;
}
.woocommerce-account #page .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single {
  border-radius: 30px;
  background: transparent;
  border: solid 2px #211d1e;
  height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: left;
}
.woocommerce-account #page .woocommerce-MyAccount-content form .select2-container--default .select2-selection--single span {
  margin-left: 1em;
}
.woocommerce-account #page .woocommerce-MyAccount-content button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em 0.8em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce-account #page .woocommerce-MyAccount-content button:hover {
  background: #224F40;
  color: white;
}
.woocommerce-account #page .woocommerce-MyAccount-navigation-link {
  margin-bottom: 1em;
}
.woocommerce-account #page .woocommerce-notices-wrapper .woocommerce-error {
  border: none;
  background: #11303C;
  color: white;
  border-radius: 20px;
}
.woocommerce-account #page .woocommerce-notices-wrapper .woocommerce-error::before {
  color: white;
}
.woocommerce-account #page .woocommerce-form-login,
.woocommerce-account #page .woocommerce-form-register {
  background: white;
  border-radius: 20px;
  border: none;
}
.woocommerce-account #page .woocommerce-form-login .button,
.woocommerce-account #page .woocommerce-form-register .button {
  background: #F9DD75;
  color: #211d1e;
  border: none;
  padding: 0.9em 2em;
  border-radius: 28px;
  font-size: 1em;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.woocommerce-account #page .woocommerce-form-login .button:hover,
.woocommerce-account #page .woocommerce-form-register .button:hover {
  background: #224F40;
  color: white;
}
.woocommerce-account #page .woocommerce-form-login input:focus,
.woocommerce-account #page .woocommerce-form-register input:focus {
  border-color: #11303C;
}

.single-horticulture {
  background: #F8F8F5;
}
.single-horticulture .foe-button {
  background-color: #224F40;
  color: white;
}
.single-horticulture .foe-button:hover {
  background-color: #F9DD75;
  color: #11303C;
}
.single-horticulture .horticulture-hero {
  padding-top: 10em;
  background: #F8F8F5;
  padding-bottom: 5%;
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
@media screen and (max-width: 1200px) {
  .single-horticulture .horticulture-hero {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .single-horticulture .horticulture-hero {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .single-horticulture .horticulture-hero {
    padding-top: 8em;
  }
}
.single-horticulture .horticulture-hero + section {
  margin-top: -35px;
  z-index: 1;
  position: relative;
}
.single-horticulture .horticulture-hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 900px) {
  .single-horticulture .horticulture-hero .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .single-horticulture .horticulture-hero .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-horticulture .horticulture-hero .inner .image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  justify-self: center;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .single-horticulture .horticulture-hero .inner .image-col {
    padding-right: 0;
  }
}
.single-horticulture .horticulture-hero .inner .image-col .featured-image {
  max-width: 25em;
}
@media screen and (max-width: 768px) {
  .single-horticulture .horticulture-hero .inner .image-col .featured-image {
    max-width: 20em;
    margin: 2em 0;
  }
}
@media screen and (max-width: 600px) {
  .single-horticulture .horticulture-hero .inner .image-col .featured-image {
    max-width: 200px;
    margin: 1em 0;
  }
}
.single-horticulture .horticulture-hero .inner .content-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin: auto;
  margin-top: -2em;
}
@media screen and (max-width: 1000px) {
  .single-horticulture .horticulture-hero .inner .content-col {
    margin: 1em 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
}
.single-horticulture .horticulture-hero .inner .content-col li::marker {
  color: #11303C;
}
.single-horticulture .horticulture-hero .inner .content-col .logo {
  max-width: 30em;
}
@media screen and (max-width: 768px) {
  .single-horticulture .horticulture-hero .inner .content-col .logo {
    max-width: 25em;
    margin: auto;
  }
}
.single-horticulture .horticulture-hero .inner .content-col .logo svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .single-horticulture .horticulture-hero .inner .content-col h3 {
    text-align: center;
  }
}
.single-horticulture .horticulture-hero .inner .content-col .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 4% 0 6%;
}
.single-horticulture .horticulture-hero .inner .content-col .button-container {
  margin-right: 2em;
}
.single-horticulture .horticulture-hero .inner .content-col .resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-horticulture .horticulture-hero .inner .content-col .resources .resource-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-horticulture .size-section {
  background: #224F40;
  color: white;
  text-align: center;
  padding: 1em;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
.single-horticulture .size-section .size-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5em auto 0.6em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single-horticulture .size-section .size-wrapper .separator {
  margin: 0 1em;
}
.single-horticulture .size-section .size-wrapper .size:last-child .separator {
  display: none;
}
.single-horticulture .benefits-section {
  padding: 0;
}
.single-horticulture .benefits-section .inner {
  border-radius: 0;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.single-horticulture .benefits-section .inner h1, .single-horticulture .benefits-section .inner h2, .single-horticulture .benefits-section .inner h3,
.single-horticulture .benefits-section .inner h4, .single-horticulture .benefits-section .inner h5, .single-horticulture .benefits-section .inner h6 {
  color: #F9DD75;
}
@media screen and (max-width: 1200px) {
  .single-horticulture .benefits-section .inner {
    border-radius: 15px;
    border-radius: 0;
  }
}
@media screen and (max-width: 900px) {
  .single-horticulture .benefits-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-horticulture .benefits-section .inner .benefits-image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
.single-horticulture .benefits-section .inner .benefits-image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-horticulture .benefits-section .inner .benefits-content-col {
  padding: 7% 5% 7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #224F40;
  color: white;
  height: 100%;
  min-height: 600px;
}
@media screen and (max-width: 1200px) {
  .single-horticulture .benefits-section .inner .benefits-content-col {
    min-height: unset;
  }
}
@media screen and (max-width: 900px) {
  .single-horticulture .benefits-section .inner .benefits-content-col {
    padding: 5% 8% 3%;
  }
}
@media screen and (max-width: 600px) {
  .single-horticulture .benefits-section .inner .benefits-content-col {
    padding: 5% 5% 3%;
  }
}
.single-horticulture .benefits-section .inner .benefits-content-col ul li::marker {
  color: #F9DD75;
}
@media screen and (max-width: 900px) {
  .single-horticulture .benefits-section .inner .benefits-content-col {
    width: 100%;
  }
}
.single-horticulture section.video {
  position: relative;
  padding-top: 5%;
  background: #F6F1EB;
}
.single-horticulture section.video::before {
  content: "";
  height: 50%;
  width: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}
.single-horticulture .illustration-grid-section {
  font-family: "new-kansas", sans-serif;
  background: #F6F1EB;
}
.single-horticulture .illustration-grid-section .intro {
  max-width: 50em;
}
.single-horticulture .illustration-grid-section + section {
  padding-top: 0;
}
.single-horticulture .application-section {
  background: #F6F1EB;
  padding-bottom: 4%;
}
@media screen and (max-width: 768px) {
  .single-horticulture .application-section {
    padding-top: 3%;
  }
}
.single-horticulture .application-section li {
  margin-bottom: 0.8em;
}
.single-horticulture .application-section li::marker {
  font-weight: 600;
  color: #164136;
}
.single-horticulture .application-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-horticulture .application-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .single-horticulture .application-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-horticulture .application-section .inner > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  gap: 7%;
}
@media screen and (max-width: 1000px) {
  .single-horticulture .application-section .inner > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 768px) {
  .single-horticulture .application-section .inner > div {
    margin: 1em 0 0;
  }
}
.single-horticulture .application-section .inner .heading-wrapper {
  background-color: #164136;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-horticulture .application-section .inner .heading-wrapper {
    padding: 1em 1.3em 0.6em 1.3em;
    border-radius: 7.5px;
    margin-bottom: 0;
  }
}
.single-horticulture .application-section .inner .heading-wrapper h2 {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .single-horticulture .application-section .inner .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
.single-horticulture .application-section .inner .additional-heading-wrapper .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 0.4em 0 0.8em;
}
.single-horticulture .application-section .inner .content-wrapper {
  padding: 0 5%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-horticulture .application-section .inner .content-wrapper {
    margin: 5% 0 8%;
    padding: 0;
  }
}
.single-horticulture .application-section .inner .ingredients-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-horticulture .application-section .inner .ingredients-column .ingredients-content {
  padding-bottom: 5%;
}
.single-horticulture .application-section .inner .ingredients-column .safety-row .content-wrapper {
  margin-bottom: 0;
}
.single-horticulture .application-section .inner .ingredients-column .safety-row .content-wrapper p {
  margin-bottom: 0;
}
.single-horticulture .analysis-section {
  background: #F6F1EB;
  padding-top: 2%;
}
@media screen and (max-width: 1200px) {
  .single-horticulture .analysis-section .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 375px) {
  .single-horticulture .analysis-section .heading-wrapper h2 {
    font-size: 1.2em;
  }
}
.single-horticulture .analysis-section .section-line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-horticulture .analysis-section .section-line {
    margin-top: 1%;
    margin-bottom: 8%;
  }
}
.single-horticulture .analysis-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-horticulture .analysis-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .single-horticulture .analysis-section .inner {
    display: block;
  }
}
.single-horticulture .analysis-section .inner .heading-wrapper {
  background-color: #211d1e;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 768px) {
  .single-horticulture .analysis-section .inner .heading-wrapper {
    border-radius: 7.5px 7.5px 0 0;
  }
}
.single-horticulture .analysis-section .inner .heading-wrapper h2 {
  margin: 0;
}
.single-horticulture .analysis-section .inner .column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  gap: 7%;
}
@media screen and (max-width: 1000px) {
  .single-horticulture .analysis-section .inner .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 375px) {
  .single-horticulture .analysis-section .inner .column {
    font-size: 0.9em;
  }
}
.single-horticulture .analysis-section .inner .column .data-container {
  border: solid 2px #211d1e;
  background: #F8F8F5;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  padding: 4% 4%;
}
@media screen and (max-width: 768px) {
  .single-horticulture .analysis-section .inner .column .data-container {
    border-radius: 0 0 7.5px 7.5px;
  }
}
.single-horticulture .analysis-section .inner .column .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.8em;
}
.single-horticulture .analysis-section .inner .column .data:last-child {
  padding-bottom: 0;
}
.single-horticulture .analysis-section .inner .column .data .name {
  white-space: nowrap;
}
.single-horticulture .analysis-section .inner .column .data .percent {
  white-space: nowrap;
}
.single-horticulture .analysis-section .inner .column .data .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 1em 0 0;
}
@media screen and (max-width: 768px) {
  .single-horticulture .analysis-section .inner .container-growing-column {
    margin-top: 2em;
  }
}
.single-horticulture .analysis-section .inner .container-growing-column .data-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
}
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col {
  width: 100%;
  border-right: solid 2px #211d1e;
}
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col .category-heading {
  font-family: "new-kansas", sans-serif;
  font-weight: 500;
  border-bottom: solid 2px #211d1e;
  padding: 3% 8%;
}
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col .data-wrapper {
  padding: 8% 8%;
}
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col:last-child {
  border-right: none;
}
.single-horticulture .text-block {
  text-align: center;
}
.single-horticulture .text-block h2 {
  font-size: clamp(1.333rem, 1vw + 1rem, 2rem);
}
.single-horticulture .site-footer {
  background: #F8F8F5;
}

.single-product {
  background: #F8F8F5;
}
.single-product .foe-button {
  background-color: #224F40;
  color: white;
}
.single-product .foe-button:hover {
  background-color: #F9DD75;
  color: #11303C;
}
.single-product .horticulture-hero {
  padding-top: 10em;
  background: #F8F8F5;
  padding-bottom: 5%;
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
@media screen and (max-width: 1200px) {
  .single-product .horticulture-hero {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .single-product .horticulture-hero {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .single-product .horticulture-hero {
    padding-top: 8em;
  }
}
.single-product .horticulture-hero + section {
  margin-top: -35px;
  z-index: 1;
  position: relative;
}
.single-product .horticulture-hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 900px) {
  .single-product .horticulture-hero .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .single-product .horticulture-hero .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-product .horticulture-hero .inner .image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  justify-self: center;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .single-product .horticulture-hero .inner .image-col {
    padding-right: 0;
  }
}
.single-product .horticulture-hero .inner .image-col .featured-image {
  max-width: 25em;
}
@media screen and (max-width: 768px) {
  .single-product .horticulture-hero .inner .image-col .featured-image {
    max-width: 20em;
    margin: 2em 0;
  }
}
@media screen and (max-width: 600px) {
  .single-product .horticulture-hero .inner .image-col .featured-image {
    max-width: 200px;
    margin: 1em 0;
  }
}
.single-product .horticulture-hero .inner .content-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin: auto;
  margin-top: -2em;
}
@media screen and (max-width: 1000px) {
  .single-product .horticulture-hero .inner .content-col {
    margin: 1em 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
}
.single-product .horticulture-hero .inner .content-col li::marker {
  color: #11303C;
}
.single-product .horticulture-hero .inner .content-col .logo {
  max-width: 30em;
}
@media screen and (max-width: 768px) {
  .single-product .horticulture-hero .inner .content-col .logo {
    max-width: 25em;
    margin: auto;
  }
}
.single-product .horticulture-hero .inner .content-col .logo svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .single-product .horticulture-hero .inner .content-col h3 {
    text-align: center;
  }
}
.single-product .horticulture-hero .inner .content-col .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 4% 0 6%;
}
.single-product .horticulture-hero .inner .content-col .button-container {
  margin-right: 2em;
}
.single-product .horticulture-hero .inner .content-col .resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-product .horticulture-hero .inner .content-col .resources .resource-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-product .size-section {
  background: #224F40;
  color: white;
  text-align: center;
  padding: 1em;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
.single-product .size-section .size-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5em auto 0.6em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.single-product .size-section .size-wrapper .separator {
  margin: 0 1em;
}
.single-product .size-section .size-wrapper .size:last-child .separator {
  display: none;
}
.single-product .benefits-section {
  padding: 0;
}
.single-product .benefits-section .inner {
  border-radius: 0;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.single-product .benefits-section .inner h1, .single-product .benefits-section .inner h2, .single-product .benefits-section .inner h3,
.single-product .benefits-section .inner h4, .single-product .benefits-section .inner h5, .single-product .benefits-section .inner h6 {
  color: #F9DD75;
}
@media screen and (max-width: 1200px) {
  .single-product .benefits-section .inner {
    border-radius: 15px;
    border-radius: 0;
  }
}
@media screen and (max-width: 900px) {
  .single-product .benefits-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-product .benefits-section .inner .benefits-image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
.single-product .benefits-section .inner .benefits-image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product .benefits-section .inner .benefits-content-col {
  padding: 7% 5% 7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #224F40;
  color: white;
  height: 100%;
  min-height: 600px;
}
@media screen and (max-width: 1200px) {
  .single-product .benefits-section .inner .benefits-content-col {
    min-height: unset;
  }
}
@media screen and (max-width: 900px) {
  .single-product .benefits-section .inner .benefits-content-col {
    padding: 5% 8% 3%;
  }
}
@media screen and (max-width: 600px) {
  .single-product .benefits-section .inner .benefits-content-col {
    padding: 5% 5% 3%;
  }
}
.single-product .benefits-section .inner .benefits-content-col ul li::marker {
  color: #F9DD75;
}
@media screen and (max-width: 900px) {
  .single-product .benefits-section .inner .benefits-content-col {
    width: 100%;
  }
}
.single-product .illustration-grid-section {
  font-family: "new-kansas", sans-serif;
  background: #F6F1EB;
}
.single-product .illustration-grid-section .intro {
  max-width: 50em;
}
.single-product .illustration-grid-section + section {
  padding-top: 0;
}
.single-product .application-section {
  background: #F6F1EB;
  padding-bottom: 4%;
}
@media screen and (max-width: 768px) {
  .single-product .application-section {
    padding-top: 3%;
  }
}
.single-product .application-section li {
  margin-bottom: 0.8em;
}
.single-product .application-section li::marker {
  font-weight: 600;
  color: #164136;
}
.single-product .application-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-product .application-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .single-product .application-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-product .application-section .inner > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  gap: 7%;
}
@media screen and (max-width: 1000px) {
  .single-product .application-section .inner > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 768px) {
  .single-product .application-section .inner > div {
    margin: 1em 0 0;
  }
}
.single-product .application-section .inner .heading-wrapper {
  background-color: #164136;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-product .application-section .inner .heading-wrapper {
    padding: 1em 1.3em 0.6em 1.3em;
    border-radius: 7.5px;
    margin-bottom: 0;
  }
}
.single-product .application-section .inner .heading-wrapper h2 {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .single-product .application-section .inner .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
.single-product .application-section .inner .additional-heading-wrapper .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 0.4em 0 0.8em;
}
.single-product .application-section .inner .content-wrapper {
  padding: 0 5%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-product .application-section .inner .content-wrapper {
    margin: 5% 0 8%;
    padding: 0;
  }
}
.single-product .application-section .inner .ingredients-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-product .application-section .inner .ingredients-column .safety-row .content-wrapper {
  margin-bottom: 0;
}
.single-product .application-section .inner .ingredients-column .safety-row .content-wrapper p {
  margin-bottom: 0;
}
.single-product .analysis-section {
  background: #F6F1EB;
  padding-top: 2%;
}
@media screen and (max-width: 1200px) {
  .single-product .analysis-section .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 375px) {
  .single-product .analysis-section .heading-wrapper h2 {
    font-size: 1.2em;
  }
}
.single-product .analysis-section .section-line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-product .analysis-section .section-line {
    margin-top: 1%;
    margin-bottom: 8%;
  }
}
.single-product .analysis-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-product .analysis-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .single-product .analysis-section .inner {
    display: block;
  }
}
.single-product .analysis-section .inner .heading-wrapper {
  background-color: #211d1e;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 768px) {
  .single-product .analysis-section .inner .heading-wrapper {
    border-radius: 7.5px 7.5px 0 0;
  }
}
.single-product .analysis-section .inner .heading-wrapper h2 {
  margin: 0;
}
.single-product .analysis-section .inner .column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  gap: 7%;
}
@media screen and (max-width: 1000px) {
  .single-product .analysis-section .inner .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 375px) {
  .single-product .analysis-section .inner .column {
    font-size: 0.9em;
  }
}
.single-product .analysis-section .inner .column .data-container {
  border: solid 2px #211d1e;
  background: #F8F8F5;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  padding: 4% 4%;
}
@media screen and (max-width: 768px) {
  .single-product .analysis-section .inner .column .data-container {
    border-radius: 0 0 7.5px 7.5px;
  }
}
.single-product .analysis-section .inner .column .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.8em;
}
.single-product .analysis-section .inner .column .data:last-child {
  padding-bottom: 0;
}
.single-product .analysis-section .inner .column .data .name {
  white-space: nowrap;
}
.single-product .analysis-section .inner .column .data .percent {
  white-space: nowrap;
}
.single-product .analysis-section .inner .column .data .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 1em 0 0;
}
@media screen and (max-width: 768px) {
  .single-product .analysis-section .inner .container-growing-column {
    margin-top: 2em;
  }
}
.single-product .analysis-section .inner .container-growing-column .data-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
}
.single-product .analysis-section .inner .container-growing-column .data-container .data-col {
  width: 100%;
  border-right: solid 2px #211d1e;
}
.single-product .analysis-section .inner .container-growing-column .data-container .data-col .category-heading {
  font-family: "new-kansas", sans-serif;
  font-weight: 500;
  border-bottom: solid 2px #211d1e;
  padding: 3% 8%;
}
.single-product .analysis-section .inner .container-growing-column .data-container .data-col .data-wrapper {
  padding: 8% 8%;
}
.single-product .analysis-section .inner .container-growing-column .data-container .data-col:last-child {
  border-right: none;
}
.single-product .text-block {
  text-align: center;
}
.single-product .text-block h2 {
  font-size: clamp(1.333rem, 1vw + 1rem, 2rem);
}
.single-product .text-block .line {
  margin: auto;
}
.single-product .site-footer {
  background: #F8F8F5;
}

#singleEvent {
  padding: 0 5%;
  padding-top: 150px;
  max-width: 1600px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #singleEvent {
    padding-top: 70px;
  }
}
#singleEvent h1, #singleEvent h2, #singleEvent h3,
#singleEvent h4, #singleEvent h5, #singleEvent h6 {
  margin-top: 0;
}
#singleEvent .event-past-message {
  margin-top: 3em;
  margin-bottom: 2em;
}
#singleEvent .event-past-message + section {
  padding-top: 0;
}
#singleEvent .event-title {
  font-size: clamp(25px, 2.5vw + 1rem, 55px);
}
#singleEvent .event-container {
  padding-top: 4%;
  padding-bottom: 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 1023px) {
  #singleEvent .event-container {
    display: block;
  }
}
#singleEvent .event-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 65%;
          flex: 0 0 65%;
  width: 100%;
}
#singleEvent .event-content .event-date-time {
  font-weight: bold;
  margin-bottom: 1.5em;
  font-family: "new-kansas", sans-serif;
}
#singleEvent .event-content .event-image {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 600px) {
  #singleEvent .event-content .event-image {
    aspect-ratio: 12/9;
    border-radius: 8px;
  }
}
#singleEvent .event-content .event-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#singleEvent .event-content li::marker {
  color: #11303C;
}
#singleEvent .event-details {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
  width: 100%;
  padding-left: 2em;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  #singleEvent .event-details {
    padding-left: 0;
  }
}
#singleEvent .event-details h3 {
  font-weight: 600;
  font-size: 1.2em;
  color: #F9DD75;
}
#singleEvent .event-details span,
#singleEvent .event-details a {
  color: white;
}
#singleEvent .event-details .event-date {
  margin-bottom: 1em;
}
#singleEvent .event-details .event-time {
  margin-bottom: 1em;
}
#singleEvent .event-details .event-location {
  margin-bottom: 1em;
}
#singleEvent .event-details .event-location a {
  color: white;
  text-decoration: underline;
}
#singleEvent .event-details .event-location a:hover {
  color: #F9DD75;
}
#singleEvent .event-details .details-inner {
  border: solid 1px #164136;
  background: #164136;
  color: white;
  border-radius: 16px;
  padding: 1.5em 1.2em;
}
@media screen and (max-width: 600px) {
  #singleEvent .event-details .details-inner {
    border-radius: 8px;
  }
}
#singleEvent .event-details .cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1em;
  margin-bottom: 2em;
}
#singleEvent .event-details .cta-row .event-registration {
  margin-bottom: 1em;
}
#singleEvent .event-details .cta-row .event-registration .foe-button span {
  color: #211d1e !important;
}
#singleEvent .event-details .cta-row .event-share .foe-share li {
  margin-right: 10px;
}
#singleEvent .event-details .cta-row .event-share .foe-share a:hover svg path {
  fill: #224F40;
}
#singleEvent .event-details .cta-row .event-share .foe-share svg path {
  fill: #11303C;
}
@media screen and (max-width: 1023px) {
  #singleEvent .hide-mobile {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  #singleEvent .hide-desktop {
    display: none;
  }
}
#singleEvent .breadcrumb-wrapper {
  border-top: dashed 1px #11303C;
  padding-top: 1.5em;
}
#singleEvent .events-breadcrumb a {
  text-decoration: none;
}
#singleEvent .events-breadcrumb a:hover {
  text-decoration: underline;
}

.events-section .inner {
  display: block;
}
.events-section .inner .events-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  .events-section .inner .events-grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 475px) {
  .events-section .inner .events-grid {
    display: block;
  }
}
.events-section .inner .events-grid a {
  text-decoration: none;
}
.events-section .inner .events-grid .event-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.3333% - 1em);
          flex: 0 0 calc(33.3333% - 1em);
  margin-right: 1em;
  border-radius: 12px;
  color: white;
  background: #224F40;
  overflow: hidden;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: block;
}
@media screen and (max-width: 900px) {
  .events-section .inner .events-grid .event-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.5em);
            flex: 0 0 calc(50% - 0.5em);
    margin-bottom: 1.5em;
  }
}
@media screen and (max-width: 475px) {
  .events-section .inner .events-grid .event-card {
    margin-right: 0;
  }
}
.events-section .inner .events-grid .event-card:last-child {
  margin-right: 0;
}
@media screen and (max-width: 900px) {
  .events-section .inner .events-grid .event-card:last-child {
    margin-right: 1em;
  }
}
@media screen and (max-width: 475px) {
  .events-section .inner .events-grid .event-card:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .events-section .inner .events-grid .event-card:nth-child(2) {
    margin-right: 0;
  }
}
.events-section .inner .events-grid .event-card:hover {
  color: #211d1e;
  background: #F9DD75;
}
.events-section .inner .events-grid .event-card:hover .card-image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.events-section .inner .events-grid .event-card .card-image {
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
}
.events-section .inner .events-grid .event-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.events-section .inner .events-grid .event-card .card-content {
  padding: 1em;
  padding-bottom: 1.5em;
}
.events-section .inner .events-grid .event-card .card-content h1, .events-section .inner .events-grid .event-card .card-content h2, .events-section .inner .events-grid .event-card .card-content h3,
.events-section .inner .events-grid .event-card .card-content h4, .events-section .inner .events-grid .event-card .card-content h5, .events-section .inner .events-grid .event-card .card-content h6 {
  margin-top: 0;
}
.events-section .inner .events-grid .event-card .card-content .content {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 1) {
  .events-section .inner .events-grid .event-card .card-content .content {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}

.single-retail {
  background: #F8F8F5;
}
.single-retail .breadcrumb-wrapper .rank-math-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-retail .breadcrumb-wrapper .rank-math-breadcrumb a {
  display: block;
}
.single-retail .breadcrumb-wrapper .rank-math-breadcrumb .last {
  max-width: unset;
  white-space: unset;
  overflow: unset;
  text-overflow: unset;
}
.single-retail .breadcrumb-wrapper .separator {
  padding: 0;
  margin: 0 5px;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-retail .breadcrumb-wrapper .separator svg {
  width: 8px;
  height: 8px;
}
.single-retail .foe-button {
  background-color: #224F40;
  color: white;
}
.single-retail .foe-button:hover {
  background-color: #F9DD75;
  color: #11303C;
}
.single-retail .retail-hero {
  padding-top: 10em;
  background: #F8F8F5;
  padding-bottom: 5%;
  position: relative;
  z-index: 3;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
@media screen and (max-width: 1200px) {
  .single-retail .retail-hero {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .single-retail .retail-hero {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 500px) {
  .single-retail .retail-hero {
    padding-top: 8em;
  }
}
.single-retail .retail-hero + section {
  margin-top: -35px;
  z-index: 1;
  position: relative;
}
.single-retail .retail-hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 900px) {
  .single-retail .retail-hero .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .single-retail .retail-hero .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-retail .retail-hero .inner .image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  justify-self: center;
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .single-retail .retail-hero .inner .image-col {
    padding-right: 0;
  }
}
.single-retail .retail-hero .inner .image-col .featured-image {
  max-width: 25em;
}
@media screen and (max-width: 768px) {
  .single-retail .retail-hero .inner .image-col .featured-image {
    max-width: 20em;
    margin: 2em 0;
  }
}
@media screen and (max-width: 600px) {
  .single-retail .retail-hero .inner .image-col .featured-image {
    max-width: 200px;
    margin: 1em 0;
  }
}
.single-retail .retail-hero .inner .content-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  margin: auto;
  margin-top: -2em;
}
@media screen and (max-width: 1000px) {
  .single-retail .retail-hero .inner .content-col {
    margin: 1em 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
  }
}
.single-retail .retail-hero .inner .content-col li::marker {
  color: #11303C;
}
.single-retail .retail-hero .inner .content-col .logo {
  max-width: 30em;
}
@media screen and (max-width: 768px) {
  .single-retail .retail-hero .inner .content-col .logo {
    max-width: 25em;
    margin: auto;
  }
}
.single-retail .retail-hero .inner .content-col .logo svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .single-retail .retail-hero .inner .content-col h3 {
    text-align: center;
  }
}
.single-retail .retail-hero .inner .content-col .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 4% 0 6%;
}
.single-retail .retail-hero .inner .content-col .button-container {
  margin-right: 2em;
}
.single-retail .retail-hero .inner .content-col .resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-retail .retail-hero .inner .content-col .resources .resource-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-retail .size-section {
  background: #11303C;
  color: white;
  text-align: center;
  padding: 1em;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  text-transform: uppercase;
  padding-top: calc(1em + 35px);
  z-index: 2 !important;
}
@media screen and (max-width: 1200px) {
  .single-retail .size-section {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
.single-retail .size-section + section {
  margin-top: -35px;
  z-index: 1 !important;
  position: relative;
}
.single-retail .size-section .size-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5em auto 0.6em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 475px) {
  .single-retail .size-section .size-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: block;
    width: 100%;
  }
}
.single-retail .size-section .size-wrapper .size-separator {
  margin: 0 0.5em;
}
@media screen and (max-width: 475px) {
  .single-retail .size-section .size-wrapper .size-separator {
    display: none;
  }
}
@media screen and (max-width: 475px) {
  .single-retail .size-section .size-wrapper .sizes {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 475px) {
  .single-retail .size-section .size-wrapper .sizes .size {
    display: block;
    margin-bottom: 0.2em;
    width: 100%;
    text-align: left;
    padding-left: 1em;
    position: relative;
  }
  .single-retail .size-section .size-wrapper .sizes .size::before {
    content: "•";
    color: #F9DD75;
    position: absolute;
    left: 0;
  }
}
.single-retail .benefits-section {
  padding: 0;
  position: relative;
  z-index: 1;
}
.single-retail .benefits-section .inner {
  border-radius: 0;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.single-retail .benefits-section .inner h1, .single-retail .benefits-section .inner h2, .single-retail .benefits-section .inner h3,
.single-retail .benefits-section .inner h4, .single-retail .benefits-section .inner h5, .single-retail .benefits-section .inner h6 {
  color: #F9DD75;
}
@media screen and (max-width: 1200px) {
  .single-retail .benefits-section .inner {
    border-radius: 15px;
    border-radius: 0;
  }
}
@media screen and (max-width: 900px) {
  .single-retail .benefits-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-retail .benefits-section .inner .benefits-image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
.single-retail .benefits-section .inner .benefits-image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-retail .benefits-section .inner .benefits-content-col {
  padding: 7% 5% 7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #224F40;
  color: white;
  height: 100%;
  min-height: 600px;
}
@media screen and (max-width: 1200px) {
  .single-retail .benefits-section .inner .benefits-content-col {
    min-height: unset;
  }
}
@media screen and (max-width: 900px) {
  .single-retail .benefits-section .inner .benefits-content-col {
    padding: 5% 8% 3%;
  }
}
@media screen and (max-width: 600px) {
  .single-retail .benefits-section .inner .benefits-content-col {
    padding: 5% 5% 3%;
  }
}
.single-retail .benefits-section .inner .benefits-content-col ul li::marker {
  color: #F9DD75;
}
@media screen and (max-width: 900px) {
  .single-retail .benefits-section .inner .benefits-content-col {
    width: 100%;
  }
}
.single-retail section.video {
  position: relative;
  padding-top: 5%;
  background: #F6F1EB;
}
.single-retail section.video::before {
  content: "";
  height: 50%;
  width: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}
.single-retail .illustration-grid-section {
  font-family: "new-kansas", sans-serif;
  background: #F6F1EB;
}
.single-retail .illustration-grid-section .intro {
  max-width: 50em;
}
.single-retail .illustration-grid-section + section {
  padding-top: 0;
}
.single-retail .information-section {
  background: #F6F1EB;
  padding-bottom: 4%;
}
.single-retail .information-section .info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .single-retail .information-section .info-container {
    display: block;
  }
}
.single-retail .information-section .info-container .info-group {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  min-width: 300px;
}
.single-retail .information-section .info-container .info-group .heading-wrapper {
  background-color: #164136;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-retail .information-section .info-container .info-group .heading-wrapper {
    padding: 1em 1.3em 0.6em 1.3em;
    border-radius: 7.5px;
    margin-bottom: 1em;
  }
}
.single-retail .information-section .info-container .info-group .heading-wrapper h2 {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .single-retail .information-section .info-container .info-group .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
.single-retail .information-section .info-container .info-group .content li {
  margin-bottom: 0.8em;
}
.single-retail .information-section .info-container .info-group .content li::marker {
  font-weight: 600;
  color: #164136;
}
.single-retail .application-section {
  background: #F6F1EB;
  padding-bottom: 4%;
}
@media screen and (max-width: 768px) {
  .single-retail .application-section {
    padding-top: 3%;
  }
}
.single-retail .application-section li {
  margin-bottom: 0.8em;
}
.single-retail .application-section li::marker {
  font-weight: 600;
  color: #164136;
}
.single-retail .application-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-retail .application-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .single-retail .application-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-retail .application-section .inner > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  gap: 7%;
}
@media screen and (max-width: 1000px) {
  .single-retail .application-section .inner > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 768px) {
  .single-retail .application-section .inner > div {
    margin: 1em 0 0;
  }
}
.single-retail .application-section .inner .heading-wrapper {
  background-color: #164136;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-retail .application-section .inner .heading-wrapper {
    padding: 1em 1.3em 0.6em 1.3em;
    border-radius: 7.5px;
    margin-bottom: 0;
  }
}
.single-retail .application-section .inner .heading-wrapper h2 {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .single-retail .application-section .inner .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
.single-retail .application-section .inner .additional-heading-wrapper .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 0.4em 0 0.8em;
}
.single-retail .application-section .inner .content-wrapper {
  padding: 0 5%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-retail .application-section .inner .content-wrapper {
    margin: 5% 0 8%;
    padding: 0;
  }
}
.single-retail .application-section .inner .ingredients-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-retail .application-section .inner .ingredients-column .ingredients-content {
  padding-bottom: 5%;
}
.single-retail .application-section .inner .ingredients-column .safety-row .content-wrapper {
  margin-bottom: 0;
}
.single-retail .application-section .inner .ingredients-column .safety-row .content-wrapper p {
  margin-bottom: 0;
}
.single-retail .analysis-section {
  background: #F6F1EB;
  padding-top: 2%;
}
@media screen and (max-width: 1200px) {
  .single-retail .analysis-section .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 375px) {
  .single-retail .analysis-section .heading-wrapper h2 {
    font-size: 1.2em;
  }
}
.single-retail .analysis-section .section-line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-retail .analysis-section .section-line {
    margin-top: 1%;
    margin-bottom: 8%;
  }
}
.single-retail .analysis-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-retail .analysis-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .single-retail .analysis-section .inner {
    display: block;
  }
}
.single-retail .analysis-section .inner .heading-wrapper {
  background-color: #211d1e;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 768px) {
  .single-retail .analysis-section .inner .heading-wrapper {
    border-radius: 7.5px 7.5px 0 0;
  }
}
.single-retail .analysis-section .inner .heading-wrapper h2 {
  margin: 0;
}
.single-retail .analysis-section .inner .analysis-content .analysis-container {
  border: solid 2px #211d1e;
  background: #F8F8F5;
  border-top: 0;
  border-radius: 0 0 15px 15px;
  padding: 4% 4%;
}
@media screen and (max-width: 768px) {
  .single-retail .analysis-section .inner .analysis-content .analysis-container {
    border-radius: 0 0 7.5px 7.5px;
  }
}
.single-retail .analysis-section .inner .analysis-content .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.8em;
}
.single-retail .analysis-section .inner .analysis-content .data:last-child {
  padding-bottom: 0;
}
.single-retail .analysis-section .inner .analysis-content .data .name {
  white-space: nowrap;
}
.single-retail .analysis-section .inner .analysis-content .data .percent {
  white-space: nowrap;
}
.single-retail .analysis-section .inner .analysis-content .data .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 1em 0 0;
}
@media screen and (max-width: 768px) {
  .single-retail .analysis-section .inner .container-growing-column {
    margin-top: 2em;
  }
}
.single-retail .analysis-section .inner .container-growing-column .data-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
}
.single-retail .analysis-section .inner .container-growing-column .data-container .data-col {
  width: 100%;
  border-right: solid 2px #211d1e;
}
.single-retail .analysis-section .inner .container-growing-column .data-container .data-col .category-heading {
  font-family: "new-kansas", sans-serif;
  font-weight: 500;
  border-bottom: solid 2px #211d1e;
  padding: 3% 8%;
}
.single-retail .analysis-section .inner .container-growing-column .data-container .data-col .data-wrapper {
  padding: 8% 8%;
}
.single-retail .analysis-section .inner .container-growing-column .data-container .data-col:last-child {
  border-right: none;
}
.single-retail .text-block {
  text-align: center;
}
.single-retail .text-block h2 {
  font-size: clamp(1.333rem, 1vw + 1rem, 2rem);
}
.single-retail .site-footer {
  background: #F8F8F5;
}

.single-agriculture,
.single-horticulture {
  background: #F8F8F5;
}
.single-agriculture section:last-child,
.single-horticulture section:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .single-agriculture .breadcrumb-wrapper,
  .single-horticulture .breadcrumb-wrapper {
    margin-bottom: 5%;
  }
}
.single-agriculture .agriculture-hero,
.single-horticulture .agriculture-hero {
  padding-top: calc(var(--header-height) + 8%);
  background: #F8F8F5;
  padding-bottom: 3%;
  position: relative;
  z-index: 3;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .agriculture-hero,
  .single-horticulture .agriculture-hero {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  .single-agriculture .agriculture-hero,
  .single-horticulture .agriculture-hero {
    padding-top: calc(var(--header-height) + 8%);
  }
}
.single-agriculture .agriculture-hero + section.size-section,
.single-horticulture .agriculture-hero + section.size-section {
  margin-top: -35px;
  z-index: 2;
  position: relative;
  padding-top: calc(1em + 35px);
}
.single-agriculture .agriculture-hero .inner,
.single-horticulture .agriculture-hero .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .single-agriculture .agriculture-hero .inner,
  .single-horticulture .agriculture-hero .inner {
    display: block;
  }
}
.single-agriculture .agriculture-hero .inner .image-col,
.single-horticulture .agriculture-hero .inner .image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  justify-self: center;
}
@media screen and (max-width: 900px) {
  .single-agriculture .agriculture-hero .inner .image-col,
  .single-horticulture .agriculture-hero .inner .image-col {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .image-col,
  .single-horticulture .agriculture-hero .inner .image-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single-agriculture .agriculture-hero .inner .image-col .featured-image,
.single-horticulture .agriculture-hero .inner .image-col .featured-image {
  max-width: 30em;
}
@media screen and (max-width: 900px) {
  .single-agriculture .agriculture-hero .inner .image-col .featured-image,
  .single-horticulture .agriculture-hero .inner .image-col .featured-image {
    max-width: 20em;
  }
}
.single-agriculture .agriculture-hero .inner .content-col,
.single-horticulture .agriculture-hero .inner .content-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  padding-right: 5%;
  margin-right: auto;
}
@media screen and (max-width: 900px) {
  .single-agriculture .agriculture-hero .inner .content-col,
  .single-horticulture .agriculture-hero .inner .content-col {
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col .product-description,
  .single-horticulture .agriculture-hero .inner .content-col .product-description {
    text-align: center;
  }
}
.single-agriculture .agriculture-hero .inner .content-col h1,
.single-horticulture .agriculture-hero .inner .content-col h1 {
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col h1,
  .single-horticulture .agriculture-hero .inner .content-col h1 {
    text-align: center;
  }
}
.single-agriculture .agriculture-hero .inner .content-col .tagline,
.single-horticulture .agriculture-hero .inner .content-col .tagline {
  font-weight: 600;
  font-size: 1.2em;
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col .tagline,
  .single-horticulture .agriculture-hero .inner .content-col .tagline {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col .logo,
  .single-horticulture .agriculture-hero .inner .content-col .logo {
    text-align: center;
  }
}
.single-agriculture .agriculture-hero .inner .content-col .logo svg,
.single-horticulture .agriculture-hero .inner .content-col .logo svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .single-agriculture .agriculture-hero .inner .content-col .logo img,
  .single-horticulture .agriculture-hero .inner .content-col .logo img {
    max-width: 20em;
  }
}
.single-agriculture .agriculture-hero .inner .content-col .line,
.single-horticulture .agriculture-hero .inner .content-col .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 4% 0 6%;
}
@media screen and (max-width: 900px) {
  .single-agriculture .agriculture-hero .inner .content-col .line,
  .single-horticulture .agriculture-hero .inner .content-col .line {
    margin: 4% 0 5%;
  }
}
.single-agriculture .agriculture-hero .inner .content-col .resources,
.single-horticulture .agriculture-hero .inner .content-col .resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col .resources,
  .single-horticulture .agriculture-hero .inner .content-col .resources {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single-agriculture .agriculture-hero .inner .content-col .resources .resource-wrapper,
.single-horticulture .agriculture-hero .inner .content-col .resources .resource-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col .resources .resource-wrapper,
  .single-horticulture .agriculture-hero .inner .content-col .resources .resource-wrapper {
    padding: 3% 0;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .agriculture-hero .inner .content-col .resources .resource-wrapper .sell-sheet,
  .single-horticulture .agriculture-hero .inner .content-col .resources .resource-wrapper .sell-sheet {
    padding-right: calc(0.5em + 20px);
    position: relative;
  }
}
.single-agriculture .agriculture-hero .inner .content-col .certification-wrapper,
.single-horticulture .agriculture-hero .inner .content-col .certification-wrapper {
  margin-top: 7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.single-agriculture .agriculture-hero .inner .content-col .certification-wrapper .certification,
.single-horticulture .agriculture-hero .inner .content-col .certification-wrapper .certification {
  width: 100%;
  max-width: 7em;
  position: relative;
  aspect-ratio: 1;
  margin-right: 1.5em;
}
.single-agriculture .agriculture-hero .inner .content-col .certification-wrapper .certification:last-child,
.single-horticulture .agriculture-hero .inner .content-col .certification-wrapper .certification:last-child {
  margin-right: 0;
}
.single-agriculture .agriculture-hero .inner .content-col .certification-wrapper .certification img,
.single-horticulture .agriculture-hero .inner .content-col .certification-wrapper .certification img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-agriculture .foe-button,
.single-horticulture .foe-button {
  background-color: #224F40;
  color: white;
}
.single-agriculture .foe-button:hover,
.single-horticulture .foe-button:hover {
  background-color: #F9DD75;
  color: #11303C;
}
.single-agriculture .size-section,
.single-horticulture .size-section {
  background: #224F40;
  color: white;
  text-align: center;
  padding: 1em;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .size-section,
  .single-horticulture .size-section {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
.single-agriculture .size-section + section,
.single-horticulture .size-section + section {
  margin-top: -35px;
  z-index: 1;
  position: relative;
  padding-top: calc(35px + 5.7%);
}
.single-agriculture .size-section .size-wrapper,
.single-horticulture .size-section .size-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5em auto 0.6em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 475px) {
  .single-agriculture .size-section .size-wrapper,
  .single-horticulture .size-section .size-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-agriculture .size-section .size-wrapper .size-separator,
.single-horticulture .size-section .size-wrapper .size-separator {
  margin: 0 0.5em;
}
@media screen and (max-width: 475px) {
  .single-agriculture .size-section .size-wrapper .size-separator,
  .single-horticulture .size-section .size-wrapper .size-separator {
    display: none;
  }
}
.single-agriculture .size-section .size-wrapper .sizes,
.single-horticulture .size-section .size-wrapper .sizes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 475px) {
  .single-agriculture .size-section .size-wrapper .sizes,
  .single-horticulture .size-section .size-wrapper .sizes {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 475px) {
  .single-agriculture .size-section .size-wrapper .sizes .size,
  .single-horticulture .size-section .size-wrapper .sizes .size {
    display: block;
    margin-bottom: 0.2em;
    width: 100%;
    text-align: left;
    padding-left: 1em;
    position: relative;
  }
  .single-agriculture .size-section .size-wrapper .sizes .size::before,
  .single-horticulture .size-section .size-wrapper .sizes .size::before {
    content: "•";
    color: #F9DD75;
    position: absolute;
    left: 0;
  }
}
.single-agriculture .benefits-section,
.single-horticulture .benefits-section {
  background: #F6F1EB;
  padding-top: 5%;
}
.single-agriculture .benefits-section + section.application-section,
.single-horticulture .benefits-section + section.application-section {
  padding-top: 0;
}
.single-agriculture .benefits-section .inner,
.single-horticulture .benefits-section .inner {
  max-width: 1400px;
  border-radius: 30px;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
.single-agriculture .benefits-section .inner h1, .single-agriculture .benefits-section .inner h2, .single-agriculture .benefits-section .inner h3,
.single-agriculture .benefits-section .inner h4, .single-agriculture .benefits-section .inner h5, .single-agriculture .benefits-section .inner h6,
.single-horticulture .benefits-section .inner h1,
.single-horticulture .benefits-section .inner h2,
.single-horticulture .benefits-section .inner h3,
.single-horticulture .benefits-section .inner h4,
.single-horticulture .benefits-section .inner h5,
.single-horticulture .benefits-section .inner h6 {
  color: #211d1e;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .benefits-section .inner,
  .single-horticulture .benefits-section .inner {
    border-radius: 15px;
    border-radius: 0;
  }
}
@media screen and (max-width: 900px) {
  .single-agriculture .benefits-section .inner,
  .single-horticulture .benefits-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-agriculture .benefits-section .inner .benefits-image-col,
.single-horticulture .benefits-section .inner .benefits-image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .benefits-section .inner .benefits-image-col,
  .single-horticulture .benefits-section .inner .benefits-image-col {
    border-radius: 15px 0 0 15px;
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .benefits-section .inner .benefits-image-col,
  .single-horticulture .benefits-section .inner .benefits-image-col {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
  }
}
.single-agriculture .benefits-section .inner .benefits-image-col img,
.single-horticulture .benefits-section .inner .benefits-image-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-agriculture .benefits-section .inner .benefits-content-col,
.single-horticulture .benefits-section .inner .benefits-content-col {
  padding: 7% 5% 7%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  background-color: #F8F8F5;
  color: #211d1e;
  height: 100%;
  min-height: 600px;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .benefits-section .inner .benefits-content-col,
  .single-horticulture .benefits-section .inner .benefits-content-col {
    min-height: unset;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 900px) {
  .single-agriculture .benefits-section .inner .benefits-content-col,
  .single-horticulture .benefits-section .inner .benefits-content-col {
    padding: 5% 8% 3%;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .benefits-section .inner .benefits-content-col,
  .single-horticulture .benefits-section .inner .benefits-content-col {
    padding: 5% 5% 3%;
    border-radius: 0 0 15px 15px;
  }
}
.single-agriculture .benefits-section .inner .benefits-content-col ul li::marker,
.single-horticulture .benefits-section .inner .benefits-content-col ul li::marker {
  color: #211d1e !important;
}
@media screen and (max-width: 900px) {
  .single-agriculture .benefits-section .inner .benefits-content-col,
  .single-horticulture .benefits-section .inner .benefits-content-col {
    width: 100%;
  }
}
.single-agriculture .illustration-grid-section,
.single-horticulture .illustration-grid-section {
  font-family: "new-kansas", sans-serif;
  background: #F6F1EB;
}
.single-agriculture .illustration-grid-section .intro,
.single-horticulture .illustration-grid-section .intro {
  max-width: 50em;
}
.single-agriculture .illustration-grid-section + section,
.single-horticulture .illustration-grid-section + section {
  padding-top: 0;
}
.single-agriculture .info-parent-container,
.single-horticulture .info-parent-container {
  background: #F6F1EB;
  padding-bottom: 10%;
}
.single-agriculture .info-parent-container + section.crop-instructions,
.single-horticulture .info-parent-container + section.crop-instructions {
  padding-top: 0;
}
.single-agriculture .info-parent-container > .inner,
.single-horticulture .info-parent-container > .inner {
  max-width: 800px;
  margin: auto;
}
.single-agriculture .info-parent-container.two-columns > .inner,
.single-horticulture .info-parent-container.two-columns > .inner {
  max-width: unset;
  gap: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1400px) {
  .single-agriculture .info-parent-container.two-columns > .inner,
  .single-horticulture .info-parent-container.two-columns > .inner {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .single-agriculture .info-parent-container.two-columns > .inner,
  .single-horticulture .info-parent-container.two-columns > .inner {
    display: block;
  }
}
.single-agriculture .info-parent-container .info-child-section,
.single-horticulture .info-parent-container .info-child-section {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1em);
          flex: 0 0 calc(50% - 1em);
}
.single-agriculture .info-parent-container .info-child-section:first-child,
.single-horticulture .info-parent-container .info-child-section:first-child {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.single-agriculture .info-parent-container .info-child-section .inner,
.single-horticulture .info-parent-container .info-child-section .inner {
  display: block;
}
.single-agriculture .info-parent-container .info-child-section .heading-wrapper,
.single-horticulture .info-parent-container .info-child-section .heading-wrapper {
  background-color: #164136;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 6%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single-agriculture .info-parent-container .info-child-section .heading-wrapper,
  .single-horticulture .info-parent-container .info-child-section .heading-wrapper {
    padding: 1em 1.3em 0.6em 1.3em;
    border-radius: 7.5px;
    margin-bottom: 0.8em;
  }
}
.single-agriculture .info-parent-container .info-child-section .heading-wrapper h2,
.single-horticulture .info-parent-container .info-child-section .heading-wrapper h2 {
  margin: 0;
  text-transform: capitalize;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .info-parent-container .info-child-section .heading-wrapper h2,
  .single-horticulture .info-parent-container .info-child-section .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section,
.single-horticulture .info-parent-container .info-child-section.ingredients-section {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container,
  .single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container {
    padding: 0;
    margin: 5% 0 8%;
    border-radius: 0 0 7.5px 7.5px;
  }
}
@media screen and (max-width: 400px) {
  .single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container,
  .single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container {
    font-size: 0.9em;
  }
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .description,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .description {
  padding-bottom: 0.8em;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers {
  margin-top: 0.5em;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h1, .single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h2, .single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h3,
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h4, .single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h5, .single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h6,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h1,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h2,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h3,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h4,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h5,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers h6 {
  margin: 0 0 0.4em;
  font-size: 1.2em;
  color: #224F40;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers strong,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data-container .disclaimers strong {
  margin: 0 0 0.4em !important;
  font-size: 1em !important;
  color: #224F40 !important;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.8em;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data:last-child,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data:last-child {
  padding-bottom: 0;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data .name,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data .name {
  white-space: nowrap;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data .percent,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data .percent {
  white-space: nowrap;
}
.single-agriculture .info-parent-container .info-child-section.ingredients-section .data .line,
.single-horticulture .info-parent-container .info-child-section.ingredients-section .data .line {
  height: 3px;
  width: 100%;
  border-bottom: dotted 2px #888888;
  background-repeat: repeat-x;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1em 0 0;
}
.single-agriculture .info-parent-container .info-child-section h4,
.single-horticulture .info-parent-container .info-child-section h4 {
  font-weight: 600;
  color: #224F40;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}
.single-agriculture .info-parent-container .info-child-section ul li::marker,
.single-horticulture .info-parent-container .info-child-section ul li::marker {
  color: #224F40;
}
.single-agriculture .application-section,
.single-horticulture .application-section {
  background: #F6F1EB;
  padding-bottom: 4%;
}
.single-agriculture .application-section + section.crop-instructions,
.single-horticulture .application-section + section.crop-instructions {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .single-agriculture .application-section,
  .single-horticulture .application-section {
    padding-top: 3%;
  }
}
.single-agriculture .application-section li,
.single-horticulture .application-section li {
  margin-bottom: 0.8em;
}
.single-agriculture .application-section li::marker,
.single-horticulture .application-section li::marker {
  font-weight: 600;
  color: #164136;
}
.single-agriculture .application-section .inner,
.single-horticulture .application-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-agriculture .application-section .inner,
  .single-horticulture .application-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .single-agriculture .application-section .inner,
  .single-horticulture .application-section .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.single-agriculture .application-section .inner > div,
.single-horticulture .application-section .inner > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
}
@media screen and (max-width: 1000px) {
  .single-agriculture .application-section .inner > div,
  .single-horticulture .application-section .inner > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 768px) {
  .single-agriculture .application-section .inner > div,
  .single-horticulture .application-section .inner > div {
    margin: 1em 0 0;
  }
}
.single-agriculture .application-section .inner .heading-wrapper,
.single-horticulture .application-section .inner .heading-wrapper {
  background-color: #164136;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-agriculture .application-section .inner .heading-wrapper,
  .single-horticulture .application-section .inner .heading-wrapper {
    padding: 1em 1.3em 0.6em 1.3em;
    border-radius: 7.5px;
    margin-bottom: 0;
  }
}
.single-agriculture .application-section .inner .heading-wrapper h2,
.single-horticulture .application-section .inner .heading-wrapper h2 {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .application-section .inner .heading-wrapper h2,
  .single-horticulture .application-section .inner .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
.single-agriculture .application-section .inner .additional-heading-wrapper .line,
.single-horticulture .application-section .inner .additional-heading-wrapper .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dashedline.svg");
  background-repeat: repeat-x;
  margin: 0.4em 0 0.8em;
}
.single-agriculture .application-section .inner .content-wrapper,
.single-horticulture .application-section .inner .content-wrapper {
  padding: 0 5%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-agriculture .application-section .inner .content-wrapper,
  .single-horticulture .application-section .inner .content-wrapper {
    margin: 5% 0 8%;
    padding: 0;
  }
}
.single-agriculture .application-section .inner .ingredients-column,
.single-horticulture .application-section .inner .ingredients-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-agriculture .application-section .inner .ingredients-column .safety-row .content-wrapper,
.single-horticulture .application-section .inner .ingredients-column .safety-row .content-wrapper {
  margin-bottom: 0;
}
.single-agriculture .application-section .inner .ingredients-column .safety-row .content-wrapper p,
.single-horticulture .application-section .inner .ingredients-column .safety-row .content-wrapper p {
  margin-bottom: 0;
}
.single-agriculture .application-section .inner .ingredients-column .data-container,
.single-horticulture .application-section .inner .ingredients-column .data-container {
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .single-agriculture .application-section .inner .ingredients-column .data-container,
  .single-horticulture .application-section .inner .ingredients-column .data-container {
    padding: 0;
    margin: 5% 0 8%;
    border-radius: 0 0 7.5px 7.5px;
  }
}
@media screen and (max-width: 400px) {
  .single-agriculture .application-section .inner .ingredients-column .data-container,
  .single-horticulture .application-section .inner .ingredients-column .data-container {
    font-size: 0.9em;
  }
}
.single-agriculture .application-section .inner .ingredients-column .data-container .description,
.single-horticulture .application-section .inner .ingredients-column .data-container .description {
  padding-bottom: 0.8em;
}
.single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers {
  margin-top: 0.5em;
}
.single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers h1, .single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers h2, .single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers h3,
.single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers h4, .single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers h5, .single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers h6,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers h1,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers h2,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers h3,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers h4,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers h5,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers h6 {
  margin: 0 0 0.4em;
  font-size: 1.2em;
  color: #224F40;
}
.single-agriculture .application-section .inner .ingredients-column .data-container .disclaimers strong,
.single-horticulture .application-section .inner .ingredients-column .data-container .disclaimers strong {
  margin: 0 0 0.4em !important;
  font-size: 1em !important;
  color: #224F40 !important;
}
.single-agriculture .application-section .inner .ingredients-column .data,
.single-horticulture .application-section .inner .ingredients-column .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.8em;
}
.single-agriculture .application-section .inner .ingredients-column .data:last-child,
.single-horticulture .application-section .inner .ingredients-column .data:last-child {
  padding-bottom: 0;
}
.single-agriculture .application-section .inner .ingredients-column .data .name,
.single-horticulture .application-section .inner .ingredients-column .data .name {
  white-space: nowrap;
}
.single-agriculture .application-section .inner .ingredients-column .data .percent,
.single-horticulture .application-section .inner .ingredients-column .data .percent {
  white-space: nowrap;
}
.single-agriculture .application-section .inner .ingredients-column .data .line,
.single-horticulture .application-section .inner .ingredients-column .data .line {
  height: 3px;
  width: 100%;
  border-bottom: dotted 2px #888888;
  background-repeat: repeat-x;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 1em 0 0;
}
.single-agriculture .analysis-section,
.single-horticulture .analysis-section {
  background: #F6F1EB;
  padding-top: 2%;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .analysis-section .heading-wrapper h2,
  .single-horticulture .analysis-section .heading-wrapper h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 375px) {
  .single-agriculture .analysis-section .heading-wrapper h2,
  .single-horticulture .analysis-section .heading-wrapper h2 {
    font-size: 1.2em;
  }
}
.single-agriculture .analysis-section .section-line,
.single-horticulture .analysis-section .section-line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0;
  margin-bottom: 6%;
}
@media screen and (max-width: 768px) {
  .single-agriculture .analysis-section .section-line,
  .single-horticulture .analysis-section .section-line {
    margin-top: 1%;
    margin-bottom: 8%;
  }
}
.single-agriculture .analysis-section .inner,
.single-horticulture .analysis-section .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
@media screen and (max-width: 1000px) {
  .single-agriculture .analysis-section .inner,
  .single-horticulture .analysis-section .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1000px) {
  .single-agriculture .analysis-section .inner,
  .single-horticulture .analysis-section .inner {
    display: block;
  }
}
.single-agriculture .analysis-section .inner .heading-wrapper,
.single-horticulture .analysis-section .inner .heading-wrapper {
  background-color: #211d1e;
  color: white;
  padding: 1.4em 1.5em 0.8em 1.5em;
  text-align: center;
  border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 768px) {
  .single-agriculture .analysis-section .inner .heading-wrapper,
  .single-horticulture .analysis-section .inner .heading-wrapper {
    border-radius: 7.5px 7.5px 0 0;
  }
}
.single-agriculture .analysis-section .inner .heading-wrapper h2,
.single-horticulture .analysis-section .inner .heading-wrapper h2 {
  margin: 0;
}
.single-agriculture .analysis-section .inner .column,
.single-horticulture .analysis-section .inner .column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
  gap: 7%;
}
@media screen and (max-width: 1000px) {
  .single-agriculture .analysis-section .inner .column,
  .single-horticulture .analysis-section .inner .column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 49%;
            flex: 0 0 49%;
    gap: 1%;
  }
}
@media screen and (max-width: 375px) {
  .single-agriculture .analysis-section .inner .column,
  .single-horticulture .analysis-section .inner .column {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .single-agriculture .analysis-section .inner .container-growing-column,
  .single-horticulture .analysis-section .inner .container-growing-column {
    margin-top: 2em;
  }
}
.single-agriculture .analysis-section .inner .container-growing-column .data-container,
.single-horticulture .analysis-section .inner .container-growing-column .data-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
}
.single-agriculture .analysis-section .inner .container-growing-column .data-container .data-col,
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col {
  width: 100%;
  border-right: solid 2px #211d1e;
}
.single-agriculture .analysis-section .inner .container-growing-column .data-container .data-col .category-heading,
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col .category-heading {
  font-family: "new-kansas", sans-serif;
  font-weight: 500;
  border-bottom: solid 2px #211d1e;
  padding: 3% 8%;
}
.single-agriculture .analysis-section .inner .container-growing-column .data-container .data-col .data-wrapper,
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col .data-wrapper {
  padding: 8% 8%;
}
.single-agriculture .analysis-section .inner .container-growing-column .data-container .data-col:last-child,
.single-horticulture .analysis-section .inner .container-growing-column .data-container .data-col:last-child {
  border-right: none;
}
.single-agriculture .crop-instructions,
.single-horticulture .crop-instructions {
  background: #F6F1EB;
}
.single-agriculture .crop-instructions .inner,
.single-horticulture .crop-instructions .inner {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .single-agriculture .crop-instructions .inner,
  .single-horticulture .crop-instructions .inner {
    border-radius: 12px;
  }
}
.single-agriculture .crop-instructions .heading-grid,
.single-horticulture .crop-instructions .heading-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #224F40;
}
.single-agriculture .crop-instructions .heading-grid .grid-item,
.single-horticulture .crop-instructions .heading-grid .grid-item {
  padding: 1em 2em;
  color: white;
}
@media screen and (max-width: 600px) {
  .single-agriculture .crop-instructions .heading-grid .grid-item,
  .single-horticulture .crop-instructions .heading-grid .grid-item {
    padding: 1em;
  }
}
@media screen and (max-width: 475px) {
  .single-agriculture .crop-instructions .heading-grid .grid-item,
  .single-horticulture .crop-instructions .heading-grid .grid-item {
    font-size: 0.8em;
  }
}
.single-agriculture .crop-instructions .crop-grid .crop-row,
.single-horticulture .crop-instructions .crop-grid .crop-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: white;
}
.single-agriculture .crop-instructions .crop-grid .crop-row .crop-item,
.single-horticulture .crop-instructions .crop-grid .crop-row .crop-item {
  padding: 1em 2em;
  background: white;
}
@media screen and (max-width: 600px) {
  .single-agriculture .crop-instructions .crop-grid .crop-row .crop-item,
  .single-horticulture .crop-instructions .crop-grid .crop-row .crop-item {
    padding: 1em;
  }
}
@media screen and (max-width: 475px) {
  .single-agriculture .crop-instructions .crop-grid .crop-row .crop-item,
  .single-horticulture .crop-instructions .crop-grid .crop-row .crop-item {
    font-size: 0.8em;
    padding-right: 0;
  }
  .single-agriculture .crop-instructions .crop-grid .crop-row .crop-item:last-child,
  .single-horticulture .crop-instructions .crop-grid .crop-row .crop-item:last-child {
    padding-right: 1em;
  }
}
.single-agriculture .crop-instructions .crop-grid .crop-row:nth-child(even),
.single-horticulture .crop-instructions .crop-grid .crop-row:nth-child(even) {
  background: #F8F8F5;
}
.single-agriculture .crop-instructions .crop-grid .crop-row:nth-child(even) .crop-item,
.single-horticulture .crop-instructions .crop-grid .crop-row:nth-child(even) .crop-item {
  background: #F8F8F5;
}
.single-agriculture .resource-buttons-section,
.single-horticulture .resource-buttons-section {
  padding: 5%;
  background: #F6F1EB;
}
.single-agriculture .resource-buttons-section .inner,
.single-horticulture .resource-buttons-section .inner {
  background: #F8F8F5;
  -webkit-box-shadow: 1px 3px 5px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 1px 3px 5px 3px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 5% 3%;
  max-width: 650px;
  margin: auto;
}
@media screen and (max-width: 475px) {
  .single-agriculture .resource-buttons-section .inner,
  .single-horticulture .resource-buttons-section .inner {
    padding: 8% 5%;
  }
}
.single-agriculture .resource-buttons-section .inner h1, .single-agriculture .resource-buttons-section .inner h2, .single-agriculture .resource-buttons-section .inner h3,
.single-agriculture .resource-buttons-section .inner h4, .single-agriculture .resource-buttons-section .inner h5, .single-agriculture .resource-buttons-section .inner h6,
.single-horticulture .resource-buttons-section .inner h1,
.single-horticulture .resource-buttons-section .inner h2,
.single-horticulture .resource-buttons-section .inner h3,
.single-horticulture .resource-buttons-section .inner h4,
.single-horticulture .resource-buttons-section .inner h5,
.single-horticulture .resource-buttons-section .inner h6 {
  margin: auto;
  margin-top: 0;
  text-align: center;
  margin-bottom: 1em;
  max-width: 12em;
  text-wrap: unset;
}
.single-agriculture .resource-buttons-section .inner .resource-buttons,
.single-horticulture .resource-buttons-section .inner .resource-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .single-agriculture .resource-buttons-section .inner .resource-buttons,
  .single-horticulture .resource-buttons-section .inner .resource-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet,
.single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet {
  background: #224F40;
  color: white;
  padding: 0.7em 1.5em 0.6em 1.5em;
  border-radius: 31px;
  font-size: 1.1em;
  margin-right: 1em;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet,
  .single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet,
  .single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet:last-child,
.single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet:last-child,
  .single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet:last-child {
    margin-bottom: 0;
  }
}
.single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet .icon,
.single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet .icon {
  position: relative;
  margin-top: 2px;
  border-color: white;
}
@media screen and (max-width: 1200px) {
  .single-agriculture .resource-buttons-section .inner .resource-buttons .sell-sheet .icon,
  .single-horticulture .resource-buttons-section .inner .resource-buttons .sell-sheet .icon {
    margin-left: 15px;
    width: 15px;
    height: 15px;
    margin-top: 0;
    border-bottom: 2px solid white;
  }
}
.single-agriculture section.video,
.single-horticulture section.video {
  position: relative;
}
.single-agriculture section.video::before,
.single-horticulture section.video::before {
  content: "";
  position: absolute;
  height: 50%;
  width: 100%;
  z-index: -1;
  left: 0;
  top: 0;
  background: #F6F1EB;
}
.single-agriculture .examples-section + section,
.single-horticulture .examples-section + section {
  padding-top: 0;
}
.single-agriculture .examples-section .inner,
.single-horticulture .examples-section .inner {
  display: block;
  max-width: 1200px;
  margin: auto;
}
.single-agriculture .examples-section .examples-grid,
.single-horticulture .examples-section .examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
}
@media screen and (max-width: 475px) {
  .single-agriculture .examples-section .examples-grid,
  .single-horticulture .examples-section .examples-grid {
    display: block;
    grid-template-columns: 1fr;
    gap: 5%;
  }
  .single-agriculture .examples-section .examples-grid .example,
  .single-horticulture .examples-section .examples-grid .example {
    margin-top: 2em;
  }
  .single-agriculture .examples-section .examples-grid .example:first-child,
  .single-horticulture .examples-section .examples-grid .example:first-child {
    margin-top: 0;
  }
}
.single-agriculture .examples-section .examples-grid .image,
.single-horticulture .examples-section .examples-grid .image {
  aspect-ratio: 10/9;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 475px) {
  .single-agriculture .examples-section .examples-grid .image,
  .single-horticulture .examples-section .examples-grid .image {
    aspect-ratio: 11/9;
  }
}
.single-agriculture .examples-section .examples-grid .image img,
.single-horticulture .examples-section .examples-grid .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-agriculture .examples-section .examples-grid .title,
.single-horticulture .examples-section .examples-grid .title {
  margin-top: 0;
}
.single-agriculture .form-section .inner,
.single-horticulture .form-section .inner {
  display: block;
  max-width: 1200px;
  margin: auto;
}
.single-agriculture .form-section .line,
.single-horticulture .form-section .line {
  height: 2px;
  width: 100%;
  background-image: url("/wp-content/themes/foe/images/shell/dotted-line-dark.svg");
  background-size: cover;
  margin: 0% 0 5%;
}
@media screen and (max-width: 600px) {
  .single-agriculture .form-section .line,
  .single-horticulture .form-section .line {
    margin: 4em 0;
  }
}
.single-agriculture .form-section .heading-wrapper,
.single-horticulture .form-section .heading-wrapper {
  margin: auto;
  text-align: center;
}
.single-agriculture .form-section .form-wrapper,
.single-horticulture .form-section .form-wrapper {
  padding-top: 1em;
}
.single-agriculture .text-block,
.single-horticulture .text-block {
  text-align: center;
}
.single-agriculture .text-block h2,
.single-horticulture .text-block h2 {
  font-size: clamp(1.333rem, 1vw + 1rem, 2rem);
}
.single-agriculture .site-footer,
.single-horticulture .site-footer {
  background: #F8F8F5;
}
@media screen and (max-width: 475px) {
  .single-agriculture .related-products,
  .single-horticulture .related-products {
    padding-bottom: 0;
  }
}
.single-agriculture .related-products + section,
.single-horticulture .related-products + section {
  padding-top: 0;
}
.single-agriculture .related-products .inner,
.single-horticulture .related-products .inner {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-agriculture .related-products a,
.single-horticulture .related-products a {
  text-decoration: none;
}
.single-agriculture .related-products h2,
.single-horticulture .related-products h2 {
  margin-bottom: 5%;
}
.single-agriculture .related-products .grid-container,
.single-horticulture .related-products .grid-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  place-items: center;
  max-width: 1400px;
  gap: 4em;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .single-agriculture .related-products .grid-container,
  .single-horticulture .related-products .grid-container {
    display: block;
  }
  .single-agriculture .related-products .grid-container .product,
  .single-horticulture .related-products .grid-container .product {
    margin-top: 2em;
  }
  .single-agriculture .related-products .grid-container .product:first-child,
  .single-horticulture .related-products .grid-container .product:first-child {
    margin-top: 0;
  }
}
.single-agriculture .related-products .grid-container .product,
.single-horticulture .related-products .grid-container .product {
  aspect-ratio: 1;
  width: 100%;
}
.single-agriculture .related-products .grid-container .product .image-wrapper,
.single-horticulture .related-products .grid-container .product .image-wrapper {
  position: relative;
  width: 20em;
  margin: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .single-agriculture .related-products .grid-container .product .image-wrapper,
  .single-horticulture .related-products .grid-container .product .image-wrapper {
    width: 15em;
  }
}
.single-agriculture .related-products .grid-container .product .image-wrapper img,
.single-horticulture .related-products .grid-container .product .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*
Form Styling

Including generic form elements and specific Gravity Form styling overrides.
*/
/*Change text in autofill textbox*/
input[type=text],
input[type=number],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel] {
  border: none;
  height: 3.5em;
  font-size: 16px;
  padding: 0px 1.55em;
  border-radius: 30px;
  background: none;
  color: white;
  border: 2px solid #164136;
}
@media screen and (max-width: 1100px) {
  input[type=text],
  input[type=number],
  input[type=email],
  input[type=url],
  input[type=password],
  input[type=search],
  input[type=tel] {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  input[type=text],
  input[type=number],
  input[type=email],
  input[type=url],
  input[type=password],
  input[type=search],
  input[type=tel] {
    height: 3em;
    padding: 0px 1.35em;
  }
}
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus {
  outline: none;
  border-color: white;
}

textarea {
  width: 100%;
  height: 6em;
  font-size: 16px;
  padding: 1em 1.55em;
  border-radius: 30px;
  background: none;
  color: #164136;
  border: 2px solid #164136;
}
textarea:focus {
  outline: none;
  border-color: white;
}

select {
  border: 2px solid #164136;
  background: url("/wp-content/themes/foe/images/shell/arrow-wide.svg") right 1.5em center no-repeat;
  height: 3.5em;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 2.55em 0px 1.55em;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 30px;
}
@media screen and (max-width: 1100px) {
  select {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  select {
    height: 3em;
    padding: 0px 2.5em 0px 1.3em;
  }
}
select:focus {
  outline: none;
  border-color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dd-select {
  background: #224F40 !important;
  border: none !important;
}
.dd-select a {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.dd-select a img {
  max-width: 20px;
}

.dd-option {
  display: block !important;
}
.dd-option img {
  max-width: 20px;
}

#page .gform_wrapper {
  margin: 0px;
  margin: 0 auto;
}
#page .gform_wrapper .gform_required_legend {
  display: none;
}
#page .gform_wrapper .gfield_required_asterisk {
  color: white;
}
#page .gform_wrapper .gform_validation_errors > h2 {
  color: white;
  line-height: 1.4;
  position: relative;
}
#page .gform_wrapper .gform_validation_errors > h2:before {
  position: absolute;
  left: 0px;
  top: 3px;
}
#page .gform_wrapper .gform_validation_errors > h2 .gform-icon {
  height: 60px;
}
#page .gform_wrapper .validation_error,
#page .gform_wrapper .gform_validation_errors {
  background: #11303C;
  border: solid 2px #F9DD75;
  color: white;
  border-radius: 0px;
  padding: 1.75em 2em;
  margin: 0px 0px 30px 0px;
  width: auto;
  font-size: 16px;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  text-align: center;
  border-radius: 25px;
}
@media screen and (max-width: 900px) {
  #page .gform_wrapper .validation_error,
  #page .gform_wrapper .gform_validation_errors {
    border-radius: 15px;
    padding: 1.25em 1.5em;
  }
}
#page .gform_wrapper .validation_error .gform_submission_error,
#page .gform_wrapper .gform_validation_errors .gform_submission_error {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding: 0px;
}
@media screen and (max-width: 900px) {
  #page .gform_wrapper .validation_error .gform_submission_error,
  #page .gform_wrapper .gform_validation_errors .gform_submission_error {
    font-size: 15px;
  }
}
#page .gform_wrapper .validation_error .gform_submission_error .gform-icon,
#page .gform_wrapper .gform_validation_errors .gform_submission_error .gform-icon {
  display: none;
}
#page .gform_wrapper .validation_error ol,
#page .gform_wrapper .gform_validation_errors ol {
  margin: 0px;
}
#page .gform_wrapper .validation_error ol li,
#page .gform_wrapper .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
#page .gform_wrapper .validation_error ol li a,
#page .gform_wrapper .gform_validation_errors ol li a {
  color: white;
}
#page .gform_wrapper .gform_fields {
  margin: 0px;
  padding: 0px;
  grid-column-gap: 2%;
}
#page .gform_wrapper .gform_fields fieldset.gfield > legend {
  padding: 0px;
}
#page .gform_wrapper .gform_fields fieldset.gfield .ginput_container_address span {
  padding: 0px;
}
#page .gform_wrapper .gform_fields fieldset.gfield .ginput_container_address span.ginput_right {
  padding-left: 2%;
}
#page .gform_wrapper .gform_fields fieldset.gfield .gform-field-label--type-sub {
  padding-left: 25px;
  font-size: 14px;
  opacity: 0.6;
  padding-top: 3px;
}
#page .gform_wrapper .gform_fields .gfield {
  width: 100%;
  clear: none;
  margin: 0px 0px 8px;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error {
  background: none;
  border: none;
  max-width: none !important;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container input,
#page .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: none;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .validation_message {
  padding: 5px 0px 0px 0;
  color: #164136;
  border: none;
  background: none;
  margin: 0px;
  color: white;
  font-size: 0.8em;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .gfield_label {
  margin-top: 0px;
  color: white;
}
#page .gform_wrapper .gform_fields .gfield label,
#page .gform_wrapper .gform_fields .gfield .gfield_label {
  font-size: 16px;
  line-height: 1.3;
  padding: 0px 0px 6px 0px;
  color: white;
}
@media screen and (max-width: 1200px) {
  #page .gform_wrapper .gform_fields .gfield label,
  #page .gform_wrapper .gform_fields .gfield .gfield_label {
    font-size: 14px;
  }
}
#page .gform_wrapper .gform_fields .gfield .ginput_container {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 3.5em;
  font-size: 16px;
  padding: 0px 1.55em;
  border: 2px solid #164136;
  color: white;
  background: #164136;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 900px) {
  #page .gform_wrapper .gform_fields .gfield .ginput_container input {
    height: 3em;
    padding: 0px 1.3em;
  }
}
#page .gform_wrapper .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: white;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 150px;
  border-radius: 30px;
  padding: 1.25em 1.55em;
  background: none;
  font-size: 16px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border: solid 2px transparent;
  background: #164136;
  color: white;
}
@media screen and (max-width: 1100px) {
  #page .gform_wrapper .gform_fields .gfield .ginput_container textarea {
    border-radius: 15px;
  }
}
@media screen and (max-width: 900px) {
  #page .gform_wrapper .gform_fields .gfield .ginput_container textarea {
    height: 150px;
    padding: 1em 1.3em;
  }
}
#page .gform_wrapper .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: white;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 2px solid #164136;
  height: 3.5em;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 2.55em 0px 1.55em;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 30px;
  position: relative;
  background: #164136 url("/wp-content/themes/foe/images/icons/arrow-down.svg") right 1.5em center no-repeat;
  color: white;
}
@media screen and (max-width: 1100px) {
  #page .gform_wrapper .gform_fields .gfield .ginput_container select {
    border-radius: 15px;
  }
}
#page .gform_wrapper .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  border-color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 600px) {
  #page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
    display: block;
  }
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: #164136 !important;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 30px 5px 30px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 0px;
  display: block;
  border: 3px solid white;
  -webkit-box-shadow: 0px 0px 0px 2px #164136;
  box-shadow: 0px 0px 0px 2px #164136;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: #cfd2d3;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input {
  display: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input:checked + label:after {
  background: #164136 !important;
  -webkit-box-shadow: 0px 0px 0px 3px #164136;
  box-shadow: 0px 0px 0px 3px #164136;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 40px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 7px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 3px;
  display: block;
  -webkit-box-shadow: 0px 0px 0px 3px #164136;
  box-shadow: 0px 0px 0px 3px #164136;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:before {
  content: "";
  position: absolute;
  z-index: 9;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 3px solid white;
  border-right: 0px;
  border-top: 0px;
  width: 14px;
  height: 8px;
  top: 13px;
  left: 7px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #F8F8F5;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
#page .gform_wrapper .gform_footer {
  margin: 1em 0px 0px;
  padding: 0px;
}
#page .gform_wrapper button[type=submit] {
  height: 3em;
  font-size: 16px;
  padding: 0px 1.55em;
  border-radius: 30px;
  color: #211d1e;
  font-weight: 500;
  background: #F9DD75;
  border: none;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
#page .gform_wrapper button[type=submit]:hover {
  background: white;
  color: #211d1e;
}
@media screen and (max-width: 641px) {
  #page .gform_wrapper button[type=submit] {
    line-height: inherit;
    min-height: 0px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.search-form .search-field {
  width: 100%;
  border: none;
  height: 3.5em;
  font-size: 16px;
  padding: 0px 1.55em;
  border-radius: 30px;
  background: none;
  color: white;
  border: 2px solid #164136;
}
@media screen and (max-width: 1100px) {
  .search-form .search-field {
    border-radius: 15px;
  }
}
.search-form .search-field:focus {
  outline: none;
  border-color: white;
}
.search-form .search-submit {
  background: url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  background-size: 17px;
  padding: 0px;
  width: 4rem;
  border: none;
  font-size: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.search-form .search-submit:hover {
  opacity: 0.7;
  background: url("/wp-content/themes/foe/images/shell/search.svg") center center no-repeat;
  background-size: 17px;
}

input.ajax-keyword {
  background: url("/wp-content/themes/foe/images/shell/search.svg") right 1.5em 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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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(17, 48, 60, 0.45);
  border-top: 4px solid #11303C;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}/*# sourceMappingURL=styles.css.map */