@font-face {
  font-family: "Sometimes Times";
  src: url("/fonts/SometimesTimes-Regular.eot");
  src: url("/fonts/SometimesTimes-Regular.eot?#iefix") format("embedded-opentype"), url("/fonts/SometimesTimes-Regular.woff2") format("woff2"), url("/fonts/SometimesTimes-Regular.woff") format("woff"), url("/fonts/SometimesTimes-Regular.ttf") format("truetype"), url("/fonts/SometimesTimes-Regular.svg#SometimesTimes-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height: 90px;
  --banner-height:30px;
  --red: #6D4727;
  --grey: #CEE1D8;
  --gap: 2%;
  --big-pad: 20vh;
  --mid-pad: 15vh;
  --sml-pad: 10vh;
  --pad-side: 10% ;
}

body {
  font-family: neue-haas-unica, sans-serif;
  font-weight: 300;
  font-style: normal;
  background: #fff;
  text-align: center;
  color: var(--red);
  margin: 0;
  padding: var(--header-height) 0 0 0;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.flex-sb {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.flex-st-st {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px var(--gap);
}

.flex-h {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-self: normal;
}

.bg-red {
  background-color: var(--red);
  color: #fff;
}

.full-h {
  background-size: cover;
  position: relative;
  height: calc(100svh - var(--header-height));
}

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

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

#main {
  height: 1px;
  overflow: hidden;
}

body.loaded {
  overflow: initial;
  height: auto;
}

.dark-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 70%, rgba(0, 0, 0, 0.1) 90%), url(/images/home/hero.jpg);
  background-size: cover;
  background-position: center bottom;
}

.clear,
* html .clearfix,
*:first-child + html .clearfix {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: block;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

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

.grid_4 {
  width: 33.33%;
}

.newsTile {
  width: calc(33.33% - 0.67 * var(--gap));
  text-align: left;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-family: articulat-cf, sans-serif;
  letter-spacing: 0.15em;
  line-height: 1;
  font-weight: 600;
  transition: background 0.3s;
}
.newsTile span {
  display: block;
}
.newsTile .news-inner {
  padding: 15px;
}
.newsTile .title {
  font-family: "Sometimes Times";
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 520px;
  padding: 20px 0;
}
.newsTile:hover {
  background: var(--grey);
}

.news-nav {
  font-size: 12px;
  font-family: articulat-cf, sans-serif;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  z-index: 5;
  position: sticky;
  top: var(--header-height);
  text-decoration: underline;
  padding: 10px 0;
  margin-bottom: 60px;
}

.inner-news {
  max-width: 680px;
  margin: auto;
}
.inner-news img {
  margin-bottom: 15px;
  width: 100%;
  display: block;
}
.inner-news p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.share {
  text-align: center;
  font-family: articulat-cf, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.15em;
  padding-top: 30px;
  text-transform: uppercase;
}
.share p {
  margin-bottom: 15px;
}
.share a {
  display: inline-block;
  margin: 0 10px;
}

.grid_75 {
  width: 70%;
}

.grid_6 {
  width: 50%;
}

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

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

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

.space {
  display: block;
  height: 100px;
}

.pad-top-b {
  padding-top: var(--big-pad);
}

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

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

.pad-top-30 {
  padding-top: calc(2 * var(--gap));
}

.pad-btm-b {
  padding-bottom: var(--big-pad);
}

.pad-btm-m {
  padding-bottom: var(--mid-pad);
}

.pad-btm-s {
  padding-top: var(--sml-pad);
}

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

.pad-l {
  padding-left: var(--pad-side);
}

.pad-r-30 {
  padding-right: var(--gap);
}

.pad-l-30 {
  padding-left: var(--gap);
}

.pad-r {
  padding-right: calc(var(--pad-side));
}

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

.max405 {
  max-width: 405px;
}

.max450 {
  max-width: 450px;
}

.max460 {
  max-width: 460px;
}

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

.play {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}

.scroll {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 3;
}
.scroll span {
  display: block;
  color: #fff;
  font-family: articulat-cf, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  text-align: center;
}

/* General */
#landing {
  overflow: hidden;
  z-index: 5;
}

