/* 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 {
  display: block !important;
}

.slick-slider div.row {
  display: flex !important;
  justify-content: space-between;
}
.slick-slider div.row img {
  width: calc(50% - 20px);
}

.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-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: 13px;
  height: 20px;
  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: -40px;
  background-image: url(/images/buttons/next.svg);
  font-size: 0;
}

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

.zoom {
  animation: zoom-in-zoom-out 35s infinite forwards;
}

@keyframes zoom-in-zoom-out {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
@font-face {
  font-family: "HWAtlanticRegular";
  src: url("/fonts/HWAtlanticTrial-Regular.woff2") format("woff2"), url("/fonts/HWAtlanticTrial-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Maison Neue";
  src: url("/fonts/MaisonNeue-Book.woff2") format("woff2"), url("/fonts/MaisonNeue-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HWAtlanticRegular";
  src: url("/fonts/HWAtlanticRegular.eot");
  src: url("/fonts/HWAtlanticRegular.eot") format("embedded-opentype"), url("/fonts/HWAtlanticRegular.woff2") format("woff2"), url("/fonts/HWAtlanticRegular.woff") format("woff"), url("/fonts/HWAtlanticRegular.ttf") format("truetype"), url("/fonts/HWAtlanticRegular.svg#HWAtlanticRegular") format("svg");
}
:root {
  --header-height: 80px;
  --gap: 30px;
  --light: #fcfaf5;
  --red: #FF9F75;
  --dark: #505050;
  --grey: #A8BCC1;
  --xxs: 5px;
  --xs: 10px;
  --s: 20px;
  --m: 40px;
  --l: 60px;
  --xl: 150px;
  --xxl: 145px;
}

.development {
  width: 1500px;
  position: relative;
  margin: auto;
}

body {
  background: var(--light);
  color: var(--dark);
  margin: 0;
  padding: 0;
  text-align: left;
  overflow-x: hidden;
  font-family: "Maison Neue";
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
  padding: 0 15px;
}

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

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: calc(50% - 20px);
}

.g6 {
  width: calc(50% - 15px);
}

.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_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;
}

.img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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;
}

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

.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;
  }
}
.full-height,
.full-height {
  height: 100vh;
  height: 100svh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.fh {
  height: 100%;
}

.iframe-holder {
  position: relative;
  padding: 100% 0 0 0;
}
.iframe-holder iframe,
.iframe-holder video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bg-video {
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bg-video::after {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
}

.bg-video iframe {
  position: absolute;
  top: 50vh;
  left: 50vw;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 0;
}

@media (min-aspect-ratio: 16/9) {
  .bg-video iframe {
    height: 56.25vw;
    width: 100vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .bg-video iframe {
    min-height: 100vh;
    min-width: 177.77vh;
  }
}
#page-construction .bg-video iframe {
  height: 45vw;
  width: 80vw;
}

.dark-bg::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
}

/* General */
.arrow {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: var(--gap);
  color: #fff;
  text-transform: uppercase;
  z-index: 3;
}
.arrow svg {
  display: block;
  margin: 15px auto 0 auto;
}
.arrow svg path {
  stroke: currentColor;
}

.gap {
  gap: var(--gap);
}

.caption {
  font-size: 13px;
  padding-top: 10px;
  letter-spacing: 0.01em;
}

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

.col,
.column {
  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;
}

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

.relative {
  position: relative;
}

.center_align {
  text-align: center;
}

.absolute {
  position: absolute;
}

.mb15 {
  margin-bottom: 15px;
}

.mt15 {
  margin-top: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

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

.fullwidth,
.full-width {
  width: 100%;
}

.tac {
  text-align: center;
}

.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);
}

.pb105 {
  padding-bottom: 105px;
}

