/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  outline: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

img,
svg,
iframe,
embed {
  vertical-align: bottom;
}

address {
  font-style: normal;
}

a {
  color: inherit;
  text-underline-offset: 2px;
}

a:has(> i),
span:has(> i) {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-wrapper {
  overflow: hidden;
}

.flickity-viewport {
  overflow: visible;
}

.logo img {
  width: 100%;
  height: auto;
}

:root {
  --brand--heading-font: "Outfit", sans-serif;
  --brand--body-font: "Outfit", sans-serif;
  --brand--primary-color: #114D88;
  --brand--secondary-color: #9A55BC;
  --brand--alice-blue: #F3F9FF;
  --brand--ceramic: #FBFFF2;
}

:root {
  --brand--light:#e7e4d0;
  --brand--dark:#000000;
  --brand--primary-color:#211717;
  --brand--second-color:#9b4a28;
  --brand--second-color-opacity:rgba(155, 74, 40, 0.98);
  --brand--third-color:#ed8354;
  --brand--accent-color:#ed8354;
  --brand--fourth-color:#e7e4d0;
  --brand--fifth-color:#737d72;
  --brand--error:#ff6666;
  --brand--body-text-color: var(--brand--primary-color);
  --brand--heading-font: "Mojito", sans-serif;
  --brand--body-font: "Mojito", sans-serif;
  --brand--body-line-height: 1.7;
  --brand--secondary-font: "Gothic", serif;
  --letterspacing--1: -1px;
  --letterspacing-0: 0px;
  --letterspacing-0-5: 0.5px;
  --letterspacing-1: 1px;
  --letterspacing-1-5: 1.5px;
}

/* Fonts */
.bw {
  top: auto !important;
  bottom: 1rem;
  color: white;
}

/* breakpoints */
/* breakpoints */
body {
  background-color: var(--brand--body-bg-color);
  line-height: var(--brand--body-line-height);
  color: var(--brand--body-text-color);
}

/* breakpoints */
.btn {
  font-family: var(--brand--heading-font);
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 500;
  letter-spacing: var(--letterspacing-1);
  border-radius: 50px;
  padding: 10px 25px;
  border-color: var(--brand--high);
  border: none;
  background-color: var(--brand--high);
  color: white;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: all 550ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn:hover {
  background-color: var(--brand--light);
  color: var(--brand--dark);
}
.btn span, .btn i {
  z-index: 1;
  position: relative;
}
.btn .loading-dots {
  visibility: hidden;
}
.btn .loading-dots i {
  display: inline-block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: var(--brand--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: loadingDots 1.2s ease-in;
  animation-iteration-count: 999;
  animation-direction: normal;
  animation-fill-mode: forwards;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0.4;
}
.btn .loading-dots i:nth-child(1) {
  left: calc(50% - 1.3em);
}
.btn .loading-dots i:nth-child(2) {
  animation-delay: 80ms;
}
.btn .loading-dots i:nth-child(3) {
  left: calc(50% + 1.3em);
  animation-delay: 160ms;
}
.btn.loading {
  pointer-events: none;
  background-color: white;
}
.btn.loading:before {
  background-color: transparent;
}
.btn.loading span {
  visibility: hidden;
}
.btn.loading .loading-dots {
  visibility: visible;
}
@keyframes loadingDots {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
  }
  20% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.4;
  }
}

.entry-content a.btn,
a.btn {
  text-decoration: none;
}
.entry-content a.btn:hover,
a.btn:hover {
  opacity: 0.8;
}

.gform_wrapper form,
.gform_body,
.gform_fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gform_fields {
  flex-direction: row;
}

.gfield_label {
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}

.gfield_validation_message {
  font-family: var(--brand--heading-font);
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 400;
  letter-spacing: var(--letterspacing-1);
  color: var(--brand--error);
  margin-top: 0.5rem;
}
.gfield_validation_message:before {
  content: "^ ";
}

.hidden_label .gfield_label,
.hide_summary,
.gform_hidden,
.gfield--type-honeypot {
  display: none;
}

.gform_fileupload_rules {
  margin-top: 0.5rem;
  display: block;
}

.gfield_required_asterisk {
  color: red;
  margin-left: 0.5rem;
}

fieldset.gfield {
  margin: 0;
  padding: 0;
  border: none;
}

select,
input[type=text],
input[type=email],
input[type=tel],
textarea {
  height: 55px;
  background-color: var(--brand--light);
  border: 1px solid var(--brand--light);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.1rem !important;
  font-weight: normal;
  font-family: var(--brand--body-font);
  width: 100%;
  border-radius: 12px;
}
select::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  font-weight: normal;
  color: black;
  opacity: 0.5;
}
select::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  font-weight: normal;
  color: black;
  opacity: 0.5;
}

textarea {
  height: auto;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

select,
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='16'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M-2-1h26v16H-2z' data-name='Rectangle 51'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Group 35' transform='translate(2 1)'%3E%3Cpath d='M11.2 14a1.4 1.4 0 0 1-1-.5L.2 2.3A1.4 1.4 0 0 1 2.5.5l8.7 10 8.7-10a1.4 1.4 0 1 1 2.2 1.8l-9.8 11.2a1.4 1.4 0 0 1-1.1.5Z' data-name='Path 136'/%3E%3C/g%3E%3C/svg%3E ");
  background-size: 26px 16px;
  background-position: right 0.8rem center;
  background-repeat: no-repeat;
}

.select {
  cursor: pointer;
}
.select:hover {
  opacity: 0.5;
}

button {
  cursor: pointer;
}