.zoomIn {
  animation-name: zoomIn;
  animation-duration: 15s;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.zoomOut {
  animation-name: zoomOut;
  animation-duration: 15s;
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.img {
  width: 100%;
  margin: 0;
  display: block;
}

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

.fadeInUp {
  opacity: 0;
  transition: opacity 0.7s;
}

.tofadeAll.animated .fadeInUp {
  opacity: 1;
}

.fadeInUp.animated {
  opacity: 1;
}

.delay1 {
  transition-delay: 0.3s;
}

.delay2 {
  transition-delay: 0.6s;
}

.wh100 {
  height: calc(100vh - var(--header-height));
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  min-height: 630px;
}
.wh100 .img-h {
  width: 100%;
  max-height: 100%;
  opacity: 0;
  position: relative;
  z-index: 0;
}

/* Headings */
h1,
h2,
h3,
h5 {
  margin: 0;
  font-weight: normal;
  font-family: "Sometimes Times";
}

.mb2 {
  margin-bottom: 25px;
}

.mb3 {
  margin-bottom: 35px;
}

p.mb {
  margin: 0 0 10px 0;
}

h1 {
  font-size: clamp(8vw, 180px, 13vw);
  line-height: 0.88;
  text-transform: uppercase;
}

#page-team h1 {
  font-size: clamp(8vw, 180px, 9vw);
}

h2 {
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.47em;
  text-transform: uppercase;
}

h3 {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  font-family: "Sometimes Times" !important;
}
h3.newTitle {
  text-transform: none;
}

h3.mid {
  margin-bottom: 1.25em;
  font-size: 32px;
}

h5 {
  font-size: 38px;
  line-height: 1;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 95px;
  color: #fff;
  z-index: 3;
}

h4,
.map-link {
  font-size: 15px;
  font-family: articulat-cf, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.55;
  letter-spacing: 0.15em;
  margin-bottom: 1em;
  text-transform: uppercase;
  display: block;
}

.map-link {
  padding-top: 10px;
  margin-bottom: 0;
}
.map-link::after {
  content: "+";
  display: inline-block;
  padding: 0 5px;
  font-size: 1.2em;
  line-height: 1;
}
.map-link.active::after {
  content: "-";
}

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

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

.team-des {
  padding: 10px var(--gap) 0 var(--gap);
  line-height: 1.4;
}
.team-des b {
  font-weight: 500;
}

/* Navigation */
#banner {
  height: var(--banner-height);
  background-color: var(--red);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-family: articulat-cf, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1;
  color: #C8E0D5;
  z-index: 55;
}
#banner #closeBanner {
  position: absolute;
  right: var(--gap);
  top: 50%;
  transform: translateY(-50%);
}

header {
  position: fixed;
  z-index: 10;
  height: var(--header-height);
  color: var(--red);
  padding: 0 var(--gap);
  width: 100%;
  top: var(--banner-height);
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header.to-top {
  top: 0;
}
header .layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  background-color: inherit;
  border-bottom: 1px solid var(--red);
}
header .logo {
  width: 260px;
  display: block;
  z-index: 3;
}
header .menu {
  z-index: 3;
}
header .menu::after {
  font-family: articulat-cf, sans-serif;
  content: "MENU";
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.15em;
}
header.active #nav {
  transform: translateY(0);
}
header.active .menu::after {
  content: "CLOSE";
}

#nav {
  height: 212px;
  position: fixed;
  top: var(--header-height);
  transform: translateY(-105%);
  transition: opacity 0.7s, transform 0.7s;
  z-index: 1;
  left: 0;
  right: 0;
  width: 100%;
  background: inherit;
}
#nav #ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid;
  list-style: none;
  height: 100%;
}
#nav #ul li {
  width: 20%;
  border-right: 1px solid;
  padding: var(--gap);
  height: 100%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
}
#nav #ul li a {
  transition: color 0.3s;
}
#nav #ul li a:hover {
  color: #CEE1D8;
}
#nav #ul li a.active-page {
  color: #CEE1D8;
}
#nav #ul li span {
  font-weight: 600;
  font-family: articulat-cf, sans-serif;
  display: block;
  letter-spacing: 0.15em;
}
#nav #ul li:last-child {
  border: none;
}
#nav #ul li b {
  font-weight: normal;
  padding: 11px 0 15px 0;
  font-size: 40px;
  font-family: "Sometimes Times";
  line-height: 0.95;
  display: block;
}

