@font-face {
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
  src: url("/fonts/AkzidenzGroteskPro-MdCn.eot");
  src: url("/fonts/AkzidenzGroteskPro-MdCn.eot?#iefix") format("embedded-opentype"), url("/fonts/AkzidenzGroteskPro-MdCn.woff2") format("woff2"), url("/fonts/AkzidenzGroteskPro-MdCn.woff") format("woff"), url("/fonts/AkzidenzGroteskPro-MdCn.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akzidenz-Grotesk Pro Med";
  src: url("/fonts/AkzidenzGroteskPro-Md.eot");
  src: url("/fonts/AkzidenzGroteskPro-Md.eot?#iefix") format("embedded-opentype"), url("/fonts/AkzidenzGroteskPro-Md.woff2") format("woff2"), url("/fonts/AkzidenzGroteskPro-Md.woff") format("woff"), url("/fonts/AkzidenzGroteskPro-Md.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akzidenz-Grotesk Pro";
  src: url("/fonts/AkzidenzGroteskPro-Regular.eot");
  src: url("/fonts/AkzidenzGroteskPro-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/AkzidenzGroteskPro-Regular.woff2") format("woff2"), url("/fonts/AkzidenzGroteskPro-Regular.woff") format("woff"), url("/fonts/AkzidenzGroteskPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: 14px;
  line-height: 1.4em;
  color: #fff;
  margin: 0;
  padding: var(--header-height) 0 0 0;
  font-family: "Akzidenz-Grotesk Pro Med";
  background-color: #000;
  text-align: center;
}

:root {
  --header-height: 79px;
  --gap: 20px;
  --padxl: 9vw;
  --padl: 85px;
  --padxs: 20px;
  --grey: #B2B2B2;
}

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

.grid_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

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

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

.grid_5 {
  width: 41.67%;
}

.grid_6 {
  width: calc(50% - 0.5 * var(--gap));
}

.grid_7 {
  width: 58.33%;
}

.grid_8 {
  width: calc(66.67% - 0.33 * var(--gap));
}

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

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

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%;
  display: block;
}

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

/* General */
.leftalign {
  text-align: left;
}

.reg {
  font-family: "Akzidenz-Grotesk Pro";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 0;
}

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

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

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

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

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

.relative {
  position: relative;
}

.img-holder {
  display: block;
  margin-bottom: var(--gap);
  overflow: hidden;
  position: relative;
}

.fadeInUp {
  opacity: 0;
}
.fadeInUp.animated {
  animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.img.lazyImg {
  filter: blur(4px);
}
.img.lazyImg.loaded {
  filter: blur(0);
}

.absolute {
  position: absolute;
}

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

.fullwidth {
  width: 100%;
}

.full-h {
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  width: 100%;
}

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

.fullheight {
  height: 100%;
}

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

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

.underline {
  text-decoration: underline;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.ptb5 {
  padding: 10px 0;
  text-align: left;
}

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

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

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

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

.mbxl {
  margin-bottom: var(--padxl);
}

.pts {
  padding-top: 20px;
}

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

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

.max350 {
  max-width: 350px;
}

.max475 {
  max-width: 475px;
}

.max700 {
  max-width: 700px;
}

.max720 {
  max-width: 720px;
}

.max1180 {
  max-width: 1180px;
}

.max1200 {
  padding: var(--padxl);
}
.max1200.pb0 {
  padding-bottom: 0;
}

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

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

.play {
  display: flex;
  background-color: #fff;
  height: 32px;
  width: 160px;
  text-transform: uppercase;
  z-index: 2;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #000;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}

.banner {
  background: #fff;
  color: #000;
  padding: 10px;
}

.uppercase {
  text-transform: uppercase;
}

.main-link {
  display: block;
}

.f14 {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
}

.o-hidden {
  overflow: hidden;
}

.br {
  display: block;
  height: 10px;
}

/* Headings */
h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.05em;
  letter-spacing: 0.05em;
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
}

p {
  letter-spacing: 0.06em;
  line-height: 1.33;
}

h5 {
  font-size: 16px;
  font-weight: 500;
}

h2.f42 {
  text-align: left;
  font-size: 42px;
}

.address {
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
  letter-spacing: 0.05em;
  font-size: 42px;
  line-height: 1em;
  padding: 20px 0;
}

#landing {
  height: calc(100vh - var(--header-height) - 50px);
  height: calc(100svh - var(--header-height) - 50px);
  position: relative;
}
#landing .bg-video {
  height: calc(100% - 75px);
  width: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
}
#landing .bg-video video {
  width: 100vw;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: calc(100vh - var(--header-height) - 134px);
  max-height: calc(100svh - var(--header-height) - 134px);
}

h1,
h2 {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
}

h3 {
  font-size: 48px;
  letter-spacing: 0.02em;
}

.big {
  font-size: 48px;
}

.full-slide {
  height: calc(100vh - var(--header-height) - 100px);
  height: calc(100svh - var(--header-height) - 100px);
  width: 100%;
  background-size: cover;
  background-position: center;
}

.sold {
  position: relative;
}
.sold img {
  position: relative;
  z-index: 0;
}
.sold::before {
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  z-index: 1;
}
.sold::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.05em;
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
  font-size: 36px;
  content: "SOLD";
  z-index: 2;
}

