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

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

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

e.g.
input, 
textarea { 
    @include placeholder {
        color: #333333;
    }
}
*/
/*
Animations
*/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -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;
}

p strong {
  font-weight: 600;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

figure {
  margin: 2em 0px;
}

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

pre {
  overflow: auto;
}

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

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

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

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

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

body {
  background: #fff;
}

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

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

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

textarea {
  vertical-align: middle;
}

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

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

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

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: #e30000;
}

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

a:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

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

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

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

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

/*
Fonts Styling

@font-face imports included here along with heading and button styles.
*/
@font-face {
  font-family: "Vogun";
  font-weight: 600;
  src: local(""), url("../fonts/Vogun-Medium.woff2") format("woff2"), url("../fonts/Vogun-Medium.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 400;
  src: local(""), url("../fonts/HelveticaNeue.woff2") format("woff2"), url("../fonts/HelveticaNeue.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 500;
  src: local(""), url("../fonts/HelveticaNeue-Medium.woff2") format("woff2"), url("../fonts/HelveticaNeue-Medium.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 600;
  src: local(""), url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeue-Bold.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 700;
  src: local(""), url("../fonts/HelveticaNeue-CondensedBold.woff2") format("woff2"), url("../fonts/HelveticaNeue-CondensedBold.woff") format("woff");
}
@font-face {
  font-family: "Helvetica Neue";
  font-weight: 900;
  src: local(""), url("../fonts/Helvetica-UltraCompressed.woff2") format("woff2"), url("../fonts/Helvetica-UltraCompressed.woff") format("woff");
}
/*
GLOBALS
*/
body {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-display: swap;
  font-size: clamp(1rem, 0.6429rem + 0.9524vw, 1.375rem);
  line-height: 1.3;
  font-weight: 400;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #e30000;
  transition: color 0.2s ease-out;
}
a:hover {
  color: #b00000;
}

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

/*
HEADINGS
*/
h1,
.primary-heading,
.style-h1 {
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  font-size: clamp(4rem, -2.0714rem + 16.1905vw, 12.8rem);
  line-height: 1.2;
  margin: 0.4rem 0px;
  display: block;
  text-transform: lowercase;
  color: #e30000;
  overflow: hidden;
}

h2,
.secondary-heading,
.style-h2 {
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  font-size: clamp(2.5rem, 0.7143rem + 4.7619vw, 5.1rem);
  line-height: 0.9;
  margin: 0.4em 0px;
  display: block;
  text-transform: lowercase;
}

h3,
.small-heading {
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  font-size: clamp(1.5rem, 0.3rem + 3.2vw, 3.5rem);
  line-height: 1.2;
  margin: 0 0px 0.2em;
  display: block;
  text-transform: lowercase;
}

h4,
.sub-heading {
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  margin: 0.2em 0px;
  line-height: 1.2;
  letter-spacing: 1px;
  font-size: clamp(1.125rem, 0.25rem + 1.5vw, 2rem);
}

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

.style-h5 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  opacity: 1;
  margin-bottom: 1.5em;
}

h1, .footer-text-intro h2 {
  opacity: 0;
}

.line-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-bottom: -0.1em; /* Adjust this value to taste */
}

.split-word {
  display: inline-block;
  position: relative;
}

/*
LINKS
*/
.foe-link {
  display: inline-block;
  align-items: center;
  position: relative;
  background-size: 11px;
  padding: 0.5em 1em 0.5em 0px;
  cursor: pointer;
  font-size: clamp(1rem, 0.625rem + 0.5vw, 1.125rem);
  font-weight: 600;
  transition: color 0.2s ease-out;
}
.foe-link span {
  display: block;
}
.foe-link .arrow {
  position: absolute;
  right: -0.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
}
.foe-link .arrow svg {
  width: 1rem;
  height: 1rem;
}
.foe-link .arrow svg path {
  fill: white;
  transition: fill 0.3s ease-out;
}
.foe-link:hover {
  color: #F1E9DB;
}
.foe-link:hover .arrow {
  transform: translateX(0.25em);
}
.foe-link:hover .arrow svg path {
  fill: #F1E9DB;
}

.foe-button {
  display: inline-block;
  font-size: clamp(1.125rem, 0rem + 1.5vw, 1.5rem);
  padding: 0.9em 2em;
  text-transform: lowercase;
  line-height: 0.9;
  background: #e30000;
  color: white;
  border-radius: 1000px;
  font-weight: 600;
  margin: 0px 1em 0em 0px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.foe-button:hover {
  background: #4d4c4b;
  color: white;
  transform: scale(1.05);
}
@media screen and (max-width: 600px) {
  .foe-button {
    font-size: 1rem;
    padding: 1em 1.5em;
  }
}

h1, .work-hero h1, .work-hero .style-h1 {
  opacity: 0;
}

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

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

#header {
  background: transparent;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (max-width: 900px) {
  #header {
    padding: 0;
  }
}
#header .main-nav {
  margin-left: auto;
}
#header .header-button {
  margin: 0;
}
#header::after {
  pointer-events: none;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f1e9db;
  z-index: -1;
  transition: all 0.3s ease-out;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
}
#header.scrolled::after {
  opacity: 1;
}
#header.scrolled #header_nav li > a:not(.sub-menu a):not(.children a) {
  color: #4d4c4b;
}
#header.scrolled .menu-item-has-children > a span {
  background: url("/wp-content/themes/foe/images/shell/arrow-down-dark.svg") center center no-repeat !important;
}
#header.scrolled .nav-toggle span {
  background: #4d4c4b;
}
#header.scroll-down {
  transform: translateY(-100%);
}
#header.open::after {
  opacity: 0;
}
#header.open .site-branding {
  transform: translateX(-100%) !important;
}
#header.dark a {
  color: #4d4c4b;
}
#header.dark .nav-toggle span {
  background: #4d4c4b;
}
#header.dark .menu-item-has-children > a span {
  background: url("/wp-content/themes/foe/images/shell/arrow-down-dark.svg") center center no-repeat !important;
}

/*
Adding top padding to offset fixed header. 
For transparent headers bonus padding should be moved into hero/first block.
*/
.site-branding {
  line-height: 0;
  font-size: 0;
  transition: transform 0.3s ease-out;
}
.site-branding .site-logo {
  height: 60px;
}
@media screen and (max-width: 900px) {
  .site-branding .site-logo {
    height: 50px;
    padding: 10px 20px;
  }
}

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

#header_nav {
  display: flex;
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}
#header_nav > li:last-child {
  padding-right: 0;
}
#header_nav > li:last-child a {
  padding-right: 0;
}
#header_nav > li.current-menu-item > a::after {
  transform: scaleX(1);
  opacity: 0.2;
}
#header_nav > li.current-menu-item:hover > a::after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
  background: #e30000;
}
#header_nav > li.menu-item-has-children > a {
  position: relative;
  padding-right: 1em;
  display: flex;
  align-items: center;
}
#header_nav > li.menu-item-has-children > a span {
  background: #e30000;
  display: block;
  opacity: 1;
  margin: auto;
  position: absolute;
  right: 0;
  height: 20px;
  width: 20px;
  z-index: 2;
  background: url("/wp-content/themes/foe/images/shell/arrow-down.svg") center center no-repeat;
  transform-origin: 50% 50%;
  transition: all 0.3s ease-out;
}
#header_nav > li.menu-item-has-children > a.open span {
  transform: rotate(180deg);
}
#header_nav > li::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#header_nav li {
  position: relative;
  padding: 0 0.5em;
}
#header_nav li:hover > a::after {
  transform: scaleX(1);
  transform-origin: 0% 50%;
}
#header_nav li a {
  color: white;
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  font-size: clamp(1.25rem, 1.0227rem + 0.6061vw, 1.75rem);
  text-transform: lowercase;
  text-decoration: none;
  padding: 0.5em 0;
  line-height: 0.8;
  display: inline-block;
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease-out;
}
#header_nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #e30000;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}
@media screen and (max-width: 900px) {
  #header_nav li a {
    display: block;
    width: 100%;
  }
}
#header_nav li .sub-menu,
#header_nav li .children {
  position: absolute;
  left: 0;
  margin: auto;
  width: 300px;
  top: 54px;
  background: #4d4c4b;
  padding: 1em 0;
  text-align: left;
  border-radius: 3px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  clip-path: inset(0% 0% 100% 0%);
  transform: translateY(20%);
  transition: all 0.5s cubic-bezier(0.66, 0, 0.34, 1);
  max-height: 375px;
  overflow-y: scroll;
}
#header_nav li .sub-menu::-webkit-scrollbar,
#header_nav li .children::-webkit-scrollbar {
  width: 10px;
  scroll-behavior: smooth !important;
  background: rgba(77, 76, 75, 0.5);
  border-radius: 10px !important;
}
#header_nav li .sub-menu::-webkit-scrollbar-thumb,
#header_nav li .children::-webkit-scrollbar-thumb {
  background: #77787b;
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
#header_nav li .sub-menu::-webkit-scrollbar-track,
#header_nav li .children::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
}
#header_nav li .sub-menu li,
#header_nav li .children li {
  background: #4d4c4b;
  display: block;
  float: none;
  transform: translateY(100%);
  transition: all 0.7s cubic-bezier(0.66, 0, 0.34, 1);
}
#header_nav li .sub-menu li:nth-child(1),
#header_nav li .children li:nth-child(1) {
  transition-delay: 0s;
}
#header_nav li .sub-menu li:nth-child(2),
#header_nav li .children li:nth-child(2) {
  transition-delay: 0.05s;
}
#header_nav li .sub-menu li:nth-child(3),
#header_nav li .children li:nth-child(3) {
  transition-delay: 0.1s;
}
#header_nav li .sub-menu li:nth-child(4),
#header_nav li .children li:nth-child(4) {
  transition-delay: 0.15s;
}
#header_nav li .sub-menu li:nth-child(5),
#header_nav li .children li:nth-child(5) {
  transition-delay: 0.2s;
}
#header_nav li .sub-menu li:nth-child(6),
#header_nav li .children li:nth-child(6) {
  transition-delay: 0.25s;
}
#header_nav li .sub-menu li:nth-child(7),
#header_nav li .children li:nth-child(7) {
  transition-delay: 0.3s;
}
#header_nav li .sub-menu li:nth-child(8),
#header_nav li .children li:nth-child(8) {
  transition-delay: 0.35s;
}
#header_nav li .sub-menu li:nth-child(9),
#header_nav li .children li:nth-child(9) {
  transition-delay: 0.4s;
}
#header_nav li .sub-menu li:nth-child(10),
#header_nav li .children li:nth-child(10) {
  transition-delay: 0.45s;
}
#header_nav li .sub-menu li:nth-child(11),
#header_nav li .children li:nth-child(11) {
  transition-delay: 0.5s;
}
#header_nav li .sub-menu li:nth-child(12),
#header_nav li .children li:nth-child(12) {
  transition-delay: 0.55s;
}
#header_nav li .sub-menu li:nth-child(13),
#header_nav li .children li:nth-child(13) {
  transition-delay: 0.6s;
}
#header_nav li .sub-menu li:nth-child(14),
#header_nav li .children li:nth-child(14) {
  transition-delay: 0.65s;
}
#header_nav li .sub-menu li:nth-child(15),
#header_nav li .children li:nth-child(15) {
  transition-delay: 0.7s;
}
#header_nav li .sub-menu li:nth-child(16),
#header_nav li .children li:nth-child(16) {
  transition-delay: 0.75s;
}
#header_nav li .sub-menu li:nth-child(17),
#header_nav li .children li:nth-child(17) {
  transition-delay: 0.8s;
}
#header_nav li .sub-menu li:nth-child(18),
#header_nav li .children li:nth-child(18) {
  transition-delay: 0.85s;
}
#header_nav li .sub-menu li:nth-child(19),
#header_nav li .children li:nth-child(19) {
  transition-delay: 0.9s;
}
#header_nav li .sub-menu li:nth-child(20),
#header_nav li .children li:nth-child(20) {
  transition-delay: 0.95s;
}
#header_nav li .sub-menu li a,
#header_nav li .children li a {
  display: block;
  padding: 0.6rem 1rem;
  color: white;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 1.8rem);
}
#header_nav li .sub-menu li a:hover,
#header_nav li .children li a:hover {
  color: #e30000;
}
#header_nav li .sub-menu li a::after,
#header_nav li .children li a::after {
  display: none;
  content: unset;
}
#header_nav li .sub-menu.active,
#header_nav li .children.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  transform: translateY(0%);
}
#header_nav li .sub-menu.active li,
#header_nav li .children.active li {
  opacity: 1;
  transform: translateY(0%);
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}

