@charset "UTF-8";
/*
Global CSS Variables
:root selector holds theme variables for use throughout CSS.
*/
@view-transition {
  navigation: auto;
}
::view-transition-old('.container') {
  -webkit-animation: 250ms ease-in both exit;
          animation: 250ms ease-in both exit;
}

::view-transition-new('.container') {
  -webkit-animation: 400ms ease-out both enter;
          animation: 400ms ease-out both enter;
}

@-webkit-keyframes exit {
  to {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}

@keyframes exit {
  to {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
}
@-webkit-keyframes enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
}
@keyframes enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
}
:root {
  /* Colors */
  --color-primary: #e17341;
  --color-primary-rgb: 225, 115, 65;
  --color-secondary: #122a37;
  --color-secondary-rgb: 18, 42, 55;
  --color-light: #fcf1ec;
  --color-light-rgb: 252, 241, 236;
  --color-peach: #edab8d;
  --color-yellow: #feb74e;
  --color-black: #0D0D0D;
  /* Derivative colors (must manually resolve values) */
  --color-primary-dark: #be5a33;
  /* darken(#e17341, 10%) */
  --color-primary-light: #eb9971;
  /* lighten(#e17341, 10%) */
  --color-secondary-dark: #1E2B33;
  /* darken(#122a37, 10%) */
  --color-secondary-light: #e8e9f14d;
  --color-secondary-lighter: #7b8f9f;
  --color-purple: #9ba3f1;
  --color-green: #325b4d;
  --color-grey: #a6a6a7;
  /* For apps */
  --color-cream: #fff7f0;
  /* Images Path (custom property for future reference; CSS cannot use in url() natively) */
  --path: "/wp-content/themes/foe/images/";
  /* Font Families */
  --font-primary: "Halyard Display", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/*
CSS Transitions

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

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

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

body {
  margin: 0;
}

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

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

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

[hidden],
template {
  display: none;
}

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

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

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

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

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

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

figure {
  margin: 2em 0px;
}

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

pre {
  overflow: auto;
}

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

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

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

input {
  line-height: normal;
}

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

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

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

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

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

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

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

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

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

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

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

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

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

body {
  background: #fff;
}

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

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

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

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

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

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

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

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

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

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

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

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

textarea {
  vertical-align: middle;
}

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

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

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

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  color: var(--color-primary);
}

a:hover,
a:focus,
a:active {
  color: var(--color-primary-dark);
}

a:focus {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
  display: block;
}

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

.col-12 {
  width: 100%;
}

.col-11 {
  width: 91.66666667%;
}

.col-10 {
  width: 83.33333333%;
}

.col-9 {
  width: 75%;
}

.col-8 {
  width: 66.66666667%;
}

.col-7 {
  width: 58.33333333%;
}

.col-6 {
  width: 50%;
}

.col-5 {
  width: 41.66666667%;
}

.col-4 {
  width: 33.33333333%;
}

.col-3 {
  width: 25%;
}

.col-2 {
  width: 16.66666667%;
}

.col-1 {
  width: 8.33333333%;
}

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

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

/*
Fonts Styling

@font-face imports included here along with heading and button styles.
*/
@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: local(""), url("../fonts/Manrope-Regular.woff") format("woff"), url("../fonts/Manrope-Regular.ttf") format("truetype"), url("../fonts/Manrope-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Manrope";
  font-weight: 700;
  src: local(""), url("../fonts/Manrope-Bold.woff") format("woff"), url("../fonts/Manrope-Bold.ttf") format("truetype"), url("../fonts/Manrope-Bold.otf") format("opentype");
}
@font-face {
  font-family: "ClashGrotesk-Medium";
  font-weight: 500;
  src: url("../fonts/ClashGrotesk-Medium.woff2") format("woff2"), url("../fonts/ClashGrotesk-Medium.woff") format("woff");
}
/*
GLOBALS
*/
html {
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-display: swap;
  font-size: 1.5625rem;
  letter-spacing: 1px;
  line-height: 1.2;
  font-weight: 300;
  color: #122a37;
  background: var(--color-light);
}
@media screen and (max-width: 800px) {
  body {
    font-size: 16px;
  }
}

a {
  color: var(--color-primary);
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
a:hover {
  color: var(--color-primary-dark);
}

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

/*
HEADINGS
*/
h1,
.primary-heading {
  line-height: 1.1;
  margin: 0.4em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 400;
  font-size: 3rem;
  font-family: var(--font-secondary);
}
h1 strong,
.primary-heading strong {
  font-weight: 600;
  letter-spacing: 0px;
}

h2,
.secondary-heading {
  font-family: var(--font-secondary);
  font-size: 3rem;
  line-height: 1.1;
  margin: 0.4em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}
h2 strong,
.secondary-heading strong {
  font-weight: 500;
  letter-spacing: 0px;
}

h3,
.small-heading {
  font-family: var(--font-secondary);
  font-size: clamp(2.25rem, 2.0625rem + 0.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0.4em 0px;
  display: block;
  text-wrap: balance;
  font-weight: 500;
}
h3 strong,
.small-heading strong {
  font-weight: 600;
  letter-spacing: 0px;
}

h4 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 1.125rem + 1vw, 2rem);
  line-height: 1.2;
  margin: 0 0px 1em;
  display: block;
  text-wrap: balance;
  font-weight: 400;
}

h5,
.sub-heading {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0.4rem 0px;
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 700;
}

.font-size-24 {
  font-size: clamp(1.25rem, 1.0625rem + 0.5vw, 1.5rem);
}

.font-size-20 {
  font-size: clamp(1rem, 0.8125rem + 0.5vw, 1.25rem);
}

.font-size-15 {
  font-size: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.line-wrapper {
  overflow: hidden;
}

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

p strong {
  font-weight: 400;
}

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

.foe-button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-family: var(--font-secondary);
  display: block;
  padding: 1em 2em;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 1.5px;
  background: linear-gradient(79deg, #feb74e 0.55%, #e17341 19.99%, #0d2938 72.76%, #093a53 144.97%);
  color: white;
  border-radius: 1000px;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04), 0 2px 4px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04), 0 2px 4px 0 rgba(0, 0, 0, 0.04);
  text-transform: uppercase;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.foe-button:hover {
  background: var(--color-primary-dark);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  color: white;
}
.foe-button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.foe-button.outline {
  border: 1px solid var(--color-secondary);
  color: var(--color-secondary);
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.foe-button.outline:hover {
  background: var(--color-secondary);
  color: white;
}
.foe-button.white {
  color: var(--color-secondary);
  background: var(--color-light);
}

/*
Header and Navigation Styling
*/
#container {
  padding-top: calc(var(--header-height) + 2%);
}

.admin-bar #header {
  top: 32px;
}
.admin-bar .ScrollSmoother-wrapper {
  margin-top: 32px;
}

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

.admin-bar #header {
  top: 32px;
}

#header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
}
#header.light .site-logo path {
  fill: #ffffff;
}
#header.light .header-inner {
  background: rgba(0, 0, 0, 0.1);
}
#header.scrolled .header-inner {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
#header.scrolled .header-button {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-secondary);
}
#header.scrolled .header-button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-cream);
}
#header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 15px 4%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
#header .main-nav {
  margin-left: auto;
  margin-right: 1.5em;
}
#header .main-nav {
  display: none;
}
#header .header-button {
  margin: 0px;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 900px) {
  #header .header-button {
    display: none;
  }
}
#header .phone-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-green);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1em;
  font-family: var(--font-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 900px) {
  #header .phone-button {
    width: 40px;
    height: 40px;
  }
}
#header .phone-button svg {
  width: 16px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  #header .phone-button svg {
    width: 12px;
  }
}
#header .phone-button:hover {
  background: var(--color-secondary);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#header .phone-button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

/*
Adding top padding to offset fixed header. 
For transparent headers bonus padding should be moved into hero/first block.
*/
.site-branding {
  line-height: 0px;
  font-size: 0px;
}
.site-branding a {
  display: block;
}
.site-branding .site-icon {
  margin-right: 5px;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 900px) {
  .site-branding .site-icon {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 900px) {
  .site-branding .site-icon {
    width: 30px;
    height: 30px;
  }
}
.site-branding .site-logo {
  width: auto;
  height: 38px;
}
.site-branding .site-logo path {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}

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

#header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}
#header_nav > li.current-menu-item > a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  z-index: -1;
}
#header_nav > li.current-menu-item:hover > a:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  background: white;
}
#header_nav li {
  position: relative;
  padding: 0px 1em;
}
#header_nav li:hover > a {
  color: var(--color-secondary);
}
#header_nav li:hover > a:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
}
#header_nav li a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5em 0px;
  line-height: 1.1;
  font-size: 90%;
  letter-spacing: 1px;
  display: inline-block;
  font-weight: 500;
  position: relative;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}