.pt5 {
  padding: 0 12px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

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

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

.border-t {
  border-top: 1px solid currentColor;
}

.team-sec {
  border-top: 1px solid currentColor;
}
.team-sec.bt0 {
  border-top: 0 none;
}
.team-sec .toggle-heading {
  position: relative;
  text-align: left;
  padding: 13.5px 0 10.5px;
  text-transform: uppercase;
  font-family: "HWAtlanticRegular";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2em;
  align-items: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner {
  display: none;
  padding-bottom: 30px;
}

.plus {
  position: absolute;
  top: 0%;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.plus:after,
.plus:before {
  background-color: var(--dark);
  position: absolute;
  display: block;
  content: "";
}

.plus:after {
  width: 9px;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  right: 0;
}

.plus:before {
  width: 1px;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  height: 9px;
  transition: transform 0.4s;
}

.team-sec.active .plus:before {
  transform: scale(0);
}

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

section {
  position: relative;
  background-color: var(--light);
  z-index: 2;
}

.uppercase {
  text-transform: uppercase;
}

.para {
  z-index: 1;
  overflow: hidden;
}
.para .inner-para {
  position: relative;
  height: 100%;
}

#fade-slider,
#fade-slider-2 {
  position: relative;
  width: 100%;
}

.f-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s;
}
.f-slide.active {
  opacity: 1;
}

/* Headings */
h1,
h2,
h3 {
  margin: 0;
  font-family: "HWAtlanticRegular";
  font-weight: normal;
  text-transform: uppercase;
}

h1,
h2,
.h3 {
  font-family: "HWAtlanticRegular";
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.12em;
}

.h3 {
  text-align: center;
}

h3 {
  font-family: HWAtlanticRegular;
  font-size: 16px;
  font-weight: 500;
  line-height: 17.6px;
  letter-spacing: 0.12em;
  text-align: center;
}

h4 {
  font-family: Maison Neue;
  font-size: 15px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
}

.container {
  width: 80%;
  max-width: calc(100% - var(--gap) - var(--gap));
  margin: 0 auto;
}
.container.w1340 {
  width: 1340px;
  max-width: calc(80% - 104px);
}

.container-full {
  width: calc(100% - var(--gap) - var(--gap));
  margin: 0 auto;
}

.max965 {
  max-width: 965px;
}

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

.img-holder {
  overflow: hidden;
  position: relative;
  display: block;
}

.toAnimate.lazyImg {
  filter: blur(5px);
  transition: opacity 0.7s, filter 1s;
  opacity: 0;
}

.lazyImg.animated {
  opacity: 1;
  filter: blur(0);
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
  flex-wrap: wrap;
  font-size: 15px;
  padding: 3px 14.5px 0 14.5px;
  background-color: #fff;
  color: var(--dark);
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.4s;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.12em;
}
.btn.grey {
  background-color: var(--grey);
  color: var(--light);
}

@media (hover: hover) {
  .btn:hover {
    background-color: var(--dark);
    color: #fff;
  }
  header.bg .btn:hover {
    background-color: var(--dark);
    color: var(--light);
  }
}
.gr {
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
  display: block;
  z-index: 2;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 0, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
}

.logos {
  border-top: 1px solid currentColor;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 28px 0 0 0;
}

.links {
  font-size: 12px;
  gap: 5px;
  padding-bottom: 35px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.links p {
  width: 100%;
  padding-top: 5px;
}

.mob {
  display: none;
}

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

.ting {
  background-color: rgba(0, 0, 0, 0.2);
}

.center-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: 2;
}

.wmc {
  width: -moz-max-content;
  width: max-content;
}

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

.sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--m));
  height: -moz-max-content;
  height: max-content;
  padding-bottom: var(--m);
}

.hover-link {
  position: relative;
}
.hover-link h2 {
  z-index: 3;
}
.hover-link img {
  z-index: 0;
}
.hover-link .hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-image: url(/images/bg-b.jpg);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--gap);
  justify-content: center;
  transition: opacity 0.7s;
}
@media (hover: hover) {
  .hover-link:hover .hover-bg {
    opacity: 1;
  }
}

.bg.bottom {
  background-position: bottom;
}
.bg.top {
  background-position: top;
}

#map {
  height: calc(100vh - var(--header-height));
}

.map-poi a {
  display: block;
}

#map-cats {
  padding: 0 var(--m) 0 0;
}

.map-cat {
  border-bottom: 1px solid var(--dark);
  padding: var(--xs) 0 0;
}
.map-cat:first-child {
  border-top: 1px solid var(--dark);
}

.map-cat .map-link {
  font-family: "HWAtlanticRegular";
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0.12em;
  margin-bottom: 1em;
  display: block;
  padding: 12px 0 10px 0;
  line-height: 1;
  margin-bottom: 0;
  background-image: url(/images/plus.svg);
  background-repeat: no-repeat;
  background-position: right 12px;
  text-transform: uppercase;
}