.error404 #header a,
.category #header a {
  color: #e30000;
}
.error404 #header .menu-item-has-children > a::before,
.category #header .menu-item-has-children > a::before {
  background: url("/wp-content/themes/foe/images/shell/arrow-down-dark.svg") center center no-repeat !important;
}
.error404 #header .nav-toggle span,
.category #header .nav-toggle span {
  background: #4d4c4b;
}

.mobile-nav {
  background: #4d4c4b;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  height: 100dvh;
  padding: 3em 1em 3em 2em;
  opacity: 1;
  transition: all 0.3s;
  transform: translateX(100%);
  pointer-events: none;
  display: none;
}
@media screen and (max-width: 900px) {
  .mobile-nav {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .mobile-nav {
    width: 75%;
  }
}
.mobile-nav .mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  overflow-y: scroll;
  opacity: 1;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
}
.mobile-nav .mobile-nav-inner .mobile-social {
  margin-top: 1em;
}
.mobile-nav .mobile-contact {
  color: #F1E9DB;
}
.mobile-nav .mobile-contact a {
  color: #F1E9DB;
}
.mobile-nav .mobile-contact a:hover {
  color: #e30000;
}
.mobile-nav .mobile-contact .address {
  margin-top: 1em;
}
.mobile-nav.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}

#mobile_nav {
  clear: both;
  padding: 1em 0;
  list-style-type: none;
}
#mobile_nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
#mobile_nav ul > li.current_page_item {
  position: relative;
}
#mobile_nav ul > li.current_page_item::before {
  content: "";
  transform: scaleX(1);
  transform-origin: 0% 50%;
  height: 2px;
  background: #e30000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - 2em);
}
#mobile_nav li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#mobile_nav li.menu-item-has-children > a {
  position: relative;
}
#mobile_nav li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: -1.125em;
  top: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background: url("/wp-content/themes/foe/images/shell/arrow-down.svg") center center no-repeat;
  background-size: 11px;
  transition: transform 0.3s ease-out;
}
#mobile_nav li.menu-item-has-children.open > a::after {
  transform: rotate(-180deg);
}
#mobile_nav li a {
  display: inline-block;
  text-decoration: none;
  padding: 0.25em 0;
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  font-size: clamp(1.8rem, 1.0227rem + 0.6061vw, 1.75rem);
  font-weight: 600;
  text-transform: lowercase;
  color: #F1E9DB;
  transition: background 0.2s ease-out;
}
#mobile_nav li .sub-menu {
  display: none;
  padding-left: 1em;
}
#mobile_nav li .sub-menu a {
  padding: 0.25em 0;
  font-size: clamp(1.3rem, 0.8rem + 0.6061vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}

.nav-toggle {
  padding: 10px;
  border: none;
  border-radius: 50%;
  display: none;
  background: transparent !important;
  transition: background 0.2s ease-out;
}
@media screen and (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
}
.nav-toggle span {
  display: block;
  background: #F1E9DB;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  transform-origin: 50% 50%;
  border-radius: 2px;
  transition: all 0.2s ease-out;
}
.nav-toggle.open span {
  background: #F1E9DB !important;
}
.nav-toggle.open .one {
  transform: translateY(6px) rotate(135deg);
}
.nav-toggle.open .two {
  transform: scale(0);
}
.nav-toggle.open .three {
  transform: translateY(-6px) rotate(-135deg);
}

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

/*
Scroll Wrap
*/
.scroll-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 900px) {
  .scroll-wrap::before {
    display: block;
  }
}
.scroll-wrap.open {
  transform: translateX(-50vw);
}
.scroll-wrap.open::before {
  opacity: 1;
  transform: translateX(1px);
}
@media screen and (max-width: 600px) {
  .scroll-wrap.open {
    transform: translateX(-75%);
  }
}

/*
Footer and Navigation Styling
*/
.newsletter-section {
  color: #F1E9DB;
}
.newsletter-section .inner {
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .newsletter-section .inner h3,
  .newsletter-section .inner p {
    padding-right: 15%;
  }
}
@media screen and (max-width: 600px) {
  .newsletter-section .inner h3 {
    margin-bottom: 0.8em;
  }
}

#newsletter .gform_wrapper {
  position: relative;
  max-width: 46em;
}
#newsletter .gform_wrapper .gform_fields {
  display: flex;
  gap: 0.5em;
}
#newsletter .gform_wrapper .gfield {
  flex: 1 1 100%;
  display: block;
}
@media screen and (max-width: 800px) {
  #newsletter .gform_wrapper .gfield {
    flex: 1 1 70%;
  }
}
@media screen and (max-width: 600px) {
  #newsletter .gform_wrapper .gfield {
    flex: 1 1 50%;
  }
}
#newsletter .gform_wrapper .gfield input {
  margin: 0;
  border-color: #4d4c4b;
}
#newsletter .gform_wrapper .gfield input[type=email] {
  background: #4d4c4b;
  border: none;
  border-radius: 0;
  border: none;
  color: #F1E9DB;
  font-size: 1em;
}
#newsletter .gform_wrapper .gfield input[type=email]::-moz-placeholder {
  color: #F1E9DB;
  opacity: 0.5 !important;
}
#newsletter .gform_wrapper .gfield input[type=email]::placeholder {
  color: #F1E9DB;
  opacity: 0.5 !important;
}
#newsletter .gform_wrapper .gfield input[type=email]:focus {
  border-bottom: 1px solid #e30000;
}
#newsletter .gform_wrapper .gfield--type-submit {
  flex: 1 1 auto;
}
@media screen and (max-width: 800px) {
  #newsletter .gform_wrapper .gfield--type-submit {
    flex: 1 1 30%;
    min-height: unset !important;
  }
}
#newsletter .gform_wrapper .gform-button {
  border: none;
  display: block;
  outline: none;
  padding: 0.9em 1.8em;
}
@media screen and (max-width: 800px) {
  #newsletter .gform_wrapper .gform-button {
    font-size: 90%;
    padding: 0.9em 1.8em !important;
  }
}
@media screen and (max-width: 600px) {
  #newsletter .gform_wrapper .gform-button {
    font-size: 1rem;
    padding: 1em 1.5em !important;
  }
}
#newsletter .gform_wrapper .gform-button:hover {
  background: #F1E9DB;
  color: #e30000;
}
#newsletter .gform_wrapper .gform_footer {
  margin: 0;
}