#header_nav li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: var(--color-primary);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
@media screen and (max-width: 900px) {
  #header_nav li a {
    display: block;
    width: 100%;
  }
}
#header_nav li .sub-menu,
#header_nav li .children {
  position: absolute;
  left: -200px;
  right: -200px;
  margin: auto;
  width: 200px;
  top: 54px;
  background: var(--color-primary);
  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: var(--color-primary);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header_nav li .sub-menu li,
#header_nav li .children li {
  background: var(--color-primary);
  display: block;
  float: none;
}
#header_nav li .sub-menu li a,
#header_nav li .children li a {
  display: block;
  padding: 10px 25px;
  color: white;
}
@media screen and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}

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

.mobile-nav {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(40px);
  z-index: 99;
  position: fixed;
  top: 60px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: calc(100svh - 60px);
  padding: 3em 1em 3em 2em;
}
.mobile-nav .mobile-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  overflow-y: scroll;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px !important;
  cursor: pointer;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
  border-left: 1px solid transparent;
  border-radius: 10px !important;
}
.mobile-nav .mobile-nav-inner::-webkit-scrollbar {
  width: 8px;
  scroll-behavior: smooth !important;
}
.mobile-nav .mobile-nav-inner .mobile-social {
  margin-top: 1em;
}
.mobile-nav a {
  color: white;
  font-weight: 500;
}
.mobile-nav .mobile-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#mobile-nav {
  clear: both;
  padding: 1em 0px;
  list-style-type: none;
}
#mobile-nav ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
#mobile-nav ul > li.current_page_item {
  position: relative;
}
#mobile-nav ul > li.current_page_item::before {
  content: "";
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  width: calc(100% - 2em);
}
#mobile-nav li {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#mobile-nav li.menu-item-has-children > a {
  position: relative;
}
#mobile-nav li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0px;
  width: 30px;
  height: 30px;
  margin: auto;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: url("var(--path)shell/arrow.svg") center center no-repeat;
  background-size: 11px;
  -webkit-transition: transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
#mobile-nav li.menu-item-has-children.open > a:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
#mobile-nav li a {
  display: inline-block;
  text-decoration: none;
  padding: 0.5em 2em 0.5em 0px;
  color: white;
  font-weight: 500;
  font-size: 1.1em;
  font-family: var(--font-secondary);
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
#mobile-nav li .sub-menu {
  display: none;
}
#mobile-nav li .sub-menu a {
  opacity: 0.8;
}
#mobile-nav .social-links a svg path {
  fill: white;
}

.nav-toggle {
  width: 200px;
  padding: 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  background: none;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(15px);
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
.nav-toggle span {
  display: block;
  background: #202124;
  width: 20px;
  height: 2px;
  margin: 4px 0px;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  border-radius: 2px;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.nav-toggle.open .one {
  transform: translateY(6px) rotate(135deg);
  -moz-transform: translateY(6px) rotate(135deg);
  -webkit-transform: translateY(6px) rotate(135deg);
}
.nav-toggle.open .three {
  transform: translateY(-6px) rotate(-135deg);
  -moz-transform: translateY(-6px) rotate(-135deg);
  -webkit-transform: translateY(-6px) rotate(-135deg);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  display: none;
}
.modal-overlay .modal-inner {
  padding: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.modal-overlay .modal-card {
  max-width: 700px;
  width: 100%;
  background: var(--color-cream);
  position: relative;
  border-radius: 20px;
  max-height: calc(100svh - 4rem);
  min-height: 50svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.modal-overlay .modal-card.active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.modal-overlay .modal-card .modal-close {
  position: absolute;
  top: 1em;
  right: 1em;
  width: 40px;
  height: 40px;
  background: transparent;
  z-index: 3;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .modal-overlay .modal-card .modal-close {
    width: 30px;
    height: 30px;
  }
}
.modal-overlay .modal-card .modal-close:hover .close-button {
  background: var(--color-primary);
}
.modal-overlay .modal-card .modal-close .close-button {
  width: 100%;
  height: 100%;
  background: var(--color-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-mask: url("var(--path)shell/close-button.svg") center center no-repeat;
          mask: url("var(--path)shell/close-button.svg") center center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.modal-overlay .modal-card .modal-intro {
  margin: 0 auto;
  padding: 5% 5% 1rem 5%;
  text-wrap: balance;
  text-align: center !important;
  color: var(--color-secondary);
  line-height: 1.2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.modal-overlay .modal-card .modal-intro p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 1.3rem;
}
.modal-overlay .modal-card .modal-content {
  z-index: 3;
  position: relative;
  text-align: center;
  font-weight: 400;
  overflow-y: auto;
  padding-right: 5px;
  margin: 0rem 1rem 3rem;
  padding: 0 1.5rem;
}
.modal-overlay .modal-card .modal-content img {
  margin-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .modal-overlay .modal-card .modal-content img {
    max-height: 60px;
  }
}
@media screen and (max-width: 600px) {
  .modal-overlay .modal-card .modal-content {
    padding: 0rem 1rem 0;
    margin: 0 0.5rem 2rem;
  }
}
.modal-overlay .modal-card .modal-content::-webkit-scrollbar {
  width: 8px;
}
.modal-overlay .modal-card .modal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.modal-overlay .modal-card .modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.modal-overlay .modal-card .modal-content .modal-disclaimer {
  text-align: center;
  font-size: 0.8em;
  margin-top: 1em;
  font-weight: 500;
}

/*
Footer and Navigation Styling
*/
footer {
  background: var(--color-secondary-dark);
  color: white;
  padding: 0;
}
@media screen and (max-width: 1600px) {
  footer {
    padding: 4% 0%;
  }
}
footer .footer-top {
  padding: 4% 8%;
}
footer .footer-inner {
  position: relative;
  background: var(--color-secondary-dark);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 2rem 2rem;
  z-index: 4;
  padding: 4rem;
}
footer .footer-inner .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
footer .footer-inner .footer-heading {
  color: #f3c7b3;
  text-align: right;
}
footer .footer-legal {
  padding: 1rem 0px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 200px;
}
footer .footer-legal p {
  margin: 0;
}
footer .footer-legal a {
  text-decoration: none;
  color: white;
}
footer .footer-legal a:hover {
  color: var(--color-yellow);
}
footer .footer-gradient-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  margin-top: calc(-20vw + 2rem);
}
footer .footer-gradient-wrapper .footer-gradient {
  height: 100%;
  background: var(--color-primary);
  min-height: 20vw;
  border-radius: 0 0 2rem 2rem;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}
footer .footer-gradient-wrapper .footer-gradient-blur {
  height: 4vw;
  background: var(--color-yellow);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-radius: 0 0 2rem 2rem;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}
footer .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 3;
  position: relative;
  padding-top: 8%;
  padding-bottom: 4em;
}
footer .footer-logo svg path {
  fill: white;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1em;
  width: 100%;
}
.social-links a {
  display: block;
  margin-right: 0.5em;
}
.social-links a:last-child {
  margin-right: 0;
}
.social-links a:hover svg path {
  fill: var(--color-primary);
}
.social-links a svg {
  width: 20px;
  height: 20px;
}
.social-links a svg path {
  fill: white;
  -webkit-transition: fill 0.15s ease-out;
  transition: fill 0.15s ease-out;
}

img.style-svg {
  opacity: 0;
}

svg.style-svg {
  opacity: 1;
}

#footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  #footer_nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    padding: 20px 0px;
  }
}
#footer_nav li {
  position: relative;
  margin: 0px 1rem;
}
#footer_nav li:first-child {
  margin-left: 0px;
}
@media screen and (max-width: 800px) {
  #footer_nav li {
    width: 100%;
  }
}
#footer_nav li a {
  color: white;
  text-decoration: none;
  padding: 1rem 0px;
  display: inline-block;
  font-weight: 400;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  font-size: clamp(1rem, 0.7188rem + 0.75vw, 1.375rem);
}
#footer_nav li a:hover {
  color: var(--color-primary);
}
@media screen and (max-width: 800px) {
  #footer_nav li a {
    display: block;
    width: 100%;
    padding: 8px 25px;
  }
}
#footer_nav li.nav-button a {
  font-weight: 600;
  color: #feb74e;
}
#footer_nav li.nav-button a:hover {
  color: var(--color-primary);
}
#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.
*/
body {
  color: var(--color-secondary);
}
body.no-scroll {
  overflow: hidden;
}

html :where(.wp-block) {
  max-width: 100%;
  padding: 0 5%;
  margin: 1em 0;
}

.acf-block-component {
  margin: 5% 5% !important;
  padding: 0 !important;
}
.acf-block-component.is-selected {
  outline: solid 2px #2563eb !important;
  outline-offset: 2px !important;
}

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

.block {
  padding: 4% 8%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1600px) {
  .block {
    padding: 4% 4%;
  }
}
@media screen and (max-width: 800px) {
  .block {
    padding: 9% 5%;
  }
}
.block .inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.bg-primary {
  background: var(--color-primary);
  color: white;
}

.bg-secondary {
  background: var(--color-secondary);
  color: white;
  --color-bg: var(--color-secondary);
}
.bg-secondary + .bg-tertiary {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-secondary)), to(var(--color-secondary-dark)));
  background: linear-gradient(to bottom, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
}