.gpfup__droparea > div {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.gpfup__droparea > div:before {
  content: "";
  display: block;
  width: 73px;
  height: auto;
  aspect-ratio: 73/66;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='73.67' height='66.34'%3E%3Cg fill='%239a55bc'%3E%3Cpath data-name='Path 317' d='M64.4 23.16v-.72A23.02 23.02 0 0 0 40.97 0 23.49 23.49 0 0 0 19.44 13.7 21.85 21.85 0 0 0 0 35.27a21.58 21.58 0 0 0 21.65 21.54h8.41v-4.48h-8.41a17.16 17.16 0 0 1-.56-34.24h1.5l.51-1.41A18.91 18.91 0 0 1 41.05 4.56 18.53 18.53 0 0 1 60.02 22.5a17.39 17.39 0 0 1 0 1.8l-.18 1.6 1.46.68a13.46 13.46 0 0 1-5.7 25.74H43.52v4.48H55.6a17.95 17.95 0 0 0 8.82-33.65Z'/%3E%3Cpath data-name='Path 318' d='M46.4 43.01a2.24 2.24 0 0 0 1.6-3.83L36.8 27.96 25.57 39.17a2.24 2.24 0 0 0 3.16 3.17l5.8-5.72V64.1a2.24 2.24 0 1 0 4.5 0V36.62l5.76 5.76a2.24 2.24 0 0 0 1.6.63Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.gf-options-inline .gfield_radio {
  display: flex;
  gap: 1rem;
}

.hamburger {
  display: block;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  border: none;
  width: 58px;
  height: 34px;
  padding: 0;
  will-change: opacity;
  transition: opacity 250ms ease;
}
.hamburger svg {
  scale: 2;
  transform-origin: left;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 34px;
  transform: translate(-50%, -50%);
}
.hamburger i span {
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: white;
  will-change: transform, opacity, background-color;
  border-radius: 3px;
  transition: all 250ms ease;
  transform-origin: 50%;
}
.hamburger.is-active i span:nth-child(1) {
  transform: rotate(-45deg) translate(-22.5%, 150%);
}
.hamburger.is-active i span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active i span:nth-child(3) {
  transform: rotate(45deg) translate(-22.5%, -150%);
}
.hamburger:hover i span {
  opacity: 0.8;
}

.wrapper {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.wrapper.wide {
  max-width: 1920px;
}
.wrapper.fluid {
  max-width: 1400px !important;
}
@media (min-width: 1056px) {
  .wrapper {
    max-width: 992px;
  }
}
@media (min-width: 1264px) {
  .wrapper {
    max-width: 1200px;
  }
}
@media (min-width: 1464px) {
  .wrapper {
    max-width: 1400px;
  }
}

.section {
  margin-top: 0rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .section {
    margin-top: 0.8rem;
    margin-bottom: 0rem;
  }
}
.section--inner {
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .section--inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.gutter {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .gutter {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
@media (min-width: 992px) {
  .gutter {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* 

====== Zoom effect ======

*/
.mfp-zoom-in {
  /* start state */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in {
  /* animate in */
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in {
  /* animate out */
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Newspaper effect ======

*/
.mfp-newspaper {
  /* start state */
}
.mfp-newspaper .mfp-with-anim {
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0) rotate(500deg);
}
.mfp-newspaper.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-newspaper {
  /* animate in */
}
.mfp-newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.mfp-newspaper.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-newspaper {
  /* animate out */
}
.mfp-newspaper.mfp-removing .mfp-with-anim {
  transform: scale(0) rotate(500deg);
  opacity: 0;
}
.mfp-newspaper.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Move-horizontal effect ======

*/
.mfp-move-horizontal {
  /* start state */
}
.mfp-move-horizontal .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateX(-50px);
}
.mfp-move-horizontal.mfp-bg {
  opacity: 0;
  transition: all 0.3s;
}
.mfp-move-horizontal {
  /* animate in */
}
.mfp-move-horizontal.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateX(0);
}
.mfp-move-horizontal.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-horizontal {
  /* animate out */
}
.mfp-move-horizontal.mfp-removing .mfp-with-anim {
  transform: translateX(50px);
  opacity: 0;
}
.mfp-move-horizontal.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Move-from-top effect ======

*/
.mfp-move-from-top .mfp-content {
  vertical-align: top;
}
.mfp-move-from-top {
  /* start state */
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s;
  transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}
.mfp-move-from-top {
  /* animate in */
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-from-top {
  /* animate out */
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-50px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== 3d unfold ======

*/
.mfp-3d-unfold .mfp-content {
  perspective: 2000px;
}
.mfp-3d-unfold {
  /* start state */
}
.mfp-3d-unfold .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform-style: preserve-3d;
  transform: rotateY(-60deg);
}
.mfp-3d-unfold.mfp-bg {
  opacity: 0;
  transition: all 0.5s;
}
.mfp-3d-unfold {
  /* animate in */
}
.mfp-3d-unfold.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: rotateY(0deg);
}
.mfp-3d-unfold.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-3d-unfold {
  /* animate out */
}
.mfp-3d-unfold.mfp-removing .mfp-with-anim {
  transform: rotateY(60deg);
  opacity: 0;
}
.mfp-3d-unfold.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== Zoom-out effect ======

*/
.mfp-zoom-out {
  /* start state */
}
.mfp-zoom-out .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: scale(1.3);
}
.mfp-zoom-out.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-out {
  /* animate in */
}
.mfp-zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-out.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-out {
  /* animate out */
}
.mfp-zoom-out.mfp-removing .mfp-with-anim {
  transform: scale(1.3);
  opacity: 0;
}
.mfp-zoom-out.mfp-removing.mfp-bg {
  opacity: 0;
}

/* 

====== "Hinge" close effect ======

*/
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 1s;
  animation-name: hinge;
}

.mfp-with-fade .mfp-content, .mfp-with-fade.mfp-bg {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}
.mfp-with-fade.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-with-fade.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-with-fade.mfp-removing.mfp-bg {
  opacity: 0;
}

.popup {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}

.mfp-bg,
.mfp-wrap {
  z-index: 9999999 !important;
}

.mobile-navigation {
  background-color: var(--brand--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 250ms cubic-bezier(0.165, 0.84, 0.44, 1);
  left: auto;
  right: 0;
  max-width: 480px;
  width: 100%;
  align-items: flex-start;
  color: var(--brand--body-text-color);
  padding: 2rem;
}
.mobile-navigation.is-visible {
  transform: translateX(0);
}
.mobile-navigation .wrapper {
  height: 100%;
  display: flex;
  gap: 0;
  flex-direction: column;
  text-align: right !important;
}
.mobile-navigation__header {
  height: 140px;
  display: flex;
}
.mobile-navigation__main ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-navigation__brand {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.mobile-navigation__brand .logo {
  width: 80px;
}
.mobile-navigation__footer {
  padding-top: 1.4rem;
  padding-bottom: 0rem;
  margin-top: auto;
  font-weight: bold;
  align-items: flex-start;
  width: 100%;
}
.mobile-navigation__footer a {
  color: var(--brand--primary-color);
}
.mobile-navigation__footer a:nth-child(n+2) {
  position: relative;
}
.mobile-navigation__footer a:nth-child(n+2):before {
  content: "";
  display: block;
  display: none;
  width: 1px;
  background-color: var(--brand--primary-color);
  height: 1rem;
  position: absolute;
  top: 50%;
  left: -0.5rem;
  transform: translateY(-50%);
}
.mobile-navigation__footer .site-header__contact__socials__links a:hover {
  color: var(--brand--primary-color) !important;
  padding-right: 5px;
}
.mobile-navigation__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  aspect-ratio: 1;
  width: auto;
  height: 22px;
  border: none;
  padding: 0;
}
.mobile-navigation__main ul {
  align-items: flex-start;
}
.mobile-navigation .logo path {
  fill: var(--brand--primary-color);
}
.mobile-navigation .hamburger i span {
  background-color: var(--brand--accent-color);
}
.mobile-navigation__header {
  width: 100%;
  height: 60px;
}
.mobile-navigation__main {
  flex: 1;
  align-items: flex-start;
  width: 100%;
}
.mobile-navigation .sub-menu .sub-menu a {
  font-weight: normal;
}
.mobile-navigation .sub-menu {
  gap: 0.7rem;
  padding-top: 0.9rem;
}
.mobile-navigation .sub-menu {
  display: block !important;
  padding-left: 0;
  font-size: 2rem;
  list-style: none;
}
.mobile-navigation .sub-menu li {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: var(--brand--body-font);
}
.mobile-navigation .sub-menu li a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  padding-right: 20px;
}
.mobile-navigation .sub-menu li a:after {
  display: block;
  content: " +";
  transform: scaleX(1);
  background: none;
  color: var(--brand--primary-color);
  position: absolute;
  right: 0;
  top: 0;
}
.mobile-navigation .sub-menu li a img {
  aspect-ratio: 3/2;
  aspect-ratio: 4/3;
  height: auto;
  width: 125px;
}
.mobile-navigation .nav-menu {
  width: 100%;
}
.mobile-navigation .nav-menu > li {
  align-self: stretch;
}
.mobile-navigation li.menu-item-has-children {
  position: relative;
}
.mobile-navigation li.menu-item-has-children:before {
  content: "";
  /* background-color: red; */
  background-image: linear-gradient(to bottom, white 0, white 10px, var(--brand--primary-color) 10px, var(--brand--primary-color) 13px, white 13px, white);
  background-position: center;
  width: 0;
  display: inline-block;
  height: 22px;
  transition: all 250ms ease;
  will-change: width;
}
.mobile-navigation li.menu-item-has-children > button {
  right: 0;
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  top: 0;
  transform: none;
  width: 3.5rem;
  height: 2.5rem;
}
.mobile-navigation li.menu-item-has-children > button:after {
  content: "";
  background-color: var(--brand--primary-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.15' height='7.99'%3E%3Cg fill='%239a55bc'%3E%3Cpath d='M6.62 7.49A.86.86 0 0 1 6 7.23L.76 2a.76.76 0 0 1-.18-.27l-.02-.05-.01-.03v-.02l-.02-.05-.02-.05v-.11L.5 1.4v-.03c0-.23.09-.45.26-.61A.86.86 0 0 1 1.37.5c.24 0 .45.09.62.26l4.63 4.62L11.16.83a.86.86 0 0 1 .62-.25c.24 0 .45.09.62.25.17.17.25.38.25.62s-.08.45-.25.62L7.23 7.23a.86.86 0 0 1-.61.26Z'/%3E%3Cpath d='M1.37 1c-.1 0-.19.04-.26.11a.36.36 0 0 0-.11.26v.06l.02.06.02.05.03.06.04.05 5.24 5.23c.08.07.16.11.27.11.1 0 .19-.04.26-.11l5.16-5.16a.36.36 0 0 0 .11-.27.36.36 0 0 0-.37-.37c-.1 0-.2.03-.26.1l-4.9 4.9-4.98-4.97A.36.36 0 0 0 1.37 1m0-1c.37 0 .72.14.98.4l4.27 4.27L10.8.48a1.36 1.36 0 0 1 1.94 0 1.36 1.36 0 0 1 0 1.94L7.6 7.6a1.36 1.36 0 0 1-1.95 0L.4 2.36a1.26 1.26 0 0 1-.29-.45l-.03-.09-.06-.2-.02-.2v-.05A1.36 1.36 0 0 1 1.37 0Z'/%3E%3C/g%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.15' height='7.99'%3E%3Cg fill='%239a55bc'%3E%3Cpath d='M6.62 7.49A.86.86 0 0 1 6 7.23L.76 2a.76.76 0 0 1-.18-.27l-.02-.05-.01-.03v-.02l-.02-.05-.02-.05v-.11L.5 1.4v-.03c0-.23.09-.45.26-.61A.86.86 0 0 1 1.37.5c.24 0 .45.09.62.26l4.63 4.62L11.16.83a.86.86 0 0 1 .62-.25c.24 0 .45.09.62.25.17.17.25.38.25.62s-.08.45-.25.62L7.23 7.23a.86.86 0 0 1-.61.26Z'/%3E%3Cpath d='M1.37 1c-.1 0-.19.04-.26.11a.36.36 0 0 0-.11.26v.06l.02.06.02.05.03.06.04.05 5.24 5.23c.08.07.16.11.27.11.1 0 .19-.04.26-.11l5.16-5.16a.36.36 0 0 0 .11-.27.36.36 0 0 0-.37-.37c-.1 0-.2.03-.26.1l-4.9 4.9-4.98-4.97A.36.36 0 0 0 1.37 1m0-1c.37 0 .72.14.98.4l4.27 4.27L10.8.48a1.36 1.36 0 0 1 1.94 0 1.36 1.36 0 0 1 0 1.94L7.6 7.6a1.36 1.36 0 0 1-1.95 0L.4 2.36a1.26 1.26 0 0 1-.29-.45l-.03-.09-.06-.2-.02-.2v-.05A1.36 1.36 0 0 1 1.37 0Z'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  width: 20px;
  height: auto;
  aspect-ratio: 13/8;
  display: block;
  position: absolute;
  top: 1rem;
  right: 0;
  transform: rotate(-90deg);
  transition: transform 250ms ease;
}
.mobile-navigation li.menu-item-has-children.is-active:before {
  content: "";
  width: 50px;
  padding-right: 1rem;
  border-right: 5px solid white;
  height: 22px;
}
.mobile-navigation li.menu-item-has-children.is-active > button:after {
  transform: rotate(0);
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  outline: none;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
}

img,
svg,
iframe,
embed {
  vertical-align: bottom;
}

address {
  font-style: normal;
}

a {
  color: inherit;
  text-underline-offset: 2px;
}

a:has(> i),
span:has(> i) {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-wrapper {
  overflow: hidden;
}

.flickity-viewport {
  overflow: visible;
}

.logo img {
  width: 100%;
  height: auto;
}

.stagger .stagger--in {
  opacity: 0;
  transition: all 0.8s ease;
}
.stagger .stagger--in.slide--up {
  transform: translate(0, 5rem);
}
.stagger .stagger--in.animate-in {
  opacity: 1;
  transition-delay: 150ms;
}
.stagger .stagger--in.animate-in.slide--up {
  transform: translate(0, 0);
}

body {
  font-family: var(--brand--body-font);
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6,
[class*=__heading],
[class*=-heading] {
  line-height: 1.3;
}

h1, h2, h3 {
  font-family: var(--brand--heading-font);
  font-size: 2.5rem;
  line-height: 1.5em;
  font-weight: 600;
  letter-spacing: var(--letterspacing-1);
}

.wrapper {
  font-weight: 400;
}
.wrapper p {
  font-size: 1.2rem;
  line-height: 1.5em;
  margin-bottom: 1.8rem;
  letter-spacing: var(--letterspacing-0-5);
}
@media (max-width: 768px) {
  .wrapper p {
    font-size: 1.2rem;
  }
}
.wrapper p em {
  color: var(--brand--high);
  font-weight: 600;
}

.site-footer p {
  margin-bottom: 0;
}

.entry-content h3 {
  margin: 5rem 0 3.8rem 0;
}
.entry-content .gform_confirmation_message h3 {
  color: var(--brand--high);
  margin: 6rem 0 0.5rem 0;
}
.entry-content ol, .entry-content ul:not(.list--contact-links) {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  list-style-type: decimal;
  padding-left: 1rem;
  margin-left: 1rem;
}
.entry-content ol ol {
  list-style-type: lower-alpha;
}
.entry-content ul:not(.list--contact-links) {
  list-style-type: disc;
}
.entry-content li::marker {
  font-weight: 400;
}
.entry-content > *:not(:last-child):not(blockquote),
.entry-content > blockquote > *:not(:last-child) {
  margin-bottom: 1.2rem;
}
.entry-content strong {
  font-weight: bold;
}
.entry-content a {
  text-decoration: underline;
}
.entry-content a:hover {
  text-decoration: none;
}
.entry-content ul.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gp-0 {
  gap: 0;
}

.fw-w {
  flex-wrap: wrap;
}

.fd-c {
  flex-direction: column;
  align-items: flex-start;
}

.fd-r {
  flex-direction: row;
  align-items: flex-start;
}

.ai-fs {
  align-items: flex-start;
}

.ai-c {
  align-items: center;
}

.ai-s {
  align-items: stretch;
}

.fg {
  position: relative;
  z-index: 9;
}

.jc-c {
  justify-content: center;
}

.jc-fs {
  justify-content: flex-start;
}

.jc-fe {
  justify-content: flex-end;
}

.ta-c {
  text-align: center;
}

.ta-r {
  text-align: right;
}

.hide,
.d-none {
  display: none;
}

.zoom-hover {
  transition: transform 550ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 550ms cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}
.zoom-hover [class*=-image] {
  overflow: hidden;
}
.zoom-hover [class*=-image] img {
  transition: transform 550ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 550ms cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}
.zoom-hover:hover [class*=-image] img {
  transform: scale(1.1);
}

body.resizing .zoom-hover {
  transition: none;
}

.l-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.l-clamp--2 {
  -webkit-line-clamp: 2;
}

.l-clamp--3 {
  -webkit-line-clamp: 3;
}

.pos-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.img--cover,
.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.list--contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.list--contact-links li {
  margin: 0;
  padding: 0;
}
.list--contact-links li a {
  gap: 0.5rem;
  text-decoration: none;
}

.list--social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  justify-content: right;
  gap: 1em;
}
.list--social-links li {
  margin: 0;
  padding: 0;
}
.list--social-links li a {
  gap: 0.5rem;
}
.list--social-links li a[href=""] {
  display: none;
}
.list--social-links li a img {
  width: 40px;
  height: auto;
}
.list--social-links li a:hover {
  opacity: 0.75 !important;
}
.list--social-links.larger {
  justify-content: center;
}
.list--social-links.larger img {
  width: 80px;
}

:root {
  --brand--heading-font: "Outfit", sans-serif;
  --brand--body-font: "Outfit", sans-serif;
  --brand--primary-color: #114D88;
  --brand--secondary-color: #9A55BC;
  --brand--alice-blue: #F3F9FF;
  --brand--ceramic: #FBFFF2;
}

@keyframes bouncy-anim {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -8px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes bouncy-anim-more {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -10px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes bouncy-anim-invert {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes bouncy-anim-slight {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -4px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes bouncy-anim-slight-slow {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, -2px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes bouncy-anim-slight-slow-invert {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 2px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
@keyframes zoomy-anim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.basic-text {
  margin-top: 3.4rem;
}
.basic-text__heading {
  margin-bottom: 2rem;
}
.basic-text__content p strong {
  font-size: 125%;
}
@media (max-width: 768px) {
  .basic-text {
    margin-top: 2.8rem;
    margin-bottom: 0;
  }
}
.basic-text .contact-form__form {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.basic-text .contact-form .gform_fields {
  flex-wrap: wrap;
}
.basic-text .contact-form .gfield--width-third {
  width: calc(33.333% - 0.666rem);
}
@media (max-width: 1070px) {
  .basic-text .contact-form .gfield--width-third {
    width: 100%;
  }
}
.basic-text .contact-form .gfield--width-half {
  width: calc(50% - 0.5rem);
}
@media (max-width: 1070px) {
  .basic-text .contact-form .gfield--width-half {
    width: 100%;
  }
}
.basic-text .contact-form .gfield--width-full, .basic-text .contact-form .gfield--input-type-textarea {
  width: 100%;
}
.basic-text .contact-form .gfield_label, .basic-text .contact-form .gform_heading {
  display: none;
}

body.home {
  /*
  &:before {

  	content: '';
  	display: block;
  	position: fixed;
  	height: 100%;
  	width: 100%;
  	top: 0;
  	left: 0;
  	background-color: var(--brand--dark);
  	opacity: 0.5;
  	z-index: -1;

  	@media (max-width: $bp--l) {
  		opacity: 0.55;
  	}

  }
  */
  /*
  background-image: url("../img/The_Farm_Shop_bg.jpg");
  background-repeat: no-repeat;
     background-position: center center;
     background-attachment: fixed;
  */
  background-size: cover;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 1200px) {
  .bg-video {
    /*display: none;*/
  }
}

/* breakpoints */
.captcha-wrap {
  margin: 1rem;
}

.ginput_container.ginput_recaptcha.gform-initialized > div {
  margin: 0 auto;
}

@media (max-width: 1056px) {
  .find-us .wrapper {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
.find-us.section {
  position: relative;
  margin: 0 0 0 0;
  padding-top: 7rem;
  background: var(--brand--primary-color);
  text-align: center;
  overflow: hidden;
}
.find-us__bottom {
  position: relative;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 9999;
}
.find-us__bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .find-us__map {
    width: 100%;
  }
  .find-us__map iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1.25;
  }
}
.find-us__map {
  aspect-ratio: 2/1;
  display: inline-block;
  padding: 0.6rem;
  margin: 4.2rem 0 4.3rem 0;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23e7e4d0' stroke-width='6' stroke-dasharray='12%2c 22' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  width: 100%;
}

/*

KEY

400 - normal
500 - medium
600 - semi bold
700 - bold

*/
@font-face {
  font-family: "Mojito";
  src: url("../fonts/Mojito/Mojito.eot");
  src: url("../fonts/Mojito/Mojito.eot?#iefix") format("embedded-opentype"), url("../fonts/Mojito/Mojito.woff") format("woff"), url("../fonts/Mojito/Mojito.woff2") format("woff2"), url("../fonts/Mojito/Mojito.ttf") format("truetype"), url("../fonts/Mojito/Mojito.svg#Mojito") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gothic";
  src: local("gothic"), url("../fonts/gothic.woff") format("woff");
}
@font-face {
  font-family: BornaWeb;
  src: url("../fonts/borna/borna-bolditalic-webfont.woff2") format("woff2"), url("../fonts/borna/borna-bolditalic-webfont.woff") format("woff"), url("../fonts/borna/borna-bolditalic-webfont.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: BornaWeb;
  src: url("../fonts/borna/borna-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/borna/borna-mediumitalic-webfont.woff") format("woff"), url("../fonts/borna/borna-mediumitalic-webfont.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: BornaWeb;
  src: url("../fonts/borna/borna-regularitalic-webfont.woff2") format("woff2"), url("../fonts/borna/borna-regularitalic-webfont.woff") format("woff"), url("../fonts/borna/borna-regularitalic-webfont.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: BornaWeb;
  src: url("../fonts/borna/borna-semibolditalic-webfont.woff2") format("woff2"), url("../fonts/borna/borna-semibolditalic-webfont.woff") format("woff"), url("../fonts/borna/borna-semibolditalic-webfont.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
/*

KEY

400 - normal
500 - medium
600 - semi bold
700 - bold

*/
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-bold-webfont.woff2);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-bolditalic-webfont.woff2);
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-medium-webfont.woff2);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-mediumitalic-webfont.woff2);
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-regular-webfont.woff2);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-regularitalic-webfont.woff2);
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-semibold-webfont.woff2);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Borna;
  src: url(../fonts/borna/borna-semibolditalic-webfont.woff2);
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: Gothic;
  src: local("gothic"), url("../fonts/gothic.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.footer-navigation {
  width: 100%;
}
.footer-navigation .nav-menu {
  justify-content: center;
}
@media (max-width: 992px) {
  .footer-navigation .nav-menu {
    display: block;
    text-align: center;
  }
}
.footer-navigation li {
  margin: 0 2.1rem;
}
.footer-navigation li:first-child {
  margin-left: 0;
}
.footer-navigation li:last-child {
  margin-right: 0;
}
@media (max-width: 1264px) {
  .footer-navigation li {
    margin: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .footer-navigation li {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .footer-navigation li {
    display: block;
    margin: 0 0 1.5rem 0;
  }
  .footer-navigation li:last-child {
    margin: 0 0 0 0;
  }
}
.footer-navigation li a {
  position: relative;
  color: var(--brand--primary-color) !important;
  font-family: var(--brand--nav-font);
  font-size: 35px;
  letter-spacing: var(--letterspacing-0-5);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-navigation li a:hover {
  color: var(--brand--second-color) !important;
}

@media (min-width: 993px) {
  .hamburger {
    display: none;
  }
}
.hamburger rect {
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  fill: var(--brand--light);
}
.hamburger:hover rect {
  fill: var(--brand--third-color);
}
.hamburger:hover rect:nth-child(2) {
  width: 20px;
}
.hamburger:hover rect:nth-child(3) {
  width: 15px;
}

.site-header.fixthis .hamburger rect {
  fill: var(--brand--light);
}
.site-header.fixthis .hamburger:hover rect {
  fill: var(--brand--accent-color);
}

body:not(.home) .hamburger rect {
  fill: var(--brand--primary-color);
}
body:not(.home) .hamburger:hover rect {
  fill: var(--brand--third-color);
}

body.page-id-453 .hamburger rect {
  fill: var(--brand--light);
}

.home-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  min-height: 930px;
}
@media (max-width: 992px) {
  .home-hero {
    height: auto;
    min-height: unset;
  }
}
@media only screen and (width: 1280px) and (orientation: landscape) {
  .home-hero {
    min-height: 850px;
  }
}
@media (max-width: 576px) {
  .home-hero {
    min-height: 850px;
  }
}
.home-hero__hold {
  height: 100vh;
  gap: 3.6rem;
  min-height: 930px;
  padding: 10rem 0 0 0;
  padding: 14% 0 0 0;
}
.home-hero__hold.empty {
  gap: 0;
}
@media (max-width: 992px) {
  .home-hero__hold {
    height: auto;
    min-height: unset;
    padding: 16rem 0 4rem 0;
  }
}
@media (max-width: 576px) {
  .home-hero__hold {
    gap: 2rem;
  }
}
.home-hero__hold__links {
  gap: 2.2rem;
}
@media (max-width: 768px) {
  .home-hero__hold__links {
    gap: 1.3rem;
  }
}
@media (max-width: 992px) {
  .home-hero__hold__links {
    flex-direction: column;
  }
}
.home-hero__hold__links.external {
  position: relative;
  top: -22px;
}
@media (max-width: 768px) {
  .home-hero__hold__links.external {
    top: -38px;
  }
}
@media (max-width: 576px) {
  .home-hero__hold__links.external {
    top: -12px;
  }
}
.home-hero__hold__links h2 {
  transform: translateY(0);
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home-hero__hold__links h2:hover {
  transform: translateY(-5px);
}
.home-hero__hold__links a {
  display: block;
  padding: 15px 0;
  width: 280px;
  cursor: pointer;
  text-align: center;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23e7e4d0' stroke-width='6' stroke-dasharray='12%2c 22' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
@media (max-width: 576px) {
  .home-hero__hold__links a {
    padding: 10px 0;
  }
}
.home-hero__top {
  position: absolute;
  top: 179px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 1;
}
.home-hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 0;
}
.home-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.home-hero__background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand--primary-color);
  opacity: 0.9;
}
.home-hero__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-mosaic {
  position: relative;
  margin: 0 0 0 0;
  width: 100%;
  height: 90vh;
  min-height: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .image-mosaic {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 992px) {
  .image-mosaic {
    aspect-ratio: 1/1.2;
  }
}
@media (max-width: 768px) {
  .image-mosaic {
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: unset;
  }
}
.image-mosaic__top {
  position: absolute;
  bottom: -1px;
  bottom: -10%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 9999;
}
@media (max-width: 1600px) {
  .image-mosaic__top {
    bottom: 0;
  }
}
.image-mosaic__top img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-mosaic__image {
  position: relative;
}
.image-mosaic__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .image-mosaic__image img {
    position: relative;
    aspect-ratio: 2/1;
  }
}
.image-mosaic__image {
  height: 100%;
  width: 100%;
}
.image-mosaic__image:nth-child(1) {
  grid-area: 1/1/2/2;
}
.image-mosaic__image:nth-child(2) {
  grid-area: 1/2/2/3;
}
.image-mosaic__image:nth-child(3) {
  grid-area: 2/1/3/2;
}
.image-mosaic__image:nth-child(4) {
  grid-area: 2/2/3/3;
}
.image-mosaic__image:nth-child(5) {
  position: absolute;
  bottom: -15%;
  left: -15%;
  width: 35%;
  height: 75%;
  z-index: 9999;
  transition: all 650ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 768px) {
  .image-mosaic__image:nth-child(5) {
    transform: rotate(20deg);
  }
}
@media (max-width: 1264px) {
  .image-mosaic__image:nth-child(5) {
    bottom: 0%;
    height: 50%;
  }
}
@media (max-width: 768px) {
  .image-mosaic__image:nth-child(5) {
    position: relative;
    bottom: unset;
    top: 0;
    left: 0;
    height: auto;
    width: auto;
  }
}
.image-mosaic__image:nth-child(5) img {
  -o-object-position: right 70%;
     object-position: right 70%;
  scale: 1.2;
  box-shadow: 5px -5px 15px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .image-mosaic__image:nth-child(5) img {
    animation-name: bouncy-anim-slight-slow-invert;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
  }
}
@media (max-width: 768px) {
  .image-mosaic__image:nth-child(5) img {
    scale: 1;
  }
}
.image-mosaic__image:nth-child(6) {
  position: absolute;
  top: -25%;
  right: -25%;
  width: 50%;
  height: 75%;
  z-index: 9999;
  transition: all 650ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 768px) {
  .image-mosaic__image:nth-child(6) {
    transform: rotate(-10deg);
  }
}
@media (max-width: 1264px) {
  .image-mosaic__image:nth-child(6) {
    top: -5%;
    height: 45%;
  }
}
@media (max-width: 768px) {
  .image-mosaic__image:nth-child(6) {
    position: relative;
    top: 0;
    right: unset;
    left: 0;
    height: auto;
    width: auto;
  }
}
.image-mosaic__image:nth-child(6) img {
  -o-object-position: 0 70%;
     object-position: 0 70%;
  z-index: 9999;
  scale: 1;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .image-mosaic__image:nth-child(6) img {
    animation-name: bouncy-anim-slight-slow;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
  }
}
.image-mosaic__image:nth-child(7) {
  position: absolute;
  bottom: -5%;
  right: 0%;
  left: 5%;
  margin: 0 auto;
  width: 25%;
  height: 60%;
  z-index: 9999;
  transition: all 650ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 768px) {
  .image-mosaic__image:nth-child(7) {
    transform: rotate(-10deg);
  }
}
@media (max-width: 1464px) {
  .image-mosaic__image:nth-child(7) {
    right: -15%;
    width: 35%;
    height: 50%;
  }
}
@media (max-width: 992px) {
  .image-mosaic__image:nth-child(7) {
    width: 40%;
    height: 40%;
  }
}
@media (max-width: 768px) {
  .image-mosaic__image:nth-child(7) {
    position: relative;
    bottom: unset;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
}
.image-mosaic__image:nth-child(7) img {
  z-index: 9999;
  scale: 1;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .image-mosaic__image:nth-child(7) img {
    animation-name: bouncy-anim-slight-slow;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
  }
}
@media (max-width: 768px) {
  .image-mosaic__image:nth-child(7) img {
    -o-object-position: 0 30%;
       object-position: 0 30%;
  }
}

.inline-cta {
  margin: 0;
  overflow: hidden;
  background: var(--brand--fourth-color);
  z-index: 9999;
}
.inline-cta__bg {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 500px;
  height: auto;
  z-index: 0;
}
@media (max-width: 1264px) {
  .inline-cta__bg {
    left: 50%;
    margin: 0 auto;
    top: unset;
    bottom: -27rem;
    translate: -50% 0%;
  }
}
.inline-cta__hold {
  position: relative;
  padding: 1.5rem 0;
  z-index: 9999;
}
@media (max-width: 1264px) {
  .inline-cta__hold {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }
}
.inline-cta__hold__split {
  position: relative;
}
.inline-cta__hold__split.cta-sub-text {
  position: absolute;
  top: 1.8rem;
  right: 12rem;
}
@media (max-width: 1264px) {
  .inline-cta__hold__split.cta-sub-text {
    position: relative;
    top: unset;
    right: unset;
  }
}
@media (max-width: 1264px) {
  .inline-cta.blog .inline-cta__hold {
    gap: 1.6rem;
    padding: 1.6rem 0 2.2rem 0;
  }
}
.inline-cta.blog .inline-cta__hold {
  align-items: center;
}
@media (max-width: 768px) {
  .inline-cta.blog .inline-cta__hold__split.cats {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .inline-cta.blog .inline-cta__hold__split.cats .cats__contain {
    background: unset;
    flex-direction: column;
  }
  .inline-cta.blog .inline-cta__hold__split.cats .cats__contain a:after {
    display: none;
  }
}
.inline-cta.blog .inline-cta__hold__split.cats .cats__contain {
  gap: 0rem;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--brand--primary-color);
}
@media (max-width: 768px) {
  .inline-cta.blog .inline-cta__hold__split.cats .cats__contain {
    border-radius: 0;
  }
}
.inline-cta.blog .inline-cta__hold__split.cats .cats__contain a {
  position: relative;
  font-family: var(--brand--secondary-font);
  font-size: 1.1rem;
  line-height: 1.1em;
  padding: 1.1rem 2rem 1.1rem 2rem;
  text-align: center;
}
.inline-cta.blog .inline-cta__hold__split.cats .cats__contain a:last-child:after {
  display: none;
}
.inline-cta.blog .inline-cta__hold__split.cats .cats__contain a:after {
  content: "";
  width: 1px;
  height: 70%;
  background: var(--brand--light);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.inline-cta.blog .inline-cta__hold__split.cats .cats__contain a:hover {
  background: var(--brand--second-color);
}
@media (max-width: 768px) {
  .inline-cta.blog .inline-cta__hold__split.cats .cats__contain a {
    width: 100%;
    background: var(--brand--primary-color);
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
  }
  .inline-cta.blog .inline-cta__hold__split.cats .cats__contain a:last-child {
    margin-bottom: 0;
  }
}

.join-the-conversation {
  position: relative;
  margin: 0 0 0 0;
  padding: 4.8rem 0 32rem 0;
  background: var(--brand--fourth-color);
  overflow: hidden;
}
@media (max-width: 768px) {
  .join-the-conversation {
    padding-bottom: 0;
    margin-bottom: -15rem;
  }
}
@media (max-width: 576px) {
  .join-the-conversation {
    margin-bottom: -9rem;
  }
}
.join-the-conversation__heading {
  text-align: center;
}
.join-the-conversation__socials {
  margin: 3.1rem 0 0 0;
}
.join-the-conversation__bottom {
  position: absolute;
  bottom: -22rem;
  left: 0;
  right: 0;
  width: 600px;
  height: auto;
  overflow: hidden;
  z-index: 9999;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .join-the-conversation__bottom {
    width: 100%;
    position: relative;
    bottom: -5rem;
    z-index: 0;
  }
}
.join-the-conversation__bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.journey-block {
  background: var(--brand--third-color);
}
body {
  color: var(--brand--light);
  background: var(--brand--dark);
}
body .cky-consent-container, body .cky-modal {
  font-family: var(--brand--secondary-font) !important;
}
body .wrapper {
  width: 100%;
  max-width: 100%;
}
body .wrapper a:not(.disable) {
  color: var(--brand--light);
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
body .wrapper a:not(.disable):hover {
  opacity: 1;
}
@media (min-width: 1056px) {
  body .wrapper {
    max-width: 992px;
  }
}
@media (min-width: 1264px) {
  body .wrapper {
    max-width: 1200px;
  }
}
@media (min-width: 1464px) {
  body .wrapper {
    max-width: 1400px;
  }
}
body .bounce {
  animation-name: bouncy-anim;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
}
body .bounce-invert {
  animation-name: bouncy-anim-invert;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
}
body .bounce-slow {
  animation-name: bouncy-anim-more;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 5s;
}
body .bounce-slight {
  animation-name: bouncy-anim-slight;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 2s;
}
body .bounce-slight-slow {
  animation-name: bouncy-anim-slight-slow;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
}
body .bounce-slight-slow-invert {
  animation-name: bouncy-anim-slight-slow-invert;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
}
body .zoomy > img {
  animation-name: zoomy-anim;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 20s;
}

.mobile-navigation {
  background-color: var(--brand--accent-color);
  color: white;
  text-align: right;
  padding: 2rem;
  max-width: 355px;
  z-index: 999999;
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-navigation__mask {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--brand--primary-color);
  width: 100%;
  height: 100%;
  opacity: 0.75;
  z-index: 99;
}
.mobile-navigation__close {
  margin-left: auto;
}
.mobile-navigation__close svg {
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1), opacity 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-navigation__close svg rect {
  fill: var(--brand--primary-color);
}
.mobile-navigation__close:hover svg {
  transform: rotate(-180deg);
  opacity: 0.7;
}
.mobile-navigation li {
  font-weight: 500;
}
.mobile-navigation li a {
  position: relative;
  color: var(--brand--light);
  font-family: var(--brand--nav-font);
  font-size: 35px;
  letter-spacing: var(--letterspacing-0-5);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-navigation li a:after {
  content: "";
  display: none;
  background-color: var(--brand--primary-color);
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 992px) {
  .mobile-navigation li a:hover {
    color: var(--brand--primary-color) !important;
    padding-right: 5px;
  }
}
.mobile-navigation li.current-menu-item a {
  color: var(--brand--primary-color) !important;
}
.mobile-navigation li.current-menu-item a:after {
  /*transform: scaleX(1);*/
}
.mobile-navigation li {
  transition: opacity 1250ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 1250ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.3s;
  will-change: opacity, transform;
}
.mobile-navigation li:not(.animate-in) {
  opacity: 1;
  /*transform: translateX(2rem);*/
  transform: unset;
}
.mobile-navigation li.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.news-block {
  position: relative;
  margin: 0 0 0 0;
  padding-top: 20rem;
  padding-bottom: 22rem;
  background: var(--brand--fifth-color);
  padding-top: 16%;
  padding-bottom: 17%;
}
@media (max-width: 992px) {
  .news-block {
    padding-top: 20%;
    padding-bottom: 20%;
  }
}
@media (max-width: 768px) {
  .news-block {
    padding-top: 25%;
  }
}
.news-block.sub {
  padding-top: 6.8rem;
}
.news-block__top, .news-block__bottom {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 0;
}
.news-block__top img, .news-block__bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-block__bottom {
  top: unset;
  bottom: 0;
}
.news-block__title {
  text-align: center;
}
.news-block__items {
  gap: 3rem;
  margin: 5rem 0 0 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .news-block__items {
    flex-wrap: unset;
  }
}
@media (max-width: 768px) {
  .news-block__items {
    flex-direction: column;
    align-items: center;
  }
}
.news-block__items__item {
  position: relative;
  flex: 1 0 25%;
  max-width: 30.9%;
  padding: 0.6rem;
}
@media (max-width: 1464px) {
  .news-block__items__item {
    max-width: 30.54%;
  }
}
@media (max-width: 1264px) {
  .news-block__items__item {
    max-width: 47.4%;
    flex: 1 0 30%;
  }
}
@media (max-width: 768px) {
  .news-block__items__item {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}
.news-block__items__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: url(../img/svgs/grid-2.svg);*/
  background-repeat: no-repeat;
  background-position: 0 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23211717' stroke-width='6' stroke-dasharray='12%2c 22' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.news-block__items__item__content {
  background: var(--brand--second-color);
  gap: 0;
  height: 100%;
  width: 100%;
}
.news-block__items__item__content__image-image {
  width: 100%;
  aspect-ratio: 295/200;
}
.news-block__items__item__content__image-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-block__items__item__content__text {
  width: 100%;
  padding: 1.5rem 2rem;
  text-align: center;
}
.news-block__items__item__content__text h2 {
  margin: 0 0 0.4rem 0 !important;
}
.news-block__items__item__content__text p {
  margin-bottom: 1.3rem !important;
}
.news-block__items__item__content__text h3 {
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-block__items__item:hover h3 {
  color: var(--brand--fourth-color) !important;
}

.news-fields {
  padding-top: 7.2rem;
  margin: 0;
  background: var(--brand--primary-color);
}
.news-fields__image {
  position: relative;
  aspect-ratio: 1080/605;
  padding: 1rem;
}
.news-fields__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.news-fields__image__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.news-fields__heading {
  position: relative;
  margin: 5.6rem 0 3.7rem 0;
  text-align: center;
}
.news-fields__heading__icon {
  position: absolute;
  top: 5rem;
  left: -36%;
}
@media (max-width: 1464px) {
  .news-fields__heading__icon {
    left: -42%;
  }
}
@media (max-width: 1264px) {
  .news-fields__heading__icon {
    left: -50%;
  }
}
@media (max-width: 1056px) {
  .news-fields__heading__icon {
    left: -55%;
  }
}
@media (max-width: 992px) {
  .news-fields__heading__icon {
    display: none;
  }
}
.news-fields__heading__icon.left {
  width: 600px;
  height: auto;
}
.news-fields__heading__icon.left div img {
  transform: rotate(-30deg);
}
.news-fields__heading__icon.right {
  top: -2rem;
  width: 350px;
  height: auto;
  left: unset;
  right: -20%;
}
@media (max-width: 1264px) {
  .news-fields__heading__icon.right {
    right: -30%;
  }
}
.news-fields__heading__icon.right div img {
  transform: rotate(-20deg);
}
.news-fields__content {
  background: var(--brand--fourth-color);
  border-radius: 1rem;
  padding: 3.4rem 3.7rem 2.3rem 3.7rem;
  margin: 0 0 4rem 0;
  gap: 0;
}
@media (max-width: 992px) {
  .news-fields__content {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .news-fields__content {
    padding: 2.2rem 2rem 0.4rem 2.5rem;
  }
}
.news-fields__content p {
  color: var(--brand--primary-color);
}
.news-fields__content .heading {
  margin: 0rem 0 1.7rem 0;
}
.news-fields__content__split {
  width: 100%;
}
@media (max-width: 992px) {
  .news-fields__content__split {
    width: 100%;
  }
}
.news-fields__content__split:last-child {
  padding: 0;
}
@media (max-width: 992px) {
  .news-fields__content__split:last-child {
    padding: 0;
  }
}

.related-block {
  background: var(--brand--third-color);
  margin: 0 0 0 0;
  padding: 3.2rem 0 5rem 0;
}
.related-block__heading {
  text-align: center;
}
.related-block__items {
  margin: 3.2rem 0 0 0;
}
@media (max-width: 992px) {
  .related-block__items {
    margin: 3.2rem 1rem 0 1rem;
  }
}
@media (max-width: 768px) {
  .related-block__items {
    margin: 3.2rem 2rem 0 2rem;
  }
}

.our-journey-block {
  margin: 0 0 0 0;
  background: var(--brand--third-color);
  overflow: hidden;
}
@media (max-width: 768px) {
  .our-journey-block {
    text-align: center;
  }
}
.our-journey-block__split {
  position: relative;
}
@media (max-width: 768px) {
  .our-journey-block__split {
    flex-direction: column;
  }
}
.our-journey-block__split:after {
  display: none;
  content: "";
  position: absolute;
  bottom: -73%;
  left: -55%;
  height: 100%;
  width: 100%;
  background: url(../img/svgs/journey-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
.our-journey-block__split__bottom {
  position: absolute;
  bottom: 0;
  left: -55%;
  height: 240px;
  width: 100%;
  z-index: 0;
}
@media (max-width: 992px) {
  .our-journey-block__split__bottom {
    bottom: -2rem;
  }
}
@media (max-width: 768px) {
  .our-journey-block__split__bottom {
    height: auto;
    width: 180%;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    translate: -40% 75%;
  }
}
.our-journey-block__split__item {
  position: relative;
  width: 50%;
  aspect-ratio: 1;
  gap: 0;
  align-self: stretch;
  z-index: 99;
}
.our-journey-block__split__item:first-child {
  padding: 4rem 0 0 0;
}
@media (max-width: 768px) {
  .our-journey-block__split__item {
    width: 100%;
  }
  .our-journey-block__split__item:last-child {
    display: none;
  }
}
.our-journey-block__split__item__heading {
  margin: 0 0 1.3rem 0 !important;
}
.our-journey-block__split__item__content {
  padding: 0 6rem 12rem 0;
}
@media (max-width: 992px) {
  .our-journey-block__split__item__content {
    padding-right: 2rem;
  }
}
@media (max-width: 768px) {
  .our-journey-block__split__item__content {
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .our-journey-block__split__item__content {
    padding-bottom: 40%;
  }
}
.our-journey-block__split__item__content p {
  color: var(--brand--primary-color);
}
.our-journey-block__split__item__content .read-more {
  margin: 1.6rem 0 0 0;
}
.our-journey-block__split__item__content .read-more a {
  color: var(--brand--second-color) !important;
}
.our-journey-block__split__item__content .read-more a:hover {
  color: var(--brand--fourth-color) !important;
}
.our-journey-block__split__item:last-child img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-journey-block-footer {
  margin: 0 0 0 0;
  background: var(--brand--primary-color);
}
.our-journey-block-footer__contain {
  text-align: center;
  padding: 1.5rem 0;
}

.popup {
  margin-top: 0;
}
.popup--team-member {
  position: relative;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  background: transparent;
}
@media (max-width: 768px) {
  .popup--team-member {
    padding: 4rem 2rem 2rem 2rem;
  }
}
@media (min-width: 768px) {
  .popup--team-member {
    width: 95%;
  }
}
.popup--team-member__main {
  gap: 2rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .popup--team-member__main {
    gap: 2rem;
    flex-direction: row;
    align-items: flex-start;
  }
}
.popup--team-member__image {
  width: 30%;
  flex: none;
  width: 100%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.2);
}
@media (min-width: 576px) {
  .popup--team-member__image {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .popup--team-member__image {
    width: 300px;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .popup--team-member__image {
    width: 450px;
  }
}
.popup--team-member__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
}
.popup--team-member__text {
  flex: 1;
}
@media (max-width: 768px) {
  .popup--team-member__text {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.popup--team-member__text p {
  line-height: 1.6em !important;
}
@media (max-width: 576px) {
  .popup--team-member__text p {
    font-size: 1rem !important;
  }
}
@media (max-width: 576px) {
  .popup--team-member__text .suppliers {
    font-size: 50px;
  }
}
.popup--team-member__text.link {
  align-items: center;
  text-align: center;
}
.popup--team-member__links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  font-weight: 600;
  min-height: 56px;
}
.popup--team-member__links a {
  text-decoration: underline;
}
.popup--team-member__links [data-linkedin] {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: auto;
  aspect-ratio: 1;
}
.popup--team-member__links [data-linkedin] i {
  background-color: white;
}
.popup--team-member__links [data-phone][href="tel:"],
.popup--team-member__links [data-email][href="mailto:"],
.popup--team-member__links [data-linkedin][href=""] {
  display: none;
}
.popup--team-member [data-role] {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.popup--team-member .mfp-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 3rem;
  color: white !important;
}
@media (max-width: 768px) {
  .popup--team-member .mfp-close {
    left: 0;
    margin: 0 auto;
    font-size: 5rem;
  }
}

.mfp-bg {
  background-color: var(--brand--primary-color) !important;
  opacity: 0.95 !important;
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body.single-news .nav-menu li#menu-item-686 a {
  color: var(--brand--primary-color);
}

.site-header--floating {
  /*
  display: none;
  */
}
@media (max-width: 576px) {
  .site-header--floating .wrapper {
    height: 146px !important;
  }
}
.site-header--floating .wrapper > div:nth-child(1) {
  width: 10% !important;
}
.site-header--floating .wrapper > div:nth-child(2) {
  width: 65% !important;
}
.site-header--floating .wrapper > div:nth-child(3) {
  width: 25% !important;
}
@media (max-width: 1264px) {
  .site-header--floating .wrapper > div:nth-child(1) {
    width: 15% !important;
  }
  .site-header--floating .wrapper > div:nth-child(2) {
    width: 60% !important;
  }
  .site-header--floating .wrapper > div:nth-child(3) {
    width: 35% !important;
  }
}
@media (max-width: 992px) {
  .site-header--floating .wrapper > div:nth-child(1) {
    width: 16% !important;
  }
  .site-header--floating .wrapper > div:nth-child(2) {
    width: 74% !important;
  }
  .site-header--floating .wrapper > div:nth-child(3) {
    width: 10% !important;
  }
}
@media (max-width: 768px) {
  .site-header--floating .wrapper > div:nth-child(1) {
    width: 50% !important;
  }
  .site-header--floating .wrapper > div:nth-child(2) {
    display: none !important;
  }
  .site-header--floating .wrapper > div:nth-child(3) {
    width: 50% !important;
  }
}
.site-header--floating .primary-navigation .nav-menu {
  gap: 2rem;
}
.site-header--floating .primary-navigation .nav-menu li a {
  font-size: 35px;
  line-height: 1em;
  letter-spacing: var(--letterspacing-0-5);
  font-weight: 400;
  cursor: pointer;
}
.site-header--floating .primary-navigation .nav-menu li a:hover {
  color: var(--brand--primary-color);
}
@media (max-width: 1464px) {
  .site-header--floating .primary-navigation .nav-menu li a {
    font-size: 30px;
  }
}
@media (max-width: 1264px) {
  .site-header--floating .primary-navigation .nav-menu li a {
    font-size: 30px;
  }
}
.site-header--floating .primary-navigation .nav-menu li.current-menu-item a {
  color: var(--brand--primary-color);
}
@media (max-width: 768px) {
  .site-header--floating .primary-navigation {
    display: none;
  }
}

@media (max-width: 992px) {
  .project-carousel {
    margin-top: 8rem;
    margin-bottom: 9.5rem;
  }
}
.project-carousel .wrapper {
  text-align: left !important;
}
.project-carousel__header {
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .project-carousel__header {
    align-items: center;
    flex-direction: row;
  }
}
.project-carousel__title h3 {
  margin: 0 0 0 1.8rem;
}
@media (max-width: 992px) {
  .project-carousel__title h3 {
    margin: 0px 0 2.5rem 0;
  }
}
.project-carousel__title h1, .project-carousel__title h3 {
  display: inline-block;
}
@media (max-width: 992px) {
  .project-carousel__title h1, .project-carousel__title h3 {
    display: block;
  }
}
.project-carousel__item {
  width: 33.33%;
}
@media (max-width: 992px) {
  .project-carousel__item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .project-carousel__item {
    width: 100%;
  }
}
.project-carousel__item:after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/svgs/grid-5.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
.project-carousel__item-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1;
  width: auto;
  height: auto;
  padding: 0 1rem;
  aspect-ratio: 100/63.5;
}
@media (max-width: 1200px) {
  .project-carousel__item-image {
    aspect-ratio: 100/63.5;
  }
}
@media (min-width: 1200px) {
  .project-carousel__item-image {
    width: 100%;
    height: auto;
  }
}
.project-carousel__item-image span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.project-carousel__item-image span:before {
  content: "";
  display: block;
  background-color: var(--brand--dark);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.project-carousel__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: opacity 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.project-carousel__item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 2rem 2.5rem 2rem;
  z-index: 99;
  transition: all 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.project-carousel__item-text h2 {
  /*
  @media (max-width: $bp--xl-plus) {
  	font-size: 28px !important;
  }
  */
}
@media (max-width: 768px) {
  .project-carousel__item-text h2 {
    font-size: 28px !important;
  }
}
.project-carousel__item:hover .project-carousel__item-text {
  color: white;
}
.project-carousel__item:hover .project-carousel__item-image span:before {
  opacity: 0.4;
}
@media (max-width: 768px) {
  .project-carousel__item:hover .project-carousel__item-image span:before {
    opacity: 0.5;
  }
}
.flickity-enabled .project-carousel__item {
  margin-right: 2rem;
}
@media (min-width: 768px) {
  .flickity-enabled .project-carousel__item {
    margin-right: 0;
    margin: 0;
  }
}
.flickity-enabled .project-carousel__item:hover img {
  opacity: 0.8;
}
.project-carousel__cta {
  color: var(--brand--tertiary-color);
  font-size: 1.3rem;
  margin-top: -2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .project-carousel__cta {
    margin-top: -1.75rem;
    margin-bottom: 0;
  }
}
.project-carousel__cta a i {
  background-color: var(--brand--tertiary-color);
}
.project-carousel__cta a:hover {
  color: white;
}
.project-carousel__cta a:hover i {
  background-color: white;
}
.project-carousel .flickity-prev-next-button {
  z-index: 99;
  background: none;
  width: 50px;
  height: 50px;
  padding: 0;
  opacity: 0.5;
  transition: all 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 768px) {
  .project-carousel .flickity-prev-next-button {
    top: unset;
    bottom: 30px;
    transform: unset;
  }
}
.project-carousel .flickity-prev-next-button svg path {
  fill: var(--brand--accent-color);
}
.project-carousel .flickity-prev-next-button.previous {
  left: 30px;
  left: 0;
  top: unset;
  bottom: -125px;
}
@media (max-width: 768px) {
  .project-carousel .flickity-prev-next-button.previous {
    bottom: -100px;
  }
}
.project-carousel .flickity-prev-next-button.next {
  right: 30px;
  right: unset;
  top: unset;
  bottom: -125px;
  left: 60px;
}
@media (max-width: 768px) {
  .project-carousel .flickity-prev-next-button.next {
    bottom: -100px;
  }
}
.project-carousel .flickity-prev-next-button.next svg {
  transform: rotate(180deg);
}
.project-carousel .flickity-prev-next-button:hover {
  opacity: 1;
}
.project-carousel__nav {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.project-carousel__nav button {
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  opacity: 0.5;
  transition: opacity 50ms ease;
  margin: 0;
  padding: 0;
}
.project-carousel__nav button:hover {
  opacity: 0.8;
}
.project-carousel__nav button[aria-label=Next] {
  transform: rotate(180deg);
}
.project-carousel__nav button svg path {
  fill: var(--brand--fourth-color);
}
.project-carousel__items {
  height: auto;
  text-align: center;
}
.project-carousel__items .flickity-viewport {
  margin: 0 0 2.3rem 0;
}
.project-carousel__items .flickity-button {
  position: relative;
  top: 0;
  left: 0;
  top: unset;
  margin: 0 auto;
  transform: unset;
  padding: 0;
  transition: opacity 150ms cubic-bezier(0.215, 0.61, 0.355, 1);
  background: unset !important;
  width: 60px;
  height: 60px;
}
.project-carousel__items .flickity-button.previous {
  margin-right: 0.5rem;
}
.project-carousel__items .flickity-button.next {
  margin-left: 0.5rem;
}
.project-carousel__items .flickity-button:hover {
  opacity: 0.3;
}

.site-footer {
  position: relative;
  background: var(--brand--third-color);
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 5rem 0 0 0;
  }
}
.site-footer__split {
  width: 33.33%;
}
@media (max-width: 768px) {
  .site-footer__split {
    width: 100%;
  }
}
.site-footer__split h2 {
  margin: 1.3rem 0 0.2rem 0 !important;
}
@media (max-width: 768px) {
  .site-footer__split h2 {
    margin: 2.5rem 0 0.2rem 0 !important;
  }
}
.site-footer__split h2:first-child {
  margin-top: 0 !important;
}
.site-footer__split .list--social-links {
  justify-content: left;
  margin: 0.65rem 0 1.6rem 0;
}
@media (max-width: 768px) {
  .site-footer__split .list--social-links {
    justify-content: center;
  }
}
.site-footer__split .logo {
  max-width: 191px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .site-footer__split .logo {
    padding: 2rem 0 3.2rem 0;
  }
}
@media (max-width: 768px) {
  .site-footer__split__right {
    gap: 0;
    justify-content: center;
  }
}
.site-footer .wrapper {
  width: 100%;
}
.site-footer .wrapper p a:hover {
  color: var(--brand--primary-color);
}
.site-footer .upper .icons ul li a svg {
  width: 45px;
  height: auto;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.site-footer .upper .icons ul li a svg path {
  fill: var(--brand--light);
}
.site-footer .upper .icons ul li a:hover svg {
  opacity: 0.75 !important;
}
.site-footer .upper .wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .site-footer .upper .wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.site-footer .middle {
  margin: 4rem 0 5rem 0;
}
@media (max-width: 768px) {
  .site-footer .middle {
    margin: 2rem 0 3rem 0;
  }
}
.site-footer .lower .wrapper > div {
  width: calc(33.33% - 0.33rem);
}
@media (max-width: 1200px) {
  .site-footer .lower .wrapper > div {
    width: calc(100% - 0rem);
  }
}
.site-footer .lower .wrapper {
  padding: 0 0 0.8rem 0;
}
@media (max-width: 992px) {
  .site-footer .lower .wrapper {
    flex-direction: column;
    text-align: center;
    padding: 0 0 2.3rem 0;
  }
}
.site-footer .lower .wrapper .credit a {
  float: right;
}
@media (max-width: 1200px) {
  .site-footer .lower .wrapper .credit a {
    float: none;
  }
}
.site-footer .lower .wrapper .credit a svg {
  width: 125px;
  height: auto;
  opacity: 0.5;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1200px) {
  .site-footer .lower .wrapper .credit a svg {
    margin: 0 auto;
  }
}
.site-footer .lower .wrapper .credit a:hover svg {
  opacity: 1;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 0 0 0;
  z-index: 99;
  background: var(--brand--second-color);
}
.site-header--floating {
  position: fixed;
  top: 0;
  background: var(--brand--second-color-opacity);
  box-shadow: 0rem 0rem 1rem var(--brand--primary-color);
  z-index: 999999;
  will-change: transform;
  transition: transform 450ms ease;
  transform: translateY(-100%);
}
.site-header--floating.animate-in {
  transform: translateY(0);
}
.site-header__logo .logo {
  width: 110px;
  height: auto;
}
@media (max-width: 768px) {
  .site-header__logo .logo {
    /*
    width: 100px;
    */
  }
}
@media (max-width: 576px) {
  .site-header__logo .logo {
    width: 80px;
  }
}
.site-header__logo .logo svg g {
  fill: var(--brand--light);
}
.site-header__opening {
  text-align: center;
}
.site-header__opening__split {
  display: inline-block;
}
.site-header__opening__split:last-child {
  margin-left: 1.3rem;
}
@media (max-width: 1264px) {
  .site-header__opening__split:last-child {
    margin-left: 0.6rem;
  }
}
@media (max-width: 768px) {
  .site-header__opening__split:last-child {
    margin-left: 0.1rem;
    display: none;
  }
}
.site-header__opening__split a p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.3rem 0 0 0;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.site-header__opening__split a svg {
  height: 60px;
  width: auto;
  margin: 0 auto;
}
.site-header__opening__split a svg path {
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.site-header__opening__split a svg path.cls-1 {
  fill: var(--brand--fourth-color);
}
.site-header__opening__split a svg path.cls-2 {
  fill: var(--brand--third-color);
}
.site-header__opening__split a:hover p {
  color: var(--brand--primary-color);
}
.site-header__opening__split a:hover svg path.cls-1 {
  fill: var(--brand--third-color);
}
.site-header__opening__split a:hover svg path.cls-2 {
  fill: var(--brand--fourth-color);
}
.site-header__contact {
  text-align: right;
}
@media (max-width: 992px) {
  .site-header__contact {
    display: flex;
    justify-content: right;
  }
}
@media (max-width: 992px) {
  .site-header__contact__socials {
    display: none;
  }
}
.site-header__contact__socials__links {
  margin: 1.1rem 0 0 0;
}
.site-header__contact__socials__links a {
  display: block;
  font-family: var(--brand--secondary-font);
  font-size: 18px;
  line-height: 1.2em;
  letter-spacing: var(--letterspacing-0-5);
}
.site-header__contact__socials__links a:hover {
  color: var(--brand--third-color) !important;
}
.site-header__contact__socials__links a:first-child {
  margin: 0 0 0.3rem 0;
}
.site-header .wrapper {
  height: 179px;
  width: 100%;
  gap: 0;
  padding: 1rem 0 1rem 0;
}
.site-header .wrapper > div:nth-child(1) {
  width: 30%;
}
.site-header .wrapper > div:nth-child(2) {
  width: 40%;
}
.site-header .wrapper > div:nth-child(3) {
  width: 30%;
}
@media (max-width: 1264px) {
  .site-header .wrapper > div:nth-child(1) {
    width: 15%;
  }
  .site-header .wrapper > div:nth-child(2) {
    width: 60%;
  }
  .site-header .wrapper > div:nth-child(3) {
    width: 35%;
  }
}
@media (max-width: 992px) {
  .site-header .wrapper > div:nth-child(1) {
    width: 20%;
  }
  .site-header .wrapper > div:nth-child(2) {
    width: 65%;
  }
  .site-header .wrapper > div:nth-child(3) {
    width: 15%;
  }
}
@media (max-width: 768px) {
  .site-header .wrapper > div:nth-child(1) {
    width: 25%;
  }
  .site-header .wrapper > div:nth-child(2) {
    width: 55%;
  }
  .site-header .wrapper > div:nth-child(3) {
    width: 20%;
  }
}

.staff-cta {
  margin: 0 0 0 0;
  padding-top: 2.3rem;
  padding-bottom: 5.2rem;
  background: var(--brand--light);
}
.staff-cta__heading {
  text-align: center;
  margin: 0 0 5rem 0;
}
.staff-cta__contain {
  gap: 6rem;
}
@media (max-width: 992px) {
  .staff-cta__contain {
    gap: 3rem;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .staff-cta__contain__split {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .staff-cta__contain__split:nth-child(2) {
    text-align: center;
  }
}
.staff-cta__contain__split:nth-child(2) a h3 {
  display: inline-block;
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.staff-cta__contain__split:nth-child(2) a:hover h3 {
  color: var(--brand--third-color);
}
.staff-cta__contain__split {
  width: 50%;
  aspect-ratio: 1/1;
}
.staff-cta__contain__split p {
  color: var(--brand--primary-color);
}
.staff-cta__contain__split__image {
  position: relative;
  overflow: hidden;
}
.staff-cta__contain__split__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.staff-cta__contain__split__image__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--brand--fifth-color);
  width: 50%;
  min-width: 250px;
  text-align: center;
  padding: 8px;
  border-radius: 1rem 1rem 0 0;
  z-index: 99;
}
.staff-cta__contain__split__image__link-image {
  position: relative;
}
.staff-cta__contain__split__image__link-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/svgs/grid-3.svg);
  z-index: 1;
}
.staff-cta__contain__split__image__link-image h2 {
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.staff-cta__contain__split__image__link-image:hover h2 {
  color: var(--brand--third-color);
}

.suppliers-block {
  position: relative;
  margin: 0 0 0 0;
  background: var(--brand--fifth-color);
  overflow: hidden;
}
.suppliers-block__bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 9999;
}
.suppliers-block__bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suppliers-block .wrapper {
  padding: 6.8rem 0 12.5rem 0;
}
@media (max-width: 768px) {
  .suppliers-block .wrapper {
    padding: 5rem 0 5.5rem 0;
  }
}
.suppliers-block .wrapper:before {
  display: none;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 70px;
  width: 100%;
  background: url(../img/svgs/journey-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.suppliers-block__items {
  gap: 2rem;
}
.suppliers-block__items__item {
  width: calc(33.33% - 1.34rem);
  flex: none;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 992px) {
  .suppliers-block__items__item {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .suppliers-block__items__item {
    width: 100%;
  }
}
.suppliers-block__items__item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.suppliers-block__items__item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/svgs/grid-1.svg);
  z-index: 1;
  background-size: cover;
}
.suppliers-block__items__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suppliers-block__items__item a:hover h2 {
  color: var(--brand--second-color);
}
.suppliers-block__items__item__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: var(--brand--fourth-color);
  width: 50%;
  min-width: 250px;
  text-align: center;
  padding: 8px;
  border-radius: 1rem 1rem 0 0;
  z-index: 99;
}
.suppliers-block__items__item__title h2 {
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.suppliers-block__content {
  margin: 0;
  text-align: center;
}
.suppliers-block__content__text {
  width: 60%;
  margin: 0 auto;
  padding: 0.9rem 0 2.2rem 0;
}
@media (max-width: 1264px) {
  .suppliers-block__content__text {
    width: 80%;
  }
}

.suppliers-full-block-intro {
  position: relative;
  padding: 6.9rem 0 0 0;
  margin: 0 0 0 0;
  background: var(--brand--fifth-color);
}
.suppliers-full-block-intro > div {
  text-align: center;
}
.suppliers-full-block-intro__sub-heading {
  margin-top: -0.1rem;
}
.suppliers-full-block-intro__content {
  width: 65%;
  margin: 0 auto;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .suppliers-full-block-intro__content {
    width: 100%;
  }
}
.suppliers-full-block-intro__items {
  margin: 6rem 0 7rem 0;
}
.suppliers-full-block-intro__bottom {
  position: relative;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 0;
}
.suppliers-full-block-intro__bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.suppliers-full-block-main {
  position: relative;
  padding-top: 5.5rem;
  padding-bottom: 10rem;
  padding-bottom: 16%;
  margin: 0 0 0 0;
  background: var(--brand--fourth-color);
}
.suppliers-full-block-main > div {
  text-align: center;
}
.suppliers-full-block-main__sub-heading {
  margin-top: -1.8rem;
}
@media (max-width: 768px) {
  .suppliers-full-block-main__sub-heading {
    margin-top: -0.1rem;
  }
}
.suppliers-full-block-main__content {
  width: 65%;
  margin: 0 auto;
  margin-top: 1.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .suppliers-full-block-main__content {
    width: 100%;
  }
}
.suppliers-full-block-main__content-hold > div {
  text-align: left;
}
.suppliers-full-block-main__content-hold {
  background: var(--brand--accent-color);
  border-radius: 1rem;
  flex-direction: row;
  padding: 3.4rem 3.7rem 2.3rem 3.7rem;
  margin: 0 0 4rem 0;
  gap: 3.8rem;
}
@media (max-width: 992px) {
  .suppliers-full-block-main__content-hold {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .suppliers-full-block-main__content-hold {
    padding: 2.2rem 2rem 0.4rem 2.5rem;
  }
}
.suppliers-full-block-main__content-hold p {
  color: var(--brand--primary-color);
}
.suppliers-full-block-main__content-hold .heading {
  margin: 0rem 0 1.7rem 0;
}
.suppliers-full-block-main__content-hold.single-col > div {
  width: 100%;
  padding: 0;
}
.suppliers-full-block-main__content-hold.single-col > div h3 {
  margin-bottom: 1.8rem;
}
.suppliers-full-block-main__content-hold__split {
  width: 50%;
}
@media (max-width: 992px) {
  .suppliers-full-block-main__content-hold__split {
    width: 100%;
  }
}
.suppliers-full-block-main__content-hold__split:last-child {
  padding: 4.8rem 0 0 0;
}
@media (max-width: 992px) {
  .suppliers-full-block-main__content-hold__split:last-child {
    padding: 0;
  }
}
.suppliers-full-block-main__bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 0;
}
.suppliers-full-block-main__bottom img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section h1, .section h2, .section h3, .section h4 {
  font-family: var(--brand--heading-font);
  line-height: 1em;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
.section h1 {
  font-size: 60px;
  font-size: 85px;
  line-height: 1em;
  letter-spacing: var(--letterspacing-0-5);
  color: var(--brand--primary-color);
}
@media (max-width: 576px) {
  .section h1 {
    font-size: 70px;
  }
}
.section h1.hero {
  font-size: 200px;
  line-height: 0.85em;
  color: var(--brand--fourth-color);
  letter-spacing: var(--letterspacing-1);
}
@media only screen and (max-width: 1280px) and (orientation: landscape) {
  .section h1.hero {
    font-size: 140px;
  }
}
@media only screen and (max-width: 1280px) {
  .section h1.hero {
    font-size: 140px;
  }
}
@media only screen and (width: 1024px) and (orientation: landscape) {
  .section h1.hero {
    font-size: 106px;
    padding-top: 9rem;
  }
}
@media (max-width: 992px) {
  .section h1.hero {
    font-size: 125px;
  }
}
@media (max-width: 768px) {
  .section h1.hero {
    font-size: 125px;
  }
}
@media (max-width: 576px) {
  .section h1.hero {
    font-size: 65px;
  }
}
.section h1.related {
  font-size: 130px;
  letter-spacing: var(--letterspacing-1);
}
@media (max-width: 768px) {
  .section h1.related {
    font-size: 100px;
  }
}
.section h1.join {
  font-size: 130px;
  line-height: 1.1em;
  letter-spacing: var(--letterspacing-1);
}
.section h1.join span {
  display: block;
  margin: 0 0 0 0;
  font-size: 200px;
}
@media (max-width: 992px) {
  .section h1.join span {
    font-size: 150px;
    margin-top: -1.1rem;
  }
}
@media (max-width: 768px) {
  .section h1.join span {
    font-size: 73px;
    margin-top: -2.9rem;
  }
}
.section h1.inline-cta-text {
  font-size: 60px;
}
@media (max-width: 768px) {
  .section h1.inline-cta-text {
    font-size: 50px;
  }
}
.section h1.inline-cta-text-bigger {
  font-size: 70px;
}
@media (max-width: 768px) {
  .section h1.inline-cta-text-bigger {
    font-size: 50px;
  }
}
.section h1.suppliers {
  color: var(--brand--fourth-color);
}
.section h1.suppliers-heading {
  font-size: 200px;
  line-height: 162px;
  color: var(--brand--primary-color);
}
@media (max-width: 992px) {
  .section h1.suppliers-heading {
    font-size: 150px;
    line-height: 125px;
  }
}
@media (max-width: 768px) {
  .section h1.suppliers-heading {
    font-size: 100px;
    line-height: 88px;
  }
}
.section h1.suppliers-heading-sub {
  font-size: 130px;
  line-height: 110px;
  color: var(--brand--fourth-color);
}
@media (max-width: 768px) {
  .section h1.suppliers-heading-sub {
    font-size: 100px;
    line-height: 88px;
  }
}
.section h1.suppliers-main {
  font-size: 200px;
  color: var(--brand--primary-color);
}
@media (max-width: 768px) {
  .section h1.suppliers-main {
    font-size: 100px;
    line-height: 88px;
  }
}
.section h1.suppliers-main-sub {
  font-size: 130px;
  color: var(--brand--accent-color);
}
@media (max-width: 768px) {
  .section h1.suppliers-main-sub {
    font-size: 72px;
    line-height: 72px;
  }
}
.section h1.dark {
  color: var(--brand--primary-color);
}
.section h1.light {
  color: var(--brand--fourth-color);
}
.section h1.third {
  color: var(--brand--third-color);
}
.section h2 {
  font-size: 50px;
  color: var(--brand--fourth-color);
  letter-spacing: var(--letterspacing-0-5);
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 40px;
  }
}
.section h2.headings {
  font-size: 50px;
}
.section h2.headings.smaller {
  font-size: 35px;
}
@media (max-width: 992px) {
  .section h2.headings.smaller {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .section h2.headings {
    font-size: 30px;
  }
}
.section h2.headings a:hover {
  color: var(--brand--third-color);
}
.section h2.headings-dark {
  color: var(--brand--primary-color);
}
.section h2.supplier {
  font-size: 35px;
  color: var(--brand--fifth-color);
  letter-spacing: var(--letterspacing-0-5);
}
.section h2.team-member {
  font-size: 50px;
  color: var(--brand--fourth-color);
  letter-spacing: var(--letterspacing-0-5);
}
.section h2.footer {
  font-size: 35px;
  color: var(--brand--primary-color);
  letter-spacing: var(--letterspacing-0-5);
}
.section h3 {
  font-size: 35px;
  line-height: 1em;
  color: var(--brand--fourth-color);
  letter-spacing: var(--letterspacing-0-5);
}
.section h3.cta-sub-text {
  font-size: 35px;
  text-align: center;
}
.section h3.cta-sub-text a:hover {
  color: var(--brand--primary-color);
}
.section h3.link {
  color: var(--brand--second-color);
}
.section h3.link.dark {
  color: var(--brand--primary-color);
}
.section h3.read-more {
  font-size: 30px;
}
.section h4 {
  font-size: 45px;
  line-height: 1em;
  color: var(--brand--fourth-color);
}
.section p {
  font-family: var(--brand--secondary-font);
  font-size: 1.1rem;
  line-height: 1.5em;
  margin-bottom: 1.1rem;
  margin-bottom: 1.8rem;
}
.section p.dark {
  color: var(--brand--primary-color);
}
.section p.dark a {
  color: var(--brand--primary-color);
}
.section p.dark a:hover {
  color: var(--brand--second-color);
}
.section .text-area ul {
  font-family: var(--brand--secondary-font);
  font-size: 1.1rem;
  line-height: 1.5em;
  margin-bottom: 1.1rem;
  margin-bottom: 1.8rem;
}
.section .text-area ul li {
  color: var(--brand--primary-color);
}

:root {
  --brand--light:#e7e4d0;
  --brand--dark:#000000;
  --brand--primary-color:#211717;
  --brand--second-color:#9b4a28;
  --brand--second-color-opacity:rgba(155, 74, 40, 0.98);
  --brand--third-color:#ed8354;
  --brand--accent-color:#ed8354;
  --brand--fourth-color:#e7e4d0;
  --brand--fifth-color:#737d72;
  --brand--error:#ff6666;
  --brand--body-text-color: var(--brand--primary-color);
  --brand--heading-font: "Mojito", sans-serif;
  --brand--body-font: "Mojito", sans-serif;
  --brand--body-line-height: 1.7;
  --brand--secondary-font: "Gothic", serif;
  --letterspacing--1: -1px;
  --letterspacing-0: 0px;
  --letterspacing-0-5: 0.5px;
  --letterspacing-1: 1px;
  --letterspacing-1-5: 1.5px;
}

/* Fonts */
.bw {
  top: auto !important;
  bottom: 1rem;
  color: white;
}/*# sourceMappingURL=main.css.map */