.site-footer {
  background: #e30000;
  color: #F1E9DB;
  padding: 5% 5% 1.5em;
  font-size: 1.3rem;
}
@media screen and (max-width: 800px) {
  .site-footer {
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding: 8% 5% 1.5em;
  }
}
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-top {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-top {
    flex-direction: column;
  }
}
.site-footer .footer-col {
  flex: 1 1 33.33%;
  border-right: 1px solid #F1E9DB;
  padding: 0 5%;
  justify-content: flex-start;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-col {
    border: none;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-col {
    padding: 0;
  }
}
.site-footer .footer-col:last-child {
  border: none;
}
.site-footer .footer-col:first-child {
  padding-left: 0;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-brand-col {
    width: 100%;
  }
}
.site-footer .footer-brand-col .footer-logo {
  height: 131px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-brand-col .footer-logo {
    max-height: 100px;
  }
}
@media screen and (max-width: 800px) {
  .site-footer .footer-brand-col .footer-logo {
    height: 80px;
    width: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-brand-col .footer-logo {
    height: 60px;
  }
}
.site-footer .footer-text-col {
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-text-col {
    padding-left: 1.5%;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-text-col {
    width: 100%;
    padding-left: 0;
    margin-top: 3em;
  }
}
.site-footer .footer-text-col h2 {
  margin-top: 0;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-text-col h2 br {
    display: none;
  }
}
.site-footer .footer-text-col .footer-text-cta {
  margin-top: 3em;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-text-col .footer-text-cta {
    margin-top: 1em;
  }
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-contact-col {
    display: flex;
    justify-content: space-between;
    margin-top: 3em;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-contact-col {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 1.5em;
  }
}
.site-footer .footer-contact-col .address {
  margin-top: 1.5em;
}
.site-footer .footer-contact-col .footer-sub-item {
  margin-top: 1.5em;
}
@media screen and (max-width: 1100px) {
  .site-footer .footer-contact-col .footer-sub-item {
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-contact-col .footer-sub-item {
    flex: 0 0 40%;
    padding-right: 5%;
    margin-top: 1.5em;
  }
}
.site-footer .footer-contact-col .footer-sub-item:first-child {
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-contact-col .footer-contact-item {
    flex: 0 0 100%;
  }
}
.site-footer .footer-contact-col .footer-nav-item #footer_nav {
  list-style: none;
  padding: 0;
}
.site-footer .footer-contact-col .footer-nav-item #footer_nav > li > a {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-contact-col .footer-nav-item #footer_nav > li > a {
    font-size: 1.5rem;
  }
}
.site-footer .footer-contact-col .footer-nav-item #footer_nav .sub-menu {
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact-col .footer-nav-item #footer_nav a {
  color: #F1E9DB;
  opacity: 1;
  padding: 0;
}
.site-footer .footer-bottom {
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  padding-top: 5%;
}
@media screen and (max-width: 800px) {
  .site-footer .footer-bottom {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-bottom {
    padding-top: 2em;
    text-wrap: balance;
    text-align: left;
    font-size: 0.7rem;
  }
}
.site-footer a {
  position: relative;
  color: #F1E9DB;
}
.site-footer a.footer-brand-link::after {
  height: 4px;
  bottom: 0;
  transition: transform 0.4s ease-out;
}
.site-footer a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #F1E9DB;
  transition: transform 0.3s ease-out;
  transform: scaleX(0);
  transform-origin: right;
}
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-footer h5 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 800px) {
  .site-footer h5 {
    font-size: 1.5rem;
  }
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  padding: 0.125em 0;
  line-height: 1.5;
}
.site-footer ul li:first-child {
  padding-top: 0;
}
.site-footer ul li:last-child {
  padding-bottom: 0;
}

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

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

#footer_nav {
  display: flex;
}
@media screen and (max-width: 800px) {
  #footer_nav {
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0px;
  }
}
#footer_nav li {
  position: relative;
}
@media screen and (max-width: 800px) {
  #footer_nav li {
    width: 100%;
  }
}
#footer_nav li a {
  color: #4d4c4b;
  text-decoration: none;
  padding: 10px 25px;
  display: inline-block;
  transition: color 0.2s ease-out;
}
#footer_nav li a:hover {
  color: #e30000;
}
@media screen and (max-width: 800px) {
  #footer_nav li a {
    display: block;
    width: 100%;
    padding: 8px 25px;
  }
}
#footer_nav li .sub-menu li {
  display: block;
}
#footer_nav li .sub-menu li a {
  display: block;
  padding: 8px 25px;
  opacity: 0.5;
}
#footer_nav li .sub-menu li a:hover {
  opacity: 1;
}

/*
Block Styling

General styles for body of website along with block specific styling.
*/
#smooth-wrapper {
  will-change: transform;
  height: 100svh; /* Dynamic viewport height - adapts to Safari's changing bar */
}

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

body.no-scroll {
  overflow: hidden;
}

.block {
  padding: 5% 5%;
}
@media screen and (max-width: 800px) {
  .block {
    padding: 9% 8%;
  }
}
@media screen and (max-width: 600px) {
  .block {
    padding: 12% 5%;
  }
}
.block .inner {
  display: flex;
  flex-wrap: wrap;
}
.block .inner.no-flex {
  display: block;
}
.block.intro-block {
  padding-top: calc(8% + 90px);
}
.block.p-top-none {
  padding-top: 0;
}
.block.p-bottom-none {
  padding-bottom: 0;
}
.block.p-top-small {
  padding-top: 3%;
}
@media screen and (max-width: 800px) {
  .block.p-top-small {
    padding-top: 8%;
  }
}
@media screen and (max-width: 600px) {
  .block.p-top-small {
    padding-top: 12%;
  }
}
.block.p-bottom-small {
  padding-bottom: 3%;
}
@media screen and (max-width: 800px) {
  .block.p-bottom-small {
    padding-bottom: 8%;
  }
}
@media screen and (max-width: 600px) {
  .block.p-bottom-small {
    padding-bottom: 12%;
  }
}
.block.p-top-large {
  padding-top: 8%;
}
@media screen and (max-width: 600px) {
  .block.p-top-large {
    padding-top: 10%;
  }
}
.block.p-bottom-large {
  padding-bottom: 8%;
}
@media screen and (max-width: 600px) {
  .block.p-bottom-large {
    padding-bottom: 10%;
  }
}

.bg-cream {
  background-color: #F1E9DB;
}
.bg-cream h1,
.bg-cream h2,
.bg-cream h3,
.bg-cream h4,
.bg-cream h5,
.bg-cream h6 {
  color: #e30000;
}
.bg-cream .post-list h4 {
  color: white;
}

.bg-white {
  background: white;
}
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
  color: #e30000;
}
.bg-white .post-list h4 {
  color: white;
}

.bg-red {
  background-color: #e30000;
  color: #F1E9DB;
}
.bg-red h1,
.bg-red h2,
.bg-red h3,
.bg-red h4,
.bg-red h5,
.bg-red h6 {
  color: #F1E9DB;
}

.bg-grey {
  background: #383838;
  color: #F1E9DB;
}
.bg-grey h1,
.bg-grey h2,
.bg-grey h3,
.bg-grey h4,
.bg-grey h5,
.bg-grey h6 {
  color: #F1E9DB;
}
.bg-grey .post-list .post .post-text {
  background: rgba(241, 233, 219, 0.8);
}
.bg-grey .post-list .post h4 {
  color: #4d4c4b;
}
.bg-grey .post-list .post .foe-link {
  color: #4d4c4b;
}
.bg-grey .post-list .post .foe-link svg path {
  fill: #4d4c4b;
}
.bg-grey .post-list .post:hover .post-text {
  background: rgba(227, 0, 0, 0.6);
}
.bg-grey .post-list .post:hover h4 {
  color: white;
}
.bg-grey .post-list .post:hover .foe-link {
  color: white;
}
.bg-grey .post-list .post:hover .foe-link svg path {
  fill: white;
}

