/*
Global Variables

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

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

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

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

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

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

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

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

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

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

body {
  background: #fff;
}

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

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

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

textarea {
  vertical-align: middle;
}

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

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

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

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

a:hover,
a:focus,
a:active {
  color: rgb(245.6357615894, 131.9271523179, 62.3642384106);
}

a:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

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

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

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

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

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

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

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

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

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

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

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
Fonts Styling

@font-face imports included here along with heading and button styles.
*/
@font-face {
  font-family: "Morganite";
  font-weight: 500;
  src: local(""), url("../font/Morganite-Medium.woff") format("woff"), url("../font/Morganite-Medium.ttf") format("truetype"), url("../font/Morganite-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Morganite";
  font-weight: 600;
  src: local(""), url("../font/Morganite-SemiBold.woff") format("woff"), url("../font/Morganite-SemiBold.ttf") format("truetype"), url("../font/Morganite-SemiBold.woff2") format("opentype");
}
/*
GLOBALS
*/
body {
  font-family: "acumin-pro-semi-condensed", Helvetica, Roboto, Arial, sans-serif;
  font-display: swap;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  background: #020202;
  color: #F9F5F2;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #F8A36F;
  transition: color 0.2s ease-out;
}
a:hover {
  color: rgb(245.6357615894, 131.9271523179, 62.3642384106);
}

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

/*
HEADINGS
*/
h1,
.primary-heading {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  font-size: clamp(5.125rem, 0.068rem + 16.182vw, 16rem);
  line-height: 0.85;
  text-transform: uppercase;
  margin: 0.1em 0px;
  font-weight: 600;
  display: block;
  text-wrap: balance;
}

h2,
.secondary-heading {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  font-size: clamp(3.125rem, 1.136rem + 6.364vw, 7.5rem);
  line-height: 0.85;
  margin: 0.1em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 600;
  text-transform: uppercase;
}

h3,
.small-heading {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  font-size: clamp(2.5em, 1rem + 4vw, 3em);
  line-height: 0.9;
  margin: 0.2em 0px;
  display: block;
  text-wrap: balance;
  text-transform: uppercase;
}

h4,
.sub-heading {
  font-family: "acumin-pro-semi-condensed", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

:root {
  --x: 45deg;
}

.foe-button {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  display: inline-block;
  line-height: 0.9;
  letter-spacing: 0.5px;
  font-size: 1.5em;
  letter-spacing: 1px;
  background: none;
  color: #F9F5F2;
  font-weight: 600;
  border: 1px solid #F9F5F2;
  border-radius: 5px;
  font-weight: bold;
  margin: 0px 0.5em 1em 0px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  transition: all 0.4s ease-out;
}
.foe-button > span {
  position: absolute;
  inset: -1px;
  display: block;
  border-radius: 5px;
  background: linear-gradient(var(--x), #F8A36F, rgba(2, 2, 2, 0.5), rgba(2, 2, 2, 0.5), #84C4D0);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.foe-button > span:nth-child(2) {
  filter: blur(10px);
}
.foe-button .text {
  display: inline-block;
  padding: 0.36em 1.2em 0.36em 1.2em;
  background: rgba(2, 2, 2, 0.1);
  border: 2px solid transparent;
  border-radius: 4px;
  transition: background 0.4s ease-out, border-color 0.4s ease-out;
}
.foe-button:hover {
  color: #F9F5F2;
}
.foe-button:hover span {
  opacity: 1;
}
.foe-button:hover .text {
  border: 2px solid #020202;
  background: rgba(2, 2, 2, 0.4);
}
.foe-button.solid {
  background: #F9F5F2;
  color: #020202;
}
.foe-button.solid .text {
  background: none;
}
.foe-button.solid:hover {
  color: #F9F5F2;
  background: none;
}
.foe-button.solid:hover .text {
  background: rgba(2, 2, 2, 0.4);
}

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

#header {
  padding: 45px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
  transition: padding 0.4s ease-out;
}
@media screen and (max-width: 1024px) {
  #header {
    padding: 25px 30px 25px 40px;
  }
}
@media screen and (max-width: 600px) {
  #header {
    padding: 10px 15px 10px 30px;
    transition: background 0.4s ease-out;
  }
}
#header.scrolled {
  padding: 20px 60px;
}
@media screen and (max-width: 1024px) {
  #header.scrolled {
    padding: 10px 30px 10px 40px;
  }
}
@media screen and (max-width: 600px) {
  #header.scrolled {
    padding: 10px 15px 10px 30px;
    background: rgba(2, 2, 2, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}
#header .foe-button {
  position: relative;
  z-index: 9;
  margin: 0px;
}
@media screen and (max-width: 1024px) {
  #header .foe-button:first-child {
    display: none;
  }
}
#header .foe-button .text {
  padding: 0.36em 0.9em 0.36em 0.9em;
}

.site-branding {
  line-height: 0px;
  font-size: 0px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 600px) {
  .site-branding {
    margin-right: 20px;
  }
}
.site-branding:hover:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.site-branding:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -10px;
  right: -10px;
  z-index: -1;
  height: 10px;
  margin: auto;
  opacity: 0.5;
  background: linear-gradient(90deg, rgb(248, 163, 111) 0%, rgb(132, 196, 208) 100%);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.6s ease-out;
}
.site-branding .site-logo {
  height: 32px;
}
@media screen and (max-width: 1400px) {
  .site-branding .site-logo {
    height: 26px;
  }
}
@media screen and (max-width: 900px) {
  .site-branding .site-logo {
    height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .site-branding .site-logo {
    height: 16px;
  }
}

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

.full-nav {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 5;
  min-height: 100vh;
  background: #020202;
}
@media screen and (max-width: 1024px) {
  .full-nav {
    min-height: 100svh;
  }
}
.full-nav.open .menu-rock {
  transform: scale(1) translateY(0px);
}
.full-nav.open .menu-smoke {
  transform: scale(1);
}
.full-nav.open .full-inner .full-left svg {
  opacity: 1;
  transform: translateX(0px);
}
.full-nav.open .full-inner .full-right svg {
  opacity: 1;
  transform: translateX(0px);
}
.full-nav .filter {
  position: absolute;
  top: 0px;
  left: 0px;
}
.full-nav .full-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0px;
  height: 100%;
  position: relative;
}
.full-nav .full-inner .full-left {
  height: 280px;
  margin: auto;
  top: 0px;
  bottom: 0px;
  position: absolute;
  left: 0px;
  right: 0px;
}
@media screen and (max-width: 1550px) {
  .full-nav .full-inner .full-left {
    margin-left: -10%;
  }
}
@media screen and (max-width: 1200px) {
  .full-nav .full-inner .full-left {
    margin-left: -13%;
  }
}
@media screen and (max-width: 1024px) {
  .full-nav .full-inner .full-left {
    bottom: auto;
    top: 120px;
    right: 10vw;
    left: auto;
    margin: 0px;
  }
}
.full-nav .full-inner .full-left svg {
  position: absolute;
  left: 0px;
  top: 0px;
  transform: translateX(-100px);
  opacity: 0;
  transition: transform 1s ease-out 0.25s, opacity 1s ease-out 0.25s;
}
@media screen and (max-width: 1024px) {
  .full-nav .full-inner .full-left svg {
    right: 0px;
    left: auto;
  }
}
.full-nav .full-inner .full-right {
  height: 280px;
  margin: auto;
  top: 0px;
  bottom: 0px;
  position: absolute;
  right: 0px;
  left: 0px;
}
@media screen and (max-width: 1550px) {
  .full-nav .full-inner .full-right {
    margin-right: -10%;
  }
}
@media screen and (max-width: 1200px) {
  .full-nav .full-inner .full-right {
    margin-right: -13%;
  }
}
@media screen and (max-width: 1024px) {
  .full-nav .full-inner .full-right {
    bottom: 120px;
    top: auto;
    right: auto;
    left: 10vw;
  }
}
.full-nav .full-inner .full-right svg {
  position: absolute;
  right: 0px;
  bottom: 0px;
  margin: auto;
  opacity: 0;
  transform: translateX(100px);
  transition: transform 1s ease-out 0.25s, opacity 1s ease-out 0.25s;
}
@media screen and (max-width: 1024px) {
  .full-nav .full-inner .full-right svg {
    left: 0px;
    right: auto;
  }
}
.full-nav .full-inner .main-nav {
  position: relative;
  z-index: 99;
}
.full-nav .menu-smoke {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform-origin: 50% 50%;
  transform: scale(1.5);
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.5s ease-out;
}
.full-nav .menu-rock {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  transform-origin: 50% 0%;
  transform: scale(1.3) translateY(30px);
  transition: transform 0.8s ease-out;
}

:root {
  --glitter: url("https://assets.codepen.io/13471/silver-glitter-background.png");
}

#header_nav {
  display: flex;
}
@media screen and (max-width: 1024px) {
  #header_nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#header_nav li {
  position: relative;
}
#header_nav li:hover > a {
  color: #F8A36F;
  background: rgba(0, 0, 0, 0.05);
}
#header_nav li a {
  color: #F9F5F2;
  font-family: "Morganite", Roboto, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 3em;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 0.65em 1em 0.5em;
  display: inline-block;
  font-weight: 400;
  position: relative;
  z-index: 2;
  transition: color 0.2s ease-out;
}
@media screen and (max-width: 1200px) {
  #header_nav li a {
    font-size: 2.3em;
  }
}
@media screen and (max-width: 1024px) {
  #header_nav li a {
    padding: 0.3em 0.5em;
    line-height: 1.1;
  }
}
#header_nav li a:after {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: url("/wp-content/themes/foe/images/shell/stripes.webp") center center no-repeat;
  background-size: contain;
  animation: invert 4s linear infinite;
  transition: width 0.6s ease-out, height 0.6s ease-out, top 0.6s ease-out, left 0.6s ease-out, opacity 0.6s ease-out;
}
@media screen and (max-width: 1024px) {
  #header_nav li a:after {
    display: none;
  }
}
#header_nav li a:before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -50px;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform-origin: 50% 20%;
  transform: scale(0.5);
  background: url("/wp-content/themes/foe/images/shell/dust.png") center center no-repeat;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  #header_nav li a:before {
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -25px;
    background-size: contain;
  }
}
@media screen and (max-width: 900px) {
  #header_nav li a {
    display: block;
    width: 100%;
  }
}
#header_nav li a:hover {
  color: #F9F5F2;
}
#header_nav li a:hover:before {
  opacity: 1;
  transform: scale(1);
}
#header_nav li a:hover:after {
  transform: scale(1);
  opacity: 1;
}
#header_nav li .sub-menu,
#header_nav li .children {
  position: absolute;
  left: -200px;
  right: -200px;
  margin: auto;
  width: 200px;
  top: 54px;
  background: #F8A36F;
  padding: 15px 0px;
  text-align: center;
  display: none;
  border-radius: 3px;
}
#header_nav li .sub-menu:after,
#header_nav li .children:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: -5px;
  margin: auto;
  width: 10px;
  height: 10px;
  background: #F8A36F;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