.btn {
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 21px;
  font-size: 12px;
  line-height: 8px;
  letter-spacing: 0.15em;
  background: var(--grey);
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 2px;
  font-family: articulat-cf, sans-serif;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s;
}
.btn.enq {
  z-index: 3;
  position: relative;
  font-size: 15px;
}
@media (hover: hover) {
  .btn:hover {
    color: var(--grey);
    background-color: var(--red);
  }
}

.artist {
  position: relative;
}

.related {
  position: relative;
}
.related img {
  position: relative;
  z-index: 1;
}

.caption {
  position: absolute;
  display: block;
  bottom: 15px;
  right: 15px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
  z-index: 5;
}

.artist:after {
  position: absolute;
  display: block;
  bottom: 15px;
  right: 15px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  content: "ARTIST IMPRESSION";
  line-height: 1;
  z-index: 5;
}

.l-slide {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@media screen and (min-aspect-ratio: 1920/1080) {
  .full-h video {
    width: 100% !important;
  }
}
@media screen and (max-aspect-ratio: 1920/1080) {
  .full-h video {
    height: 100vh;
  }
}
/* enquiry */
#enquire {
  z-index: 6;
  background-color: var(--grey);
}

.r_logo {
  display: block;
  margin: 0 auto 50px auto;
  width: 54px;
}

.tel {
  display: block;
  margin-bottom: 2.8em;
  font-family: articulat-cf, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 8px;
}

.register {
  width: 460px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 12px;
  margin: 0 auto 6px auto;
  padding: 5px 0 12px 0;
  width: 100%;
  color: var(--red);
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid var(--red);
  text-align: center;
  letter-spacing: 0.6px;
  resize: none;
}

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

select option {
  padding: 7px 5px;
  background: #fff;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
  color: var(--red);
}

.b_submit {
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background-color: var(--red);
  color: #fff;
  line-height: 1;
  padding: 14px 0;
  border: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-top: 15px;
}

.underline {
  text-decoration: underline;
}

.privacy {
  padding: 30px 0 0 0;
  font-size: 12px;
}

.chk_holder {
  margin: 0;
  color: var(--red);
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--red);
  margin-bottom: 6px;
}

#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: 15px 0 15px 22px;
  position: relative;
  text-align: center;
  display: block;
  color: var(--red);
  text-align: left;
  font-size: 12px;
  line-height: 1.17em;
  display: inline-block;
  margin: auto;
  width: -moz-max-content;
  width: max-content;
  font-family: inherit;
  /* font-family: neue-haas-unica, sans-serif; */
  letter-spacing: 0.6px;
  font-weight: 500;
}

#chkInternational + label:before {
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  top: calc(50% - 1px);
  border: 1px solid var(--red);
  content: "";
  display: block;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

#chkInternational + label:after {
  position: absolute;
  left: 0;
  width: 5px;
  height: 11px;
  top: calc(50% - 1px);
  left: 6px;
  transform: translateY(-60%) rotate(45deg) scale(0);
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
  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: 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;
}

#privcay {
  display: none;
  position: fixed;
  background: #CEE1D8;
  transition: opacity 0.7s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.inner {
  width: 640px;
  max-width: 95%;
  margin: auto;
}

#close {
  display: block;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 40px;
  height: 40px;
}

#close:before,
#close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 40px;
  width: 2px;
  background-color: #6D4727;
}

#close:before {
  transform: rotate(45deg);
}

#close:after {
  transform: rotate(-45deg);
}

/*footer*/
footer {
  position: relative;
  z-index: 6;
  background-color: var(--grey);
}

.draw-br {
  position: absolute;
  background-color: var(--red);
  display: block;
}

.br-mid {
  transition: height 0.7s;
  top: 0;
  left: 49.5%;
  width: 1px;
  height: 0;
}

.br-top,
.br-btm {
  left: 0;
  width: 0;
  transition: width 0.7s;
  top: 0;
  height: 1px;
}
.br-top.br-btm,
.br-btm.br-btm {
  top: auto;
  bottom: 0;
}