.rank-math-breadcrumb {
  font-size: 0.85em;
}
@media screen and (max-width: 800px) {
  .rank-math-breadcrumb {
    font-size: 0.75em;
  }
}
.rank-math-breadcrumb p {
  display: flex;
  align-items: center;
}
.rank-math-breadcrumb a,
.rank-math-breadcrumb .last {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.rank-math-breadcrumb .separator {
  padding: 10px 15px;
  background: url("/wp-content/themes/foe/images/shell/arrow.svg") center center no-repeat;
  background-size: 8px;
  font-size: 0px;
}
@media screen and (max-width: 800px) {
  .rank-math-breadcrumb .separator {
    padding: 7px 12px;
  }
}

.pagination {
  flex: 0 0 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pagination span,
.pagination a {
  display: inline-block;
  padding: 10px 15px;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #e30000;
  margin: 0px 2px;
}
.pagination a {
  border: 1px solid rgba(227, 0, 0, 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid #e30000;
  background: #e30000;
  color: white;
}
.pagination a.next {
  padding-right: 30px;
  background-image: url("/wp-content/themes/foe/images/shell/arrow.svg") right 10px center no-repeat;
  background-size: 11px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .hero {
    min-height: 75svh;
  }
}
.hero:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #000000;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0.3;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .hero:after {
    opacity: 0.4;
  }
}
.hero .hero-button-container {
  position: absolute;
  z-index: 2;
  bottom: 4em;
  right: 2em;
}
@media screen and (max-width: 800px) {
  .hero .hero-button-container {
    left: 0;
    right: 0;
    bottom: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.hero .hero-button-container .button-container {
  display: flex;
  gap: 0.5em;
}
.hero .hero-button-container .foe-button {
  margin: 0;
}
.hero .hero-button-container .foe-button:nth-child(2) {
  background: #383838;
}
.hero .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 3;
}
.hero .hero-content {
  text-align: center;
}
.hero .hero-bg {
  position: absolute;
  top: -30px;
  left: 0px;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
}
.hero .hero-video {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 2;
}
.hero .hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -100;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero.has-video {
  position: relative;
}
.hero.has-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero.has-video::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #000000;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0.3;
  z-index: 3;
}
@media screen and (max-width: 800px) {
  .hero.has-video::before {
    opacity: 0.4;
  }
}
.hero.has-video .inner {
  z-index: 5;
}
.hero.has-video .hero-content h1,
.hero.has-video .image-container {
  display: none;
}
.hero.work-hero {
  min-height: 100vh;
  height: unset;
  position: relative;
  display: block;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background: #F1E9DB;
  will-change: min-height;
}
.hero.work-hero.use-lines {
  background-color: #F1E9DB;
}
.hero.work-hero.use-lines h1,
.hero.work-hero.use-lines h2,
.hero.work-hero.use-lines h3,
.hero.work-hero.use-lines h4,
.hero.work-hero.use-lines h5,
.hero.work-hero.use-lines h6 {
  color: #e30000;
}
.hero.work-hero.use-lines::after {
  display: none;
}
.hero.work-hero::after {
  display: none;
}
.hero.work-hero .inner {
  height: auto;
}
.hero.work-hero .lines {
  position: absolute;
  left: -2%;
  width: 100%;
  height: 100%;
  bottom: 15vw;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.8);
}
@media screen and (max-width: 600px) {
  .hero.work-hero .lines {
    bottom: 8vw;
  }
}
.hero.work-hero .lines svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.hero.work-hero .lines .layer {
  max-width: 100%;
}
.hero.work-hero .image-container {
  position: absolute;
  clip-path: inset(100% 0% 0% 0%);
  overflow: hidden;
  will-change: clip-path;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero.work-hero .image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero.work-hero .work-hero-content {
  max-width: 40em;
  margin-left: 0;
  position: relative;
  z-index: 3;
  clip-path: inset(0% 100% 0% 0%);
  padding-top: calc(8% + 90px);
}
.hero.work-hero h1 {
  color: white;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.125rem, 0.275rem + 7.6vw, 7.875rem);
}

.aperture-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 4;
}
.aperture-effect .aperture-inner {
  height: auto;
  margin-right: 20%;
  position: relative;
}
.aperture-effect .aperture-content {
  max-width: 40em;
  margin-left: 0;
  position: relative;
  z-index: 5;
}
.aperture-effect h1,
.aperture-effect .style-h1 {
  color: #e30000 !important;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(3.125rem, 0.275rem + 7.6vw, 7.875rem);
}
.aperture-effect .red-layer {
  background: #e30000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}
.aperture-effect .grey-layer {
  background: #4d4c4b;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}
.aperture-effect .white-layer {
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  clip-path: circle(0% at 50% 50%);
  will-change: clip-path;
}

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

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.text-block + section.recent-blogs {
  padding-top: 3% !important;
}
.text-block .text-content {
  margin: 0 auto;
  text-align: center;
}
.text-block .text-content .text-body {
  margin: 0 auto;
  margin-top: 1em;
  text-wrap: balance;
}
.text-block .button-container {
  padding-top: 1em;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}

.cta {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .cta h3 {
    font-size: 2.5rem;
    margin-bottom: 0.4em;
  }
}
.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: 800px;
}
.cta .button-container .foe-button {
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.cta .cta-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: -2;
}

.content-image-block.layout-ege-to-edge {
  padding: 0;
}
.content-image-block.layout-ege-to-edge.hero-block .content-image {
  height: calc(100svh - 90px);
}
.content-image-block.layout-ege-to-edge .inner {
  align-items: unset;
}
.content-image-block.layout-ege-to-edge .content-text {
  padding: 5%;
}
.content-image-block.layout-ege-to-edge .content-text .content-text-inner {
  max-width: 34em;
  margin: 0 auto;
}
.content-image-block.layout-ege-to-edge .content-text .content-text-inner p {
  text-wrap: stable;
  text-wrap: pretty;
  max-width: 55ch;
}
.content-image-block.layout-ege-to-edge .content-image {
  padding: 0;
  top: 0;
  overflow: hidden;
  position: relative;
}
.content-image-block.layout-ege-to-edge .content-image img {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
}
.content-image-block.layout-ege-to-edge.ori-right .content-text {
  padding: 5%;
}
.content-image-block.layout-ege-to-edge.ori-right .content-image {
  padding: 0;
}
.content-image-block.ori-right .content-text {
  order: 2;
  padding: 0px 0px 0px 4%;
}
.content-image-block.ori-right .content-image {
  padding: 0px 4% 0px 0px;
}
.content-image-block.bg-cream h1,
.content-image-block.bg-cream h2,
.content-image-block.bg-cream h3,
.content-image-block.bg-cream h4,
.content-image-block.bg-cream h5,
.content-image-block.bg-cream h6 {
  color: #4d4c4b;
}
.content-image-block .inner {
  align-items: center;
}
.content-image-block .content-text {
  flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-text {
    flex: 0 0 100%;
    padding: 0px;
  }
}
.content-image-block .content-image {
  flex: 0 0 50%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-image {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}
.content-image-block h1,
.content-image-block h2,
.content-image-block h3 {
  text-transform: unset;
}
.content-image-block h1,
.content-image-block h2 {
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .content-image-block h1 + h3,
  .content-image-block h2 + h3 {
    margin-top: 0;
  }
}
.content-image-block h3 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
}
.content-image-block h1 + p,
.content-image-block h2 + p,
.content-image-block h3 + p {
  margin-top: 1em;
}

.contact-block {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-block .inner {
  position: relative;
  z-index: 2;
}
.contact-block .contact-info {
  padding-top: 2em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
@media screen and (max-width: 600px) {
  .contact-block .contact-info {
    display: block;
    padding-left: 0;
  }
}
.contact-block .contact-info li {
  display: block;
  border-right: 1px solid #4d4c4b;
  padding: 0 1em;
}
@media screen and (max-width: 600px) {
  .contact-block .contact-info li {
    padding: 0;
    border: none;
    margin-bottom: 0.5em;
  }
}
.contact-block .contact-info li br {
  display: none;
}
.contact-block .contact-info li:first-child {
  padding-left: 0;
}
.contact-block .contact-info li:last-child {
  padding-right: 0;
  border-right: none;
}
@media screen and (max-width: 600px) {
  .contact-block .contact-info .address {
    text-wrap: balance;
    max-width: 15em;
    margin: 0 auto;
  }
}
.contact-block .contact-info a {
  color: #4d4c4b;
  text-decoration-color: transparent !important;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  transition: all 0.3s ease-out;
}
.contact-block .contact-info a:hover {
  text-decoration-color: #4d4c4b !important;
}
.contact-block .contact-form {
  max-width: 820px;
  padding-top: 5%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .contact-block .contact-form {
    flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}
.contact-block .graphic-wrapper {
  position: absolute;
  bottom: -5%;
  top: unset;
  right: -5%;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  max-width: 25vw;
  height: 300px;
}
@media screen and (max-width: 600px) {
  .contact-block .graphic-wrapper {
    max-width: 50vw;
    bottom: -20%;
    right: -10%;
    opacity: 0.2;
  }
}
.contact-block .graphic-wrapper .graphic-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.contact-block .graphic-wrapper .graphic-inner .layer svg {
  width: 100%;
  height: 100%;
}

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

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

.blog {
  overflow: hidden;
}
.blog .inner {
  position: relative;
  justify-content: center;
  display: block;
}
.blog .inner .blog-head {
  margin: auto;
  text-align: center;
  flex: 0 0 100%;
  display: block;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  position: relative;
  z-index: 9;
}
.blog .inner .blog-head h2 {
  color: #4d4c4b;
}
.blog .inner .blog-head .filters {
  display: flex;
  align-items: center;
}
.blog .inner .blog-head .filters .total-results {
  margin-right: 1.5em;
  white-space: nowrap;
  font-size: 0.9em;
}
.blog .inner .blog-head .filters select {
  margin-right: 1em;
}
.blog .inner .blog-head .filters input[type=text] {
  margin-right: 1em;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.blog .inner .blog-head .filters input[type=text]:focus {
  outline: none;
  border-color: #e30000;
}
.blog .inner .no-post {
  text-align: center;
  padding: 1.5em 0px;
  width: 100%;
}
.blog .inner .ajax-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(241, 233, 219, 0.8);
  z-index: 5;
  display: none;
  justify-content: center;
  align-items: center;
}
.blog .inner .ajax-spinner .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(227, 0, 0, 0.3);
  border-top: 4px solid #e30000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.blog .load {
  text-align: center;
  order: 9999;
  margin-top: 1.5em;
}
.blog .load .foe-button {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

.post-list {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  gap: 1em;
}
@media screen and (max-width: 900px) {
  .post-list {
    gap: 0.5em;
  }
}
@media screen and (max-width: 600px) {
  .post-list {
    display: block;
  }
}
.post-list .post {
  flex: 0 0 calc(33.33333% - 1em);
  margin-bottom: 1rem;
  background: #e30000;
  position: relative;
  padding-top: 27%;
}
@media screen and (max-width: 900px) {
  .post-list .post {
    flex: 0 0 calc(50% - 0.5em);
    padding-top: 35%;
  }
}
@media screen and (max-width: 600px) {
  .post-list .post {
    padding-top: 70%;
  }
}
.post-list .post .category {
  display: none;
}
.post-list .post .post-img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: opacity 0.3s ease-out;
}
.post-list .post .post-img:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #e30000;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.post-list .post .post-img .category {
  display: none;
  background: #e30000;
  color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 0.75em;
}
.post-list .post .post-text {
  padding: 1em;
  position: relative;
  z-index: 2;
  background: rgba(77, 76, 75, 0.65);
  color: white;
  transition: background 0.3s ease-out;
  height: 100%;
  text-transform: lowercase;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.post-list .post .post-text a {
  color: white;
}
.post-list .post .post-text h4 {
  margin-top: 0;
  transition: color 0.3s ease-out;
  text-wrap: balance;
  word-spacing: 0.15em;
  min-width: 20ch;
  max-width: 10ch;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .post-list .post .post-text h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media screen and (max-width: 600px) {
  .post-list .post .post-text h4 {
    min-width: unset;
    max-width: unset;
  }
}
.post-list .post .post-text .foe-link {
  text-transform: capitalize;
}
.post-list .post .post-text .post-date,
.post-list .post .post-text .excerpt {
  display: none;
}

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

.wp-block-image .alignleft {
  margin: 0.5em 2em 1.5em 0px;
}
@media screen and (max-width: 768px) {
  .wp-block-image .alignleft {
    margin: 0;
    margin-bottom: 1em;
  }
}
.wp-block-image .alignright {
  margin: 0.5em 0px 1.5em 2em;
}
@media screen and (max-width: 768px) {
  .wp-block-image .alignright {
    margin: 0;
    margin-bottom: 1em;
  }
}

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

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

.faq-block .inner {
  display: block;
}
.faq-block .inner .faq-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.faq-block .inner .faqs {
  padding: 5% 0px 0px 0px;
}
.faq-block .inner .faq {
  border-bottom: 2px solid #e30000;
  transition: all 0.4s ease-out;
  margin-bottom: 1em;
}
@media screen and (max-width: 700px) {
  .faq-block .inner .faq {
    margin-bottom: 0.6rem;
  }
}
.faq-block .inner .faq .question {
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1.7em;
  font-weight: bold;
  line-height: 1.15;
  padding: 1.5rem 3rem 2rem 0rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1500px) {
  .faq-block .inner .faq .question {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 700px) {
  .faq-block .inner .faq .question {
    font-size: 1.3em;
    line-height: 1.2;
    padding: 1.3rem 4rem 1.3rem 0rem;
  }
}
.faq-block .inner .faq .question.open .status:before {
  transform: rotate(0deg);
}
.faq-block .inner .faq .question.open .status:after {
  transform: rotate(0deg);
}
.faq-block .inner .faq .question .status {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 36px;
  display: block;
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-out;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .question .status {
    transform: scale(0.7);
    transform-origin: 100% 50%;
  }
}
.faq-block .inner .faq .question .status:after, .faq-block .inner .faq .question .status:before {
  content: "";
  width: 24px;
  height: 4px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  display: block;
  background: #e30000;
  transform-origin: 50% 50%;
  transform: rotate(-180deg);
  transition: transform 0.5s ease-out;
}
.faq-block .inner .faq .question .status:before {
  transform: rotate(-90deg);
}
.faq-block .inner .faq .answer {
  padding: 2.9rem 3.5rem;
  display: none;
  background: rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
  font-size: 18px;
}
.faq-block .inner .faq .answer .answer-inner {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .answer {
    padding: 0rem 5rem 1.5rem 0rem;
  }
}
.faq-block .inner .faq .answer p:last-child {
  margin-bottom: 0px;
}

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

#container .controls {
  margin-top: 1em;
  margin-bottom: 1em;
}
#container .controls .arrows {
  display: flex;
  align-items: center;
}
#container .controls .arrows .button-prev {
  margin-right: 0.5em;
}
#container .controls .slider-pagination {
  width: auto;
}
#container .controls .slider-pagination .swiper-pagination-bullet {
  border: 2px solid rgba(77, 76, 75, 0.2);
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: background 0.3s ease-out, border 0.3s ease-out;
}
#container .controls .slider-pagination .swiper-pagination-bullet:hover {
  border-color: #4d4c4b;
}
#container .controls .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #e30000;
}
#container .controls .button-next,
#container .controls .button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding-left: 3px;
  cursor: pointer;
  border: 2px solid rgba(77, 76, 75, 0.2);
  transition: border 0.3s ease-out;
}
#container .controls .button-next:hover,
#container .controls .button-prev:hover {
  border: 2px solid #4d4c4b;
}
#container .controls .button-next:hover svg,
#container .controls .button-prev:hover svg {
  transform: scale(0.9);
}
#container .controls .button-next svg,
#container .controls .button-prev svg {
  width: 13px;
  height: 13px;
  transition: transform 0.3s ease-out;
}
#container .controls .button-prev {
  padding-left: 0px;
  padding-right: 3px;
}

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