.sold-a {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

footer {
  padding: 20px 0;
  border-top: 1px solid currentColor;
  text-align: left;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  display: block;
  text-align: center;
  cursor: pointer;
  z-index: 50;
}

.close:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 22px;
  transform: rotate(45deg);
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  -webkit-transform-origin: center;
  background: #000;
}

.close:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 22px;
  transform: rotate(-45deg);
  transform-origin: center;
  -webkit-transform: rotate(-45deg);
  -webkit-transform-origin: center;
  background: #000;
}

@media (hover: hover) {
  .main-link:hover .abs-img-holder {
    opacity: 1;
  }
}
.abs-img-holder {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.2s;
  opacity: 0;
}

.abs-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

@media (hover: hover) {
  .main-link:hover .slide1 {
    animation: slide1 2s infinite forwards;
  }
  .main-link:hover .slide2 {
    animation: slide2 2s infinite forwards;
  }
  .main-link:hover .slide3 {
    animation: slide3 2s infinite forwards;
  }
  .main-link:hover .slide14 {
    animation: slide14 2.4s infinite forwards;
  }
  .main-link:hover .slide24 {
    animation: slide24 2.4s infinite forwards;
  }
  .main-link:hover .slide34 {
    animation: slide34 2.4s infinite forwards;
  }
  .main-link:hover .slide44 {
    animation: slide44 2.4s infinite forwards;
  }
}
@keyframes slide1 {
  0% {
    display: none;
  }
  33.33% {
    display: block;
  }
  66.66% {
    display: none;
  }
  100% {
    display: none;
  }
}
@keyframes slide2 {
  0% {
    display: none;
  }
  33.33% {
    display: none;
  }
  66.66% {
    display: block;
  }
  100% {
    display: none;
  }
}
@keyframes slide3 {
  0% {
    display: none;
  }
  33.33% {
    display: none;
  }
  66.66% {
    display: none;
  }
  100% {
    display: block;
  }
}
@keyframes slide14 {
  0% {
    display: none;
  }
  25% {
    display: block;
  }
  50% {
    display: none;
  }
  75% {
    display: none;
  }
  100% {
    display: none;
  }
}
@keyframes slide24 {
  0% {
    display: none;
  }
  25% {
    display: none;
  }
  50% {
    display: block;
  }
  75% {
    display: none;
  }
  100% {
    display: none;
  }
}
@keyframes slide34 {
  0% {
    display: none;
  }
  25% {
    display: none;
  }
  50% {
    display: none;
  }
  75% {
    display: block;
  }
  100% {
    display: none;
  }
}
@keyframes slide44 {
  0% {
    display: none;
  }
  25% {
    display: none;
  }
  50% {
    display: none;
  }
  75% {
    display: none;
  }
  100% {
    display: block;
  }
}
.disclaimer {
  padding-top: 10px;
}

.mob {
  display: none;
}

.logos {
  padding-top: 10px;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--header-height);
  background-color: #000;
  z-index: 51;
  padding: var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
  width: 100%;
  color: inherit;
  font-size: 14px;
  transition: background 0.5s;
  color: #fff;
  border-bottom: 1px solid currentColor;
}
header .header-ani {
  opacity: 0;
  transition: all 0.4s;
}
header .header-ani.animated {
  opacity: 1;
}
header .header-ani.line {
  position: absolute;
  width: 1px;
  height: 0;
  opacity: 1;
  background-color: currentColor;
  display: block;
  top: 0;
  right: 0;
}
header .header-ani.line.animated {
  height: 100%;
}

#nav-toggle {
  display: block;
  height: 10px;
  position: relative;
  width: 20px;
  color: #fff;
}
#nav-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  left: 0;
  top: 0;
  transition: top 0.5s;
}
#nav-toggle span.sp2 {
  top: 4px;
}
#nav-toggle span.sp3 {
  top: 8px;
}
#nav-toggle:after {
  position: absolute;
  left: 25px;
  content: "MENU";
  top: 50%;
  transform: translateY(-50%);
  display: block;
  text-align: left;
  line-height: 1;
}
#nav-toggle.active span.sp1 {
  top: 4px;
}
#nav-toggle.active span.sp3 {
  top: 4px;
}
#nav-toggle.active:after {
  content: "CLOSE";
}

