@font-face {
  font-family: "Nantes";
  src: url("/fonts/NantesLight.woff2") format("woff2"), url("/fonts/NantesLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rework Display";
  src: url("/fonts/ReworkDisplay-Semibold.woff2") format("woff2"), url("/fonts/ReworkDisplay-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unica 77 LL";
  src: url("/fonts/Unica_77LL-Regular.woff2") format("woff2"), url("/fonts/Unica_77LL-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unica77 LL";
  src: url("/fonts/Unica77LL-Medium.woff2") format("woff2"), url("/fonts/Unica77LL-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 120px;
  --gap: 32px;
  --light: #f2f8fe;
  --light-blue: #dae6f1;
  --dark: #3D3D3D;
  --xxs: 5px;
  --xs: 10px;
  --s: 20px;
  --m: 40px;
  --l: 100px;
  --xl: 180px;
  --xxl: 300px;
  --xxxl: 385px;
}

body {
  font-family: "Unica 77 LL";
  background: var(--light);
  color: var(--dark);
  font-size: 18px;
  line-height: 1.68;
  margin: 0;
  padding: var(--header-height) 0 0 0;
  text-align: center;
  overflow-x: hidden;
  font-weight: 500;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

.grid_4 {
  width: 33.33%;
}

.grid_5 {
  width: 41%;
}

.grid_6 {
  width: 50%;
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: 66.67%;
}

.grid_9 {
  width: 75%;
}

.grid_10 {
  width: 83.33%;
}

.grid_11 {
  width: 91.67%;
}

.grid_12 {
  width: 100%;
}

.grid_half {
  width: calc(50% - 10px);
}

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5,
.grid_6,
.grid_7,
.grid_8,
.grid_9,
.grid_10,
.grid_11,
.grid_12 {
  display: block;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

img {
  border: none;
  max-width: 100%;
  display: block;
}

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

.img {
  width: 100%;
}

#logoSvg {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: calc(100% - 10px);
  height: auto;
  opacity: 0;
  transition: all 2s;
  transform: translateY(50%);
}

.development {
  width: 100%;
  transform: scale(0.5);
  transform-origin: top left;
}

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

#logoSvg.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--dark);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  top: 0;
}
.loader.disable {
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.fullyvideo {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  left: 0;
  top: 0;
  z-index: 1;
}

@media screen and (max-aspect-ratio: 1920/1080) {
  .fullyvideo {
    height: 100vh;
    height: 100svh;
  }
}
@media screen and (min-aspect-ratio: 1920/1080) {
  .fullyvideo {
    width: 100% !important;
  }
}
.min-h {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  justify-content: center;
  color: #000;
  align-items: center;
}

section {
  position: relative;
}

.full-height {
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  background-size: cover;
  width: calc(100% - var(--gap) * 2);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* General */
.row {
  display: flex;
  flex-direction: row;
}

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

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

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

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

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

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

.space-around {
  justify-content: space-around;
}

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

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

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

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

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

.relative {
  position: relative;
}

.self-stretch {
  align-self: stretch;
}

.absolute {
  position: absolute;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 38px;
}

.mb40 {
  margin-bottom: 40px;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.tac {
  text-align: center;
}

.black {
  color: #000;
}

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

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

.pbxxxl {
  padding-bottom: var(--xxxl);
}

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

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

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

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

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

.ptxxs {
  padding-top: var(--xxs);
}

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

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

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

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

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

.pbxxs {
  padding-bottom: var(--xxs);
}

pad-l {
  padding-left: 40px;
}

.pad-r {
  padding-right: 40px;
}

.pad-rr {
  padding-left: 60px;
}

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

.red {
  color: var(--red);
}

.border-b {
  border-bottom: 1px solid #E6DDD3;
}

.img-holder {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(-15px);
  transition: all 1s;
  position: relative;
}
.img-holder.l-to-r {
  transform: translateX(15px);
}
.img-holder.b-to-t {
  transform: translateY(15px);
}
.img-holder.animated {
  opacity: 1;
  transform: translate(0, 0) !important;
  filter: blur(0);
}

.filter {
  transition: all 1s;
  filter: grayscale(100%);
}
.filter:hover {
  filter: grayscale(0%);
}

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

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: normal;
}

h1,
h2 {
  font-family: "Nantes";
  font-size: 69.21px;
  font-weight: 1;
  line-height: 1.07;
}

.f52 {
  font-size: 52px;
}

h3 {
  font-size: 41.19px;
  font-weight: 600;
  line-height: 1.19;
}

h4 {
  font-size: 25px;
  font-weight: 600;
}

.container {
  position: relative;
  width: calc(100% - 340px);
  max-width: calc(100% - var(--gap) - var(--gap));
  margin: 0 auto;
}

.max1105 {
  max-width: 1105px;
  margin-left: auto;
  margin-right: auto;
}

.max825 {
  max-width: 825px;
}

.max580 {
  max-width: 580px;
}

.max500 {
  max-width: 500px;
}

.max650 {
  max-width: 650px;
}

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

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  font-size: 17px;
}
.btn img {
  display: block;
  width: 16px;
  transition: transform 0.3s;
}
.btn:hover img {
  transform: translateX(5px);
}

.hover-bw:hover {
  transition: all 0.4s;
  color: var(--light);
  background-color: var(--dark);
}

.artist {
  position: relative;
}

.artist:after {
  content: "Artist Impression";
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #fff;
  font-size: 10px;
  display: block;
  line-height: 1;
  z-index: 2;
  font-weight: 500;
}

#page-team .artist::after {
  right: auto;
  left: 15px;
}

.fitimg {
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 600px;
}

footer {
  background-color: #000;
  width: 100%;
  padding: 40px var(--gap) 40px var(--gap);
  color: #fff;
  font-size: 12px;
  z-index: 51;
  position: relative;
}
footer .g50 {
  gap: 60px;
}

.logos {
  -moz-column-gap: 25px;
       column-gap: 25px;
  padding-bottom: 45px;
}
.logos img {
  height: 20px;
  width: auto;
}

.links {
  gap: 10px;
}

.underline {
  text-decoration: underline;
}

#map {
  height: calc(100vh - var(--header-height) * 2);
  max-height: 830px;
}

.mob {
  display: none;
}

#pois {
  padding-top: 50px;
}
#pois .grid_pois {
  width: calc(20% - 10px);
}
#pois .grid_pois a {
  display: block;
  font-size: 16px;
}