.content-graphic {
  overflow: hidden;
  padding: 0;
}
@media screen and (max-width: 800px) {
  .content-graphic br {
    display: none;
  }
}
.content-graphic h2 + h3 {
  margin-top: -1em;
}
.content-graphic h1 + p,
.content-graphic h2 + p,
.content-graphic h3 + p {
  margin-top: 1.5em;
}
.content-graphic .sub-heading {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.content-graphic .sub-heading + div.text-body {
  margin-top: 1.5em;
}
.content-graphic .inner {
  position: relative;
  flex-wrap: nowrap;
}
@media screen and (max-width: 800px) {
  .content-graphic .inner {
    display: block;
  }
}
.content-graphic .content-col {
  flex: 0 0 60%;
  padding: 5% 5% 8%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .content-graphic .content-col {
    flex: 0 0 100%;
    padding-right: 0;
  }
}
.content-graphic .content-col .content {
  max-width: 40em;
}
.content-graphic .content-col p {
  text-wrap: balance;
}
.content-graphic .graphic-col {
  flex: 0 0 40%;
  position: relative;
}
.content-graphic .graphic-wrapper {
  position: absolute;
  z-index: 2;
  bottom: -45%;
  right: -20%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .content-graphic .graphic-wrapper {
    opacity: 0.3;
  }
}
@media screen and (max-width: 800px) {
  .content-graphic .graphic-wrapper.graphic-w {
    right: -30%;
    bottom: -60%;
  }
}
.content-graphic .graphic-wrapper.graphic-a {
  max-width: 25vw;
  right: -10%;
}
.content-graphic .graphic-wrapper.graphic-lines {
  max-width: 100%;
  right: 10%;
  top: 0;
  bottom: 0;
  opacity: 0.2;
}
@media screen and (max-width: 800px) {
  .content-graphic .graphic-wrapper.graphic-lines {
    right: -5%;
    max-width: 40vw;
  }
}
.content-graphic .graphic-wrapper.graphic-lines .layer {
  position: absolute;
  right: 0;
  width: 1px;
}
.content-graphic .graphic-wrapper.graphic-lines .layer .line {
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 200%;
  transform: rotate(18deg);
  background: #e30000;
}
.content-graphic .graphic-wrapper.graphic-lines .layer svg {
  width: 250%;
  height: 250%;
}
@media screen and (max-width: 800px) {
  .content-graphic .graphic-wrapper.graphic-lines .layer svg {
    width: 400%;
    height: 400%;
  }
}
.content-graphic .graphic-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.content-graphic .layer {
  max-width: 90%;
}

.layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  max-width: 70%;
}
.layer:first-child {
  opacity: 1 !important;
}
.layer svg {
  width: 100%;
  height: 100%;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}
.marquee .marquee-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.marquee .marquee-inner .marquee-text {
  align-items: center;
  font-size: clamp(1rem, 0.6023rem + 1.0606vw, 1.875rem);
  font-family: "Vogun", Helvetica, Roboto, Arial, sans-serif;
  display: flex;
  flex-shrink: 0;
  line-height: 1;
}
.marquee .marquee-inner .marquee-text span {
  display: block;
  white-space: nowrap;
  text-transform: lowercase;
}
.marquee .marquee-inner .dot {
  width: clamp(0.3125rem, 0.1705rem + 0.3788vw, 0.625rem);
  height: clamp(0.3125rem, 0.1705rem + 0.3788vw, 0.625rem);
  background: white;
  border-radius: 50%;
  margin: 0 1rem;
  flex-shrink: 0;
}

.brand-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  padding: 1.2rem 0;
}
.brand-slider.bg-grey {
  background: #4d4c4b;
}
@media screen and (max-width: 800px) {
  .brand-slider {
    padding: 1rem 0;
  }
}
.brand-slider .brand-slider-track {
  position: relative;
  width: 100%;
}
.brand-slider .brand-slider-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.brand-slider .brand-slider-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-slider .brand-slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}
@media screen and (max-width: 800px) {
  .brand-slider .brand-slider-item {
    padding: 0 20px;
    width: 140px;
    flex-shrink: 0;
    width: unset;
  }
}
.brand-slider .brand-slider-item .brand-slider-img {
  height: 42px;
  width: auto;
  max-width: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 800px) {
  .brand-slider .brand-slider-item .brand-slider-img {
    height: 30px;
    min-width: unset;
    max-width: 100px;
  }
}

.error-404 {
  text-align: center;
}
.error-404 .error-404-inner .page-content {
  text-align: center;
}
.error-404 .error-404-inner .page-content h3 {
  text-transform: lowercase;
  font-size: clamp(1.2rem, 0.4545rem + 3.7879vw, 5rem);
}