.bg-tertiary {
  background: var(--color-secondary-dark);
  color: var(--color-cream);
  --color-bg: var(--color-secondary-dark);
}
.bg-tertiary + .bg-secondary {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-secondary-dark)), to(var(--color-secondary)));
  background: linear-gradient(to bottom, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
}

.glass {
  position: relative;
  overflow: hidden;
}
.glass:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(40px);
  z-index: -1;
}

.img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.img-container img,
.img-container video {
  position: absolute;
  z-index: 1;
  top: -30px;
  left: 0px;
  width: 100%;
  height: calc(100% + 60px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.background-start {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}
.background-start + section {
  margin-top: -1px;
}
.background-start section.bg-primary {
  color: var(--color-secondary);
}
.background-start .split-text-block {
  color: white;
}
.background-start .slider-content-block {
  color: var(--color-black);
}
.background-start section.bg-secondary {
  background: transparent;
}
.background-start .background-shapes {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(10%, rgb(0, 0, 0)));
  -webkit-mask-image: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 10%);
  overflow: hidden;
}
.background-start .background-shape {
  position: absolute;
  top: 0;
  left: -20%;
  right: -20%;
  height: 100%;
  z-index: 1;
  /* Webkit plus standard for mask properties */
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}
.background-start .background-shape-dark {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/Dark-Wave.webp");
  mask-image: url("/wp-content/themes/foe/images/shell/Dark-Wave.webp");
  background: var(--color-secondary);
  top: 0%;
  -webkit-mask-position: 100% 30%;
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .background-start .background-shape-dark {
    -webkit-mask-position: 100% 10%;
    mask-position: 100% 10%;
  }
}
.background-start .background-shape-orange {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/Orange-Wave.webp");
  mask-image: url("/wp-content/themes/foe/images/shell/Orange-Wave.webp");
  background: var(--color-primary);
  z-index: 2;
  -webkit-mask-position: 100% 35%;
}
.background-start .background-shape-yellow {
  -webkit-mask-image: url("/wp-content/themes/foe/images/shell/Dark-Wave.webp");
  mask-image: url("/wp-content/themes/foe/images/shell/Dark-Wave.webp");
  background: var(--color-yellow);
  -webkit-mask-position: 100% 45%;
  z-index: 1;
}

.count-badge {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(2.1875rem, 1.4844rem + 1.875vw, 3.125rem);
  height: clamp(2.1875rem, 1.4844rem + 1.875vw, 3.125rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.count-badge .count-badge-number {
  display: block;
  font-family: var(--font-secondary);
  font-size: clamp(1.125rem, 0.7969rem + 0.875vw, 1.5625rem);
  font-weight: 600;
  color: color-mix(in srgb, var(--color-primary) 10%, white);
}

.cursor-overlay {
  z-index: 10000;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  mix-blend-mode: difference;
}
.cursor-overlay .cursor-wrapper {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.cursor-overlay .cursor-border {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: solid 2px white;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.intro-text .content-container p {
  font-weight: 400;
  font-family: var(--font-primary);
}
.intro-text.layout-split .intro-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid currentColor;
}
.intro-text.layout-split .heading-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1rem);
          flex: 0 0 calc(50% - 1rem);
}
.intro-text.layout-split .heading-container h1,
.intro-text.layout-split .heading-container h2,
.intro-text.layout-split .heading-container h3,
.intro-text.layout-split .heading-container h4,
.intro-text.layout-split .heading-container h5,
.intro-text.layout-split .heading-container h6 {
  margin-bottom: 0px;
}
.intro-text.layout-split .content-container {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1rem);
          flex: 0 0 calc(50% - 1rem);
}
.intro-text.layout-split p:last-child {
  margin-bottom: 0.1em;
}
.intro-text.heading-right .intro-inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.intro-text.heading-right .heading-container {
  text-align: right;
}

.feature-icon,
.icon {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: auto auto 1em;
  border: 1px solid var(--color-grey);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

.hero .inner {
  display: block;
}
.hero .background-container {
  position: relative;
  aspect-ratio: 1313/482;
  overflow: hidden;
  border-radius: 2rem;
}
.hero .hero-img-container {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  border-radius: 2rem;
}
.hero .hero-img-container video,
.hero .hero-img-container img {
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  z-index: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.hero .hero-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  padding-bottom: 3rem;
}
.hero .hero-content .hero-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(60% - 1rem);
          flex: 0 0 calc(60% - 1rem);
}
.hero .hero-content .hero-heading h1, .hero .hero-content .hero-heading h2 {
  margin-bottom: 0px;
}
.hero .hero-content .hero-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(40% - 1rem);
          flex: 0 0 calc(40% - 1rem);
  text-align: right;
  font-size: 1.5rem;
  font-weight: 400;
}
.hero .hero-content .hero-text p:last-child {
  margin-bottom: 0px;
}
.hero .hero-buttons {
  z-index: 99;
  position: absolute;
  bottom: 0;
  right: 0px;
  padding: 2rem;
  background: var(--color-light);
  border-radius: 2rem 0px 0px 0px;
}
.hero .hero-buttons .button-container {
  margin: 0px;
}
.hero .hero-buttons .foe-button {
  margin-bottom: 0px;
}
.hero .hero-buttons:after, .hero .hero-buttons:before {
  content: "";
  size: 2rem;
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  background-image: radial-gradient(circle at 100% 100%, transparent 2rem, var(--color-light) calc(2rem + 1px));
  rotate: 180deg;
  bottom: 0px;
  left: 0px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 99;
}
.hero .hero-buttons:before {
  right: 0px;
  top: 0px;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.hero .button-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.blob-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  -webkit-filter: url(#gooey);
          filter: url(#gooey);
}

.blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  -webkit-filter: blur(80px);
          filter: blur(80px);
}

.blob-1 {
  width: 340px;
  height: 340px;
  background: #e6b46e;
  top: 20%;
  left: 20%;
  -webkit-animation: float-1 50s linear infinite;
          animation: float-1 50s linear infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: #6fcaab;
  top: 30%;
  left: 0%;
  -webkit-animation: float-2 40s linear infinite;
          animation: float-2 40s linear infinite;
}

.blob-3 {
  width: 240px;
  height: 240px;
  background: #e17341;
  top: 70%;
  left: 50%;
  -webkit-animation: float-3 44s linear infinite;
          animation: float-3 44s linear infinite;
}

.blob-4 {
  width: 500px;
  height: 500px;
  background: #69cbff;
  top: 60%;
  left: 90%;
  -webkit-animation: float-4 56s linear infinite;
          animation: float-4 56s linear infinite;
}

.blob-5 {
  width: 160px;
  height: 160px;
  background: rgba(105, 203, 255, 0.6);
  top: 40%;
  left: 60%;
  -webkit-animation: float-5 36s linear infinite;
          animation: float-5 36s linear infinite;
}

.blob-6 {
  width: 200px;
  height: 200px;
  background: #9bb5c3;
  top: 65%;
  left: 15%;
  -webkit-animation: float-6 48s linear infinite;
          animation: float-6 48s linear infinite;
}

.blob-7 {
  width: 300px;
  height: 300px;
  background: #e17341;
  top: 15%;
  left: 70%;
  -webkit-animation: float-7 52s linear infinite;
          animation: float-7 52s linear infinite;
}

.blob-filter {
  position: absolute;
  width: 0;
  height: 0;
}

@-webkit-keyframes float-1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(45vw, -30vh);
            transform: translate(45vw, -30vh);
  }
  50% {
    -webkit-transform: translate(-35vw, 50vh);
            transform: translate(-35vw, 50vh);
  }
  75% {
    -webkit-transform: translate(25vw, 15vh);
            transform: translate(25vw, 15vh);
  }
}