#header_nav li .sub-menu li,
#header_nav li .children li {
  background: #F8A36F;
  display: block;
  float: none;
}
#header_nav li .sub-menu li a,
#header_nav li .children li a {
  display: block;
  padding: 10px 25px;
  color: white;
}

@keyframes invert {
  0% {
    filter: invert(0);
  }
  50% {
    filter: invert(1);
  }
  100% {
    filter: invert(0);
  }
}
@media screen and (min-width: 900px) {
  #mobile_nav[style] {
    display: none !important;
  }
}

#mobile_nav {
  display: none;
  clear: both;
  text-align: center;
  position: absolute;
  top: 60px;
  left: 0px;
  right: 0px;
  background: rgb(231.25, 231.25, 231.25);
  padding: 15px 0px;
}
#mobile_nav li {
  position: relative;
}
#mobile_nav li.menu-item-has-children > a {
  position: relative;
}
#mobile_nav li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0px;
  width: 30px;
  height: 30px;
  margin: auto;
  transform-origin: 50% 50%;
  transform: rotate(90deg);
  background: url("/wp-content/themes/foe/images/shell/arrow.svg") center center no-repeat;
  background-size: 11px;
  transition: transform 0.3s ease-out;
}
#mobile_nav li.menu-item-has-children.open > a:after {
  transform: rotate(-90deg);
}
#mobile_nav li a {
  display: block;
  text-decoration: none;
  padding: 10px;
  color: #020202;
  transition: background 0.2s ease-out;
}
#mobile_nav li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#mobile_nav li .sub-menu {
  display: none;
}
#mobile_nav li .sub-menu a {
  opacity: 0.5;
}

.nav-toggle {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  border-radius: 5px;
  color: white;
  display: flex;
  line-height: 0.9;
  font-size: 1.5em;
  letter-spacing: 1px;
  align-items: center;
  position: relative;
  z-index: 9;
  cursor: pointer;
  transition: color 0.4s ease-out;
}
.nav-toggle .toggle-icon {
  margin: -5px 0px 0px 13px;
}
@media screen and (max-width: 600px) {
  .nav-toggle .toggle-icon {
    margin: 0px;
  }
}
.nav-toggle .text {
  display: flex;
  align-items: center;
  padding: 0.36em 0.7em 0.36em 0.9em !important;
}
@media screen and (max-width: 600px) {
  .nav-toggle .text {
    font-size: 0px;
    line-height: 0px;
    padding: 8px 10px !important;
    justify-content: center;
    align-items: center;
    display: inline;
  }
}
.nav-toggle .line {
  display: block;
  background: white;
  width: 23px;
  height: 2px;
  margin: 6px 0px;
  transform-origin: 50% 50%;
  border-radius: 2px;
  transition: all 0.4s ease-out;
}
@media screen and (max-width: 600px) {
  .nav-toggle .line {
    margin: 5px auto;
  }
}
.nav-toggle.open .one {
  transform: translateY(7.5px) rotate(135deg);
  -moz-transform: translateY(7.5px) rotate(135deg);
  -webkit-transform: translateY(7.5px) rotate(135deg);
}
@media screen and (max-width: 600px) {
  .nav-toggle.open .one {
    transform: translateY(7px) rotate(135deg);
    -moz-transform: translateY(7px) rotate(135deg);
    -webkit-transform: translateY(7px) rotate(135deg);
  }
}
.nav-toggle.open .three {
  transform: translateY(-8px) rotate(-135deg);
  -moz-transform: translateY(-8px) rotate(-135deg);
  -webkit-transform: translateY(-8px) rotate(-135deg);
}
@media screen and (max-width: 600px) {
  .nav-toggle.open .three {
    transform: translateY(-7px) rotate(-135deg);
    -moz-transform: translateY(-7px) rotate(-135deg);
    -webkit-transform: translateY(-7px) rotate(-135deg);
  }
}
.nav-toggle.open .two {
  transform: scale(0);
}
.nav-toggle:focus {
  background: none;
}
.nav-toggle:active {
  background: none;
}
.nav-toggle:hover {
  color: #F9F5F2;
}
.nav-toggle:hover span {
  opacity: 1;
}
.nav-toggle:hover .text {
  border: 2px solid #020202;
  background: rgba(2, 2, 2, 0.4);
}

.modal-outer {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
}
.modal-outer.open .modal-wrap .modal-overlay {
  opacity: 1;
}
.modal-outer.open .modal-wrap .modal {
  opacity: 1;
  transform: scale(1);
}
.modal-outer .modal-wrap {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 50px;
  overflow: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 800px) {
  .modal-outer .modal-wrap {
    padding: 70px 15px;
  }
}
.modal-outer .modal-wrap .modal-overlay {
  background: rgba(0, 0, 0, 0.75);
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.modal-outer .modal-wrap #loader {
  width: 350px;
  line-height: 0px;
}
@media screen and (max-width: 800px) {
  .modal-outer .modal-wrap #loader {
    width: 280px;
  }
}
.modal-outer .modal-wrap .logo-wrapper {
  margin: 0 0 1.5em;
}
.modal-outer .modal-wrap .modal {
  width: 100%;
  padding: 2.5em 2.5em 1.5em 2.5em;
  border-radius: 10px;
  color: white;
  display: none;
  max-width: 500px;
  flex-wrap: wrap;
  position: relative;
  text-align: center;
  z-index: 3;
  background: #1B1926;
  transform-origin: 50% 50%;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-in-out;
  border: solid 0.5px #F5F1EE;
}
.modal-outer .modal-wrap .modal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background: url("/wp-content/themes/foe/images/shell/mask-group.png") center center no-repeat;
}
.modal-outer .modal-wrap .modal .foe-button {
  margin: 0px 0.5em 1em 0.5em;
}
@media screen and (max-width: 800px) {
  .modal-outer .modal-wrap .modal {
    max-width: 400px;
  }
}

/*
Footer and Navigation Styling
*/
.site-footer {
  padding: 8% 10%;
  background: #020202;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .site-footer {
    padding: 10%;
  }
}
@media screen and (max-width: 800px) {
  .site-footer {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .site-footer {
    text-align: center;
  }
}
.site-footer .footer-left {
  flex: 0 0 40%;
}
@media screen and (max-width: 1500px) {
  .site-footer .footer-left {
    flex: 0 0 45%;
  }
}
@media screen and (max-width: 1200px) {
  .site-footer .footer-left {
    flex: 0 0 100%;
    padding-bottom: 3%;
  }
}
.site-footer .footer-right {
  flex: 0 0 40%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .site-footer .footer-right {
    flex: 0 0 45%;
  }
}
@media screen and (max-width: 1200px) {
  .site-footer .footer-right {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-right {
    flex-wrap: wrap;
  }
}
.site-footer .footer-right nav {
  flex: 0 0 220px;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-right nav {
    flex: 0 0 100%;
  }
}
.site-footer .footer-branding {
  line-height: 0px;
  font-size: 0px;
}
.site-footer .footer-branding .footer-logo {
  height: 211px;
  width: 210px;
}
@media screen and (max-width: 1500px) {
  .site-footer .footer-branding .footer-logo {
    width: 150px;
    height: 151px;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-branding .footer-logo {
    margin: 0 auto;
  }
}
.site-footer .footer-newsletter {
  padding-top: 3em;
}
@media screen and (max-width: 1024px) {
  .site-footer .footer-newsletter {
    padding-bottom: 2em;
  }
}
.site-footer .footer-newsletter .gform_footer {
  height: 0px;
  padding: 0px !important;
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 {
  position: relative;
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 input {
  height: 4em;
  padding: 0px 3em 0px 1.5em;
  border-color: #F9F5F2;
  color: #F9F5F2;
  border-radius: 9px;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-newsletter #gform_wrapper_2 #gform_2 input {
    height: 3em;
  }
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 input:focus {
  border-color: #F8A36F;
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 ::-moz-placeholder {
  color: #F9F5F2;
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 ::placeholder {
  color: #F9F5F2;
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 button[type=submit] {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 8px;
  border: 1px solid #F9F5F2;
  border-radius: 5px;
  margin: 11px;
  color: transparent;
  padding: 0px;
  font-size: 17px;
  z-index: 5;
  width: calc(4em - 22px);
  height: calc(4em - 22px);
  background: none;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-newsletter #gform_wrapper_2 #gform_2 button[type=submit] {
    height: 3em;
    width: 3em;
    bottom: auto;
    margin: auto;
    border-radius: 0px 9px 9px 0px;
    border: 1px solid #F9F5F2;
  }
}
.site-footer .footer-newsletter #gform_wrapper_2 #gform_2 button[type=submit]:before {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  top: 0px;
  background: url("/wp-content/themes/foe/images/shell/arrow-line.svg") center center no-repeat;
  z-index: 4;
}
@media screen and (max-width: 1300px) {
  .site-footer .footer-contact {
    font-size: 90%;
  }
}
@media screen and (max-width: 600px) {
  .site-footer .footer-contact {
    flex: 0 0 100%;
    padding-top: 1.5em;
  }
}
.site-footer .footer-contact h5 {
  margin-bottom: 0.5em;
}
.site-footer .footer-contact h5:first-child {
  margin-top: 0px;
}
.site-footer .footer-contact .address {
  margin-bottom: 1em;
}
.site-footer .footer-contact .footer-social {
  margin-top: 1.5em;
}
.site-footer .footer-contact a {
  color: white;
}
.site-footer .footer-contact a:hover {
  color: #F8A36F;
}
.site-footer .footer-contact .footer-social .social-links {
  display: flex;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-contact .footer-social .social-links {
    justify-content: center;
  }
}
.site-footer .footer-contact .footer-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px 15px 0px 0px;
  transition: background 0.3s ease-out;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-contact .footer-social .social-links a {
    margin: 5px 7.5px 0px 7.5px;
  }
}
.site-footer .footer-contact .footer-social .social-links a:hover svg path {
  fill: #F8A36F;
}
.site-footer .footer-contact .footer-social .social-links a:nth-child(2):hover svg path {
  fill: none;
  stroke: #F8A36F;
}
.site-footer .footer-contact .footer-social .social-links a svg {
  max-height: 30px;
  max-width: 30px;
}
.site-footer .footer-contact .footer-social .social-links a svg path {
  transition: fill 0.3s ease-out, stroke 0.3s ease-out;
}
.site-footer .footer-legal {
  width: 100%;
  flex: 0 0 100%;
  font-size: 0.8rem;
  margin-top: 3em;
  padding: 2em 0px 0px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 600px) {
  .site-footer .footer-legal {
    font-size: 0.65rem;
  }
}
.site-footer .footer-legal a {
  color: #F9F5F2;
  text-decoration: underline;
}
.site-footer .footer-legal a:hover {
  color: #F8A36F;
}
.site-footer .footer-bg {
  position: absolute;
  top: -70px;
  left: 0px;
  width: 100%;
  height: calc(100% + 200px);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .site-footer .footer-bg {
    height: 100%;
    top: 0px;
  }
}

#footer_nav li {
  position: relative;
}
@media screen and (max-width: 800px) {
  #footer_nav li {
    width: 100%;
  }
}
#footer_nav li a {
  color: #F9F5F2;
  font-family: "Morganite", Roboto, Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 0px;
  line-height: 0.9;
  font-size: 3.5em;
  display: inline-block;
  transition: color 0.2s ease-out;
}
#footer_nav li a:hover {
  color: #F8A36F;
}
@media screen and (max-width: 800px) {
  #footer_nav li a {
    display: block;
    width: 100%;
  }
}
#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.
*/
.block {
  padding: 8% 10%;
}
@media screen and (max-width: 800px) {
  .block {
    padding: 9% 8%;
  }
}
.block .inner {
  display: flex;
  flex-wrap: wrap;
}