.featured-work {
  display: block;
  position: relative;
  overflow: hidden;
  height: 90svh;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .featured-work {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .featured-work {
    padding: 0;
  }
}
.featured-work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #383838;
  opacity: 0.9;
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}
.featured-work .featured-work-list {
  list-style: none;
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0;
  padding: 5% 0 5%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .featured-work .featured-work-list {
    padding: 5% 0 10%;
    overflow-y: auto;
    max-height: 50svh;
  }
}
@media screen and (max-width: 768px) {
  .featured-work .featured-work-list {
    padding: 15% 0;
  }
}
.featured-work .featured-work-list::-webkit-scrollbar {
  width: 10px;
}
.featured-work .featured-work-list::-webkit-scrollbar-track {
  background: rgba(119, 120, 123, 0.5);
  border-radius: 10px;
}
.featured-work .featured-work-list::-webkit-scrollbar-thumb {
  background: #77787b;
  border-radius: 10px;
}
.featured-work .featured-work-list li {
  padding: 0;
  margin: 0;
}
.featured-work .featured-work-list li a {
  color: inherit;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(3.75rem, 1.9318rem + 4.8485vw, 7.75rem);
  line-height: 1.1;
}
.featured-work .featured-work-list li a .hyphen {
  margin-right: 5px;
}
.featured-work .featured-work-list .work-item {
  color: #77787b;
  z-index: 1;
}
.featured-work .featured-work-list .work-item.is-active {
  z-index: 2;
  color: #e30000;
}
.featured-work .featured-work-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .featured-work .featured-work-background {
    position: sticky;
    top: 0;
    height: 100svh;
    left: 0;
    margin-bottom: -100svh;
  }
}
.featured-work .featured-work-background .image-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.featured-work .featured-work-background img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-work .featured-work-background .work-image {
  transition: transform 0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
  pointer-events: none;
  z-index: 1;
  transform: scale(1.1);
}
.featured-work .featured-work-background .work-image.is-active {
  z-index: 2;
  transform: scale(1);
}