@keyframes float-1 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(45vw, -30vh);
            transform: translate(45vw, -30vh);
  }
  50% {
    -webkit-transform: translate(-35vw, 50vh);
            transform: translate(-35vw, 50vh);
  }
  75% {
    -webkit-transform: translate(25vw, 15vh);
            transform: translate(25vw, 15vh);
  }
}
@-webkit-keyframes float-2 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  33% {
    -webkit-transform: translate(-25vw, 40vh);
            transform: translate(-25vw, 40vh);
  }
  66% {
    -webkit-transform: translate(30vw, -45vh);
            transform: translate(30vw, -45vh);
  }
}
@keyframes float-2 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  33% {
    -webkit-transform: translate(-25vw, 40vh);
            transform: translate(-25vw, 40vh);
  }
  66% {
    -webkit-transform: translate(30vw, -45vh);
            transform: translate(30vw, -45vh);
  }
}
@-webkit-keyframes float-3 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(50vw, -40vh);
            transform: translate(50vw, -40vh);
  }
  60% {
    -webkit-transform: translate(-45vw, 35vh);
            transform: translate(-45vw, 35vh);
  }
}
@keyframes float-3 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(50vw, -40vh);
            transform: translate(50vw, -40vh);
  }
  60% {
    -webkit-transform: translate(-45vw, 35vh);
            transform: translate(-45vw, 35vh);
  }
}
@-webkit-keyframes float-4 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-40vw, 45vh);
            transform: translate(-40vw, 45vh);
  }
  50% {
    -webkit-transform: translate(40vw, -35vh);
            transform: translate(40vw, -35vh);
  }
  75% {
    -webkit-transform: translate(-50vw, 20vh);
            transform: translate(-50vw, 20vh);
  }
}
@keyframes float-4 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    -webkit-transform: translate(-40vw, 45vh);
            transform: translate(-40vw, 45vh);
  }
  50% {
    -webkit-transform: translate(40vw, -35vh);
            transform: translate(40vw, -35vh);
  }
  75% {
    -webkit-transform: translate(-50vw, 20vh);
            transform: translate(-50vw, 20vh);
  }
}
@-webkit-keyframes float-5 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    -webkit-transform: translate(55vw, -25vh);
            transform: translate(55vw, -25vh);
  }
  80% {
    -webkit-transform: translate(-40vw, 40vh);
            transform: translate(-40vw, 40vh);
  }
}
@keyframes float-5 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  40% {
    -webkit-transform: translate(55vw, -25vh);
            transform: translate(55vw, -25vh);
  }
  80% {
    -webkit-transform: translate(-40vw, 40vh);
            transform: translate(-40vw, 40vh);
  }
}
@-webkit-keyframes float-6 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  35% {
    -webkit-transform: translate(60vw, 35vh);
            transform: translate(60vw, 35vh);
  }
  70% {
    -webkit-transform: translate(-35vw, -40vh);
            transform: translate(-35vw, -40vh);
  }
}
@keyframes float-6 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  35% {
    -webkit-transform: translate(60vw, 35vh);
            transform: translate(60vw, 35vh);
  }
  70% {
    -webkit-transform: translate(-35vw, -40vh);
            transform: translate(-35vw, -40vh);
  }
}
@-webkit-keyframes float-7 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(-10vw, -50vh);
            transform: translate(-10vw, -50vh);
  }
  60% {
    -webkit-transform: translate(45vw, -30vh);
            transform: translate(45vw, -30vh);
  }
}
@keyframes float-7 {
  0%, 100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  30% {
    -webkit-transform: translate(-10vw, -50vh);
            transform: translate(-10vw, -50vh);
  }
  60% {
    -webkit-transform: translate(45vw, -30vh);
            transform: translate(45vw, -30vh);
  }
}
@media (max-width: 768px) {
  .blob {
    -webkit-filter: blur(30px);
            filter: blur(30px);
  }
  .blob-1 {
    width: 250px;
    height: 250px;
  }
  .blob-2 {
    width: 140px;
    height: 140px;
  }
  .blob-3 {
    width: 180px;
    height: 180px;
  }
  .blob-4 {
    width: 200px;
    height: 200px;
  }
  .blob-5 {
    width: 120px;
    height: 120px;
  }
  .blob-6 {
    width: 160px;
    height: 160px;
  }
  .blob-7 {
    width: 220px;
    height: 220px;
  }
}
.marquee {
  position: absolute;
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  bottom: 0vw;
  left: 0;
  z-index: 3;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.marquee .marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  gap: clamp(2rem, 1.5rem + 2vw, 4.5rem);
}
@media screen and (max-width: 800px) {
  .marquee .marquee-inner {
    gap: clamp(1rem, 0.5rem + 1vw, 2rem);
  }
}
.marquee .marquee-inner .marquee-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-family: var(--font-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  background: color-mix(in srgb, var(--color-cream) 30%, transparent);
  backdrop-filter: blur(5px);
  padding: 1rem 0.7rem;
  color: var(--color-primary);
  border-radius: 5px;
  font-weight: 400;
  text-transform: capitalize;
}
@media screen and (max-width: 800px) {
  .marquee .marquee-inner .marquee-text {
    font-size: 0.8rem;
    padding: 0.8rem 0.8rem;
  }
}
.marquee .marquee-inner .marquee-text span {
  display: block;
  white-space: nowrap;
}
.marquee .marquee-inner .dot {
  height: 1rem;
  width: 1rem;
  margin-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.marquee .marquee-inner .dot svg {
  width: 100%;
  height: 100%;
}

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

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

.cta {
  position: relative;
  overflow: hidden;
  color: white;
}
.cta .cta-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: right;
  padding-bottom: 1rem;
}
.cta .cta-main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 1313/432;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.cta .cta-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  text-align: right;
  color: white;
  padding: 2rem;
}
.cta .cta-content h1,
.cta .cta-content h2,
.cta .cta-content h3,
.cta .cta-content h4,
.cta .cta-content h5 {
  color: white;
}
.cta .cta-content .button-container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0px;
}
.cta .cta-content .button-container .foe-button {
  margin-bottom: 0px;
}
.cta .cta-content .button-container .foe-button:last-child {
  margin-right: 0;
}
.cta .image-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(40% - 0.9375em);
          flex: 0 0 calc(40% - 0.9375em);
  border: solid 1px var(--color-primary);
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .cta .image-col {
    border-radius: 0 0 20px 20px;
    border-color: rgba(var(--color-secondary-light), 0.3);
  }
}
.cta .cta-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.cta .cta-bg .cta-sep {
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 1rem;
  left: 15%;
  z-index: 999;
  background: var(--color-bg);
}
.cta .cta-bg .cta-sep .radius {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}
.cta .cta-bg .cta-sep .radius:after, .cta .cta-bg .cta-sep .radius:before {
  content: "";
  size: 2rem;
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  background-image: radial-gradient(circle at 100% 100%, transparent 2rem, var(--color-bg) calc(2rem + 1px));
  rotate: 180deg;
  top: 0px;
  right: 100%;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: 99;
}
.cta .cta-bg .cta-sep .radius:after {
  left: 100%;
  right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cta .cta-bg .cta-sep .radius.bot {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cta .cta-bg .cta-sep:nth-child(2) {
  left: 45%;
}
.cta .cta-bg .cta-bg-img {
  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;
}
.cta .cta-bg video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.content-image-block.ori-right .content-text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  padding: 0px 0px 0px 4%;
}
.content-image-block.ori-right .content-image {
  padding: 0px 4% 0px 0px;
}
.content-image-block .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content-image-block .content-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-right: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 0px;
  }
}
.content-image-block .content-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding-left: 4%;
}
@media screen and (max-width: 900px) {
  .content-image-block .content-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding: 7% 0px 0px 0px;
  }
}

.contact-intro .contact-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2rem;
  padding-bottom: 3rem;
}
.contact-intro .contact-content .contact-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(60% - 1rem);
          flex: 0 0 calc(60% - 1rem);
}
.contact-intro .contact-content .contact-heading h1, .contact-intro .contact-content .contact-heading h2 {
  margin-bottom: 0px;
}
.contact-intro .contact-content .contact-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(40% - 1rem);
          flex: 0 0 calc(40% - 1rem);
  text-align: right;
  font-size: 1.5rem;
  font-weight: 400;
}
.contact-intro .contact-content .contact-text p:last-child {
  margin-bottom: 0px;
}

.contact-block {
  border-radius: 2rem 2rem 0px 0px;
}
.contact-block .contact-intro {
  font-size: clamp(1.125rem, 0.9375rem + 0.5vw, 1.375rem);
  max-width: 55ch;
  text-wrap: pretty;
}
@media screen and (max-width: 800px) {
  .contact-block .contact-intro br {
    display: none;
  }
}
.contact-block .contact-form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 2rem;
}

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

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

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