.logo {
  width: 164px;
  margin: 0 auto;
}
.logo svg {
  width: 100%;
  height: auto;
  display: block;
}

#nav {
  position: absolute;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  background-color: inherit;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s;
  pointer-events: none;
  text-align: left;
}
#nav.active {
  opacity: 1;
  pointer-events: initial;
}
#nav #ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
#nav #ul li {
  width: 20%;
  padding: var(--gap);
  height: 100%;
  border-right: 1px solid #000;
  position: relative;
}
#nav #ul li a {
  height: 100%;
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
}
#nav #ul:last-child {
  border: none;
}

.enq, .btn {
  font-size: 14px;
  color: #000;
  background-color: #fff;
  padding: 4px 6px;
  line-height: 1;
  text-transform: uppercase;
}

span.btn {
  width: -moz-max-content;
  width: max-content;
}

.hover-link {
  position: relative;
}

.hover-link::before, .hover-link::after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 50;
  pointer-events: none;
  display: block;
  transition: opacity 0.5s;
  opacity: 0;
}

.hover-link::before {
  left: -100vw;
}

.hover-link::after {
  right: -100vw;
}

@media (hover: hover) {
  .hover-link:hover::before {
    opacity: 1;
  }
  .hover-link:hover::after {
    opacity: 1;
  }
}
.tel {
  line-height: 1;
}

/* enquiry */
#enquire {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 900;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.8s;
  opacity: 0;
  pointer-events: none;
}

#enquire.active {
  opacity: 1;
  pointer-events: initial;
}

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

.register {
  position: relative;
  max-width: 100%;
  width: 585px;
  height: 640px;
  padding: var(--gap);
  margin: 0 auto;
  background: #fff;
  display: flex;
  color: #000;
  justify-content: center;
  align-items: center;
}

.enq_frm {
  width: 480px;
  max-width: 100%;
  margin: auto;
}

.formbox {
  margin: 0 auto;
  width: 100%;
}

.b_submit {
  margin: 10px 0 0;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

input, select {
  font-size: 12px;
  margin: 0 auto;
  padding: 8px 0;
  width: 100%;
  color: #000;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Akzidenz-Grotesk Pro Med";
  display: block;
}

select {
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

select option {
  color: #fff;
  background: #000;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

.chk_holder {
  padding: 6px 0;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: center;
}

#chkInternational {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  width: 20px;
  text-align: center;
}

#chkInternational + label {
  padding: 2px 0 2px 26px;
  position: relative;
  text-align: center;
  display: block;
  color: #000;
  font-size: 12px;
  text-transform: uppercase;
  display: inline;
  margin: auto;
  letter-spacing: 0.04em;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #000;
  content: "";
  display: block;
}

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 3px;
  height: 11px;
  top: 50%;
  left: 8px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  display: block;
  transition: all 0.4s ease-in-out;
}

#chkInternational:checked + label:after {
  transform: translateY(-60%) rotate(45deg) scale(1);
}

input:-webkit-input-placeholder, textarea:-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  text-align: center;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  text-align: center;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #000;
  opacity: 1;
  text-align: center;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #000;
  opacity: 1;
  text-align: center;
}

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

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

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

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0.7;
}

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

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  text-align: -moz-center;
  text-align: -webkit-center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #000;
  clear: both;
}

li.token-input-input-token-project {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 100%;
}

ul.token-input-list-project li input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 100% !important;
  margin-bottom: 0;
}

li.token-input-token-project p {
  display: inline;
  padding: 0;
  margin: 0 5px 0 0;
  line-height: 20px;
  font-size: 11px;
}

li.token-input-token-project {
  overflow: hidden;
  height: 25px;
  margin: 0;
  padding: 2px 5px;
  background-color: #ccc;
  color: #000;
  cursor: default;
  border: 1px solid #000;
  font-size: 12px;
  white-space: nowrap;
  list-style: none;
  display: inline-block;
}

div.token-input-dropdown-project {
  position: absolute;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden;
  cursor: default;
  font-size: 11px;
  z-index: 13;
  color: #000000;
}

div.token-input-dropdown-project ul {
  margin: 0;
  padding: 0;
  display: block !important;
  max-height: 205px;
  line-height: 1;
}

