@import "less/assets/swiper.min.css";
@import url("https://use.typekit.net/dis8gyd.css");
:root {
  font-size: 0.9375vw;
  --text-multiplier: 1;
  --column-gap: calc(15rem * 1 / 18);
  --header-height: calc(80rem * 1 / 18);
  --header-height-tablet: 80x;
  --header-height-mobile: 80x;
  --header-height-850: 80px;
  --header-height-phone: 80px;
}
/* Stop scaling at 2000px */
@media (min-width: 2000px) {
  :root {
    font-size: 18px;
  }
}
html:has(body.admin) {
  margin-top: 32px !important;
}
@media only screen and (max-width: 782px) {
  html:has(body.admin) {
    margin-top: 46px !important;
  }
}
@media only screen and (max-width: 1023px) {
  html:has(body.admin) {
    margin-top: 0 !important;
  }
}
body {
  background-color: white;
  color: black;
  position: relative;
}
body.fixed {
  overflow: hidden;
}
body #content {
  overflow: hidden;
  max-width: 2000px;
  margin: auto;
}
body.sticky #content {
  padding-top: var(--header-height);
}
@media only screen and (max-width: 1199px) {
  body.sticky #content {
    padding-top: var(--header-height-tablet);
  }
}
@media only screen and (max-width: 1023px) {
  body.sticky #content {
    padding-top: var(--header-height-mobile);
  }
}
@media only screen and (max-width: 850px) {
  body.sticky #content {
    padding-top: var(--header-height-850);
  }
}
@media only screen and (max-width: 600px) {
  body.sticky #content {
    padding-top: var(--header-height-phone);
  }
}
body #wrapper {
  background-color: white;
  margin: auto;
  position: relative;
  z-index: 2;
}
body #container {
  background-color: white;
  margin: auto;
  z-index: 1;
  position: relative;
  overflow-x: clip;
  overflow-y: clip;
  min-height: 100vh;
}
body #footer {
  margin: auto;
  z-index: 1;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
body .grid {
  display: grid;
  padding-left: 0;
  padding-right: 0;
  grid-template-columns: repeat(16, 1fr);
  column-gap: 0;
  background-color: transparent;
  position: absolute;
  inset: 0;
  z-index: 21;
}
body .grid__item {
  background-color: rgba(0, 255, 255, 0.55);
  width: 100%;
  display: flex;
}
body em,
body i {
  font-style: italic !important;
}
body strong,
body b {
  font-weight: bold !important;
}
@media only screen and (max-width: 1023px) {
  html #wpadminbar {
    display: none !important;
  }
}
/**
 * Global Reset of all HTML Elements
 * 
 * Resetting all of our HTML Elements ensures a smoother
 * visual transition between browsers. If you don't believe me,
 * try temporarily commenting out this block of code, then go
 * and look at Mozilla versus Safari, both good browsers with
 * a good implementation of CSS. The thing is, all browser CSS
 * defaults are different and at the end of the day if visual
 * consistency is what we're shooting for, then we need to
 * make sure we're resetting all spacing elements.
 *
 */