.post-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.post-list .post {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.33333%;
          flex: 0 0 31.33333%;
  margin: 0px 3% 3% 0px;
  background: #f4f4f4;
}
.post-list .post:nth-of-type(3n + 3) {
  margin-right: 0px;
}
.post-list .post .post-img {
  width: 100%;
  padding-top: 65%;
  background: center center no-repeat;
  background-size: cover;
  display: block;
  position: relative;
}
.post-list .post .post-img:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: var(--color-primary);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.post-list .post .post-img:hover:after {
  opacity: 0.2;
}
.post-list .post .post-img.placeholder {
  background: rgb(231.25, 231.25, 231.25) url("var(--path)shell/foe.svg") center center no-repeat;
  background-size: 25%;
}
.post-list .post .post-img .category {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 0.75em;
}
.post-list .post .post-text {
  padding: 1em 1.5em;
}
.post-list .load {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  text-align: center;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.post-list .load .foe-button {
  margin-right: 0px;
}

.post-content .inner {
  max-width: 900px;
  margin: 0 auto;
}
.post-content .post-head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.post-content .post-img {
  aspect-ratio: 10/5;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 1em 0px 2em 0px;
}
.post-content .post-img img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content .post-text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.post-content .post-links {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

.faq-block .inner {
  display: block;
}
.faq-block .inner .faq-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.faq-block .inner .faqs {
  padding: 5% 0px 0px 0px;
}
.faq-block .inner .faq {
  border-bottom: 2px solid var(--color-primary);
  -webkit-transition: all 0.4s ease-out;
  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: var(--font-secondary);
  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 {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-block .inner .faq .question.open .status:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq-block .inner .faq .question .status {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 36px;
  display: block;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
@media screen and (max-width: 1024px) {
  .faq-block .inner .faq .question .status {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
}
.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: var(--color-primary);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.faq-block .inner .faq .question .status:before {
  -webkit-transform: rotate(-90deg);
          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;
}

.accordions-block .accordions-intro {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  padding-right: 2rem;
}
.accordions-block .accordions-intro p {
  text-wrap: balance;
}
.accordions-block .accordions {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.accordions-block .accordions .accordion {
  border-radius: 20px;
  color: white;
  background: var(--color-secondary);
  padding: 1rem;
  overflow: hidden;
  position: relative;
  width: 3.5vw;
  min-height: 20vw;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.accordions-block .accordions .accordion::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  background-image: url("/wp-content/themes/foe/images/shell/wave-bg.png");
  background-size: cover;
  background-position: center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.accordions-block .accordions .accordion.active {
  width: 22vw;
  cursor: default;
  pointer-events: none;
}
.accordions-block .accordions .accordion.active::before {
  opacity: 1;
}
.accordions-block .accordions .accordion.active .accordion-vert-wrapper {
  opacity: 0;
}
.accordions-block .accordions .accordion.active .accordion-content-wrapper {
  opacity: 1;
}
.accordions-block .accordions .accordion.active .line-v {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.accordions-block .accordions .accordion .accordion-vert-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: clamp(1.25rem, 1.0625rem + 0.5vw, 1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  -webkit-transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: opacity 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}
.accordions-block .accordions .accordion .accordion-vert-wrapper .line-v {
  width: 1px;
  height: 1.5em;
  background: var(--color-cream);
  position: absolute;
  top: 1em;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.accordions-block .accordions .accordion .accordion-vert-wrapper .accordion-vert {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  text-wrap: nowrap;
}
.accordions-block .accordions .accordion .accordion-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 22vw;
  opacity: 0;
  padding: 1em;
  -webkit-transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 2;
}
.accordions-block .accordions .accordion .accordion-content-wrapper .accordion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  position: relative;
}
.accordions-block .accordions .accordion .accordion-content-wrapper .accordion-content::before {
  content: "";
  position: absolute;
  height: 3em;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20%;
  margin: auto;
  background: var(--color-cream);
  opacity: 0.5;
  display: none;
}
.accordions-block .accordions .accordion .accordion-content-wrapper .accordion-content .line-h {
  width: 1.5em;
  height: 1px;
  background: var(--color-cream);
  position: absolute;
  top: 1em;
  right: 0em;
  margin: auto;
}
.accordions-block .accordions .accordion .accordion-content-wrapper h3 {
  font-size: 40px;
  margin-top: 0;
  max-width: 10ch;
  text-wrap: balance;
}
.accordions-block .accordions .accordion .accordion-content-wrapper .glass {
  padding: 1rem;
  overflow: hidden;
  background: rgba(var(--color-light-rgb), 0.2);
  border-radius: 30px 15px 20px 20px;
}
.accordions-block .accordions .accordion .accordion-content-wrapper .glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--color-light-rgb), 0.2);
  border-radius: 30px 15px 20px 20px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  display: none;
}
.accordions-block .accordions .accordion .accordion-content-wrapper .accordion-desc {
  color: var(--color-secondary);
  font-weight: 400;
  overflow: hidden;
  position: relative;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

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

.controls {
  margin-top: 1em;
  margin-bottom: 1em;
}
.controls .arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.controls .arrows .button-prev {
  margin-right: 0.5em;
}
.controls .slider-pagination {
  width: auto;
}
.controls .slider-pagination .swiper-pagination-bullet {
  border: 2px solid rgba(var(--color-secondary), 0.2);
  padding: 0;
  height: 15px;
  width: 15px;
  border-radius: 15px;
  margin-right: 7px;
  cursor: pointer;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background 0.3s ease-out, border 0.3s ease-out;
  transition: background 0.3s ease-out, border 0.3s ease-out;
}
.controls .slider-pagination .swiper-pagination-bullet:hover {
  border-color: var(--color-secondary);
}
.controls .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}
.controls .button-next,
.controls .button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  padding-left: 3px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.02);
  position: relative;
  -webkit-transition: background 0.15s ease-out;
  transition: background 0.15s ease-out;
}
.controls .button-next:hover,
.controls .button-prev:hover {
  background: var(--color-secondary);
}
.controls .button-next:hover::before,
.controls .button-prev:hover::before {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  background: white;
}
.controls .button-next::before,
.controls .button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-mask-image: url("../../images/shell/arrow-next.svg");
          mask-image: url("../../images/shell/arrow-next.svg");
  -webkit-mask-size: 26px 18px;
          mask-size: 26px 18px;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: var(--color-secondary);
  -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}
.controls .button-prev {
  padding-left: 0px;
  padding-right: 3px;
}

.slider-content-block .inner {
  display: block;
}
.slider-content-block .slider-top {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid rgba(13, 13, 13, 0.5);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.slider-content-block .slider-top .slider-headings {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1rem);
          flex: 0 0 calc(50% - 1rem);
}
.slider-content-block .slider-top .slider-headings h2 {
  margin-bottom: 0;
}
.slider-content-block .slider-top .slider-intro {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 1rem);
          flex: 0 0 calc(50% - 1rem);
  text-align: right;
  max-width: 40ch;
  text-wrap: balance;
}
.slider-content-block .inner-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3% 5% 0;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.slider-content-block .slider-illustration-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  overflow: hidden;
  border-radius: 2rem;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
}
.slider-content-block .slider-illustration {
  position: relative;
  height: 100%;
}
.slider-content-block .slider-illustration .count-badge {
  top: 0.5em;
  right: 0.5em;
  left: auto;
}
.slider-content-block .slider-illustration .swiper-slide {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2em;
}
.slider-content-block .slider-illustration .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.slider-content-block .slider-content-wrapper {
  border-radius: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
  border: 1px solid #f9e3d9;
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.02);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slider-content-block .slider-content-wrapper .slider-content-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  padding: 1em;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.02);
}
.slider-content-block .slider-content-wrapper .slider-content-titles .slider-content-title {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  opacity: 0.2;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.slider-content-block .slider-content-wrapper .slider-content-titles .slider-content-title.active {
  opacity: 1;
}
.slider-content-block .slider-content-wrapper .slider-content-titles h3 {
  margin: 0;
  padding: 0;
}
.slider-content-block .slider-content-wrapper .slider-content {
  padding: 1em calc(2em + 58px) 1em 1em;
  height: auto;
  margin-top: auto;
}
.slider-content-block .slider-content-wrapper .slider-content .slide-content {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 50ch;
  text-wrap: balance;
  color: inherit;
}
.slider-content-block .slider-content-wrapper .slider-content .slide-content p:last-child {
  margin-bottom: 0;
}
.slider-content-block .slider-content-wrapper .controls {
  position: absolute;
  bottom: 1em;
  right: 1em;
  z-index: 5;
  margin: 0;
}
.slider-content-block.image-right .inner-block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.slider-content-block.image-right .slider-content-wrapper {
  margin-left: 0;
  margin-right: 1rem;
}

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

.principles-block .principles-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.principles-block .principles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.principles-block .principle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  padding: 1.5rem;
  text-align: center;
}
.principles-block .principle .principle-icon {
  display: block;
  margin: 0 auto 2rem;
}
.principles-block .principle .principle-content {
  text-wrap: balance;
  max-width: 250px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.principles-block .principle .principle-content h4 {
  color: var(--color-peach);
  margin-bottom: 0.4em;
}

.preview-block {
  color: var(--color-primary);
  position: relative;
}
.preview-block .bg-image-container {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .preview-block .bg-image-container {
    bottom: unset;
    top: 0;
  }
}
.preview-block .bg-image-container .bg-image {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .preview-block .bg-image-container .bg-image {
    bottom: unset;
    top: 20%;
    max-height: 50%;
  }
}
.preview-block .block {
  padding-top: 0;
}
.preview-block .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .preview-block .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.preview-block .features-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}
.preview-block .features-wrapper .feature-item {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.preview-block .features-wrapper .feature-item h3 {
  margin-bottom: 0;
  letter-spacing: 2px;
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .preview-block .features-wrapper .feature-item h3 {
    font-weight: 800;
    font-family: var(--font-secondary);
  }
}
.preview-block .features-right-wrapper .line-wrapper {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-left: 0;
  margin-right: auto;
}
.preview-block .features-right-wrapper .mobile-line-wrapper {
  display: none;
  padding: 5% 0;
}
@media screen and (max-width: 600px) {
  .preview-block .features-right-wrapper .mobile-line-wrapper {
    display: block;
  }
}
.preview-block .features-right-wrapper .mobile-line-wrapper .bullet {
  width: 1em;
  height: 1em;
  background: var(--color-secondary-light);
  border-radius: 50%;
  margin: 0 auto;
}
.preview-block .features-right-wrapper .mobile-line-wrapper .line-vertical {
  width: 1px;
  height: 5em;
  background: var(--color-secondary-light);
  margin: 0 auto;
}
.preview-block .preview-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 600px) {
  .preview-block .preview-wrapper {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 600px) {
  .preview-block .preview-wrapper img {
    max-width: 325px;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    margin: 0 auto;
  }
}
.preview-block .line-wrapper {
  width: 52%;
  margin-left: auto;
  margin-top: 2em;
}
@media screen and (max-width: 600px) {
  .preview-block .line-wrapper {
    display: none;
  }
}
.preview-block .line-wrapper .bullet {
  width: 1em;
  height: 1em;
  background: var(--color-primary);
  border-radius: 50%;
}
.preview-block .line-wrapper .line-vertical {
  width: 1px;
  height: 2.5em;
  background: var(--color-primary);
  margin-left: 0.5em;
}
.preview-block .line-wrapper .line-horizontal {
  width: 100%;
  height: 1px;
  margin-left: 0.5em;
  background: var(--color-primary);
}

.cards-block {
  position: relative;
}
.cards-block h2 {
  margin-top: 0;
}
.cards-block .block {
  padding-top: 0;
}
@media screen and (max-width: 600px) {
  .cards-block .block {
    padding-top: 10%;
  }
}
.cards-block .intro {
  max-width: 32em;
  font-weight: 500;
  margin-left: 4%;
}
@media screen and (max-width: 600px) {
  .cards-block .intro {
    margin-left: 0;
  }
}
.cards-block .inner {
  position: relative;
  z-index: 2;
  gap: 30px;
  margin-top: 5%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .cards-block .inner {
    gap: 15px;
  }
}
@media screen and (max-width: 900px) {
  .cards-block .inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cards-block .inner .card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33333% - 30px);
          flex: 0 0 calc(33.33333% - 30px);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 410/503;
  background: var(--color-primary);
}
@media screen and (max-width: 1300px) {
  .cards-block .inner .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.33333% - 15px);
            flex: 0 0 calc(33.33333% - 15px);
    aspect-ratio: 6/9;
  }
}
@media screen and (max-width: 900px) {
  .cards-block .inner .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    aspect-ratio: 6/9;
  }
}
@media screen and (max-width: 600px) {
  .cards-block .inner .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90%;
            flex: 0 0 90%;
    aspect-ratio: 8/9;
    border-radius: 10px;
  }
}
@media screen and (max-width: 500px) {
  .cards-block .inner .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    aspect-ratio: 6/9;
    border-radius: 10px;
  }
}
@media screen and (max-width: 1300px) {
  .cards-block .inner .card:first-child .card-image {
    height: 50%;
  }
}
.cards-block .inner .card:nth-child(2) .card-content {
  max-width: 20em;
}
.cards-block .inner .card:nth-child(2) .card-image {
  height: 80%;
  -o-object-position: bottom center;
     object-position: bottom center;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1300px) {
  .cards-block .inner .card:nth-child(2) .card-image {
    height: 60%;
  }
}
.cards-block .inner .card:last-child .card-content {
  max-width: 20em;
  padding-right: 2em;
}
@media screen and (max-width: 1300px) {
  .cards-block .inner .card:last-child .card-content {
    max-width: 15em;
  }
}
.cards-block .inner .card:last-child .card-image {
  -o-object-position: bottom right;
     object-position: bottom right;
  right: -5em;
}
.cards-block .inner .card .card-image {
  position: absolute;
  bottom: 0;
  z-index: 3;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.cards-block .inner .card .card-content {
  position: relative;
  z-index: 5;
  padding: 1.5em;
  color: white;
}
@media screen and (max-width: 600px) {
  .cards-block .inner .card .card-content {
    padding: 1em;
    font-size: 1rem;
  }
}
.cards-block .inner .card .card-content .card-title {
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .cards-block .inner .card .card-content .card-title {
    margin-bottom: 1em;
  }
}
.cards-block .inner .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("var(--path)shell/noisy-background.webp") repeat;
  background-size: 200px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.7;
  z-index: 2;
}
.cards-block .inner .card .bg-image {
  position: absolute;
  top: -10%;
  left: 0;
  width: 120%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -o-object-position: center center;
     object-position: center center;
}