div.token-input-dropdown-project ul li {
  background-color: #fff;
  font-size: 14px;
  padding: 3px;
  margin: 0;
  list-style-type: none;
  font-weight: 100 !important;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li.token-input-dropdown-item2-project {
  background-color: #fff;
}

div.token-input-dropdown-project ul li em {
  font-weight: bold;
  font-style: normal;
}

div.token-input-dropdown-project ul li.token-input-selected-dropdown-item-project {
  background-color: #ccc;
  color: #000;
}

/* Parsley-error */
ul.parsley-errors-list.filled, ul.parsley-errors-list {
  font-size: 10px;
  list-style: outside none none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: left;
  top: 0;
  line-height: 1;
}

ul.parsley-errors-list.filled li, ul.parsley-errors-list li {
  padding: 0;
  text-align: left;
  color: #F00D0D;
}

* {
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

.phone {
  font-family: "Akzidenz-Grotesk Pro Med Cnd";
  font-size: 28px;
  margin-bottom: 15px;
  display: block;
}

.logo-wrapper img {
  display: block;
  height: 22px;
}

.privacy {
  font-size: 11px;
  display: block;
  padding: 8px 0 20px;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 1200px) {
  footer .grid_3 {
    width: -moz-max-content;
    width: max-content;
  }
  footer .grid_3 p {
    font-size: 14px;
  }
}
@media screen and (max-height: 680px) {
  .register {
    height: 100vh;
    height: 100svh;
    overflow-y: scroll;
    display: block;
    padding: 40px var(--gap);
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 66px;
    --gap:10px ;
  }
  .logo {
    width: 127px;
  }
  #landing {
    height: calc(100vh - var(--header-height) - 230px);
    height: calc(100svh - var(--header-height) - 230px);
  }
  .mob {
    display: block;
  }
  .desk {
    display: none;
  }
  .tel {
    position: absolute;
    left: var(--gap);
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    text-align: left;
  }
  .cn-header {
    position: fixed;
    bottom: 0;
    background-color: #000;
    left: 0;
    right: 0;
    border-top: 1px solid #fff;
    height: 38px;
    justify-content: center;
    z-index: 50;
  }
  .enq {
    padding: 3px 6px;
  }
  .main-link {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .grid_3, footer .grid_3, .grid_6, .grid_4, .grid_8 {
    width: 100%;
  }
  .row {
    flex-wrap: wrap;
  }
  footer .justify-end {
    justify-content: flex-start;
  }
  .logos {
    display: block;
  }
  .logos img {
    height: 24px;
    margin-bottom: 20px;
  }
  #nav #ul {
    display: block;
  }
  #nav #ul li {
    width: 100%;
    height: auto;
  }
  #nav #ul li .img-holder {
    display: none;
  }
  #nav #ul li .main-img {
    display: none;
  }
  #nav #ul li a {
    font-size: 22px;
  }
  header .header-ani.line {
    width: 0;
    height: 1px;
    bottom: 0;
    top: auto;
    right: auto;
    left: calc(-1 * var(--gap));
  }
  header .header-ani.line.animated {
    height: 1px;
    width: calc(100% + var(--gap));
  }
  footer {
    padding-bottom: 60px;
  }
  .h-60w, .h-60w .full-h {
    height: 60vw;
  }
  .max1200 {
    padding: var(--padxl);
    padding: var(--gap) 0;
  }
  .gap25m {
    gap: 30px;
  }
  .ptb40m {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pb20m {
    padding-bottom: var(--gap);
  }
  .pb60m {
    padding-bottom: 60px;
  }
  .pbxlm {
    padding-bottom: var(--padxl);
  }
  .mb60 {
    margin-bottom: var(--gap);
  }
  .full-m {
    padding: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .full-m .container {
    width: 100%;
    gap: 0;
  }
  .full-m a {
    border-bottom: 1px solid currentColor;
    padding: var(--gap);
  }
  .full-m h2 {
    font-size: 22px;
    margin: 0;
  }
  .full-m .img-holder, .full-m img {
    display: none;
  }
  .no-b {
    border: none !important;
  }
  #nav-toggle:after {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --padxs: 15px;
    --padxl: 60px;
    --padl: 40px;
  }
  body {
    font-size: 12px;
  }
  h1 {
    font-size: 22px;
  }
  h2 {
    font-size: 24px;
  }
  .big, h3 {
    font-size: 36px;
  }
  #landing {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - var(--header-height) - 195px);
    height: calc(100svh - var(--header-height) - 195px);
  }
  .f14 {
    font-size: 12px;
  }
  .banner {
    padding: 10px 15px;
    font-size: 22px;
  }
  #landing .bg-video {
    height: auto;
  }
}