.map-cat .map-link.active + .map-inner {
  margin-bottom: var(--s);
}

.map-cat .map-inner {
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}

.map-cat .map-link.active {
  background-image: url(/images/minus.svg);
  pointer-events: none;
}

.ratio3by2 {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.just-mobile {
  display: none;
}

#banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--grey);
  height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 15;
  color: #fff;
}

header {
  position: fixed;
  left: 0;
  top: 30px;
  width: 100%;
  z-index: 6;
  padding: 0 var(--gap);
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 0.5s;
  height: var(--header-height);
}
header .btn {
  z-index: 3;
}
header .phone {
  font-family: "HWAtlanticRegular";
  z-index: 3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}
header.bg {
  color: var(--dark);
}
header.bg #bg {
  transform: translateY(0%);
}
header.bg .btn {
  background-color: var(--grey);
  color: var(--light);
}

.logo {
  display: block;
  width: 550px;
  max-width: calc(100% - 520px);
  top: calc(var(--gap) + 20px);
  z-index: 15;
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  margin: auto;
}
.logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.logo svg path {
  fill: currentColor;
}

#bg {
  position: absolute;
  background-color: var(--light);
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.7s;
  transform: translateY(-100%);
  padding: var(--gap);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

#menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--light);
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  cursor: pointer;
  pointer-events: none;
  justify-content: center;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}
#menu > a {
  margin-bottom: auto;
}
#menu li {
  list-style: none;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  display: flex;
}
#menu li:last-child {
  margin-bottom: 0;
  margin-bottom: auto;
}
#menu li a {
  font-family: "HWAtlanticRegular";
  font-style: normal;
  font-weight: 400;
  font-size: 52px;
  display: flex;
  align-items: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}
#menu li a .hovers {
  display: flex;
  width: 0;
  border-bottom: 1px solid var(--grey);
  margin-right: var(--xs);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  overflow: hidden;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
@media (hover: hover) {
  #menu li a:hover {
    color: var(--grey);
  }
  #menu li a:hover .hovers {
    width: 30px;
  }
}
#menu li a.active-page {
  color: var(--grey);
}
#menu.active {
  pointer-events: initial;
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
}

#navtoggle {
  z-index: 2;
  text-transform: uppercase;
}

.close {
  position: absolute;
  left: var(--gap);
  top: 32px;
  text-transform: uppercase;
}

#enquire {
  background-image: url(/images/bg.jpg);
  background-size: cover;
  color: #fff;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.b_submit {
  width: -moz-max-content !important;
  width: max-content !important;
  margin: 17px auto 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 17.6px;
  letter-spacing: initial;
  color: #8592A5;
  border: none;
}

.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;
}

