@font-face {
  font-family: "Geograph";
  src: url("/fonts/Geograph-Bold.woff2") format("woff2"), url("/fonts/Geograph-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geograph";
  src: url("/fonts/Geograph-Medium.woff2") format("woff2"), url("/fonts/Geograph-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Moulin";
  src: url("/fonts/Moulin-Thin.woff2") format("woff2"), url("/fonts/Moulin-Thin.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
:root {
  --header-height: 70px;
  --dark: #2E2518;
  --light: #E7D1B7;
  --cream: #F4EFE5;
  --white: #fff;
  --green: #7E6A55;
  --gap: 20px;
  --xs: 20px;
  --s: 34px;
  --m: 65px;
  --l: clamp(30px, 90px, 5vh);
  --xl: clamp(60px, 187px, 30vh);
  --xxl: clamp(60px, 190px, 40vh);
  --main-font: 'Moulin';
  --sec-font: 'Geograph';
}

body {
  background: var(--dark);
  color: var(--light);
  text-align: center;
  font-family: var(--main-font);
  overflow-x: hidden;
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 1.2;
}

.quick-load #preloader {
  display: none !important;
}
.quick-load #bg,
.quick-load #logo,
.quick-load header {
  transition: opacity 0s !important;
  opacity: 1 !important;
  color: var(--white) !important;
}

.hide {
  opacity: 0 !important;
  pointer-events: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bg-light {
  background-color: var(--light);
  color: var(--dark);
}
.bg-light p {
  color: #000;
}

.grid_3 {
  width: calc(25% - var(--gap) * 0.75);
}

.grid_4 {
  width: calc(33.33% - var(--gap) * 0.67);
}

.grid_6 {
  width: 50%;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  outline: none;
  background: transparent;
  border: none;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.img {
  display: block;
  width: 100%;
}

a,
img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fit-obj {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.full-height {
  height: 100vh;
  height: 100svh;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: var(--gap);
  color: var(--white);
}

.abs-obj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.abs-obj.bgVideo {
  position: fixed;
  z-index: 0;
  background-color: var(--dark);
}

.dark-layer::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dark-layer::after.bgVideo {
  position: fixed;
  z-index: 0;
  background-color: var(--dark);
}
.dark-layer::after {
  background: rgba(0, 0, 0, 0.15);
}

.video-asp {
  aspect-ratio: 0.789;
  width: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* General */
.gap {
  gap: var(--gap);
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.reverse {
  flex-direction: row-reverse;
}

.col {
  display: flex;
  flex-direction: column;
}

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

.j-s {
  justify-content: flex-start;
}

.j-e {
  justify-content: flex-end;
}

.s-b {
  justify-content: space-between;
}

.s-e {
  justify-content: space-evenly;
}

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

.a-s {
  align-items: flex-start;
}

.a-e {
  align-items: flex-end;
}

.s-b {
  justify-content: space-between;
}

.c_a {
  text-align: center;
}

.l-a {
  text-align: left;
}

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

.stretch {
  align-self: stretch;
}

.relative {
  position: relative;
  z-index: 2;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mauto {
  margin-left: auto;
  margin-right: auto;
}

.f-width {
  width: 100%;
}

.f-height {
  height: 100%;
}

.wh-full {
  width: 100%;
  height: 100vh;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
}

.pad-g {
  padding: var(--gap);
}

.ptg {
  padding-top: var(--gap);
}

.pbg {
  padding-bottom: var(--gap);
}

.ptxxl {
  padding-top: var(--xxl);
}

.pbxxl {
  padding-bottom: var(--xxl);
}

.ptxl {
  padding-top: var(--xl);
}

.pbxl {
  padding-bottom: var(--xl);
}

.ptl {
  padding-top: var(--l);
}

.pbl {
  padding-bottom: var(--l);
}

.ptm {
  padding-top: var(--m);
}

.pbm {
  padding-bottom: var(--m);
}

.pts {
  padding-top: var(--s);
}

.pbs {
  padding-bottom: var(--s);
}

.ptxs {
  padding-top: var(--xs);
}

.pbxs {
  padding-bottom: var(--xs);
}

.uppercase {
  text-transform: uppercase;
}

.o-hidden {
  overflow: hidden;
}

.middle {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section {
  position: relative;
  z-index: 2;
}

h1,
h2,
h4,
.title {
  font-weight: 100;
}

h1,
h2 {
  font-size: 44px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1.big,
h2.big {
  font-size: 48px;
}

.heading,
h3 {
  font-weight: 500;
  font-family: var(--sec-font);
  letter-spacing: 0.15em;
  font-size: 10px;
  text-transform: uppercase;
}

.title {
  font-size: clamp(16px, 63px, 10vw);
}

.container {
  max-width: calc(100% - var(--gap) - var(--gap));
  margin-left: auto;
  margin-right: auto;
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  padding: 0px 24px;
  line-height: 1;
  transition: all 0.4s;
  border-radius: 0;
  cursor: pointer;
  color: var(--dark);
  background-color: var(--white);
  font-family: var(--sec-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sticky {
  position: sticky;
  top: 0;
}

.min-h {
  min-height: 100vh;
  gap: clamp(40px, 80px, 10vh);
  padding: 60px var(--gap);
}

.fadeIn {
  transition: opacity 1s;
}
.fadeIn.animated {
  opacity: 1;
}

.br {
  display: block;
}

.logos {
  gap: 30px;
}

.mob {
  display: none !important;
}

header {
  position: fixed;
  height: var(--header-height);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  padding: 0 var(--gap);
  color: var(--dark);
  z-index: 10;
  opacity: 0;
  transition: opacity 1s;
}
header.bg {
  color: var(--dark);
}
header.bg #logo {
  opacity: 1;
}

#logo {
  z-index: 11;
  width: 202px;
  max-width: 40vw;
  opacity: 0;
  transition: opacity 1s, color 1s;
  color: var(--white);
}
#logo svg {
  width: 100%;
  display: block;
  height: auto;
}
#logo svg path {
  fill: currentColor;
  width: 100%;
}

.faded {
  opacity: 1 !important;
}

#enquire, footer {
  background-color: var(--green);
  color: var(--cream);
  position: relative;
  z-index: 3;
}

#enquire {
  min-height: calc(100vh - 65px);
}

footer {
  padding-bottom: 35px;
  font-weight: 500;
  font-family: var(--sec-font);
  letter-spacing: 0.15em;
  font-size: 10px;
  text-transform: uppercase;
  text-transform: none;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

.register {
  width: 660px;
  margin: auto;
  gap: 15px 20px;
  padding: 50px 0;
  max-width: 100%;
}

input:not([type=submit]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  font-family: inherit;
  font-size: 12px;
  padding: 0 0 5px 0;
  resize: none;
  display: block;
  width: 100%;
  border: none;
  text-align: left;
  font-family: var(--sec-font);
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--cream);
  color: var(--cream);
}

.g50 {
  width: calc(50% - 10px);
  position: relative;
}

select {
  -moz-text-align-last: left;
       text-align-last: left;
  background-position: 95% center;
  background-repeat: no-repeat;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--cream);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--cream) !important;
}

option {
  color: var(--dark);
  background-color: var(--light);
}

.b_submit {
  background-color: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  margin: 10px auto 0 auto;
}

input:-webkit-input-placeholder,
textarea:-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

.parsley-errors-list {
  list-style: none;
  font-size: 10px;
  color: #fff;
  position: absolute;
  bottom: -12px;
}

li {
  list-style: none;
}

.tpa {
  min-width: 265px;
  text-align: right;
}

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

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

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

.slick-arrow {
  position: absolute;
}

.slick-arrow {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 50%;
  height: 100%;
  cursor: pointer;
}

.slick-next {
  left: 50%;
}

.slick-prev {
  left: 0;
}

@media screen and (max-width: 768px) {
  :root {
    --l: 40px;
    --xl: 100px;
    --m: 40px;
    --gap: 15px;
  }
  body {
    font-size: 13px;
  }
  .g50, .grid_6 {
    width: 100%;
  }
  .enq {
    position: fixed;
    left: 0;
    right: 0;
    height: 40px;
    width: 100%;
    bottom: 0;
  }
  h1, h2 {
    font-size: 36px;
  }
  h1.big, h2.big {
    font-size: 36px;
  }
  .full-height {
    height: calc(100vh - 40px);
    height: calc(100svh - 40px);
  }
  footer {
    padding-bottom: 70px;
  }
  .sticky {
    position: relative;
  }
  .wh-full {
    height: auto;
    aspect-ratio: 0.78;
  }
  .full-slider .wh-full {
    aspect-ratio: initial;
    height: 100vh;
    height: 100svh;
  }
  .full-slider .wh-full img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .full-slider .wh-full video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .logos {
    flex-direction: column;
    margin: auto;
    order: 1;
  }
  .tpa {
    order: 3;
    min-width: 50px;
    text-align: center;
    width: 100%;
  }
  .legal {
    order: 2;
    padding: 25px 0 15px 0;
    width: 100%;
    text-align: center;
  }
  .legal p {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */