/* 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 {
  width: 800px !important;    /* Size of container */
  height: auto !important;
  margin-top: -10px !important;
}

.logo img {
  display: block;
  width: 100%;    /* Make image fill the container */
  height: auto;   /* Keep proportions */
}

#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: 10px;
  }
  .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;
  }
}

/* --- Final CNN Ventures Logo Fix --- */
.top-logo.site-logo {
    width: auto !important;
    max-width: 180px !important; /* Adjust this number to make logo smaller */
    height: auto !important;
    display: block !important;
    margin: 10px auto !important;  /* Centers horizontally */
    position: relative !important; /* Stops overlapping with background */
    transform: none !important;
    z-index: 50 !important;        /* Keeps logo above background */
}



/* Mobile fix */
@media screen and (max-width: 768px) {
    .top-logo.site-logo {
        max-width: 130px; /* smaller on mobile */
        margin: 10px auto;
    }
}


.center-logo {
  position: absolute;
  top: 40px;               /* adjust vertical position */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.center-logo img {
  width: 160px;            /* adjust logo size */
  height: auto;
}
.header-logo {
  display: block;
  width: 180px;         /* controls the logo size */
  height: auto;
  margin: 10px auto;    /* centers it horizontally */
  position: relative;
  z-index: 10;
}



.site-title {
  font-size: 32px;
  font-weight: bold;
  color: #000000 !important;     /* black */
  font-family: "Maison Neue", sans-serif;
  position: absolute;            /* absolute for positioning in header */
  left: 50%;                     /* horizontal center */
  top: 50%;                      /* vertical center */
  transform: translate(-50%, -50%); /* perfectly center horizontally + vertically */
  margin: 0;
  z-index: 100;                   /* above background ribbon */
  text-align: center;
  opacity: 0;                     /* hidden initially */
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;           /* prevent clicks when hidden */
}

/* Keep text black after scroll */
header.bg .site-title {
  color: #000000 !important;
}

/* Hover effect */
@media (hover: hover) {
  .site-title:hover {
    color: #000066; /* slightly darker on hover */
  }
}

/* Show the title after scrolling past hero section */
#header.title-on .site-title,
header.brand-on .site-title {
  opacity: 1;
  transform: translate(-50%, -50%); /* keep it centered */
  pointer-events: auto;              /* clickable when visible */
}

.left-buttons,
.right-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.left-buttons {
  margin-left: 20px;
}

.right-buttons {
  margin-right: 20px;
}


select[name="callType"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: inherit;
  background-color: transparent;
  color: #fff;
}

select[name="callType"],
input[type="date"],
input[type="time"] {
  width: 100%;
  padding: 12px 10px; /* Match existing input padding */
  font-size: 14px;
  line-height: 1.5;
  border: none;
  border-bottom: 1px solid #ccc;
  background-color: transparent;
  color: #fff;
  margin-bottom: 15px;
  font-family: inherit;
  box-sizing: border-box;
}


.inline-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.inline-fields select,
.inline-fields input[type="date"],
.inline-fields input[type="time"] {
  flex: 1 1 30%;
  min-width: 100px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-family: inherit;
  font-size: inherit;
  padding: 10px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Override the logo directly after header */
header + .logo {
  position: absolute !important;
  left: 50% !important;
  top: 2vh !important;             /* lower number = higher placement */
  transform: translateX(-50%) !important;
  width: min(52vw, 980px) !important;
  height: auto !important;
  margin: 0 !important;
  z-index: 20 !important;
}

header + .logo img {
  width: 100% !important;
  height: auto !important;
}

header + .logo {
  top: -10px !important;
}


.logo {
  text-align: center; /* Center inside container */
}



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

/* Mobile: a bit smaller and slightly higher */
@media (max-width: 768px) {
  .logo {
    top: calc(30px + var(--header-height) - 8px);
    width: 130px;
  }
}


/* --- CNN Footer tweaks --- */
#site-footer h4 {
  font-family: "HWAtlanticRegular";
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

#site-footer .social .social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

#site-footer .social .social-btn + .social-btn {
  margin-left: 10px;
}

/* keep existing .links style, just tighten spacing a bit */
#site-footer .links {
  gap: 8px;
  justify-content: flex-start;
}



.footer-container {
  background: transparent !important;
  box-shadow: none !important; /* remove any shadow that gives a sheet look */
}




.footer h3 {
  font-weight: bold;
  margin: 15px 0 10px;
}

.footer p {
  margin: 5px 0;
}

.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 25px;
}

.footer .social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #3a3a3a;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.footer .footer-bottom {
  font-size: 13px;
  color: #555;
}


/* Footer icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 26px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2f2f2f;      /* circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
  fill: #fff;               /* icon color */
  transition: transform .15s ease, opacity .15s ease;
}

@media (hover:hover) {
  .social-icons a:hover svg { transform: translateY(-1px); opacity: .9; }
}

/* optional: tone-match dark-on-light / light-on-image */
.footer .social-icons a { background: rgba(0,0,0,.75); }
.footer.light .social-icons a { background: rgba(0,0,0,.9); }  /* if you add .light on footer */

/* space under the Book Now button */
#enquire .b_submit { 
  margin-bottom: 60px;  /* tweak 18–28px to taste */
}

/* (if you’re using a wrapper for the footer block) */
#site-footer, .footer-card { 
  margin-top: 18px; 
}


/* footer area should not add extra bottom padding */
#site-footer { 
  background: transparent; 
  padding-bottom: 0; 
  margin-bottom: 0;
}

/* legal lines at the very bottom */
.footer-legal { 
  margin-top: 16px; 
  margin-bottom: 0; 
  padding-bottom: 16px;  /* tiny breathing room */
  font-size: 12px; 
  opacity: .85; 
  text-align: center;
}

/* social row */
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
}

/* the circular buttons */
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  display: inline-flex;            /* key */
  align-items: center;             /* key */
  justify-content: center;         /* key */
  text-decoration: none;
  transition: transform .2s, background .2s, border-color .2s;
}

.footer-social a:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

.footer-sep {
  width: 140px;                      /* adjust width as you like */
  height: 1px;
  background: rgba(255,255,255,.35); /* subtle line */
  margin: 18px auto 12px;            /* centered with spacing */
}





.footer-bottom {
  margin-bottom: 0;   /* remove any margin under the block */
  padding-bottom: 5px; /* small breathing space, tweak if needed */
}

.footer-bottom p {
  margin: 2px 0;  /* reduce spacing between lines */
}

footer {
  padding-bottom: 0; /* remove extra bottom padding if there’s any */
}


.visit-us p {
  margin: 5px 0;
  font-size: 14px;
}

.visit-us i {
  color: #00bcd4; /* icon color */
  margin-right: 8px;
}

.visit-us strong {
  font-weight: bold;
  color: #fff; /* adjust for your footer background */
}

/* =============== CURVY ROADMAP =============== */
.curvy-roadmap{position:relative; padding:8px 0}
.curvy-roadmap .svg-wrap{position:relative; width:100%; overflow:visible}
.curvy-roadmap svg{width:100%; height:auto; display:block}

/* curve line */
.curvy-roadmap .road{
  fill:none;
  stroke:#111;            /* black line like the mock */
  stroke-width:6;
  stroke-linecap:round;
}

/* pins layer (HTML absolutely over the SVG) */
.road-pins{position:absolute; inset:0; pointer-events:none}

/* each pin is a button so it’s keyboard‑reachable */
.pin{
  --size: 28px;
  position:absolute; transform:translate(-50%,-100%);
  width:var(--size); height:var(--size);
  background:transparent; border:0; padding:0; cursor:pointer;
  pointer-events:auto;
}

/* marker icon (simple map‑pin) */
.pin svg{width:100%; height:100%; display:block}
.pin .hole{fill:#fff}
.pin .body{fill:#111}

/* status colors */
.pin.done .body{ fill:#16a34a }     /* green */
.pin.now  .body{ fill:#0ea5e9 }     /* cyan */
.pin.pending .body{ fill:#111 }     /* black (default) */

/* tooltip */
.tip{
  position:absolute; left:50%; top:-10px; transform:translate(-50%,-110%);
  min-width:220px; max-width:280px;
  background:#fff; color:#0b1220; border:1px solid rgba(2,6,23,.08);
  border-radius:12px; box-shadow:0 8px 24px rgba(2,6,23,.12);
  opacity:0; pointer-events:none; transition:opacity .15s ease, transform .15s ease;
}
.tip h4{margin:10px 12px 6px; font:600 14px/1.25 system-ui, -apple-system, "Segoe UI", Roboto, Arial}
.tip p{margin:0 12px 12px; font:400 13px/1.35 system-ui, -apple-system, "Segoe UI", Roboto, Arial; color:#475569}
.tip img{width:100%; height:120px; object-fit:cover; border-top-left-radius:12px; border-top-right-radius:12px}

/* show tooltip on hover/focus */
.pin:hover .tip, .pin:focus-visible .tip{opacity:1; transform:translate(-50%,-116%)}

/* mobile: tap toggles */
@media (hover:none){
  .pin .tip{display:none}
  .pin.active .tip{display:block; opacity:1; transform:translate(-50%,-116%)}
}

/* small screens */
@media (max-width:800px){
  .pin{ --size: 22px }
  .tip{ min-width: 180px }
}