.pad24 {
  padding: 10px 24px 0 0;
}

.gm-style-iw-chr {
  position: absolute;
  right: -5px;
  top: -7px;
}

button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: inherit;
  outline: none;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 53;
  background-color: inherit;
  padding: 0 var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #nav {
  align-self: stretch;
  height: 100%;
}
header #nav #ul {
  list-style: none;
  display: flex;
  align-self: stretch;
  height: 100%;
  gap: 94px;
  font-size: 17.86px;
}
header #nav li {
  display: flex;
  align-items: center;
}
header #nav a {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
header #nav a::after {
  position: absolute;
  bottom: 1px;
  width: 100%;
  left: 0;
  height: 1px;
  transition: background 0.3s;
  content: "";
  display: block;
  margin: auto;
}
header #nav a:hover:after {
  background-color: currentColor;
}

.active-page::after {
  background-color: currentColor;
}

.logo {
  display: block;
  width: 296px;
  z-index: 5;
  left: 0;
}
.logo svg {
  width: 100%;
  display: block;
}

#nav-toggle {
  display: none;
  height: 18px;
  width: 28px;
  right: var(--gap);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}

#nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  right: 0;
  transition: all 0.55s;
}
#nav-toggle span.sp1 {
  top: 0;
  transform-origin: left bottom;
}
#nav-toggle span.sp2 {
  top: calc(50% - 1px);
}
#nav-toggle span.sp3 {
  top: calc(100% - 1px);
  transform-origin: left top;
}

#nav-toggle.active span.sp1 {
  transform: rotate(45deg);
  width: 23px;
}

#nav-toggle.active span.sp3 {
  transform: rotate(-45deg);
  width: 23px;
}

#nav-toggle.active span.sp2 {
  opacity: 0;
}

.reg {
  position: fixed;
  bottom: 0;
  z-index: 50;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1;
  display: block;
  background-color: #fff;
  padding: 12px 0;
  width: 470px;
  max-width: 100%;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

#enquire {
  background-color: #C7DFF4;
  z-index: 51;
}

label {
  display: block;
  font-weight: 500;
  width: 100px;
}

.register {
  width: 600px;
  margin: auto;
  max-width: calc(100% - 40px);
  position: relative;
}

.tel {
  font-size: 20px;
  display: block;
}

input,
textarea,
select,
.upload-holder,
.post-holder {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  color: #000;
  border-bottom: 1px solid currentColor;
  font-family: inherit;
  font-size: 12px;
  margin-bottom: 20px;
  padding: 17px 0;
  line-height: 1;
  resize: none;
  width: 100%;
  display: block;
  width: 100%;
  border-radius: 0;
}