body:hover #trailer {
  opacity: 1;
}

body a:hover #trailer .border {
  transform: scale(0.7);
}

#trailer {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  display: grid;
  place-items: center;
  will-change: transform;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 1024px) {
  #trailer {
    display: none;
  }
}
#trailer .border {
  border: 1px solid rgba(249, 245, 242, 0.8);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  transform-origin: 50% 50%;
  transform: scale(1);
  will-change: transform;
  transition: transform 0.5s ease-out;
  border-radius: 50%;
}

.pulse {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: pulse 2s infinite;
}

.pulse-2 {
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
*[data-scroll] {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
@media screen and (max-width: 1100px) {
  *[data-scroll] {
    opacity: 1;
  }
}
*[data-scroll].is-inview {
  opacity: 1;
}

.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 #F8A36F;
  margin: 0px 2px;
}
.pagination a {
  border: 1px solid rgba(248, 163, 111, 0.2);
  transition: background 0.3s ease-out, border 0.3s ease-out, color 0.3s ease-out;
}
.pagination a:hover {
  border: 1px solid #F8A36F;
  background: #F8A36F;
  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;
}

.content-area {
  overflow-x: hidden;
}

.hero {
  position: relative;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero .inner {
  padding: 7% 0px 0px 0px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1300px) {
  .hero .inner {
    padding: 12% 0px 0px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .hero .inner {
    padding: 13% 0px 0px 0px;
  }
}
@media screen and (max-width: 900px) {
  .hero .inner {
    padding: 18% 0px 0px 0px;
  }
}
.hero .hero-content {
  max-width: 40em;
  margin: 0 auto;
  text-align: center;
}
.hero .hero-content .hero-text {
  max-width: 22em;
  margin: 0 auto;
}
.hero .hero-content .button-container a {
  margin: 0px 0.25em 1em 0.25em;
}
.hero .hero-bg {
  position: absolute;
  top: -5vw;
  left: 0px;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  z-index: -2;
}
@media screen and (max-width: 1600px) {
  .hero .hero-bg {
    top: -9vw;
  }
}
@media screen and (max-width: 1400px) {
  .hero .hero-bg {
    top: -13vw;
  }
}
@media screen and (max-width: 1300px) {
  .hero .hero-bg {
    top: -15vw;
    min-height: 130%;
  }
}
.hero .hero-left {
  position: absolute;
  left: 0px;
  top: -30px;
  pointer-events: none;
}
.hero .hero-right {
  position: absolute;
  right: 0px;
  top: -30px;
  pointer-events: none;
}
.hero .dust-left {
  position: absolute;
  left: -15%;
  top: -10vw;
  margin: auto;
}
.hero .dust-right {
  position: absolute;
  right: -15%;
  bottom: -15vw;
  margin: auto;
}
.hero.contact-hero .hero-dust {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
}
.hero.contact-hero .hero-rocks {
  position: absolute;
  top: 75vh;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .hero.contact-hero .hero-rocks {
    top: 60%;
    bottom: 0px;
  }
}

@media screen and (max-width: 1300px) {
  .page-id-326 .hero .hero-left {
    max-width: 23%;
    top: -60px;
  }
}
@media screen and (max-width: 1300px) {
  .page-id-326 .hero .hero-right {
    max-width: 20%;
    top: -50px;
  }
}

.page-id-312 .hero .hero-left {
  position: absolute;
  left: 0px;
  top: -10vw;
  width: 35%;
}
.page-id-312 .hero .hero-right {
  position: absolute;
  right: 0px;
  bottom: -20vw;
  top: auto;
  width: 35%;
}

.hero-home {
  position: relative;
  z-index: 99;
  overflow: hidden;
  min-height: 100vh;
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media screen and (max-width: 900px) {
  .hero-home {
    min-height: 100svh;
  }
}
.hero-home .inner {
  padding: 7% 0px 0px 0px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 900px) {
  .hero-home .inner {
    padding: 28% 0px 90% 0px;
  }
}
.hero-home .hero-content {
  max-width: 50em;
  margin: 0 auto;
  text-align: center;
}
.hero-home .hero-content .hero-text {
  max-width: 22em;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .hero-home .hero-content .hero-text {
    padding: 0px 2em;
  }
}
.hero-home .hero-content .button-container a {
  margin: 0px 0.25em 1em 0.25em;
}
.hero-home .hero-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  z-index: -2;
}
.hero-home .hero-left {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 6;
  width: 50%;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .hero-home .hero-left {
    width: 100%;
  }
}
.hero-home .hero-left .parralax-left {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  height: calc(100vh + 60px);
}
@media screen and (max-width: 900px) {
  .hero-home .hero-left .parralax-left {
    left: -60px;
    height: 100%;
  }
}
@media screen and (max-width: 500px) {
  .hero-home .hero-left .parralax-left {
    left: -80px;
  }
}
.hero-home .hero-left .bottle-left {
  max-width: 525px;
  position: absolute;
  right: 35%;
  top: 17vw;
}
@media screen and (max-width: 900px) {
  .hero-home .hero-left .bottle-left {
    top: auto;
    bottom: 15vw;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 600px) {
  .hero-home .hero-left .bottle-left {
    padding: 0px 20px;
  }
}
.hero-home .hero-left .bottle-left img {
  transform: rotate(9deg);
}
.hero-home .hero-right {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 6;
  width: 50%;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .hero-home .hero-right {
    width: 100%;
  }
}
.hero-home .hero-right .parralax-right {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  height: calc(100vh + 60px);
}
@media screen and (max-width: 900px) {
  .hero-home .hero-right .parralax-right {
    right: -60px;
    height: 100%;
  }
}
@media screen and (max-width: 500px) {
  .hero-home .hero-right .parralax-right {
    right: -80px;
  }
}
.hero-home .hero-right .bottle-right {
  max-width: 525px;
  left: 35%;
  top: 15vw;
  position: absolute;
}
@media screen and (max-width: 900px) {
  .hero-home .hero-right .bottle-right {
    top: auto;
    bottom: 0px;
    padding: 0px 40px;
  }
}
@media screen and (max-width: 600px) {
  .hero-home .hero-right .bottle-right {
    padding: 0px 20px;
  }
}
.hero-home .hero-right .bottle-right img {
  transform: rotate(-9deg);
}
.hero-home .dust {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee {
  transform: translateY(-40%);
  position: relative;
  z-index: 999;
  opacity: 0.2;
}
.marquee .row {
  margin-left: -70%;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .marquee .row {
    margin-left: 0px;
    animation-name: marquee;
    animation-duration: 25s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
}
.marquee .row h2 {
  display: inline-block;
  white-space: nowrap;
}

/* Make it move */
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-33.333333%, 0, 0);
  }
}
.error-404 {
  text-align: center;
}

.spirit-hero {
  position: relative;
  padding-bottom: 45%;
}
@media screen and (max-width: 1500px) {
  .spirit-hero {
    padding-bottom: 35%;
  }
}
@media screen and (max-width: 1024px) {
  .spirit-hero {
    padding-bottom: 15%;
  }
}
.spirit-hero.new-layout {
  padding-bottom: 10%;
}
.spirit-hero.new-layout .cliff-bottom {
  bottom: 0px;
  -webkit-mask-image: linear-gradient(black, transparent);
  mask-image: linear-gradient(black, transparent);
}
.spirit-hero.new-layout .bottle-wrapper {
  padding-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper {
    display: block;
  }
}
.spirit-hero.new-layout .bottle-wrapper .bottle-col {
  flex: 0 0 45%;
  padding-right: 5%;
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper .bottle-col {
    flex: 0 0 100%;
    padding-right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.spirit-hero.new-layout .bottle-wrapper .bottle-col .bottle {
  max-width: min(500px, 28vw);
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper .bottle-col .bottle {
    max-width: 50vw;
  }
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col {
  flex: 0 0 50%;
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content {
  max-width: 32em;
  margin: 0 auto;
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content p {
  color: white;
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-bottom: 2em;
  margin-top: 2em;
  border: 1px solid white;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 0.25em 1em;
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container {
    margin-bottom: 1em;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
  }
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container .font-alt {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  font-size: 2em;
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container .font-alt {
    font-size: 1.5em;
  }
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container .measurement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container .separator {
  width: 1px;
  height: auto;
  min-height: 3em;
  background: white;
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content .alcohol-volume-container .separator {
    min-height: 1em;
  }
}
@media screen and (max-width: 1024px) {
  .spirit-hero.new-layout .bottle-wrapper .gin-content-col .gin-content {
    text-align: center;
  }
}
.spirit-hero .inner {
  flex-direction: column;
  align-items: center;
}
.spirit-hero .inner .hero-content {
  position: relative;
  z-index: 5;
}
.spirit-hero .inner .bottle-img {
  margin: 7% auto;
  position: relative;
  z-index: 5;
}
.spirit-hero .inner .bottle-img .bottle {
  max-width: min(600px, 33vw);
  margin: 0 auto;
  transform: rotate(10deg);
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 500px) {
  .spirit-hero .inner .bottle-img .bottle {
    max-width: 60vw;
  }
}
.spirit-hero .inner .bottle-img .smoke {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
}
.spirit-hero .cliff-top {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  margin: auto;
  line-height: 0px;
}
@media screen and (max-width: 1024px) {
  .spirit-hero .cliff-top {
    height: 100%;
  }
}
.spirit-hero .cliff-top img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .spirit-hero .cliff-top img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
  }
}
.spirit-hero .cliff-top .bg {
  padding-top: 80%;
  background: #020202;
  display: block;
}
@media screen and (max-width: 1024px) {
  .spirit-hero .cliff-top .bg {
    display: none;
  }
}
.spirit-hero .cliff-bottom {
  position: absolute;
  top: -15vw;
  left: 0px;
  right: 0px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .spirit-hero .cliff-bottom {
    height: 100%;
    top: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .spirit-hero .cliff-bottom img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
  }
}

.postid-470 .spirit-hero {
  padding-bottom: 40%;
}
.postid-470 .footer-fog.blue {
  display: none;
}

[data-scroll-container] {
  transform: perspective(1px);
}

.canyon {
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and (max-width: 1024px) {
  .canyon {
    overflow: hidden;
  }
}
.canyon .canyon-bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: -1;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .canyon .canyon-bg {
    width: 160%;
    max-width: 160%;
    left: -30%;
    bottom: 25vw;
  }
}
.canyon .inner {
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
.canyon .canyon-intro {
  max-width: 35em;
  margin: 5% auto 0px;
  position: relative;
  z-index: 99;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .canyon .canyon-intro {
    padding: 0px 8%;
  }
}
.canyon .canyon-intro h2 {
  text-align: center;
}
.canyon .canyon-intro p {
  max-width: 25em;
  margin: 0 auto 1.5em auto;
}
.canyon .dust {
  position: absolute;
  top: -15vw;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .canyon .dust {
    left: -20vw;
    right: -20vw;
    top: -20vw;
  }
}
.canyon .canyon-slider {
  width: 100%;
  position: relative;
  z-index: 3;
}
.canyon .canyon-slider .swiper-slide {
  width: 100%;
  opacity: 0;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.canyon .canyon-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.canyon .facts {
  display: flex;
  max-width: 750px;
  width: 100%;
  margin: 5% auto 5% auto;
}
@media screen and (max-width: 1024px) {
  .canyon .facts {
    max-width: 600px;
  }
}
@media screen and (max-width: 800px) {
  .canyon .facts {
    flex-direction: column;
  }
}
.canyon .facts .fact {
  flex: 0 0 50%;
  text-align: center;
  padding: 2em 1em;
  position: relative;
}
@media screen and (max-width: 800px) {
  .canyon .facts .fact {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
    padding: 1em;
  }
}
@media screen and (max-width: 800px) {
  .canyon .facts .fact img {
    max-width: 120px;
    margin-bottom: -15px;
  }
}
.canyon .facts .fact.is-inview:after {
  opacity: 1;
  transform: translateX(0px) !important;
}
.canyon .facts .fact:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0px;
  bottom: 0px;
  width: 100vw;
  background: url("/wp-content/themes/foe/images/shell/left.svg") right center no-repeat;
  transform: translateX(-35px);
  opacity: 0;
  transition: transform 0.4s ease-out 0.2s, opacity 0.4s ease-out 0.2s;
}
.canyon .facts .fact:nth-child(even):after {
  content: "";
  position: absolute;
  left: 100%;
  right: auto;
  top: 0px;
  bottom: 0px;
  width: 100vw;
  background: url("/wp-content/themes/foe/images/shell/right.svg") left center no-repeat;
  transform: translateX(35px);
}
.canyon .facts.lower {
  flex-direction: column;
}
.canyon .facts.lower .fact {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .canyon .facts.lower .fact {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
}
.canyon .bottle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 800px) {
  .canyon .bottle-row {
    padding: 0px 20px;
  }
}
.canyon .bottle-row .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #F9F5F2;
  height: 40px;
  width: 40px;
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  cursor: pointer;
  z-index: 3;
}
@media screen and (max-width: 800px) {
  .canyon .bottle-row .arrow {
    flex: 0 0 40px;
  }
}
.canyon .bottle-row .arrow:hover:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.canyon .bottle-row .arrow:hover svg path {
  stroke: #020202;
}
.canyon .bottle-row .arrow svg {
  position: relative;
  z-index: 3;
}
.canyon .bottle-row .arrow svg path {
  transition: stroke 0.4s ease-out;
}
.canyon .bottle-row .arrow:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #F9F5F2;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s ease-out;
}
.canyon .bottle-row .bottle-dust {
  position: absolute;
  z-index: 2;
  top: -2vw;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .canyon .bottle-row .bottle-dust {
    left: -20vw;
    right: -20vw;
  }
}
.canyon .bottle-img {
  position: relative;
  z-index: 5;
}
.canyon .bottle-img img {
  transform: rotate(5deg);
  max-width: 460px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 800px) {
  .canyon .bottle-img img {
    max-width: 75%;
  }
}

.distillery {
  position: relative;
}
.distillery .inner {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.distillery .bg-left,
.distillery .bg-right {
  position: absolute;
  left: -5%;
  top: 10vw;
  max-width: 30%;
}
.distillery .bg-right {
  left: auto;
  right: -5%;
}
.distillery .bg-right img {
  transform-origin: 50%;
  transform: rotate(180deg);
}
.distillery .distillery-intro {
  max-width: 35em;
  text-align: center;
  margin: 0 auto 12% auto;
}
.distillery .distillery-intro p {
  max-width: 22em;
  margin: 0 auto 1.5em auto;
}
.distillery .distillery-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
  max-width: 911px;
}
.distillery .distillery-imgs img {
  border-radius: 10px;
}
.distillery .distillery-imgs .img-2 {
  margin-top: -20%;
  position: relative;
  z-index: 4;
  max-width: 70%;
}

.spirit-flavour {
  position: relative;
  z-index: 5;
  padding-top: 15%;
  padding-bottom: 0px;
}
@media screen and (max-width: 1400px) {
  .spirit-flavour {
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media screen and (max-width: 1024px) {
  .spirit-flavour {
    padding-top: 0px;
  }
}
.spirit-flavour.new-layout {
  padding-top: 0px;
}
.spirit-flavour .dust {
  position: absolute;
  top: -3vw;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.spirit-flavour .flavour-intro {
  text-align: center;
  padding-bottom: 5%;
  position: relative;
  z-index: 3;
}
.spirit-flavour .flavour-intro p {
  max-width: 25em;
  margin: 0px auto 1.5em;
}
.spirit-flavour .bg-left,
.spirit-flavour .bg-right {
  position: absolute;
  left: -60px;
  top: 10vw;
}
@media screen and (max-width: 1400px) {
  .spirit-flavour .bg-left,
  .spirit-flavour .bg-right {
    width: 35%;
    top: 15vw;
  }
}
@media screen and (max-width: 1024px) {
  .spirit-flavour .bg-left,
  .spirit-flavour .bg-right {
    top: 0px;
  }
}
.spirit-flavour .bg-right {
  left: auto;
  top: 10vw;
  right: -60px;
}
@media screen and (max-width: 1024px) {
  .spirit-flavour .bg-right {
    top: 0px;
  }
}
.spirit-flavour .bg-right img {
  transform-origin: 50% 50%;
  transform: rotate(180deg);
}
.spirit-flavour.id-484 .flavour-card .flavour:after {
  background: url("/wp-content/themes/foe/images/shell/cocktails-right.png") center center no-repeat;
  background-size: contain;
}
.spirit-flavour .flavour-card {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .spirit-flavour .flavour-card {
    justify-content: center;
  }
}
.spirit-flavour .flavour-card .flavour {
  flex: 0 0 25%;
  padding: 0px 0.5em;
}
@media screen and (max-width: 1100px) {
  .spirit-flavour .flavour-card .flavour {
    flex: 0 0 50%;
    padding: 1em;
  }
}
.spirit-flavour .flavour-card .flavour:after {
  bottom: 60px;
}
.spirit-flavour .flavour-card .flavour .flavour-title,
.spirit-flavour .flavour-card .flavour .flavour-desc {
  opacity: 1;
  transform: translateX(0px);
}

.wide-image {
  position: relative;
}
.wide-image .wide {
  width: 100%;
}
.wide-image .bottle-img {
  position: absolute;
  top: 0px;
  bottom: 10vw;
  left: 0px;
  right: 0px;
  z-index: 3;
  display: flex;
}
.wide-image .bottle-img .bottle {
  max-width: min(600px, 40vw);
  margin: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .wide-image .bottle-img .bottle {
    padding-top: 2em;
  }
}
.wide-image .bottle-img .smoke {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  max-width: min(700px, 50vw);
  margin: auto;
}

.text-block {
  display: block;
  margin: 0 auto;
  position: relative;
}
.text-block .button-container {
  padding-top: 1em;
}
@media screen and (max-width: 500px) {
  .text-block .button-container {
    text-align: center;
  }
}

.text-image {
  transform: translateZ(0);
  backface-visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .text-image .inner {
    flex-wrap: wrap;
  }
}
.text-image .inner .text-col {
  flex: 0 0 50%;
}
@media screen and (max-width: 1024px) {
  .text-image .inner .text-col {
    flex: 0 0 100%;
  }
}
.text-image .inner .text-col .text-inner {
  max-width: 30em;
}
.text-image .inner .img-col {
  flex: 0 0 50%;
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .text-image .inner .img-col {
    flex: 0 0 100%;
    padding-top: 100%;
  }
}
@media screen and (max-width: 500px) {
  .text-image .inner .img-col {
    margin-top: 1.5em;
  }
}
.text-image .inner .img-col .img-1 {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 20%;
  left: 0px;
  margin: auto;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .text-image .inner .img-col .img-1 {
    max-width: 330px;
    right: auto;
  }
}
@media screen and (max-width: 500px) {
  .text-image .inner .img-col .img-1 {
    max-width: 300px;
    left: -5%;
  }
}
.text-image .inner .img-col .img-2 {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 20%;
  margin: auto;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .text-image .inner .img-col .img-2 {
    max-width: 250px;
    left: auto;
  }
}
@media screen and (max-width: 500px) {
  .text-image .inner .img-col .img-2 {
    max-width: 230px;
  }
}
.text-image .inner .img-col .img-bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: -300px;
  right: -300px;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .text-image .inner .img-col .img-bg {
    max-width: none;
  }
}
.text-image .inner .img-col .dust {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 2;
}
.text-image .inner .img-col .dust img {
  transform-origin: 50% 50%;
  transform: scale(2);
}
.text-image .button-container {
  padding-top: 1em;
}
@media screen and (max-width: 500px) {
  .text-image .button-container {
    text-align: center;
  }
}

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

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

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

.cocktails {
  position: relative;
  z-index: 4;
  padding-top: 0px;
}
@media screen and (max-width: 1400px) {
  .cocktails {
    padding-left: 6%;
    padding-right: 6%;
  }
}
.cocktails .inner {
  position: relative;
}
.cocktails .inner .cocktail-head {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3em;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 900px) {
  .cocktails .inner .cocktail-head {
    margin-bottom: 2em;
  }
}
.cocktails .inner .cocktail-head .category-filter {
  flex: 0 0 30.3333%;
  width: 30.3333%;
}
@media screen and (max-width: 900px) {
  .cocktails .inner .cocktail-head .category-filter {
    flex: 0 0 100%;
    width: 100%;
  }
}
.cocktails .inner .cocktail-head .filters {
  display: flex;
  align-items: center;
}
.cocktails .inner .no-post {
  text-align: center;
  padding: 1.5em 0px;
  width: 100%;
}

.cocktail-list {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  transition: opacity 0.4s ease-out;
}
.cocktail-list.loading {
  opacity: 0.5;
}
.cocktail-list.related {
  padding-top: 8%;
}
.cocktail-list.related .post {
  margin-bottom: 0px;
}
.cocktail-list.related .post .img-wrap {
  aspect-ratio: 9/10;
}
@media screen and (max-width: 1250px) {
  .cocktail-list.related .post .img-wrap {
    aspect-ratio: 7/10;
  }
}
@media screen and (max-width: 1024px) {
  .cocktail-list.related .post:last-child {
    display: none;
  }
}
.cocktail-list .post {
  flex: 0 0 31.33333%;
  position: relative;
  margin: 0px 3% 6% 0px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .cocktail-list .post {
    flex: 0 0 47.5%;
    margin-right: 5%;
    margin-bottom: 3em;
  }
}
.cocktail-list .post:nth-of-type(3n + 3) {
  margin-right: 0px;
}
@media screen and (max-width: 1024px) {
  .cocktail-list .post:nth-of-type(3n + 3) {
    margin-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  .cocktail-list .post:nth-of-type(2n + 2) {
    margin-right: 0%;
  }
}
.cocktail-list .post:hover .cocktail-img {
  opacity: 0.6;
}
.cocktail-list .post:hover h3 {
  color: #F8A36F;
}
.cocktail-list .post:hover .img-wrap .foe-button {
  opacity: 1;
  transform: translateY(0px);
}
.cocktail-list .post .img-wrap {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #1B1926;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9/12;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}
@media screen and (max-width: 800px) {
  .cocktail-list .post .img-wrap {
    aspect-ratio: 8/12;
  }
}
.cocktail-list .post .img-wrap .foe-button {
  margin: 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.cocktail-list .post .cocktail-img {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 1024px) {
  .cocktail-list .post .cocktail-img {
    top: 0px;
    height: 100%;
  }
}
.cocktail-list .post h3 {
  margin: 0px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  transform: translateY(60%);
  color: #F9F5F2;
  transition: color 0.3s ease-out;
}
.cocktail-list .load {
  flex: 0 0 100%;
  text-align: center;
  order: 9999;
  margin-top: 7%;
}
.cocktail-list .load .foe-button {
  margin-right: 0px;
}

.hero + .spirits .spirit-list {
  padding-top: 0px;
}

.spirits .spirit-list {
  position: relative;
  z-index: 3;
  padding-left: 0;
  padding-right: 0;
}
.spirits .spirit-list .row-wrapper {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.spirits .spirit-list .row-wrapper:nth-child(even) .spirit-bottle {
  order: 2;
}
@media screen and (max-width: 1024px) {
  .spirits .spirit-list .row-wrapper:nth-child(even) .spirit-bottle {
    order: 1;
  }
}
.spirits .spirit-list .row-wrapper:nth-child(even) .spirit-bottle .bottle-wrap {
  transform: rotate(-10deg);
}
.spirits .spirit-list .row-wrapper:nth-child(even) .spirit-bottle .bottle-wrap .smoke {
  transform: rotate(10deg);
}
.spirits .spirit-list .row-wrapper:nth-child(even) .spirit-bottle .bottle-wrap .dust {
  transform: rotate(10deg);
}
@media screen and (max-width: 1024px) {
  .spirits .spirit-list .row-wrapper:nth-child(even) .spirit-excerpt {
    order: 2;
  }
}
.spirits .spirit-list .row-wrapper:nth-child(even) .fork {
  right: auto;
  left: 0;
  transform: rotate(180deg);
}
.spirits .spirit-list .row-wrapper:nth-child(even) .fork img {
  transform: translateX(20px);
  transition: transform 0.4s ease-out;
}
.spirits .spirit-list .row-wrapper:nth-child(even) .fork img.is-inview {
  transform: translateX(0px);
}
.spirits .spirit-list .row-wrapper .fork {
  position: absolute;
  top: 0;
  height: 100%;
  width: 15vw;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .spirits .spirit-list .row-wrapper .fork {
    width: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .spirits .spirit-list .row-wrapper .fork {
    display: none;
  }
}
.spirits .spirit-list .row-wrapper .fork img {
  position: absolute;
  top: 0;
  width: calc(100% + 15vw);
  height: auto;
  right: -1.5vw;
  bottom: 0;
  margin: auto;
  transform: translateX(20px);
  transition: transform 0.4s ease-out;
}
.spirits .spirit-list .row-wrapper .fork img.is-inview {
  transform: translateX(0px);
}
.spirits .spirit-list .spirit-row {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.spirits .spirit-list .spirit-row .spirit-bottle {
  flex: 0 0 55%;
  padding: 7%;
}
@media screen and (max-width: 1024px) {
  .spirits .spirit-list .spirit-row .spirit-bottle {
    flex: 0 0 100%;
  }
}
.spirits .spirit-list .spirit-row .spirit-bottle .bottle-wrap {
  transform: rotate(10deg);
  position: relative;
}
.spirits .spirit-list .spirit-row .spirit-bottle .bottle-wrap .smoke {
  position: absolute;
  top: 10%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: 0 auto;
  z-index: -1;
  transform: rotate(-10deg);
}
.spirits .spirit-list .spirit-row .spirit-bottle .bottle-wrap .dust {
  position: absolute;
  top: -200px;
  left: -400px;
  right: -400px;
  bottom: -200px;
  margin: auto;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
}
.spirits .spirit-list .spirit-row .spirit-excerpt {
  flex: 0 0 45%;
}
@media screen and (max-width: 1024px) {
  .spirits .spirit-list .spirit-row .spirit-excerpt {
    flex: 0 0 100%;
  }
}
.spirits .smoke {
  opacity: 0.7;
}
.spirits .wide-rocks {
  position: relative;
}
.spirits .wide-rocks:after {
  content: "";
  position: absolute;
  top: 20vw;
  left: 0px;
  right: 0px;
  height: 600px;
  background: #020202;
  z-index: -1;
}
.spirits .wide-rocks .smoke {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 15vw;
  width: 100%;
  z-index: -5;
}
.spirits .wide-rocks .rocks {
  width: 100%;
  opacity: 1;
}

.flavour-block {
  position: relative;
  z-index: 5;
  margin-top: 5%;
}
@media screen and (max-width: 1100px) {
  .flavour-block {
    padding-bottom: 0px;
  }
}
.flavour-block .inner {
  display: block;
  position: relative;
  z-index: 4;
}
.flavour-block .flavour-intro {
  text-align: center;
  max-width: 30em;
  margin: 0 auto 5%;
}
.flavour-block .flavour-intro .dust {
  position: absolute;
  top: -20vw;
  left: -100px;
  right: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
.flavour-block .flavour-intro p {
  max-width: 23em;
  margin: 0px auto 1.5em;
}
.flavour-block .flavour-intro .button-container a {
  margin: 0px 0.25em 1em 0.25em;
}
.flavour-block .flavour-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.flavour-block .bg-left,
.flavour-block .bg-right {
  position: absolute;
  left: -10vw;
  top: 10vw;
}
@media screen and (max-width: 1400px) {
  .flavour-block .bg-left,
  .flavour-block .bg-right {
    width: 35%;
    top: 15vw;
  }
}
@media screen and (max-width: 1024px) {
  .flavour-block .bg-left,
  .flavour-block .bg-right {
    top: 0px;
  }
}
.flavour-block .bg-right {
  left: auto;
  top: 10vw;
  right: -13vw;
}
@media screen and (max-width: 1024px) {
  .flavour-block .bg-right {
    top: 0px;
  }
}

#single-post {
  padding: 10%;
}
@media screen and (max-width: 1024px) {
  #single-post {
    padding: 9% 8%;
  }
}
#single-post .inner {
  padding-top: 5%;
}
@media screen and (max-width: 1024px) {
  #single-post .inner {
    padding-top: 8%;
  }
}

.flavour-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  background: #1B1926;
  margin: 1em auto;
  flex: 0 0 calc(50% - 2em);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  padding: 5%;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: space-evenly;
}
@media screen and (max-width: 1024px) {
  .flavour-card {
    flex: 0 0 100%;
    margin: 1.5em auto 9%;
  }
}
.flavour-card.id-484 .flavour:after {
  background: url("/wp-content/themes/foe/images/shell/cocktails-right.png") center center no-repeat;
  background-size: contain;
}
.flavour-card h3 {
  flex: 0 0 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0px;
  text-align: center;
  transform: translateY(-40%);
}
.flavour-card .flavour {
  flex: 0 0 50%;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
  min-width: 200px;
}
@media screen and (max-width: 1024px) {
  .flavour-card .flavour {
    min-width: 150px;
  }
}
@media screen and (max-width: 600px) {
  .flavour-card .flavour {
    font-size: 85%;
  }
}
.flavour-card .flavour:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 35px;
  left: 0px;
  right: 0px;
  background: url("/wp-content/themes/foe/images/shell/cocktails-left.png") center center no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.flavour-card .flavour:hover:after {
  transform: translateY(0px);
  opacity: 1;
}
.flavour-card .flavour:hover .flavour-title,
.flavour-card .flavour:hover .flavour-desc {
  transform: translateY(0px);
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .flavour-card .flavour img {
    padding: 0px 1em;
  }
}
.flavour-card .flavour .flavour-title {
  margin-top: -20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
@media screen and (max-width: 600px) {
  .flavour-card .flavour .flavour-title {
    opacity: 1;
    transform: translateY(0px);
  }
}
.flavour-card .flavour .flavour-desc {
  font-size: 90%;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
@media screen and (max-width: 600px) {
  .flavour-card .flavour .flavour-desc {
    opacity: 1;
    transform: translateY(0px);
  }
}

.cocktail-slider-block {
  display: flex;
  align-items: center;
  padding: 5% 0px 7.5% 0px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1100px) {
  .cocktail-slider-block {
    flex-wrap: wrap;
    padding: 8% 0px;
    overflow: hidden;
  }
}
.cocktail-slider-block.orientation .cocktail-slider-intro {
  order: 2;
}
.cocktail-slider-block.orientation .cocktail-slider-intro .controls {
  margin-left: 0px;
  margin-right: auto;
}
@media screen and (max-width: 1100px) {
  .cocktail-slider-block.orientation .cocktail-slider-intro .controls {
    margin-left: auto;
    margin-right: 0px;
  }
}
.cocktail-slider-block.orientation .cocktail-slider {
  margin-left: -5%;
}
@media screen and (max-width: 1100px) {
  .cocktail-slider-block.orientation .cocktail-slider {
    margin: 0px;
  }
}
.cocktail-slider-block.new-layout {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .cocktail-slider-block.new-layout {
    padding-bottom: 15%;
  }
}
.cocktail-slider-block.new-layout .cocktail-slider-intro {
  flex: 0 0 100%;
  padding: 0px;
  text-align: center;
  max-width: 32em;
  margin: 0 auto;
  padding-bottom: 5%;
}
.cocktail-slider-block.new-layout .new-layout-slider {
  flex: 0 0 100%;
  width: 100%;
  padding: 0px;
  padding-left: 2.5%;
  padding-right: 2.5%;
}
@media screen and (max-width: 1024px) {
  .cocktail-slider-block.new-layout .new-layout-slider {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.cocktail-slider-block.new-layout .new-layout-slider .swiper-slide {
  opacity: 1;
}
.cocktail-slider-block.new-layout .controls {
  margin: 0px auto;
  padding-top: 5%;
  order: 3;
}
@media screen and (max-width: 1024px) {
  .cocktail-slider-block.new-layout .controls {
    padding-top: 3.5em;
  }
}
.cocktail-slider-block .cocktail-slider-intro {
  flex: 0 0 43%;
  padding: 0px 7%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .cocktail-slider-block .cocktail-slider-intro {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 1100px) {
  .cocktail-slider-block .cocktail-slider-intro {
    flex: 0 0 100%;
    width: 100%;
    padding: 8%;
    order: 1;
  }
}
.cocktail-slider-block .controls {
  margin-left: auto;
}
.cocktail-slider-block .controls .slider-arrows {
  display: flex;
  align-items: center;
}
.cocktail-slider-block .controls .slider-arrows > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #F9F5F2;
  height: 40px;
  width: 40px;
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  .cocktail-slider-block .controls .slider-arrows > div {
    margin-left: 10px;
    margin-right: 0px;
  }
}
.cocktail-slider-block .controls .slider-arrows > div:hover:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.cocktail-slider-block .controls .slider-arrows > div:hover svg path {
  stroke: #020202;
}
.cocktail-slider-block .controls .slider-arrows > div svg {
  position: relative;
  z-index: 3;
}
.cocktail-slider-block .controls .slider-arrows > div svg path {
  transition: stroke 0.4s ease-out;
}
.cocktail-slider-block .controls .slider-arrows > div:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #F9F5F2;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s ease-out;
}
.cocktail-slider-block .cocktail-slider {
  flex: 0 0 62%;
  width: 62%;
}
@media screen and (max-width: 1200px) {
  .cocktail-slider-block .cocktail-slider {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .cocktail-slider-block .cocktail-slider {
    flex: 0 0 100%;
    width: 100%;
    padding: 0px 8% 1em 8%;
    order: 2;
  }
}
.cocktail-slider-block .cocktail-slider .slide {
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}
.cocktail-slider-block .cocktail-slider .slide.swiper-slide-active, .cocktail-slider-block .cocktail-slider .slide.swiper-slide-next {
  opacity: 1;
  pointer-events: all;
}
.cocktail-slider-block .cocktail-slider .slide:hover .cocktail-img {
  opacity: 0.6;
}
.cocktail-slider-block .cocktail-slider .slide:hover h3 {
  color: #F8A36F;
}
.cocktail-slider-block .cocktail-slider .slide:hover .img-wrap .foe-button {
  opacity: 1;
  transform: translateY(0px);
}
.cocktail-slider-block .cocktail-slider .img-wrap {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #1B1926;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9/12;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cocktail-slider-block .cocktail-slider .img-wrap .foe-button {
  margin: 0px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-out;
}
.cocktail-slider-block .cocktail-slider .cocktail-img {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.cocktail-slider-block .cocktail-slider h3 {
  margin: 0px;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  text-align: center;
  transform: translateY(60%);
  color: #F9F5F2;
  transition: color 0.3s ease-out;
}

.single-main.contact-gin h1 {
  color: #F8A36F;
}
.single-main.parabola-gin h1 {
  color: #84C4D0;
}
.single-main .inner {
  align-items: flex-start;
}
.single-main .inner .single-img {
  flex: 0 0 50%;
  aspect-ratio: 1/1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #1B1926;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 30vw;
}
@media screen and (max-width: 1024px) {
  .single-main .inner .single-img {
    flex: 0 0 100%;
  }
}
.single-main .inner .single-img img {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .single-main .inner .single-img img {
    top: 0px;
    height: 100%;
  }
}
.single-main .inner .single-intro {
  flex: 0 0 50%;
  padding: 0px 5%;
}
@media screen and (max-width: 1024px) {
  .single-main .inner .single-intro {
    flex: 0 0 100%;
    padding: 8% 0px;
  }
}
.single-main .inner .single-intro h1 {
  font-size: 6em;
}
.single-main .inner .single-intro .ingredients {
  padding-top: 1.5em;
}
.single-main .inner .single-intro .foe-button {
  margin: 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 #F8A36F;
  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: "Morganite", 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: #F8A36F;
  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 {
  padding-left: 0px;
  padding-right: 0px;
}
.slider-block .inner {
  display: block;
}
.slider-block .slider {
  width: 100%;
  position: relative;
}
.slider-block .slider .slide {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.slider-block .slider .slide .slide-img {
  border-radius: 0px 10px 10px 0px;
  flex: 0 0 50%;
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
  background: #1B1926;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: none;
}
@media screen and (max-width: 1024px) {
  .slider-block .slider .slide .slide-img {
    flex: 0 0 92%;
  }
}
.slider-block .slider .slide .slide-img img {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-block .slider .slide .slide-text {
  flex: 0 0 50%;
  padding: 0px 5% max(5%, 3em) 5%;
  position: relative;
  z-index: 5;
  color: white;
}
@media screen and (max-width: 1024px) {
  .slider-block .slider .slide .slide-text {
    flex: 0 0 100%;
    padding: 9% 8% max(11%, 3.5em);
  }
}
.slider-block .slider .slide .slide-text .text-inner {
  max-width: 30em;
}
.slider-block .slider .slide .slide-text h4 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.slider-block .slider .slide .slide-text p {
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  text-align: left;
}
.slider-block .slider .slide .slide-text .button-container {
  justify-content: flex-start;
  margin-top: 40px;
}
.slider-block .slider .slide .slide-text .button-container .foe-button {
  margin: 0;
}
.slider-block .slider .slide .slide-text .button-container .foe-button::before {
  background-color: #F8A36F;
}
.slider-block .slider .slide .slide-text .button-container .foe-button::after {
  background-color: #F8A36F;
}
.slider-block .slider .controls {
  position: absolute;
  z-index: 99;
  bottom: 0px;
  left: 50%;
  padding: 0px 5vw;
}
@media screen and (max-width: 1024px) {
  .slider-block .slider .controls {
    left: 8%;
    padding: 0px;
  }
}
.slider-block .slider .controls .slider-arrows {
  display: flex;
  align-items: center;
}
.slider-block .slider .controls .slider-arrows > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #F9F5F2;
  height: 40px;
  width: 40px;
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  cursor: pointer;
}
.slider-block .slider .controls .slider-arrows > div:hover:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.slider-block .slider .controls .slider-arrows > div:hover svg path {
  stroke: #020202;
}
.slider-block .slider .controls .slider-arrows > div svg {
  position: relative;
  z-index: 3;
}
.slider-block .slider .controls .slider-arrows > div svg path {
  transition: stroke 0.4s ease-out;
}
.slider-block .slider .controls .slider-arrows > div:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #F9F5F2;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s ease-out;
}

.spirit-slider-block {
  padding-left: 0px;
  padding-right: 0px;
  position: relative;
  z-index: 5;
}
.spirit-slider-block .slider {
  width: 45%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: none;
  border-radius: 0px 10px 10px 0px;
  overflow: hidden;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .spirit-slider-block .slider {
    flex: 0 0 91%;
    width: 91%;
  }
}
.spirit-slider-block .slider .slide {
  width: 100%;
  position: relative;
}
.spirit-slider-block .slider .slide .slide-img {
  aspect-ratio: 13/11;
}
@media screen and (max-width: 1024px) {
  .spirit-slider-block .slider .slide .slide-img {
    aspect-ratio: 13/9;
  }
}
.spirit-slider-block .slider .slide .slide-img img {
  position: absolute;
  top: -60px;
  left: 0px;
  width: 100%;
  height: calc(100% + 120px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .spirit-slider-block .slider .slide .slide-img img {
    top: 0px;
    height: 100%;
  }
}
.spirit-slider-block .profile {
  flex: 0 0 55%;
  width: 55%;
  padding: 0px 7%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .spirit-slider-block .profile {
    flex: 0 0 100%;
    width: 100%;
    padding: 9% 8%;
  }
}
.spirit-slider-block .controls {
  margin-top: auto;
}
.spirit-slider-block .controls .slider-arrows {
  display: flex;
  align-items: center;
}
.spirit-slider-block .controls .slider-arrows > div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #F9F5F2;
  height: 40px;
  width: 40px;
  position: relative;
  margin-right: 10px;
  overflow: hidden;
  cursor: pointer;
}
.spirit-slider-block .controls .slider-arrows > div:hover:after {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.spirit-slider-block .controls .slider-arrows > div:hover svg path {
  stroke: #020202;
}
.spirit-slider-block .controls .slider-arrows > div svg {
  position: relative;
  z-index: 3;
}
.spirit-slider-block .controls .slider-arrows > div svg path {
  transition: stroke 0.4s ease-out;
}
.spirit-slider-block .controls .slider-arrows > div:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #F9F5F2;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform 0.4s ease-out;
}

.floating-bottles {
  display: flex;
  justify-content: space-between;
  padding: 7% 0px;
}
.floating-bottles > div {
  flex: 0 0 25%;
}
.floating-bottles .bottle-1 {
  flex: 0 0 20%;
  filter: blur(7px);
}
.floating-bottles .bottle-1 img {
  transform: rotate(13deg);
}
.floating-bottles .bottle-2 {
  flex: 0 0 33%;
}
@media screen and (max-width: 1024px) {
  .floating-bottles .bottle-2 {
    flex: 0 0 45%;
  }
}
@media screen and (max-width: 500px) {
  .floating-bottles .bottle-2 {
    flex: 0 0 50%;
  }
}
.floating-bottles .bottle-2 img {
  transform: rotate(-15deg);
}
.floating-bottles .bottle-3 {
  filter: blur(2px);
  margin-right: -5%;
}
@media screen and (max-width: 500px) {
  .floating-bottles .bottle-3 {
    flex: 0 0 30%;
  }
}
.floating-bottles .bottle-3 img {
  transform: rotate(6deg);
}

.single-spirit .instagram-block {
  display: none;
}
.single-spirit .blue-bg {
  overflow: hidden;
  top: unset;
  bottom: 0;
  height: 200vh;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 50%, black 90%, transparent 100%);
}
.single-spirit .blue-bg .footer-fog {
  top: auto;
  bottom: 0px;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 1024px) {
  .single-spirit .blue-bg {
    display: none;
  }
}
.single-spirit .wide-rocks {
  position: relative;
  padding-top: 10%;
}
.single-spirit .wide-rocks:after {
  content: "";
  position: absolute;
  top: 20vw;
  left: 0px;
  right: 0px;
  height: 600px;
  background: #020202;
  z-index: -1;
}
.single-spirit .wide-rocks .smoke {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 15vw;
  width: 100%;
  z-index: -5;
}
.single-spirit .wide-rocks .rocks {
  width: 100%;
  opacity: 1;
}

.instagram-block {
  padding: 50px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1350px) {
  .instagram-block {
    flex-wrap: wrap;
    padding: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .instagram-block {
    padding: 8%;
  }
}
.instagram-block .instagram-intro {
  flex: 0 0 25%;
  padding: 0px 30px;
  font-size: 90%;
}
@media screen and (max-width: 1350px) {
  .instagram-block .instagram-intro {
    flex: 0 0 100%;
    padding: 0px 60% 0px 25px;
  }
}
@media screen and (max-width: 1100px) {
  .instagram-block .instagram-intro {
    padding: 0px 0px 0px 25px;
  }
  .instagram-block .instagram-intro h3,
  .instagram-block .instagram-intro p {
    max-width: 30rem;
  }
}
@media screen and (max-width: 1024px) {
  .instagram-block .instagram-intro {
    padding: 0px;
  }
}
@media screen and (max-width: 800px) {
  .instagram-block .instagram-intro h3,
  .instagram-block .instagram-intro p {
    max-width: 23rem;
  }
}
.instagram-block .instagram-feed {
  flex: 0 0 75%;
}
@media screen and (max-width: 1350px) {
  .instagram-block .instagram-feed {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 1024px) {
  .instagram-block .instagram-feed #sbi_images {
    margin: 0px -20px;
    width: calc(100% + 40px) !important;
  }
}
.instagram-block .instagram-feed #sb_instagram {
  padding: 0px !important;
}
.instagram-block .instagram-feed #sb_instagram .sbi_photo {
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-out;
}
.instagram-block .instagram-feed #sb_instagram .sbi_photo:hover {
  border: 1px solid #F9F5F2;
}

.footer-fog {
  position: absolute;
  bottom: auto;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .footer-fog {
    top: auto;
    bottom: 0px;
  }
}

.blue-bg {
  background: #1B1926;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0px;
  top: -40vw;
  z-index: -5;
}
@media screen and (max-width: 1024px) {
  .blue-bg {
    top: -60vw;
  }
}

body .c-scrollbar_thumb {
  background: white;
}

.form-block {
  padding: 10% 5% 0px;
}
.form-block .form-wrap {
  border-radius: 10px;
  background: #1B1926;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 7% 7% 5% 7%;
  max-width: 40em;
  margin: 0 auto;
  position: relative;
}
.form-block .form-wrap h2 {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  text-align: center;
  color: #F8A36F;
  transform: translateY(-50%);
}

.map-block {
  margin: 5%;
  border-radius: 10px;
  background: #1B1926;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  display: flex;
  position: relative;
}
@media screen and (max-width: 700px) {
  .map-block {
    flex-wrap: wrap;
  }
}
.map-block .map-intro {
  padding: 7%;
  flex: 0 0 35%;
}
@media screen and (max-width: 1100px) {
  .map-block .map-intro {
    flex: 0 0 40%;
  }
}
@media screen and (max-width: 700px) {
  .map-block .map-intro {
    flex: 0 0 100%;
    padding: 8% 7%;
  }
}
.map-block .map-intro h3 {
  padding-top: 0.5em;
}
.map-block .acf-map {
  flex: 0 0 65%;
}
@media screen and (max-width: 1100px) {
  .map-block .acf-map {
    flex: 0 0 60%;
  }
}
@media screen and (max-width: 700px) {
  .map-block .acf-map {
    flex: 0 0 100%;
    padding-top: 75%;
  }
}

.finder-map {
  margin: 5%;
  border-radius: 10px;
  background: #1B1926;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.finder-map .map-wrap {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .finder-map .map-wrap {
    flex-wrap: wrap;
  }
}
.finder-map .map-wrap .map-left {
  flex: 0 0 45%;
  padding: 5%;
}
@media screen and (max-width: 1024px) {
  .finder-map .map-wrap .map-left {
    flex: 0 0 100%;
    padding: 7%;
  }
}
.finder-map .map-wrap .map-left .wpgmza-store-locator {
  width: 100%;
  padding-bottom: 0.5em;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator > div {
  width: calc(100% - 69px);
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .wpgmza-search {
  width: 54px;
  height: 54px;
  padding: 18px;
  margin-left: 15px;
  border-radius: 5px;
  transition: background 0.3s ease-out;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .wpgmza-search:hover {
  background: #F8A36F;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .wpgmza-search circle,
.finder-map .map-wrap .map-left .wpgmza-store-locator .wpgmza-search line {
  stroke: #020202;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .wpgmza-radius-container {
  display: none;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator label {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  font-size: 3em;
  line-height: 0.9;
  margin: 0.2em 0px;
  display: block;
  text-transform: uppercase;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .addressInput {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #F9F5F2;
  padding: 0px 1em;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .addressInput:focus {
  border-color: #F8A36F;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .addressInput::-webkit-input-placeholder {
  color: #F9F5F2;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .addressInput::-moz-placeholder {
  /* Firefox 19+ */
  color: #F9F5F2;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .addressInput:-ms-input-placeholder {
  /* IE 10+ */
  color: #F9F5F2;
}
.finder-map .map-wrap .map-left .wpgmza-store-locator .addressInput:-moz-placeholder {
  /* Firefox 18- */
  color: #F9F5F2;
}
.finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter {
  padding-bottom: 1.5em;
  width: 100%;
}
.finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter label {
  margin-bottom: 5px;
}
.finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: url("/wp-content/themes/foe/images/shell/arrow-down.svg") right 1em center no-repeat;
  background-size: 25px;
  height: 3em;
  font-size: 18px;
  border-radius: 5px;
  transition: border 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #F9F5F2;
  padding: 0px 3.5em 0px 1em;
  box-shadow: none;
  margin-right: 0px;
}
@media screen and (max-width: 900px) {
  .finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter select {
    font-size: 17px;
    background-size: 20px;
  }
}
.finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter select:focus {
  outline: none;
  border: 1px solid #F8A36F;
  box-shadow: none;
}
.finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter select option {
  color: #F9F5F2;
  background: #020202;
  border: 1px solid #F9F5F2;
  border-top: none;
}
.finder-map .map-wrap .map-left .wpgmza-marker-listing-category-filter select option:first-child {
  border-top: 1px solid #F9F5F2;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmza_marker_list_class {
  height: 350px;
  overflow-y: scroll;
  padding-right: 15px;
}
@media screen and (max-width: 1024px) {
  .finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmza_marker_list_class {
    height: 300px;
  }
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmza_marker_list_class::-webkit-scrollbar {
  width: 10px;
  border-radius: 20px;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmza_marker_list_class::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmza_marker_list_class::-webkit-scrollbar-thumb {
  background-color: #F9F5F2;
  border-radius: 20px;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmaps_mlist_row {
  background: none;
  padding: 1em 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmaps_mlist_row .wpgmza-basic-listing-image-holder,
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmaps_mlist_row .wpgmza_marker_icon {
  display: none;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmaps_mlist_row .wpgmza-desc {
  margin: 0px;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmaps_mlist_row br {
  display: none;
}
.finder-map .map-wrap .map-left .wpgmza-standalone-component .wpgmaps_mlist_row p {
  margin: 0px;
}
.finder-map .map-wrap .map-left .wpgmza-pagination {
  padding: 2em 0px 0px 0px;
  height: auto;
}
.finder-map .map-wrap .map-left .wpgmza-pagination ul li {
  min-height: 0px;
  min-width: 0px;
  border: none;
}
.finder-map .map-wrap .map-left .wpgmza-pagination ul li a {
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  line-height: 28px;
  min-height: 0px;
  min-width: 0px;
}
.finder-map .map-wrap .map-left .wpgmza-pagination ul li a:hover {
  border-color: #F8A36F;
  background: #F8A36F;
}
.finder-map .map-wrap .map-left .wpgmza-pagination ul li.active a {
  color: #020202;
}
.finder-map .map-wrap .wpgmza_map {
  min-height: 500px;
  flex: 0 0 55%;
  height: auto !important;
  color: #020202;
}
@media screen and (max-width: 1024px) {
  .finder-map .map-wrap .wpgmza_map {
    flex: 0 0 100%;
    min-height: 400px;
  }
}

/*
Form Styling

Including generic form elements and specific Gravity Form styling overrides.
*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=tel] {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  height: 3em;
  transition: border 0.3s ease-out;
  padding: 0px 1.1em;
  color: #F9F5F2;
  border-radius: 5px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus {
  outline: none;
  border: 1px solid #F8A36F;
}

textarea {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  height: 6em;
  color: #F9F5F2;
  transition: border 0.3s ease-out;
  padding: 1em 1.3em;
}
textarea:focus {
  outline: none;
  border: 1px solid #F8A36F;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: url("/wp-content/themes/foe/images/shell/arrow-down.svg") right 1em center no-repeat;
  background-size: 25px;
  height: 3em;
  font-size: 20px;
  border-radius: 5px;
  transition: border 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #F9F5F2;
  padding: 0px 3.5em 0px 1.3em;
  box-shadow: none;
}
@media screen and (max-width: 900px) {
  select {
    font-size: 17px;
    background-size: 20px;
  }
}
select:focus {
  outline: none;
  border: 1px solid #F8A36F;
  box-shadow: none;
}
select option {
  color: #F9F5F2;
  background: #020202;
  border: 1px solid #F9F5F2;
  border-top: none;
}
select option:first-child {
  border-top: 1px solid #F9F5F2;
}

.gform_required_legend {
  display: none;
}

#page .gform_wrapper {
  margin: 0px;
}
#page .gform_wrapper .gform_validation_errors > h2 {
  color: white;
  padding-left: 20px;
  line-height: 1.4;
  position: relative;
  transform: translateY(0%);
  text-transform: none;
}
#page .gform_wrapper .gform_validation_errors > h2:before {
  position: absolute;
  left: 0px;
  top: 3px;
}
#page .gform_wrapper .gform_validation_errors > h2 .gform-icon {
  height: 60px;
}
#page .gform_wrapper .validation_error,
#page .gform_wrapper .gform_validation_errors {
  background: rgba(0, 0, 0, 0.32);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1.5em 2em;
  margin: 0px 0px 15px 0px;
  width: auto;
  font-size: 16px;
  box-shadow: none;
  font-weight: 400;
  text-align: center;
}
#page .gform_wrapper .validation_error:focus,
#page .gform_wrapper .gform_validation_errors:focus {
  outline: none;
}
#page .gform_wrapper .validation_error .gform_submission_error,
#page .gform_wrapper .gform_validation_errors .gform_submission_error {
  font-family: "acumin-pro-semi-condensed", Helvetica, Roboto, Arial, sans-serif;
  font-size: 18px;
  padding: 0px;
}
#page .gform_wrapper .validation_error .gform_submission_error .gform-icon,
#page .gform_wrapper .gform_validation_errors .gform_submission_error .gform-icon {
  display: none;
}
#page .gform_wrapper .validation_error ol,
#page .gform_wrapper .gform_validation_errors ol {
  margin: 0px;
}
#page .gform_wrapper .validation_error ol li,
#page .gform_wrapper .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
#page .gform_wrapper .validation_error ol li a,
#page .gform_wrapper .gform_validation_errors ol li a {
  color: white;
}
#page .gform_wrapper .gform_fields {
  margin: 0px;
  padding: 0px;
  grid-column-gap: 4%;
}
#page .gform_wrapper .gform_fields fieldset.gfield {
  width: 102%;
  margin-left: -1%;
}
#page .gform_wrapper .gform_fields fieldset.gfield > legend {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields fieldset.gfield .ginput_container_address span {
  padding-left: 1%;
  padding-right: 1%;
}
#page .gform_wrapper .gform_fields .gfield {
  width: 100%;
  clear: none;
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error {
  background: none;
  border: none;
  max-width: none !important;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container input,
#page .gform_wrapper .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: #F8A36F;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .validation_message {
  padding: 5px 0px 0px 0px;
  color: #020202;
  border: none;
  background: none;
  margin: 0px;
  color: #F8A36F;
  font-size: 0.6em;
}
#page .gform_wrapper .gform_fields .gfield.gfield_error .gfield_label {
  margin-top: 0px;
  color: #F9F5F2;
}
#page .gform_wrapper .gform_fields .gfield label {
  font-size: 14px;
  padding: 0px;
  font-weight: 300;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container input {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  height: 3em;
  transition: border 0.3s ease-out;
  padding: 0px 1.1em;
  border-radius: 5px;
  color: #F9F5F2;
  font-size: 17px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border: 1px solid #F8A36F;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 150px;
  padding: 0.8em 1.1em;
  background: none;
  border-radius: 5px;
  color: #F9F5F2;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
#page .gform_wrapper .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border: 1px solid #F8A36F;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  background: #f4f4f4 url("/wp-content/themes/foe/images/shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  border-radius: 2px;
  height: 40px;
  padding: 0px 15px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  background-color: rgb(231.25, 231.25, 231.25);
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: #F8A36F !important;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 35px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 0px;
  display: block;
  border: 3px solid white;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: #cfd2d3;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox {
  padding-left: 1%;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  margin: 0px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input {
  display: none;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input:checked + label:after {
  background: #F8A36F !important;
  box-shadow: 0px 0px 0px 3px #F8A36F;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 40px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 7px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 3px;
  display: block;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  transition: background 0.2s ease-out;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:before {
  content: "";
  position: absolute;
  z-index: 9;
  transform-origin: 50% 50%;
  transform: rotate(-45deg);
  border: 3px solid white;
  border-right: 0px;
  border-top: 0px;
  width: 14px;
  height: 8px;
  top: 13px;
  left: 7px;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #e0e1e2;
}
#page .gform_wrapper .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
#page .gform_wrapper .gform_footer {
  margin: 0px;
  padding: 2em 0px 0px 0px;
  text-align: center;
  justify-content: center;
}
#page .gform_wrapper button[type=submit] {
  font-family: "Morganite", Roboto, Arial, sans-serif;
  display: inline-block;
  padding: 0.45em 1.2em 0.27em 1.2em;
  line-height: 0.9;
  font-size: 1.5em;
  letter-spacing: 1px;
  background: #F9F5F2;
  color: #020202;
  font-weight: 600;
  border: 1px solid #F9F5F2;
  border-radius: 5px;
  font-weight: bold;
  margin: 0px 0.5em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-transform: uppercase;
  transition: all 0.2s ease-out;
}
#page .gform_wrapper button[type=submit]:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: #F8A36F;
  z-index: -1;
  transform-origin: 100% 50%;
  transform: translateX(-105%);
  transition: transform 0.4s ease-out;
}
#page .gform_wrapper button[type=submit]:hover {
  color: #020202;
  background: #F8A36F;
}
#page .gform_wrapper button[type=submit]:hover:after {
  transform-origin: 0% 50%;
  transform: translateX(0%);
}

.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: #020202 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;
  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: 3px solid rgba(248, 163, 111, 0.45);
  border-top: 3px solid #F8A36F;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=styles.css.map */