.recent-blogs {
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.recent-blogs .view-all-posts {
  text-align: center;
  padding: 2em 0;
}
@media screen and (max-width: 600px) {
  .recent-blogs .view-all-posts {
    padding: 1em 0 0;
  }
}
.recent-blogs .view-all-posts .foe-button {
  margin: 0;
}
.recent-blogs .post-list {
  display: block;
}
.recent-blogs .recent-blogs-slider {
  width: 100%;
}
.recent-blogs .recent-blogs-slider .post {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  aspect-ratio: 1;
}
@media screen and (max-width: 1400px) {
  .recent-blogs .recent-blogs-slider .post {
    aspect-ratio: 8/9;
  }
}
@media screen and (max-width: 900px) {
  .recent-blogs .recent-blogs-slider .post {
    aspect-ratio: 7/9;
  }
}
@media screen and (max-width: 800px) {
  .recent-blogs .recent-blogs-slider .post {
    aspect-ratio: 8/9;
  }
}
@media screen and (max-width: 600px) {
  .recent-blogs .recent-blogs-slider .post {
    aspect-ratio: 1;
  }
}
.recent-blogs .recent-blogs-slider .post .post-text {
  height: auto;
}
.recent-blogs .recent-blogs-slider .post .post-text h4 {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@supports (-webkit-line-clamp: 2) {
  .recent-blogs .recent-blogs-slider .post .post-text h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.our-people .our-people-title {
  margin-bottom: 1.5em;
  color: #4d4c4b;
  text-align: center;
}
.our-people .our-people-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  overflow: hidden;
}
.our-people .our-people-grid .our-people-item {
  flex: 0 0 calc(33.33333% - 1em);
  margin-bottom: 2em;
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  .our-people .our-people-grid .our-people-item {
    flex: 0 0 calc(50% - 1em);
    margin-bottom: 1em;
  }
}
.our-people .our-people-grid .our-people-item .our-people-item-image {
  pointer-events: none;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-out;
}
.our-people .our-people-grid .our-people-item .our-people-item-image img {
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-out;
}
.our-people .our-people-grid .our-people-item .our-people-item-content {
  color: #4d4c4b;
  margin-top: 0.5em;
}
.our-people .our-people-grid .our-people-item .our-people-item-content h5 {
  color: #4d4c4b;
  margin: 0;
  font-size: clamp(1.125rem, 0.7125rem + 1.1vw, 1.8125rem);
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 700px) {
  .our-people .our-people-grid .our-people-item .our-people-item-content h5 {
    font-size: 0.9rem;
  }
}
.our-people .our-people-grid .our-people-item .our-people-item-content .our-people-item-title {
  font-size: clamp(1.125rem, 0.7125rem + 1.1vw, 1.75rem);
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.3s ease-out;
}
@media screen and (max-width: 700px) {
  .our-people .our-people-grid .our-people-item .our-people-item-content .our-people-item-title {
    font-size: 90%;
    font-weight: 500;
  }
}
@media screen and (max-width: 475px) {
  .our-people .our-people-grid .our-people-item .our-people-item-content .our-people-item-title {
    font-size: 80%;
  }
}
.our-people .our-people-grid .our-people-item:hover h5 {
  color: #e30000;
}
.our-people .our-people-grid .our-people-item:hover .our-people-item-title {
  color: #e30000;
}
.our-people .our-people-grid .our-people-item .our-people-bio {
  display: none;
}

.bio-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  padding: 5%;
  display: none;
}
.bio-modal .bio-modal-inner {
  background: #4d4c4b;
  color: #F1E9DB;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2em 3em 2em;
  display: flex;
  flex-direction: column;
  transform: translateY(10%);
  clip-path: inset(0 0 100% 0);
  transition: all 0.5s cubic-bezier(0.66, 0, 0.34, 1);
}
@media screen and (max-width: 600px) {
  .bio-modal .bio-modal-inner {
    padding: 2em 2em 2em;
  }
}
.bio-modal .bio-modal-inner .bio-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 40em;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-name {
  font-size: clamp(1.875rem, 0.8625rem + 2.7vw, 3.5625rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-title {
  font-size: clamp(1.3125rem, 0.8925rem + 1.12vw, 2.0125rem);
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.1em;
}
@media screen and (max-width: 600px) {
  .bio-modal .bio-modal-inner .bio-modal-content .bio-title {
    font-size: 1.2rem;
    margin: 0em auto 0.8em;
  }
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-intro {
  text-align: center;
}
.bio-modal .bio-modal-inner .bio-modal-content .contact-details {
  display: flex;
  justify-content: center;
  margin: 0.5em 0;
  margin-left: 1em;
}
.bio-modal .bio-modal-inner .bio-modal-content .contact-details.no-email a:nth-child(2) {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}
.bio-modal .bio-modal-inner .bio-modal-content .contact-details a {
  font-size: clamp(0.875rem, 0.675rem + 0.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #F1E9DB;
  transition: all 0.3s ease-out;
}
.bio-modal .bio-modal-inner .bio-modal-content .contact-details a:nth-child(2) {
  border-left: solid 2px #F1E9DB;
  padding-left: 1em;
  margin-left: 1em;
}
.bio-modal .bio-modal-inner .bio-modal-content .contact-details a:hover {
  color: #e30000;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-content {
  overflow-y: auto;
  height: 100%;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 90%;
  max-height: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.5em;
  orphans: 2;
  /* Prevent widows (single line at top of column/page) */
  widows: 2;
  /* Better line breaking for readability */
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-content::-webkit-scrollbar {
  width: 10px;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-content::-webkit-scrollbar-track {
  background: rgba(241, 233, 219, 0.5);
  border-radius: 10px;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-content::-webkit-scrollbar-thumb {
  background: #f1e9db;
  border-radius: 10px;
}
.bio-modal .bio-modal-inner .bio-modal-content .bio-content p:last-child {
  margin-bottom: 0;
}
.bio-modal .close-button {
  padding: 0;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-end;
  background: transparent;
  margin-bottom: 0.5em;
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
}
.bio-modal .close-button::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  bottom: -10px;
  right: -10px;
}
.bio-modal .close-button svg {
  position: relative;
  z-index: 2;
  width: 1.5em;
  height: 1.5em;
}
.bio-modal .close-button svg line {
  transition: stroke 0.3s ease-out;
}
.bio-modal .close-button:hover svg line {
  stroke: #e30000;
}
.bio-modal.active .bio-modal-inner {
  transform: translateY(0%);
  clip-path: inset(0% 0% 0% 0%);
}

.careers .intro-content {
  text-align: center;
}
.careers .intro-content .careers-message {
  max-width: 800px;
  margin: 0 auto;
  text-wrap: balance;
}
.careers .careers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 1em;
  max-width: 52em;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .careers .careers-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.careers .careers-grid .career-item h3 {
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  line-height: 1;
  color: #F1E9DB;
}
.careers .careers-grid .career-item .career-info {
  margin-top: 1em;
}
.careers .careers-grid .career-item a {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  background: #4d4c4b;
  color: #F1E9DB;
  padding: 1.5em 3em 1.5em 1.5em;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: background 0.2s ease-out;
}
.careers .careers-grid .career-item a .arrow {
  position: absolute;
  bottom: 1.7em;
  right: 1.5em;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
}
.careers .careers-grid .career-item a .arrow svg {
  width: 1rem;
  height: 1rem;
}
.careers .careers-grid .career-item a .arrow svg path {
  transition: fill 0.3s ease-out;
}
.careers .careers-grid .career-item a:hover {
  background: #e30000;
}
.careers .careers-grid .career-item a:hover .arrow {
  transform: translateX(0.25em);
}
.careers .careers-grid .career-item a:hover .arrow svg path {
  fill: #F1E9DB;
}
.careers .careers-grid .career-item .career-info {
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(1rem, 0.625rem + 0.5vw, 1.125rem);
}
.careers .careers-heading {
  margin-bottom: 2em;
  text-align: center;
  margin-top: 5%;
}
.careers .style-h5 {
  font-size: clamp(1.125rem, 0.7125rem + 1.1vw, 1.8125rem);
  font-weight: 700;
  line-height: 1.2;
  color: #4d4c4b;
}

.form-section {
  position: relative;
  overflow: hidden;
}
.form-section .inner {
  max-width: 29em;
  margin: 0 auto;
}
.form-section .graphic-wrapper {
  position: absolute;
  bottom: -40%;
  right: -5%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  max-width: 30vw;
  z-index: 1;
}
.form-section .graphic-wrapper .graphic-inner {
  position: static;
  width: 100%;
}

.vimeo-video {
  overflow: hidden;
  position: relative;
  max-height: 90svh;
}
@media screen and (max-width: 600px) {
  .vimeo-video {
    height: 50vh;
  }
}
.vimeo-video .inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.vimeo-video .embed-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.vimeo-video .poster-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vimeo-video .poster-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.vimeo-video .poster-wrapper .poster {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.vimeo-video .video-container {
  position: relative;
  aspect-ratio: 16/9;
}
.vimeo-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.vimeo-video .play-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
}
.vimeo-video .play-button svg {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 600px) {
  .vimeo-video .play-button svg {
    width: 50px;
    height: 50px;
  }
}
.vimeo-video .play-button svg path {
  transition: fill 0.3s ease-out;
}
.vimeo-video .play-button svg:hover path {
  fill: #e30000;
}

.embed-modal {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
}
.embed-modal .embed-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}
.embed-modal .embed-inner .close-button {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 2;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: unset;
  cursor: pointer;
  transition: color 0.3s ease-out;
  transform: rotate(45deg);
  width: 2em;
  height: 2em;
}
.embed-modal .embed-inner .close-button svg line {
  transition: stroke 0.3s ease-out;
}
.embed-modal .embed-inner .close-button:hover svg line {
  stroke: #e30000;
}
.embed-modal .embed-inner > div {
  padding: 0 !important;
  display: block;
  align-items: center;
  justify-content: center;
  max-width: 75% !important;
  max-height: 75% !important;
  position: relative !important;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .embed-modal .embed-inner > div {
    max-width: 80% !important;
    max-height: 80% !important;
  }
}

section.top-gap {
  padding-top: 0.8em;
}
@media screen and (max-width: 900px) {
  section.top-gap {
    padding-top: 0.4em;
  }
}
section.bottom-gap {
  padding-bottom: 0.8em;
}
@media screen and (max-width: 900px) {
  section.bottom-gap {
    padding-bottom: 0.4em;
  }
}

.work-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8em;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .work-gallery {
    gap: 0.4em;
  }
}
.work-gallery .work-gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 0 0 calc(50% - 0.4em);
}
@media screen and (max-width: 900px) {
  .work-gallery .work-gallery-item {
    flex: 0 0 calc(50% - 0.2em);
  }
}
.work-gallery .work-gallery-item.layout-full {
  flex: 0 0 100%;
}
.work-gallery .work-gallery-item.layout-full .image-wrapper {
  aspect-ratio: 20/9;
}
@media screen and (max-width: 1400px) {
  .work-gallery .work-gallery-item.layout-full .image-wrapper {
    aspect-ratio: 18/9;
  }
}
@media screen and (max-width: 900px) {
  .work-gallery .work-gallery-item.layout-full .image-wrapper {
    aspect-ratio: 14/9;
  }
}
@media screen and (max-width: 600px) {
  .work-gallery .work-gallery-item.layout-full .image-wrapper {
    aspect-ratio: 11/9;
  }
}
.work-gallery .work-gallery-item .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 11/9;
}
@media screen and (max-width: 900px) {
  .work-gallery .work-gallery-item .image-wrapper {
    aspect-ratio: 8/9;
  }
}
@media screen and (max-width: 600px) {
  .work-gallery .work-gallery-item .image-wrapper {
    aspect-ratio: 7/9;
  }
}
.work-gallery .work-gallery-item .image-wrapper .gallery-image {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  height: calc(100% + 20px);
  transition: transform 0.3s ease-out;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-gallery.large-parallax {
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
}
.work-gallery.large-parallax .full-screen-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0%;
  bottom: 2em;
  z-index: 1;
  overflow: hidden;
}
.work-gallery.large-parallax .full-screen-lines img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.work-gallery.large-parallax .work-gallery-item {
  z-index: 2;
}
.work-gallery.large-parallax .layout-half {
  margin-top: 5%;
  margin-bottom: 5%;
  width: 48%;
}
.work-gallery.large-parallax .layout-half:nth-child(even) {
  margin-left: auto;
}
.work-gallery.large-parallax .layout-half:last-of-type {
  margin-bottom: 10%;
}

.highlight-text {
  padding-top: 10%;
  padding-bottom: 10%;
  position: relative;
}
@media screen and (max-width: 600px) {
  .highlight-text {
    padding-top: 15% !important;
    padding-bottom: 15% !important;
  }
}
.highlight-text .inner {
  position: relative;
  z-index: 3;
}
.highlight-text .highlight-text-content {
  font-size: clamp(2.5rem, -0.0875rem + 6.9vw, 6.8125rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  text-wrap: balance;
}
@media screen and (max-width: 800px) {
  .highlight-text .highlight-text-content {
    font-size: clamp(2.2rem, -0.0875rem + 6.9vw, 6.8125rem);
  }
}
.highlight-text .highlight-text-content .word-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
  margin-bottom: 0.2em;
}
.highlight-text .highlight-text-content .word-wrapper .word {
  display: block;
}
.highlight-text .highlight-text-content strong {
  color: #e30000;
}
.highlight-text .highlight-text-content p {
  margin: 0;
  line-height: 0.9;
}
.highlight-text .floating-image {
  position: absolute;
  max-width: 30vw;
  max-height: 18vw;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .highlight-text .floating-image {
    max-width: 40vw;
    max-height: 25vw;
  }
}
@media screen and (max-width: 375px) {
  .highlight-text .floating-image {
    max-height: 32vw;
  }
}
.highlight-text .floating-image .parallax {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.highlight-text .floating-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.highlight-text .floating-left {
  left: 5%;
  bottom: 0;
  z-index: 4;
}
.highlight-text .floating-right {
  right: -10%;
  top: 0;
}
.highlight-text .graphic-wrapper {
  position: absolute;
  width: 70%;
  height: 100%;
  left: -40%;
  opacity: 0.2;
  bottom: -30%;
  z-index: 2;
  pointer-events: none;
}
.highlight-text .graphic-wrapper.graphic-a {
  max-width: 28vw;
  right: -10%;
}
.highlight-text .graphic-wrapper.graphic-lines {
  max-width: 100%;
  right: 50%;
  bottom: 50%;
  opacity: 0.5;
  transform: rotate(10deg);
}
.highlight-text .graphic-wrapper.graphic-lines .layer {
  max-width: 100%;
}
.highlight-text .graphic-wrapper.graphic-lines .layer svg {
  width: 250%;
  height: 250%;
}

.reel-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
}
.reel-modal .close-button {
  position: absolute;
  top: 2em;
  right: 2em;
  z-index: 2;
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #e30000;
  border: none;
  outline: none;
}
@media screen and (max-width: 1024px) {
  .reel-modal .close-button {
    width: 30px;
    height: 30px;
    top: 1em;
    right: 1em;
  }
}
.reel-modal .close-button svg {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 1024px) {
  .reel-modal .close-button svg {
    width: 10px;
    height: 10px;
  }
}
.reel-modal .reel-modal-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.reel-modal .reel-modal-inner .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.reel-modal .reel-modal-inner .video-container video {
  background: black;
  z-index: 1;
  width: 100%;
  height: 100%;
}

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

#landing .landing-container {
  display: block;
}
#landing .landing-container.side-by-side {
  display: flex;
}
#landing .brand-col,
#landing .content-col {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  color: white;
  flex: 0 0 50%;
  padding-top: 10%;
  position: relative;
}
@media screen and (max-width: 600px) {
  #landing .brand-col,
  #landing .content-col {
    padding: 15% 5%;
  }
}
#landing .brand-col .bg-image-left,
#landing .brand-col .bg-image-right,
#landing .content-col .bg-image-left,
#landing .content-col .bg-image-right {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#landing .brand-col .inner,
#landing .content-col .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
#landing .brand-col {
  background: #e30000;
}
#landing .brand-col .site-logo img {
  max-width: 13vw;
  min-width: 100px;
}
#landing .brand-col .coming-soon {
  padding-top: 10%;
}
#landing .content-col {
  background: #4d4c4b;
  padding-bottom: 0;
}
#landing .content-col h1 {
  margin-top: 0;
}
#landing .content-col h2 {
  margin-top: 0;
}
#landing .content-col a {
  color: white;
}
#landing .content-col a:hover {
  text-decoration: underline;
}
#landing .content-col .contact-info {
  padding-top: 10%;
}
#landing .content-col .contact-info .phone,
#landing .content-col .contact-info .email {
  margin-bottom: 0.5em;
}
#landing .content-col .contact-info .address {
  margin-top: 2em;
}
#landing .content-col .contact-info .social-links a:hover svg path {
  fill: white;
}
#landing .content-col .line {
  height: 1px;
  background-color: white;
  width: 100%;
  margin: 3.5em 0;
}
#landing .content-col .line + div.newsletter {
  margin-top: 0;
}
#landing .content-col .newsletter {
  margin: 3.5em 0px 0px;
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  #landing .content-col .newsletter {
    text-align: center;
    margin: 2em 0px 1em;
  }
}
@media screen and (max-width: 500px) {
  #landing .content-col .newsletter {
    max-width: 100%;
  }
}
#landing .content-col .newsletter .gform_validation_errors {
  background-color: #e30000;
  font-size: 14px;
}
#landing .content-col .newsletter .gform_validation_errors .gform_submission_error {
  font-size: 1em;
}
#landing .content-col .newsletter #gform_2 {
  position: relative;
}
#landing .content-col .newsletter #gform_2 input {
  height: 3.5rem;
  border-radius: 30px;
  border: none;
}
#landing .content-col .newsletter #gform_2 input:focus {
  outline: #e30000;
}
#landing .content-col .newsletter #gform_2 .gform_button {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  font-size: 0px;
  width: 4.5rem;
  height: 3.5rem;
  background: url("/wp-content/themes/foe/images/shell/arrow-plane.svg") center center no-repeat;
  transition: background 0.3s ease-out;
}
@media screen and (max-width: 900px) {
  #landing .content-col .newsletter #gform_2 .gform_button {
    width: 4rem;
    height: 3rem;
  }
}
#landing .content-col .newsletter #gform_2 .gform_button:hover {
  background: url("/wp-content/themes/foe/images/shell/arrow-plane-dark.svg") center center no-repeat;
}
#landing .content-col .landing-footer {
  padding-top: 30%;
  padding-bottom: 5%;
}
#landing .content-col .landing-footer .foe-link {
  color: white;
  text-decoration: none;
}
#landing .content-col .landing-footer .foe-link:hover {
  text-decoration: underline;
}
#landing .content-col .landing-footer .copyright,
#landing .content-col .landing-footer .tos {
  font-size: 0.8rem;
}
#landing .social-links {
  display: flex;
  justify-content: center;
  margin-top: 1em;
}
#landing .social-links a:not(.custom-social-link) {
  width: 30px;
  display: block;
  align-items: center;
  justify-content: center;
  margin: 0px 10px 10px 0px;
  transition: background 0.3s ease-out;
  background: transparent;
}
#landing .social-links a:not(.custom-social-link):hover {
  background: transparent;
}
#landing .social-links a:not(.custom-social-link) svg {
  max-height: 20px;
  max-width: 20px;
}