@media screen and (max-width: 1600px) {
  .container {
    width: 1321px;
    max-width: calc(100% - var(--gap) - var(--gap));
    margin: 0 auto;
  }
  .container.w1340 {
    max-width: calc(100% - 104px);
  }
}
@media screen and (max-width: 1456px) {
  .slick-arrow {
    background-color: var(--light);
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
    right: -30px;
  }
  .slick-arrow.slick-prev {
    left: -30px;
  }
}
@media screen and (max-width: 768px) {
  .just-mobile {
    display: block;
  }
  .just-mobile.row, .just-mobile.column, .just-mobile.col, .just-mobile.flex {
    display: flex;
  }
  .just-desktop {
    display: none;
  }
  :root {
    --header-height: 60px;
    --l: 40px;
    --xl: 80px;
    --gap: 15px;
  }
  .full-height {
    height: calc(100vh - 45px);
    height: calc(100svh - 45px);
  }
  .top-logo {
    width: 160px;
  }
  .desk {
    display: none;
  }
  #desk-slider {
    display: none;
  }
  .mob {
    display: block;
  }
  .row {
    flex-wrap: wrap;
  }
  .full-m {
    max-width: 100%;
    width: 100%;
  }
  h1,
  h2 {
    font-size: 22px;
  }
  .logo {
    height: 10vh;
    height: 10svh;
    width: -moz-max-content;
    width: max-content;
    max-width: 95%;
    max-width: 160px;
    top: 2.2vh;
    color: var(--dark);
  }
  .logo svg {
    height: 100%;
    width: auto;
    max-width: 100%;
  }
  #landing {
    height: calc(100vh - 58px);
    height: calc(100svh - 58px);
    display: flex;
    flex-direction: column;
    padding: 14vh 0 0 0;
    padding: 14svh 0 0 0;
    align-items: flex-end;
    justify-content: space-between;
  }
  #landing .inner-para {
    position: relative;
    height: 70%;
    overflow: hidden;
    width: 100%;
  }
  #landing .inner-para .full-height {
    height: 100%;
  }
  .arrow {
    position: relative;
    height: 31%;
    bottom: auto;
    color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: var(--light);
    width: 100%;
    flex-direction: column;
    transform: translateY(2px);
  }
  .enq {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 60px;
    background-color: #A8BCC1 !important;
    color: var(--dark) !important;
    font-weight: initial;
    height: initial;
  }
  header .phone {
    position: fixed;
    left: var(--gap);
    bottom: 0;
    line-height: 60px;
    z-index: 50;
    color: var(--dark);
    letter-spacing: 0.12em;
    font-family: "Maison Neue";
  }
  #menu {
    padding: var(--gap);
  }
  #menu li a {
    font-size: 6vw;
  }
  #menu li a .hovers {
    display: none;
  }
  .container.w1340 {
    max-width: calc(100% - var(--gap) * 2);
  }
  .pt5 {
    padding: 0;
  }
  .grid_4,
  .grid_6,
  .g6 {
    width: 100%;
  }
  .grid_3 {
    width: 100%;
  }
  .slick-arrow {
    top: initial;
    bottom: 0;
    right: 0;
    transform: translateY(calc(100% + 10px));
    -moz-transform: translateY(calc(100% + 10px));
    -ms-transform: translateY(calc(100% + 10px));
    -o-transform: translateY(calc(100% + 10px));
    -webkit-transform: translateY(calc(100% + 10px));
  }
  .slick-arrow.slick-prev {
    left: 0;
  }
  .pb-m {
    padding-bottom: 30px;
  }
  .links {
    padding-bottom: 70px;
  }
  .inner img {
    margin-bottom: 20px;
  }
  .pl30 {
    padding-left: 15px;
  }
  .pr30 {
    padding-right: 15px;
  }
  #lifestyle .full-height {
    height: auto;
    overflow: hidden;
  }
  #lifestyle .full-height .inner-para {
    height: auto;
    transform: none !important;
  }
  #lifestyle .full-height .bg-video {
    height: 56.25vw;
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  #lifestyle .full-height .bg-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    z-index: 0;
    min-height: 1px !important;
    min-width: 1px !important;
  }
  .maxw30 {
    max-width: calc(100% - 40px);
  }
  .d-slider {
    display: none;
  }
  .d-slider.mob {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #map {
    width: 100%;
    height: 100vw;
  }
  .map-poi {
    margin-bottom: 30px;
  }
  .team-sec .toggle-heading {
    font-size: 18px;
  }
  #navtoggle {
    opacity: 1;
    color: var(--dark);
  }
  #navtoggle {
    opacity: 1 !important;
    position: fixed;
    right: var(--gap);
    bottom: 0;
    line-height: 60px;
    z-index: 50;
    color: var(--dark);
    letter-spacing: 0.12em;
    font-family: "Maison Neue";
  }
  .sticky {
    position: relative;
    top: auto;
  }
  .wmc {
    max-width: 100%;
  }
  .logos {
    flex-direction: column;
  }
  .logos a {
    margin-bottom: 30px;
  }
  .logos a:last-child {
    margin-bottom: 0;
  }
  .full-height.ratio3by2,
  #fade-slider-2 {
    height: initial;
  }
  .column-reverse {
    flex-direction: column-reverse;
  }
  .column-reverse .grid_4 {
    margin-top: var(--l);
  }
  .map-cat .map-link {
    background-position: right 16px;
  }
  #map-cats {
    padding: 0;
  }
  .m-mbm {
    margin-bottom: var(--m);
  }
  .map-cat {
    padding: 0;
  }
  .m-pbm {
    padding-bottom: var(--l);
  }
  .m-mw100 {
    max-width: 100% !important;
  }
}