.br-holder {
  position: relative;
}
.br-holder.animated .br-btm,
.br-holder.animated .br-top {
  width: 100%;
}
.br-holder.animated .br-mid {
  height: 100%;
}

.info {
  position: relative;
  padding: var(--gap);
  min-height: 100px;
}

.logos {
  display: flex;
  padding: 60px 0;
  -moz-column-gap: 60px;
       column-gap: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.logos img {
  display: block;
}

.links {
  padding: 20px 0;
}
.links a {
  display: inline-block;
  font-size: 10px;
  margin: 0 10px;
  letter-spacing: 0.03em;
}

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  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 {
  width: 100% !important;
}

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

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: #fff;
}

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

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

.mob {
  display: none;
}

.fit-height {
  width: auto;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.fit-height img {
  max-height: calc(100vh - 280px);
  min-height: 180px;
  width: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}

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

@media screen and (max-width: 1680px) {
  .max460 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .flex-h {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 900px) {
  .logos {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
    --gap: 15px;
    --pad-side: 15px;
    --big-pad: 15vh;
    --mid-pad: 10vh;
    --sml-pad: 5vh;
  }
  body {
    font-size: 13px;
  }
  .mob {
    display: block;
  }
  .desc {
    display: none !important;
  }
  header .logo {
    width: 159px;
    display: block;
    z-index: 3;
  }
  .play {
    position: absolute;
  }
  h1 {
    font-size: clamp(46px, 85px, 12vw);
  }
  h2 {
    font-size: 36px;
  }
  .pad-l,
  .pad-l-30 {
    padding-left: 0;
  }
  .pad-r,
  .pad-r-30 {
    padding-right: 0;
  }
  .container {
    width: calc(100% - 30px);
  }
  .full-m {
    width: 100%;
  }
  .grid_6,
  .grid_75 {
    width: 100%;
  }
  .grid_4 {
    width: 100%;
    margin-bottom: 15px;
  }
  .grid_4:last-child {
    margin-bottom: 0;
  }
  .wh100 {
    max-height: 100vh;
    min-height: 100px;
  }
  #nav {
    height: calc(100svh - var(--header-height));
  }
  #nav #ul {
    height: 100%;
  }
  #nav #ul li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid;
    height: 20%;
  }
  #nav #ul li b {
    padding: 9px 0 9px 0;
    font-size: 30px;
  }
  .call {
    position: fixed;
    bottom: 7px;
    left: var(--gap);
    color: var(--red);
    z-index: 10;
    width: 100px;
    text-align: left;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    font-size: 15px;
    font-family: articulat-cf, sans-serif;
  }
  footer {
    padding-bottom: 50px;
  }
  .logos {
    display: block;
    padding: 60px 20px;
  }
  .logos a {
    display: block;
    padding: 20px 0;
  }
  .logos img {
    margin: auto;
    max-width: 160px;
  }
  .fadeInUp.animated {
    opacity: 1;
  }
  .fadeInUp {
    opacity: 0;
    transition: opacity 0.7s;
  }
  h4,
  .map-link {
    font-size: 15px;
  }
  .info {
    padding: 30px;
  }
  .br-mid {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px !important;
    top: 46%;
  }
  .mbm {
    margin-bottom: var(--gap);
  }
  .mb2m {
    margin-bottom: 30px;
  }
  .mb50m {
    margin-bottom: 50px;
  }
  .r_logo {
    margin: 0 auto 40px auto;
    width: 40px;
  }
  #map {
    height: 100vw;
    margin-bottom: 40px;
  }
  .flex-h {
    padding-left: 0;
    padding-right: 0;
  }
  .max460 {
    padding-left: 0;
    padding-right: 0;
  }
  .wh100 video {
    height: 100vw !important;
  }
  .n-mob {
    height: auto;
  }
  .call {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  :root {
    --banner-height:40px;
  }
  .call {
    display: block;
  }
  .newsTile {
    width: 100%;
  }
  .btn.enq {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 34px;
  }
  .scroll {
    bottom: 20px;
  }
  .full-h {
    height: calc(100svh - var(--header-height) - 34px);
  }
  #nav {
    height: calc(100svh - var(--header-height) - 34px);
  }
  #banner {
    padding: 0 30px;
    font-size: 10px;
  }
  #closeBanner span {
    display: none;
  }
}