html,
body {
  border: 0;
  font-family: "Open Sans", "Helvetica", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
div,
span,
object,
iframe,
img,
table,
caption,
thead,
tbody,
tfoot,
tr,
tr,
td,
article,
aside,
canvas,
details,
figure,
hgroup,
menu,
nav,
footer,
header,
section,
summary,
mark,
audio,
video {
  border: 0;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
q,
samp,
small,
strong,
sub,
sup,
b,
i,
hr,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
legend,
label {
  border: 0;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
article,
aside,
canvas,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
audio,
video {
  display: block;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table caption,
table th,
table td {
  text-align: left;
  vertical-align: middle;
}
a img {
  border: 0;
}
:focus {
  outline: 0;
}
hr {
  border-bottom: 1px solid gray;
}
.ontop {
  position: relative;
  z-index: 13;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.transition {
  transition: all 0.25s ease-out;
}
.border-underline {
  text-decoration: underline;
}
.border-underline:hover {
  text-decoration: none;
}
.animated-underline {
  position: relative;
}
.animated-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(5rem * 1 / 18);
  left: 0;
  bottom: 0;
  background-color: #E6D4BC;
  transform: scale(0);
  transition: all 0.25s ease-out;
}
@media only screen and (max-width: 1023px) {
  .animated-underline::after {
    height: 5px;
  }
}
.animated-underline:hover::after,
.animated-underline.hover::after {
  transform: scale(1);
}
.scroll-top {
  scroll-margin-top: calc(120rem * 1 / 18);
  scroll-padding-top: calc(120rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .scroll-top {
    scroll-margin-top: 80px;
    scroll-padding-top: 80px;
  }
}
.scroll-top-200 {
  scroll-margin-top: calc(200rem * 1 / 18);
  scroll-padding-top: calc(200rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .scroll-top-200 {
    scroll-margin-top: 200px;
    scroll-padding-top: 200px;
  }
}
.link-arrow {
  position: relative;
  text-decoration: none;
  padding-right: calc(36rem * 1 / 18);
  display: flex;
  gap: calc(24rem * 1 / 18);
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .link-arrow {
    gap: 24px;
    padding-right: 36px;
  }
}
.link-arrow::after {
  content: "";
  position: relative;
  transform: translateY(calc(-2rem * 1 / 18));
  width: calc(16rem * 1 / 18);
  height: calc(16rem * 1 / 18);
  background-image: url(/wp-content/themes/saltvillage/images/icons/select-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1400px) {
  .link-arrow::after {
    width: 16px;
    height: 16px;
    transform: translateY(-2px);
  }
}
.bubble {
  border-radius: 50%;
  overflow: hidden;
  background-color: #E6D4BC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.bubble-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(12rem * 1 / 18);
  text-align: center;
}
.bubble-text > h4 {
  font-size: calc(26rem * 1 / 18) !important;
  line-height: calc(28rem * 1 / 18) !important;
  color: #E6D4BC;
}
@media only screen and (max-width: 1199px) {
  .bubble-text > h4 {
    font-size: 26px !important;
    line-height: 28px !important;
  }
}
.bubble-text > h2 {
  font-size: calc(50rem * 1 / 18) !important;
  line-height: calc(42rem * 1 / 18) !important;
  color: white;
}
@media only screen and (max-width: 1199px) {
  .bubble-text > h2 {
    font-size: 50px !important;
    line-height: 42px !important;
  }
}
.bubble-text > p {
  font-size: calc(17rem * 1 / 18) !important;
  margin-top: calc(4rem * 1 / 18);
  color: #E6D4BC;
}
@media only screen and (max-width: 1199px) {
  .bubble-text > p {
    font-size: 17px !important;
    line-height: 21px !important;
  }
}
.border-after::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(1.2rem * 1 / 18);
  background-color: #E6D4BC;
  z-index: 1;
  grid-column: 2 / -1;
}
@media only screen and (max-width: 1199px) {
  .border-after::after {
    height: 1px;
  }
}
@media only screen and (max-width: 850px) {
  .border-after::after {
    grid-column: 1 / -1;
  }
}
.apply-grid {
  display: grid;
  padding-left: 0;
  padding-right: 0;
  grid-template-columns: repeat(16, 1fr);
  column-gap: 0;
}
.fill-grid {
  grid-column: 1 / -1;
}
.color-tan {
  color: #E6D4BC;
}
.color-blue-reg {
  color: #275384;
}
.color-blue {
  color: #22364D;
}
.color-white {
  color: #FAFAF7;
}
.color-sky-blue {
  color: #A5D7DF;
}
.background-color-tan {
  background-color: #E6D4BC;
}
.background-color-blue-reg {
  background-color: #275384;
}
.background-color-blue {
  background-color: #22364D;
}
.background-color-white {
  background-color: #FAFAF7;
}
.background-color-sky-blue {
  background-color: #A5D7DF;
}
.select-arrow {
  background-image: url(/wp-content/themes/saltvillage/images/icons/select-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.roboto-thin {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.roboto-light {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.roboto-thin-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.roboto-light-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.roboto-regular-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.roboto-medium-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.roboto-bold-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.roboto-black-italic {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: italic;
}
.roboto-condensed {
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.fieldwork-regular {
  font-family: "fieldwork", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fieldwork-bold {
  font-family: "fieldwork", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.fieldwork-hum {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fieldwork-hum-demibold {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.fieldwork-hum-bold {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#content h1,
#footer h1,
.header__mobile h1,
.fancybox-container h1,
#content .h1,
#footer .h1,
.header__mobile .h1,
.fancybox-container .h1 {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(62rem * 1 / 18);
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  #content h1,
  #footer h1,
  .header__mobile h1,
  .fancybox-container h1,
  #content .h1,
  #footer .h1,
  .header__mobile .h1,
  .fancybox-container .h1 {
    font-size: 72px;
    line-height: 68px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 850px) {
  #content h1,
  #footer h1,
  .header__mobile h1,
  .fancybox-container h1,
  #content .h1,
  #footer .h1,
  .header__mobile .h1,
  .fancybox-container .h1 {
    font-size: 60px;
    line-height: 1;
  }
}
@media only screen and (max-width: 600px) {
  #content h1,
  #footer h1,
  .header__mobile h1,
  .fancybox-container h1,
  #content .h1,
  #footer .h1,
  .header__mobile .h1,
  .fancybox-container .h1 {
    font-size: 42px;
  }
}
#content h1.title,
#footer h1.title,
.header__mobile h1.title,
.fancybox-container h1.title,
#content .h1.title,
#footer .h1.title,
.header__mobile .h1.title,
.fancybox-container .h1.title {
  font-size: calc(64rem * 1 / 18);
  line-height: calc(76.8rem * 1 / 18);
}
@media only screen and (max-width: 1199px) {
  #content h1.title,
  #footer h1.title,
  .header__mobile h1.title,
  .fancybox-container h1.title,
  #content .h1.title,
  #footer .h1.title,
  .header__mobile .h1.title,
  .fancybox-container .h1.title {
    font-size: 64px;
    line-height: 76.8px;
    letter-spacing: 0;
  }
}
#content h2,
#footer h2,
.header__mobile h2,
.fancybox-container h2,
#content .h2,
#footer .h2,
.header__mobile .h2,
.fancybox-container .h2 {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(42rem * 1 / 18);
  line-height: calc(44rem * 1 / 18);
  letter-spacing: calc(1rem * 1 / 18);
}
@media only screen and (max-width: 1199px) {
  #content h2,
  #footer h2,
  .header__mobile h2,
  .fancybox-container h2,
  #content .h2,
  #footer .h2,
  .header__mobile .h2,
  .fancybox-container .h2 {
    font-size: 25px;
    line-height: 1;
    letter-spacing: 0.5px;
  }
}
#content h3,
#footer h3,
.header__mobile h3,
.fancybox-container h3,
#content .h3,
#footer .h3,
.header__mobile .h3,
.fancybox-container .h3 {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(36rem * 1 / 18);
  line-height: calc(43.2rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  #content h3,
  #footer h3,
  .header__mobile h3,
  .fancybox-container h3,
  #content .h3,
  #footer .h3,
  .header__mobile .h3,
  .fancybox-container .h3 {
    font-size: 32px;
    line-height: 38.4px;
  }
}
@media only screen and (max-width: 1199px) {
  #content h3,
  #footer h3,
  .header__mobile h3,
  .fancybox-container h3,
  #content .h3,
  #footer .h3,
  .header__mobile .h3,
  .fancybox-container .h3 {
    font-size: 46px;
    line-height: 55.2px;
    letter-spacing: -0.5px;
  }
}
#content h3.title,
#footer h3.title,
.header__mobile h3.title,
.fancybox-container h3.title,
#content .h3.title,
#footer .h3.title,
.header__mobile .h3.title,
.fancybox-container .h3.title {
  font-size: calc(38rem * 1 / 18);
  line-height: calc(50rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  #content h3.title,
  #footer h3.title,
  .header__mobile h3.title,
  .fancybox-container h3.title,
  #content .h3.title,
  #footer .h3.title,
  .header__mobile .h3.title,
  .fancybox-container .h3.title {
    font-size: 38px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 600px) {
  #content h3.title,
  #footer h3.title,
  .header__mobile h3.title,
  .fancybox-container h3.title,
  #content .h3.title,
  #footer .h3.title,
  .header__mobile .h3.title,
  .fancybox-container .h3.title {
    font-size: 40px;
    line-height: 48px;
  }
}
#content h3.title-bold,
#footer h3.title-bold,
.header__mobile h3.title-bold,
.fancybox-container h3.title-bold,
#content .h3.title-bold,
#footer .h3.title-bold,
.header__mobile .h3.title-bold,
.fancybox-container .h3.title-bold {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#content h3.title-heavy,
#footer h3.title-heavy,
.header__mobile h3.title-heavy,
.fancybox-container h3.title-heavy,
#content .h3.title-heavy,
#footer .h3.title-heavy,
.header__mobile .h3.title-heavy,
.fancybox-container .h3.title-heavy {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#content h4,
#footer h4,
.header__mobile h4,
.fancybox-container h4,
#content .h4,
#footer .h4,
.header__mobile .h4,
.fancybox-container .h4 {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(28rem * 1 / 18);
  line-height: calc(33.6rem * 1 / 18);
}
#content h4.title,
#footer h4.title,
.header__mobile h4.title,
.fancybox-container h4.title,
#content .h4.title,
#footer .h4.title,
.header__mobile .h4.title,
.fancybox-container .h4.title {
  font-size: calc(32rem * 1 / 18);
  line-height: calc(50rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  #content h4.title,
  #footer h4.title,
  .header__mobile h4.title,
  .fancybox-container h4.title,
  #content .h4.title,
  #footer .h4.title,
  .header__mobile .h4.title,
  .fancybox-container .h4.title {
    font-size: 28px;
    line-height: 33.6px;
  }
}
@media only screen and (max-width: 1400px) {
  #content h4,
  #footer h4,
  .header__mobile h4,
  .fancybox-container h4,
  #content .h4,
  #footer .h4,
  .header__mobile .h4,
  .fancybox-container .h4 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.5px;
  }
}
#content h5,
#footer h5,
.header__mobile h5,
.fancybox-container h5,
#content .h5,
#footer .h5,
.header__mobile .h5,
.fancybox-container .h5 {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(22rem * 1 / 18);
  line-height: calc(26.4rem * 1 / 18);
}
#content h5 b,
#footer h5 b,
.header__mobile h5 b,
.fancybox-container h5 b,
#content .h5 b,
#footer .h5 b,
.header__mobile .h5 b,
.fancybox-container .h5 b,
#content h5 strong,
#footer h5 strong,
.header__mobile h5 strong,
.fancybox-container h5 strong,
#content .h5 strong,
#footer .h5 strong,
.header__mobile .h5 strong,
.fancybox-container .h5 strong,
#content h5.b,
#footer h5.b,
.header__mobile h5.b,
.fancybox-container h5.b,
#content .h5.b,
#footer .h5.b,
.header__mobile .h5.b,
.fancybox-container .h5.b,
#content h5.strong,
#footer h5.strong,
.header__mobile h5.strong,
.fancybox-container h5.strong,
#content .h5.strong,
#footer .h5.strong,
.header__mobile .h5.strong,
.fancybox-container .h5.strong {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 600;
  font-style: normal;
}
#content h5 .extra-bold,
#footer h5 .extra-bold,
.header__mobile h5 .extra-bold,
.fancybox-container h5 .extra-bold,
#content .h5 .extra-bold,
#footer .h5 .extra-bold,
.header__mobile .h5 .extra-bold,
.fancybox-container .h5 .extra-bold {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#content h5.title,
#footer h5.title,
.header__mobile h5.title,
.fancybox-container h5.title,
#content .h5.title,
#footer .h5.title,
.header__mobile .h5.title,
.fancybox-container .h5.title {
  font-size: calc(24rem * 1 / 18);
  line-height: calc(28.8rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  #content h5.title,
  #footer h5.title,
  .header__mobile h5.title,
  .fancybox-container h5.title,
  #content .h5.title,
  #footer .h5.title,
  .header__mobile .h5.title,
  .fancybox-container .h5.title {
    font-size: 24px;
    line-height: 28.8px;
  }
}
#content h5.title-large,
#footer h5.title-large,
.header__mobile h5.title-large,
.fancybox-container h5.title-large,
#content .h5.title-large,
#footer .h5.title-large,
.header__mobile .h5.title-large,
.fancybox-container .h5.title-large {
  font-size: calc(26rem * 1 / 18);
  line-height: calc(31.2rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  #content h5.title-large,
  #footer h5.title-large,
  .header__mobile h5.title-large,
  .fancybox-container h5.title-large,
  #content .h5.title-large,
  #footer .h5.title-large,
  .header__mobile .h5.title-large,
  .fancybox-container .h5.title-large {
    font-size: 26px;
    line-height: 31.2px;
  }
}
@media only screen and (max-width: 1400px) {
  #content h5,
  #footer h5,
  .header__mobile h5,
  .fancybox-container h5,
  #content .h5,
  #footer .h5,
  .header__mobile .h5,
  .fancybox-container .h5 {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.5px;
  }
}
#content h6,
#footer h6,
.header__mobile h6,
.fancybox-container h6,
#content .h6,
#footer .h6,
.header__mobile .h6,
.fancybox-container .h6 {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(18rem * 1 / 18);
  line-height: calc(22rem * 1 / 18);
}
@media only screen and (max-width: 1199px) {
  #content h6,
  #footer h6,
  .header__mobile h6,
  .fancybox-container h6,
  #content .h6,
  #footer .h6,
  .header__mobile .h6,
  .fancybox-container .h6 {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.5px;
  }
}
#content .thin,
#footer .thin,
.header__mobile .thin,
.fancybox-container .thin {
  font-weight: 100;
}
#content .light,
#footer .light,
.header__mobile .light,
.fancybox-container .light {
  font-weight: 300;
}
#content .demibold,
#footer .demibold,
.header__mobile .demibold,
.fancybox-container .demibold {
  font-weight: 600;
}
#content .bold,
#footer .bold,
.header__mobile .bold,
.fancybox-container .bold {
  font-weight: 700;
}
#content .font-italic,
#footer .font-italic,
.header__mobile .font-italic,
.fancybox-container .font-italic,
#content .italisize,
#footer .italisize,
.header__mobile .italisize,
.fancybox-container .italisize {
  font-style: italic;
}
#content .capitalize,
#footer .capitalize,
.header__mobile .capitalize,
.fancybox-container .capitalize {
  text-transform: uppercase;
}
#content .underline,
#footer .underline,
.header__mobile .underline,
.fancybox-container .underline {
  text-decoration: underline;
}
.menu-item {
  font-size: calc(18rem * 1 / 18);
  line-height: calc(21.6rem * 1 / 18);
  color: #25384A;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media only screen and (max-width: 1400px) {
  .menu-item {
    font-size: 16px;
    line-height: 20px;
  }
}
.body-intro {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(26rem * 1 / 18);
  line-height: calc(40rem * 1 / 18);
}
@media only screen and (max-width: 1199px) {
  .body-intro {
    font-size: 22px;
    line-height: 22px;
  }
}
.body,
body p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(20rem * 1 / 18);
  line-height: 1.4;
}
.body.condensed,
body p.condensed {
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media only screen and (max-width: 1400px) {
  .body,
  body p {
    font-size: 20px;
  }
}
.body-hum {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(20rem * 1 / 18);
  line-height: calc(24rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  .body-hum {
    font-size: 22px;
    line-height: 26px;
  }
}
.body-small {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(18rem * 1 / 18);
  line-height: calc(24rem * 1 / 18);
  letter-spacing: calc(0.25rem * 1 / 18);
}
.body-small.condensed {
  font-family: "Roboto Condensed", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media only screen and (max-width: 1400px) {
  .body-small {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.25px;
  }
}
.support-text {
  font-family: "fieldwork-hum", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(16rem * 1 / 18);
  line-height: calc(19.2rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  .support-text {
    font-size: 16px;
    line-height: 19.2px;
  }
}
.footer-small {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(16rem * 1 / 18);
  line-height: calc(22rem * 1 / 18);
}
@media only screen and (max-width: 1400px) {
  .footer-small {
    font-size: 16px;
    line-height: 22px;
  }
}
.header {
  height: 0;
  overflow: hidden;
}
@keyframes scrollBackground {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: calc(-458rem * 1 / 18);
    /* Full scroll down */
  }
}
.footer {
  height: calc(412rem * 1 / 18);
  height: fit-content;
  display: grid;
  grid-template-columns: 55% 45%;
  padding: calc(70rem * 1 / 18) calc(130rem * 1 / 18) calc(55rem * 1 / 18);
  background-color: #22364D;
  max-width: 2000px;
  margin: auto;
  margin-top: calc(4rem * 1 / 18);
  background-image: url(/wp-content/themes/saltvillage/images/bg/footer_bg_large.png);
  /* Replace with your wave image path */
  background-repeat: no-repeat;
  background-size: 120% 200%;
  background-position-x: right;
  position: relative;
  overflow: hidden;
  animation: scrollBackground 60s linear infinite;
}
@media only screen and (max-width: 1023px) {
  .footer {
    height: fit-content;
    padding: 40px 70px 30px;
    row-gap: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .footer {
    padding: 70px 20px 60px;
  }
}
@media only screen and (max-width: 1023px) {
  .footer {
    background-size: 400% auto;
  }
}
.footer__left {
  grid-column: 1 / 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  gap: calc(90rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__left {
    grid-column: 1 / 3;
    gap: 60px;
  }
}
.footer__logo {
  width: calc(174rem * 1 / 18);
  height: calc(78rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__logo {
    width: 174px;
    height: 78px;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__map {
  width: calc(366rem * 1 / 18);
  height: calc(144rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__map {
    width: 366px;
    height: 144px;
  }
}
@media only screen and (max-width: 600px) {
  .footer__map {
    width: 100%;
    max-width: 366px;
  }
}
.footer__map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__info {
  align-self: flex-end;
  color: white;
}
@media only screen and (max-width: 1023px) {
  .footer__info {
    display: none;
  }
}
.footer__info-mobile {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .footer__info-mobile {
    display: block;
    grid-column: 1 / 3;
    color: #FAFAF7;
  }
}
@media only screen and (max-width: 800px) {
  .footer__info-mobile {
    margin-top: 30px;
  }
}
.footer__right {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  width: fit-content;
  justify-self: flex-end;
}
@media only screen and (max-width: 1023px) {
  .footer__right {
    grid-column: 1 / 3;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .footer__right {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1023px) {
  .footer__links {
    flex-direction: row;
    gap: 40px;
  }
}
@media only screen and (max-width: 800px) {
  .footer__links {
    flex-direction: column;
    gap: 0px;
    margin-top: 80px;
  }
}
.footer__link {
  color: #FAFAF7 !important;
  text-decoration: none;
  margin-bottom: calc(8rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__link {
    margin-bottom: 8px;
  }
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__support {
  display: flex;
  gap: calc(40rem * 1 / 18);
  margin-top: calc(50rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__support {
    gap: 40px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 800px) {
  .footer__support {
    margin-top: 54px;
  }
}
.footer__penta {
  width: calc(90rem * 1 / 18);
  height: calc(42rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__penta {
    width: 90px;
    height: 42px;
  }
}
.footer__penta img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__reg {
  width: calc(142rem * 1 / 18);
  height: calc(44rem * 1 / 18);
}
@media only screen and (max-width: 1023px) {
  .footer__reg {
    width: 142px;
    height: 44px;
  }
}
.footer__reg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