.b_submit {
  width: -moz-max-content !important;
  width: max-content !important;
  border: 1px solid currentColor;
  padding: 12px 75px;
  text-align: left;
  margin: 40px 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.thx {
  height: 100%;
  width: 100;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.form-row {
  padding-bottom: 15px;
  position: relative;
}

.err-message {
  color: red;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.spinner {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}

.spinner svg {
  animation: loading-rotate 2s linear infinite;
  height: 42px;
  width: 42px;
}

.spinner .path {
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #fff;
  stroke-linecap: round;
  animation: loading-dash 1.5s ease-in-out infinite;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
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;
}

.check-holder {
  position: relative;
  padding: 15px 0;
}

.check-holder input {
  opacity: 0;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  cursor: pointer;
  top: 0;
}

.check-holder input:checked + label:after {
  background-color: currentColor;
}

.check-holder label {
  padding-left: 30px;
  position: relative;
  width: 100%;
}

.check-holder label:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid currentColor;
  opacity: 0.5;
  content: "";
  display: block;
  border-radius: 5px;
}

.check-holder label:after {
  position: absolute;
  left: 4px;
  width: 12px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  content: "";
  display: block;
  border-radius: 5px;
}

.disclaimer {
  color: #979797;
  font-size: 12.8px;
  padding-right: 20px;
}

/* 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-slider div {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
}

.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-dots {
  position: absolute;
  left: 0;
  bottom: -40px;
  display: flex;
  gap: 15px;
  padding: 10px 0;
}
.slick-dots li {
  list-style: none;
}
.slick-dots li.slick-active button {
  opacity: 1;
}
.slick-dots button {
  border: none;
  background-color: transparent;
  opacity: 0.5;
  cursor: pointer;
}

.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-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.slick-arrow {
  font-family: inherit;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  width: 40px;
  height: 39px;
  background-size: cover;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 4;
  right: -80px;
  background-image: url(/images/buttons/next.svg);
  font-size: 0;
  background-size: cover;
}

.slick-arrow.slick-prev {
  left: -80px;
  right: auto;
  background-image: url(/images/buttons/prev.svg);
}

@media screen and (max-width: 1700px) {
  .container {
    width: 1368px;
  }
}
@media screen and (max-width: 1368px) {
  .slick-arrow {
    right: 15px;
  }
  .slick-arrow.slick-prev {
    left: 15px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 70px;
    --gap: 15px ;
    --l: 50px;
    --xl: 60px;
    --xxl: 65px;
    --xxxl: 65px;
  }
  body {
    font-size: 15px;
  }
  #logoSvg {
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
  .full-height {
    height: 90vw;
  }
  .desk {
    display: none;
  }
  .mob {
    display: block;
  }
  .mb30 {
    margin-bottom: 20px;
  }
  h1, h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 28px;
  }
  .tel {
    font-size: 18px;
    display: block;
  }
  header .logo {
    width: 160px;
  }
  header #nav {
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    padding: 0 0 30px 0;
    background-color: inherit;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition-duration: 0.7s;
    transform: translate(-110%);
    -webkit-transform: translateX(-110%);
  }
  header #nav.active {
    left: 0;
    transform: translate(0);
    -webkit-transform: translateX(0);
  }
  header #nav #ul {
    flex-wrap: wrap;
    gap: 0;
    flex-direction: column;
    justify-content: center;
  }
  header #nav #ul li {
    text-align: left;
    width: 100%;
  }
  header #nav #ul li a {
    padding: 0;
    display: block;
    text-align: center;
    font-family: "Nantes";
    font-size: 42px;
    padding: 0 var(--gap);
    line-height: 1.3;
    margin: auto;
  }
  #nav-toggle {
    display: block;
  }
  .row {
    flex-wrap: wrap;
  }
  .grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12, .grid_half {
    width: 100%;
  }
  .gap-m {
    gap: 20px;
  }
  .w100m {
    height: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .self-stretch {
    gap: 20px;
  }
  footer .g50 {
    display: block;
  }
  .pad-rr {
    padding-left: 0;
  }
  h4 {
    font-size: 20px;
  }
  .f52 {
    font-size: 32px;
  }
  .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .pt-gm {
    padding-top: var(--gap);
  }
  #pois .grid_pois {
    width: calc(50% - 10px);
  }
  #landing img {
    aspect-ratio: 3.9/3.1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 460px) {
  #pois .grid_pois {
    width: 100%;
  }
}