.split-features-block {
  position: relative;
}
.split-features-block .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.split-features-block .block {
  padding-top: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 800px) {
  .split-features-block .block {
    padding-top: 10%;
  }
}
.split-features-block .intro {
  max-width: 32em;
  font-weight: 500;
  margin: auto;
  text-align: center;
  color: var(--color-primary);
}
.split-features-block .split-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  margin: auto;
  padding-top: 2em;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.split-features-block .split-container .feature-item {
  border-radius: 20px;
  padding: 2em;
  color: var(--color-secondary);
  overflow: hidden;
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item {
    border-radius: 10px;
    padding: 1.5em;
  }
}
.split-features-block .split-container .feature-item .feature-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item .feature-inner {
    display: block;
  }
}
.split-features-block .split-container .feature-item .feature-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55%;
          flex: 0 0 55%;
  font-size: 1rem;
  font-weight: 500;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.split-features-block .split-container .feature-item .feature-content ul {
  margin-bottom: 5rem;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item .feature-content ul {
    margin-bottom: 0rem;
  }
}
.split-features-block .split-container .feature-item .feature-content ul li {
  padding: 0.2em 0;
}
.split-features-block .split-container .feature-item h1,
.split-features-block .split-container .feature-item h2,
.split-features-block .split-container .feature-item h3 {
  margin-top: 0;
  color: var(--color-primary);
  line-height: 1.2;
}
.split-features-block .split-container .feature-item h3 {
  font-size: clamp(1.125rem, 0.3281rem + 2.125vw, 2.1875rem);
  font-weight: 500;
}
.split-features-block .split-container .feature-item .foe-button {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.3);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item .foe-button {
    margin-top: 2em;
  }
}
.split-features-block .split-container .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px var(--color-secondary-light);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item .feature-icon {
    width: 30px;
    height: 30px;
  }
  .split-features-block .split-container .feature-item .feature-icon img {
    width: 12px;
    height: 12px;
  }
}
.split-features-block .split-container .feature-item .feature-image-wrapper {
  padding-top: 5%;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  position: relative;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item .feature-image-wrapper {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 400px) {
  .split-features-block .split-container .feature-item .feature-image-wrapper {
    aspect-ratio: 1;
  }
}
.split-features-block .split-container .feature-item .feature-image-wrapper img {
  position: absolute;
  top: 30%;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.split-features-block .split-container .feature-item-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  padding-top: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item-wrapper {
    padding-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-bottom: 2em;
  }
  .split-features-block .split-container .feature-item-wrapper:last-child {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .feature-item-wrapper .line-wrapper {
    display: none;
  }
}
.split-features-block .split-container .feature-item-wrapper .line-wrapper .line-horizontal {
  width: 100%;
  height: 1px;
  background: var(--color-secondary-light);
  max-width: calc(50% + 0.5px);
  margin-left: auto;
}
.split-features-block .split-container .feature-item-wrapper .line-wrapper .line-vertical {
  width: 1px;
  height: 5em;
  background: var(--color-secondary-light);
  margin: auto;
}
.split-features-block .split-container .feature-item-wrapper:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.split-features-block .split-container .feature-item-wrapper:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.split-features-block .split-container .feature-item-wrapper:nth-child(2) .line-wrapper .line-horizontal {
  margin-left: 0;
  margin-right: auto;
}
.split-features-block .split-container .middle-line {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
}
@media screen and (max-width: 800px) {
  .split-features-block .split-container .middle-line {
    display: none;
  }
}
.split-features-block .split-container .middle-line .line-wrapper .bullet {
  width: 1em;
  height: 1em;
  background: var(--color-secondary-light);
  border-radius: 50%;
  margin: auto;
}
.split-features-block .split-container .middle-line .line-wrapper .line-horizontal {
  width: 100%;
  height: 1px;
  background: var(--color-secondary-light);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.split-features-block .split-container .middle-line .line-wrapper .line-vertical {
  width: 1px;
  height: 4em;
  background: var(--color-secondary-light);
  margin: auto;
}

.split-content-block {
  position: relative;
  color: var(--color-primary);
}
@media screen and (max-width: 800px) {
  .split-content-block .block {
    padding-top: 0;
  }
}
.split-content-block .bg-image-wrapper {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  bottom: 0;
}
.split-content-block .bg-image-wrapper .bg-image {
  width: 100%;
  height: 160%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  -webkit-transform: rotate(180deg) translateZ(0);
          transform: rotate(180deg) translateZ(0);
}
.split-content-block .block {
  position: relative;
  z-index: 2;
}
.split-content-block .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .split-content-block .content-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.split-content-block .content-wrapper .content-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(45% - 0.5em);
          flex: 0 0 calc(45% - 0.5em);
}
@media screen and (max-width: 800px) {
  .split-content-block .content-wrapper .content-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 0.5em);
            flex: 0 0 calc(50% - 0.5em);
    max-width: 32em;
  }
}
@media screen and (max-width: 600px) {
  .split-content-block .content-wrapper .content-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.split-content-block .content-wrapper .content-item h2,
.split-content-block .content-wrapper .content-item h3 {
  color: var(--color-primary);
}
@media screen and (max-width: 600px) {
  .split-content-block .content-wrapper .content-item h3 {
    font-size: 28px;
    line-height: 1.1;
  }
}
.split-content-block .content-wrapper .content-item .split-content-item-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.split-content-block .content-wrapper .content-item .split-content-item-icons .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .split-content-block .content-wrapper .content-item .split-content-item-icons .icon {
    width: 30px;
    height: 30px;
  }
  .split-content-block .content-wrapper .content-item .split-content-item-icons .icon img {
    width: 14px;
    height: 14px;
  }
}