/*
Form Styling

Including generic form elements and specific Gravity Form styling overrides.
*/
#container input[type=text],
#container input[type=email],
#container input[type=url],
#container input[type=password],
#container input[type=search],
#container input[type=tel] {
  border: 1px solid #e30000;
  background: #F1E9DB;
  padding: 0px 1em;
  height: 3em;
  transition: border 0.3s ease-out;
}
#container input[type=text]:focus,
#container input[type=email]:focus,
#container input[type=url]:focus,
#container input[type=password]:focus,
#container input[type=search]:focus,
#container input[type=tel]:focus {
  outline: none;
  border: 1px solid #e30000;
}
@media screen and (max-width: 600px) {
  #container input[type=text],
  #container input[type=email],
  #container input[type=url],
  #container input[type=password],
  #container input[type=search],
  #container input[type=tel] {
    font-size: 16px !important;
  }
}
#container textarea {
  border: 1px solid #e30000;
  background: #F1E9DB;
  height: 18em;
  transition: border 0.3s ease-out;
  padding: 0.8em 1em;
}
#container textarea:focus {
  outline: none;
  border: 1px solid #e30000;
}
@media screen and (max-width: 600px) {
  #container textarea {
    font-size: 16px !important;
  }
}
#container .gfield--type-fileupload {
  margin-top: 1em;
  text-align: center;
}
#container .gfield--type-fileupload input[type=file] {
  border: none;
  background: transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#container .gfield--type-fileupload input::file-selector-button {
  padding: 0.9em 2em;
  border: none;
  text-transform: lowercase;
  line-height: 0.9;
  background: #e30000;
  color: white;
  border-radius: 1000px;
  font-weight: 600;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 30%;
  text-align: center;
  transition: all 0.2s ease-out;
}
#container .gfield--type-fileupload input::file-selector-button:hover {
  background: #4d4c4b;
  color: white;
  transform: scale(1.05);
}
#container .gfield--type-fileupload .gfield_label {
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: 700;
  text-align: center;
  font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
}

select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff url("/wp-content/themes/foe/images/shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  height: 3em;
  transition: border 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 2.3em 0px 1.3em;
  box-shadow: none;
}
select:focus {
  outline: none;
  border: 1px solid #e30000;
  box-shadow: none;
}

body .gform_wrapper.gravity-theme {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
body .gform_wrapper.gravity-theme .validation_error,
body .gform_wrapper.gravity-theme .gform_validation_errors {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 1em;
  margin: 0px 0px 1.5em 0px;
  width: auto;
  box-shadow: none;
  font-weight: 400;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: clamp(1rem, 0.7125rem + 1.1vw, 1.25rem);
  line-height: 1.2;
  text-transform: unset;
  padding: 0px;
  color: white;
  display: flex;
  align-items: center;
  opacity: 1;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error .gform-icon,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error .gform-icon {
  position: relative;
  inset-inline-start: 0px;
  margin-right: 0.5em;
}
body .gform_wrapper.gravity-theme .validation_error ol,
body .gform_wrapper.gravity-theme .gform_validation_errors ol {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li a,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: white;
}
body .gform_wrapper.gravity-theme .gform_fields {
  margin: 0px;
  padding: 0px;
  gap: 1em;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield {
  width: 102%;
  margin-left: -1%;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield > legend {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield .ginput_container_address span {
  padding-left: 1%;
  padding-right: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield {
  width: 100%;
  clear: none;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error {
  background: none;
  border: none;
  max-width: none !important;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .ginput_container input,
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: red;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .validation_message {
  padding: 5px 0px 0px 0px;
  color: #4d4c4b;
  border: none;
  background: none;
  margin: 0px;
  color: red;
  font-size: 0.8em;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .gfield_label {
  margin-top: 0px;
  color: #4d4c4b;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label {
  flex: 0 0 150px;
  font-size: 1em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: #e30000;
  text-align: right;
  line-height: 1;
  margin: 0;
  margin-right: 1em;
  margin-top: -2px;
}
@media screen and (max-width: 700px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield label {
    display: none;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label span {
  display: none;
  font-size: 0.8em;
  vertical-align: top;
  padding-top: 0.1em;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container {
  margin: 0px;
  flex: 0 0 calc(100% - 300px);
  /* Modern browsers */
  /* Webkit browsers */
  /* Firefox */
  /* Internet Explorer */
}
@media screen and (max-width: 700px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container {
    flex: 1 1 100%;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::-moz-placeholder, body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::-moz-placeholder {
  opacity: 0;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::placeholder,
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::placeholder {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::-moz-placeholder, body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::-moz-placeholder {
    opacity: 1 !important;
  }
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::placeholder,
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::placeholder {
    opacity: 1 !important;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::-webkit-input-placeholder,
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::-webkit-input-placeholder {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::-webkit-input-placeholder,
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::-webkit-input-placeholder {
    opacity: 1 !important;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::-moz-placeholder,
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::-moz-placeholder {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input::-moz-placeholder,
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea::-moz-placeholder {
    opacity: 1 !important;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:-ms-input-placeholder,
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:-ms-input-placeholder {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:-ms-input-placeholder,
  body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:-ms-input-placeholder {
    opacity: 1 !important;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 3em;
  padding: 0px 1em;
  background: transparent;
  border-radius: 2px;
  border: solid 1px #e30000;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: #4d4c4b;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 10em;
  padding: 0.8em 1em;
  background: transparent;
  border-radius: 2px;
  border: solid 1px #e30000;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: #4d4c4b;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  background: #f4f4f4 url("/wp-content/themes/foe/images/shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  border-radius: 2px;
  height: 40px;
  padding: 0px 15px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  background-color: rgb(231.25, 231.25, 231.25);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: #e30000 !important;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 35px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 0px;
  display: block;
  border: 3px solid white;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: #cfd2d3;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input:checked + label:after {
  background: #e30000 !important;
  box-shadow: 0px 0px 0px 3px #e30000;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 40px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 7px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 3px;
  display: block;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:before {
  content: "";
  position: absolute;
  z-index: 9;
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
  border: 3px solid white;
  border-right: 0px;
  border-top: 0px;
  width: 14px;
  height: 8px;
  top: 13px;
  left: 7px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #e0e1e2;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
body .gform_wrapper.gravity-theme .gform_footer {
  margin: 0px;
  margin-top: 1.5em;
  padding: 0;
}
body .gform_wrapper.gravity-theme input[type=submit] {
  display: inline-block;
  padding: 0.8em 2em;
  text-transform: lowercase;
  font-size: clamp(1.125rem, 0rem + 1.5vw, 1.5rem);
  line-height: 0.9 !important;
  background: #e30000;
  color: #F1E9DB;
  border-radius: 1000px;
  font-weight: 600;
  margin: auto;
  text-align: center;
  cursor: pointer;
  min-height: unset !important;
  transition: all 0.2s ease-out;
  border: none !important;
  outline: none !important;
}
@media (max-width: 900px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    padding: 1em 1.5em;
  }
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: #4d4c4b;
  color: white;
  transform: scale(1.05);
}

.grecaptcha-badge {
  visibility: hidden;
}

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

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

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