.forms-block {
  position: relative;
  color: var(--color-primary);
}
.forms-block .intro-icon {
  margin: 0 auto;
  margin-bottom: 2em;
  max-width: 50px;
}
.forms-block .block {
  padding-top: 0;
}
.forms-block .intro {
  max-width: 40em;
  margin: auto;
  text-align: center;
}
.forms-block .form-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .forms-block .form-select {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
}
.forms-block .form-select .form-select-button {
  font-weight: 500;
  padding: 0.8em 1em;
  border: solid 2px var(--color-secondary-light);
  width: 100%;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(40px);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.forms-block .form-select .form-select-button:hover {
  opacity: 1 !important;
}
.forms-block .form-select .form-select-button.open {
  background: white;
  pointer-events: none;
}
.forms-block .form-select .form-select-button.open::before {
  background: var(--color-purple);
}
.forms-block .form-select .form-select-button.open + .form-select-button {
  border-color: white;
  color: var(--color-secondary-light);
  opacity: 0.8;
}
.forms-block .form-select .form-select-button.open + .form-select-button::before {
  border-color: var(--color-secondary-light);
}
.forms-block .form-select .form-select-button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: solid 2px var(--color-primary);
  background: transparent;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.forms-block .form-container,
.forms-block .form-2 {
  max-width: 660px;
  margin: auto;
}
.forms-block .form-1 {
  opacity: 0;
  padding: 10% 0;
}
.forms-block .form-1.active {
  opacity: 1;
}
.forms-block .form-modal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: none;
  padding: 5% 0;
}
@media screen and (max-width: 800px) {
  .forms-block .form-modal {
    padding: calc(10% + 30px) 5% 10%;
  }
}
.forms-block .form-modal .close-button {
  position: absolute;
  top: 19px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  border: solid 1px var(--color-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 800px) {
  .forms-block .form-modal .close-button {
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
  }
}
.forms-block .form-modal .close-button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.forms-block .form-modal .close-button:hover .close-button-icon {
  background: white;
}
.forms-block .form-modal .close-button .close-button-icon {
  width: 12px;
  height: 12px;
  margin-right: 3px;
  -webkit-mask: url("var(--path)shell/arrow-left.svg") center center no-repeat;
          mask: url("var(--path)shell/arrow-left.svg") center center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--color-primary);
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 800px) {
  .forms-block .form-modal .close-button .close-button-icon {
    width: 10px;
    height: 10px;
  }
}
.forms-block .form-modal .form-2-intro {
  max-width: 40em;
  margin: auto;
  text-align: center;
}
.forms-block .bg-image-wrapper {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: -30%;
  pointer-events: none;
  opacity: 0.5;
}
@media screen and (max-width: 800px) {
  .forms-block .bg-image-wrapper {
    top: -20%;
  }
}
.forms-block .bg-image-wrapper .bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  -webkit-transform: rotate(180deg) translateZ(0);
          transform: rotate(180deg) translateZ(0);
}
@media screen and (max-width: 800px) {
  .forms-block .bg-image-wrapper .bg-image {
    height: 100%;
    width: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.forms-block .glass {
  padding: 0 5%;
  z-index: 2;
  border-radius: 20px;
  background: transparent;
  position: relative;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .forms-block .glass {
    border: solid 1px var(--color-secondary-light);
  }
}

.split-text-block .inner {
  display: block;
}

.featured-case-study-block .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
}
.featured-case-study-block .featured-case-study-content-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(55% - 2em);
          flex: 1 1 calc(55% - 2em);
  width: calc(55% - 2em);
}
.featured-case-study-block .featured-case-study-content-wrapper .content-wrapper {
  padding: 0 0.5em;
}
.featured-case-study-block .featured-case-study-content-wrapper .case-study-title {
  margin-bottom: 13%;
  color: var(--primary-colour);
}
.featured-case-study-block .featured-case-study-content-wrapper .case-study-title h3 {
  font-weight: 600;
  color: inherit;
}
.featured-case-study-block .featured-case-study-content-wrapper .content {
  font-weight: 400;
  margin-bottom: 0.5em;
}
.featured-case-study-block .featured-case-study-image-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(45% - 2em);
          flex: 0 0 calc(45% - 2em);
  position: relative;
  border-radius: 20px;
}
.featured-case-study-block .featured-case-study-image-wrapper .featured-case-study-image {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper {
  z-index: 99;
  position: absolute;
  bottom: 0;
  right: 0px;
  padding: 2rem;
  background: var(--color-bg);
  border-radius: 2rem 0px 0px 0px;
}
.featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper .button-container {
  margin: 0px;
}
.featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper .foe-button {
  margin-bottom: 0px;
  border-color: inherit;
  color: inherit;
}
.featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper .foe-button:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper:after, .featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper:before {
  content: "";
  size: 2rem;
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  background-image: radial-gradient(circle at 100% 100%, transparent 2rem, var(--color-bg) calc(2rem + 1px));
  rotate: 180deg;
  bottom: 0px;
  left: 0px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 99;
}
.featured-case-study-block .featured-case-study-image-wrapper .case-study-buttons-wrapper:before {
  right: 0px;
  top: 0px;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.featured-case-study-block .highlights-container {
  padding: 0.5em;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.featured-case-study-block .highlights-container .highlight-slider {
  width: 100%;
  padding: 8% 5%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  position: relative;
}
.featured-case-study-block .highlights-container .highlight-slider .controls {
  margin: 0;
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  padding: 0;
}
.featured-case-study-block .highlights-container .highlight-slider .controls .highlights-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.featured-case-study-block .highlights-container .highlight-slider .controls .highlights-pagination .swiper-pagination-bullet {
  background: white;
  width: 10px;
  height: 10px;
}
.featured-case-study-block .highlights-container .highlight-slider .slide-inner {
  display: grid;
  grid-template-columns: 1fr 5vw 1fr;
  place-items: center;
}
.featured-case-study-block .highlights-container .highlight-slider .highlight-number {
  text-align: center;
}
.featured-case-study-block .highlights-container .highlight-slider .highlight-number .primary-heading {
  margin: 0 0 0.1em;
  font-weight: 600;
  font-size: clamp(3rem, 2.3438rem + 1.75vw, 3.875rem);
}
.featured-case-study-block .highlights-container .highlight-slider .highlight-number .highlight-short-description {
  font-weight: 500;
}
.featured-case-study-block .highlights-container .highlight-slider .line {
  height: 100%;
  width: 1px;
  background: white;
  min-height: 9.6vw;
}
.featured-case-study-block .highlights-container .highlight-slider .highlight-long-description {
  padding-left: 5%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.featured-case-study-block .highlights-container .highlight-slider .highlight-long-description p:last-child {
  margin-bottom: 0;
}

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

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

/*
Form Styling

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

textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 10em;
  -webkit-transition: border 0.3s ease-out;
  transition: border 0.3s ease-out;
  padding: 0.8em 1em;
}
textarea:focus {
  outline: none;
  border: 1px solid var(--color-primary);
}

select {
  border: solid 1px rgba(var(--color-grey), 0.5);
  background: #fffbf7 url("var(--path)shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  height: 3em;
  -webkit-transition: border 0.3s ease-out;
  transition: border 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px 2.3em 0px 1.3em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
select:focus {
  outline: none;
  border: 1px solid var(--color-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.gform_confirmation_message {
  text-align: center;
}

body .gform_wrapper.gravity-theme {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_required_legend {
  display: none;
}
body .gform_wrapper.gravity-theme .validation_error,
body .gform_wrapper.gravity-theme .gform_validation_errors {
  background: rgba(var(--color-secondary), 0.4);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 1em;
  margin: 2em 0px 1.5em 0px;
  width: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 400;
  font-size: 14px;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
  font-family: var(--font-primary);
  line-height: 1.4;
  font-size: 1em;
  padding: 0px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .gform_wrapper.gravity-theme .validation_error .gform_submission_error .gform-icon,
body .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error .gform-icon {
  position: relative;
  inset-inline-start: 0px;
  margin-right: 0.5em;
}
body .gform_wrapper.gravity-theme .validation_error ol,
body .gform_wrapper.gravity-theme .gform_validation_errors ol {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li {
  padding: 0px;
  margin: 0px;
}
body .gform_wrapper.gravity-theme .validation_error ol li a,
body .gform_wrapper.gravity-theme .gform_validation_errors ol li a {
  color: white;
}
body .gform_wrapper.gravity-theme .gform_fields {
  margin: 0px;
  padding: 0px;
  grid-column-gap: 2%;
  grid-row-gap: 0.5rem !important;
}
@media screen and (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_fields {
    display: block;
  }
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield {
  width: 102%;
  margin-left: -1%;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield > legend {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields fieldset.gfield .ginput_container_address span {
  padding-left: 1%;
  padding-right: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield {
  width: 100%;
  clear: none;
  margin: 0px;
}
@media screen and (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gform_fields .gfield {
    margin-bottom: 1em;
  }
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error {
  background: none;
  border: none;
  max-width: none !important;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .ginput_container input,
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .ginput_container textarea {
  border-color: red;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .validation_message {
  padding: 5px 0px 0px 0px;
  color: var(--color-secondary);
  border: none;
  background: none;
  margin: 0px;
  color: red;
  font-size: 0.8em;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield.gfield_error .gfield_label {
  margin-top: 0px;
  color: var(--color-secondary);
  text-align: left;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield label {
  font-size: 1rem;
  padding: 0px 0px 8px 0px;
  margin-bottom: 0px;
  text-align: left !important;
  display: block;
  font-weight: 500;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input {
  width: 100%;
  border: none;
  height: 3em;
  padding: 0px;
  background: none;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #d4d4d4;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container input:focus {
  outline: none;
  border-color: var(--color-primary);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea {
  width: 100%;
  border: none;
  height: 5em;
  padding: 0.8em 0px;
  background: none;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #d4d4d4;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: none;
  background: url("var(--path)shell/arrow.svg") right 13px center no-repeat;
  background-size: 11px;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid #d4d4d4;
  height: 3rem;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container select:focus {
  outline: none;
  border-color: var(--color-primary);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input:checked + label:after {
  background: var(--color-primary) !important;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 35px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 0px;
  display: block;
  border: 3px solid white;
  -webkit-box-shadow: 0px 0px 0px 3px #e0e1e2;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio input + label:hover:after {
  background: #cfd2d3;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox {
  padding-left: 1%;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox {
  margin: 0px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input {
  display: none;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input:checked + label:after {
  background: var(--color-primary) !important;
  -webkit-box-shadow: 0px 0px 0px 3px var(--color-primary);
  box-shadow: 0px 0px 0px 3px var(--color-primary);
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-weight: 400;
  padding: 5px 0px 5px 40px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:after {
  position: absolute;
  content: "";
  background: white;
  top: 7px;
  margin: auto;
  width: 22px;
  height: 22px;
  left: 3px;
  display: block;
  -webkit-box-shadow: 0px 0px 0px 3px #e0e1e2;
  box-shadow: 0px 0px 0px 3px #e0e1e2;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:before {
  content: "";
  position: absolute;
  z-index: 9;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border: 3px solid white;
  border-right: 0px;
  border-top: 0px;
  width: 14px;
  height: 8px;
  top: 13px;
  left: 7px;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox input + label:hover:after {
  background: #e0e1e2;
}
body .gform_wrapper.gravity-theme .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  height: auto;
  padding: 15px 20px;
  border: 3px dashed #cccccc;
  background: none;
}
body .gform_wrapper.gravity-theme .gform_footer {
  margin: 0px;
  padding: 0.5em 0px 0px 0px;
}
body .gform_wrapper.gravity-theme input[type=submit] {
  height: auto;
  padding: 15px 25px;
  background: var(--color-primary);
  border: none;
  border-radius: 1000px;
  background: var(--color-green);
  color: white;
  margin: 0;
  text-transform: uppercase;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  font-weight: 500;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
body .gform_wrapper.gravity-theme input[type=submit]:hover {
  background: var(--color-primary-dark);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  color: white;
}
body .gform_wrapper.gravity-theme input[type=submit]:active {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
@media screen and (max-width: 641px) {
  body .gform_wrapper.gravity-theme input[type=submit] {
    line-height: inherit;
    min-height: 0px;
    width: auto;
    font-size: 0.8em;
    padding: 0.8em 1em;
    width: 100%;
  }
}
body .gform_wrapper.gravity-theme #field_submit {
  display: block;
}
body .gform_wrapper.gravity-theme .gfield_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gfield_checkbox {
    display: block;
  }
}
body .gform_wrapper.gravity-theme .gfield_checkbox .gchoice {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
body .gform_wrapper.gravity-theme .gfield_checkbox label {
  line-height: 1.5;
  font-weight: 500 !important;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  body .gform_wrapper.gravity-theme .gfield_checkbox label {
    white-space: normal;
    line-height: 1.2;
  }
}
@media screen and (max-width: 800px) {
  body .gform_wrapper.gravity-theme .gfield_checkbox label {
    font-size: 0.8em;
    line-height: 1.8;
  }
}
body .gform_wrapper.gravity-theme .gfield_checkbox label::after {
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3) !important;
          box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3) !important;
}

#gform_wrapper_5 .button {
  width: 100%;
  -webkit-box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: none;
          box-shadow: none;
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-height: 3em;
  border-radius: 1000px;
  background: var(--color-purple);
  color: white;
  font-size: 1em;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 800px) {
  #gform_wrapper_5 .button {
    font-size: 0.8em;
  }
}
#gform_wrapper_5 .button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  -webkit-mask: url("var(--path)shell/arrow-right.svg") center center no-repeat;
          mask: url("var(--path)shell/arrow-right.svg") center center no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: white;
}
#gform_wrapper_5 .button:hover {
  background: var(--color-green);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
#gform_wrapper_5 .button:active {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}

#gform_wrapper_6 input {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#gform_wrapper_6 .button {
  width: 100%;
  -webkit-box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 6px -3px rgba(0, 0, 0, 0.3);
  text-transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-height: 3em;
  border-radius: 1000px;
  background: var(--color-primary);
  color: white;
  font-size: 1em;
  font-weight: 500;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media screen and (max-width: 800px) {
  #gform_wrapper_6 .button {
    font-size: 0.8em;
  }
}
#gform_wrapper_6 .button::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  -webkit-mask: url("var(--path)shell/arrow-right.svg") center center no-repeat;
          mask: url("var(--path)shell/arrow-right.svg") center center no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: white;
}
#gform_wrapper_6 .button:hover {
  background: var(--color-green);
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
#gform_wrapper_6 .button:active {
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}

.disclaimer {
  text-align: center;
  font-size: 80%;
  margin-top: 1em;
  display: block;
}

.grecaptcha-badge {
  visibility: hidden;
}

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  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;
  -webkit-transition: background 0.2s ease-out;
  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("var(--path)shell/search.svg") center center no-repeat;
  background-size: 17px;
  padding: 0px;
  width: 44px;
  border: none;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}
.search-form .search-submit:hover {
  background: #c1c1c1 url("var(--path)shell/search.svg") center center no-repeat;
  background-size: 17px;
}

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

.ajax-spinner {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 5;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18% 0px 0px 0px;
}
.ajax-spinner .spinner {
  margin: 0 auto;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid rgba(var(--color-primary), 0.45);
  border-top: 4px solid var(--color-primary);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.budget-slider {
  padding: 0.5rem 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.budget-slider-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #333;
}

.budget-display {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-green);
  background: rgba(50, 91, 77, 0.1019607843);
  padding: 4px 12px;
  border-radius: 1000px;
}

.dual-range {
  --range-size: 4px;
  --range-width: 100%;
  --handle-size: 1.3;
  height: var(--range-size);
  width: var(--range-width);
  background: #e0e0e0;
  border-radius: 50px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-top: 1em;
}

.dual-range .highlight {
  position: absolute;
  height: var(--range-size);
  width: calc(var(--x-2) - var(--x-1) + var(--range-size) * var(--handle-size));
  left: var(--x-1);
  background: var(--color-green);
  z-index: 1;
  border-radius: 50px;
}

.dual-range .handle {
  width: calc(var(--range-size) * var(--handle-size));
  height: calc(var(--range-size) * var(--handle-size));
  height: 22px;
  width: 22px;
  background: #fff;
  position: absolute;
  -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: solid 2px var(--color-green);
  z-index: 2;
  cursor: -webkit-grab;
  cursor: grab;
}

.dual-range .handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.dual-range .handle.left {
  left: var(--x-1);
}

.dual-range .handle.right {
  left: var(--x-2);
}

.slider-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
  width: 100%;
  display: none;
}

.slider-label {
  font-size: 12px;
  color: #666;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: none;
}
.slider-label:first-child {
  display: block;
}
.slider-label:last-child {
  display: block;
}

.slider-label:first-child {
  text-align: left;
}

.slider-label:last-child {
  text-align: right;
}/*# sourceMappingURL=styles.css.map */