@font-face {
  font-family: "Nib";
  src: url("../fonts/Nib-Regular.eot");
  src: url("../fonts/Nib-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Nib-Regular.woff2") format("woff2"), url("../fonts/Nib-Regular.woff") format("woff"), url("../fonts/Nib-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Modern Gothic";
  src: url("../fonts/ModernGothic-Regular.eot");
  src: url("../fonts/ModernGothic-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ModernGothic-Regular.woff2") format("woff2"), url("../fonts/ModernGothic-Regular.woff") format("woff"), url("../fonts/ModernGothic-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("/fonts/ABCDiatype-Medium.woff2") format("woff2"), url("/fonts/ABCDiatype-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("/fonts/ABCDiatype-Regular.woff2") format("woff2"), url("/fonts/ABCDiatype-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plaak 5 Trial";
  src: url("/fonts/Plaak5Trial-35-RegularA.woff2") format("woff2"), url("/fonts/Plaak5Trial-35-RegularA.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Diatype";
  src: url("/fonts/ABCDiatype-Bold.woff2") format("woff2"), url("/fonts/ABCDiatype-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height:86px;
  --xl: 100px;
  --l: 96px;
  --m: 40px;
  --xs: 20px;
  --xxs: 10px;
  --gap: 30px;
  --nib: "Nib";
  --gothic: "Modern Gothic";
  --orang:#f79f2b;
  --dark:#000;
  --brown: #74655B;
  --darkbrown: #312F2D;
  --beige: #C5BFB7;
  --light: #FAF4EA;
}

#page-home .not-home {
  opacity: 0;
  pointer-events: none;
}

.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_1 {
  width: 8.33%;
}

.grid_2 {
  width: 16.67%;
}

.grid_3 {
  width: 25%;
}

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

.grid_5 {
  width: 41.67%;
}

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

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

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

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

a {
  cursor: pointer;
  color: inherit;
  display: block;
}

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

/* General */
body {
  font-size: 16px;
  background: var(--light);
  color: var(--dark);
  margin: 0;
  padding: 0;
  font-family: "ABC Diatype";
  line-height: 1.25;
  text-align: center;
}

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

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

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.m40 {
  margin-bottom: 40px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb10 {
  margin-bottom: 10px;
}

.underline {
  text-decoration: underline;
}

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

.cut-img {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  transition: width 1s;
}

.cut-img-left {
  text-align: left;
  left: 0;
}

.cut-img-right {
  right: 0;
  text-align: right;
}

.abs-c {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background 1s;
  color: #fff;
  padding: var(--gap);
  gap: 15px;
}

.hide-p {
  height: 0;
  overflow: hidden;
  transition: height 0.7s;
}

@media (hover: hover) {
  .btn:hover {
    background-color: #fff;
    color: var(--orang);
  }
  .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .fullheight:hover .cut-img {
    width: 20%;
  }
  .fullheight:hover .abs-c {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .fullheight .cut-img-left:hover {
    width: 80%;
  }
  .fullheight .cut-img-left:hover .abs-c {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .fullheight .cut-img-left:hover .hide-p {
    height: 2.65em;
  }
  .fullheight .cut-img-right:hover {
    width: 80%;
  }
  .fullheight .cut-img-right:hover .abs-c {
    background-color: rgba(0, 0, 0, 0);
  }
  .fullheight .cut-img-right:hover .hide-p {
    height: 2.65em;
  }
}
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

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

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

.g100 {
  gap: 90px var(--gap);
}

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

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

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

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

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

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

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

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

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

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

.relative {
  position: relative;
  z-index: 2;
}

.center_align {
  text-align: center;
}

.relative {
  position: relative;
}

.abs {
  position: absolute;
  z-index: 0;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100vh;
  height: 100svh;
  position: relative;
}

.pad-all {
  padding: var(--gap);
}

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

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

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

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

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

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

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

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

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

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

.mtxl {
  margin-top: var(--xl);
}

.mtl {
  margin-top: var(--l);
}

.mbl {
  margin-bottom: var(--l);
}

.mbxs {
  margin-bottom: var(--xs);
}

.mw {
  width: 100%;
}

section {
  position: relative;
}

.asp69-82 {
  aspect-ratio: 69/82;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  max-height: calc(100vh - var(--header-height) - var(--gap));
  min-height: 100%;
}

.asp16-9 {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  -o-object-position: center;
     object-position: center;
}

.fit-h {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  max-height: calc(100vh - var(--header-height) - var(--gap));
}

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

.border-m {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 0;
  background-color: var(--orang);
  transition: height 0.7s;
}
.border-m.animated {
  height: 100%;
}

.border-b {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--orang);
  transition: width 0.7s;
}
.border-b.animated {
  width: 100%;
}

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

.para {
  overflow: hidden;
  z-index: 1;
  position: relative;
}

.para .inner-para {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.btn {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 0 20px;
  height: 28px;
  text-transform: uppercase;
  transition: all 0.5s;
  cursor: pointer;
  color: #fff;
  background: var(--orang);
}

.btn-light {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 0 20px;
  height: 28px;
  text-transform: uppercase;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #fff;
  color: var(--orang);
}

.text-brown {
  color: var(--brown);
}

.cap {
  text-transform: uppercase;
  font-size: 12px;
}

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

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

.bold {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  font-weight: 500;
  font-size: 40px;
  text-transform: uppercase;
}

.mx-ct {
  font-size: clamp(18px, 32px, 2vw);
}

.f56 {
  font-size: clamp(22px, 55px, 6.5vw);
  color: var(--orang);
}

h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}
h3.light {
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 1.2;
}

.l10 {
  letter-spacing: 0.1em;
}

h4 {
  font-weight: 400;
  font-size: 18px;
  max-width: 560px;
}

.list {
  list-style: none;
  width: 520px;
  max-width: 100%;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 auto;
}
.list li {
  font-family: ABC Diatype;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border-bottom: 1px solid var(--orang);
  padding: 20px 0;
}
.list li:last-child {
  border-bottom: none;
}

.explore {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: 88px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  display: block;
}
.explore::after {
  display: block;
  content: "";
  height: 1px;
  background-color: currentColor;
  transform: translateY(4px);
}

.arrow {
  position: absolute;
  bottom: var(--gap);
  left: 0;
  right: 0;
  margin: auto;
  letter-spacing: 0.06em;
  color: #fff;
  text-transform: uppercase;
  z-index: 3;
  font-weight: 700;
}
.arrow span {
  display: block;
  margin-bottom: 25px;
}
.arrow img {
  width: 12px;
  margin: auto;
}

.desc {
  display: block;
}

.logos {
  gap: 35px;
  padding: 30px var(--gap);
  align-items: center;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.logo-w {
  pointer-events: none;
  width: calc(100% - var(--gap) * 3);
}

.reg-holder {
  width: 40.12vw;
}

.f12 {
  font-size: 12px;
  color: #fff;
}

#discalimer {
  position: fixed;
  height: 354px;
  padding: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 780px;
  max-width: 100%;
  overflow-y: scroll;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s;
  color: #000;
  z-index: 50;
  text-align: left;
}
#discalimer .close {
  position: absolute;
  top: 10px;
  right: 10px;
}
#discalimer p {
  text-align: left;
}
#discalimer.active {
  opacity: 1;
  pointer-events: initial;
}

footer {
  background-color: var(--orang);
  color: #fff;
  font-size: 12px;
  position: relative;
  z-index: 12;
}

/* enquiry */
#contact {
  background-color: var(--orang);
  color: #fff;
}

.register {
  width: 470px;
  margin: auto;
  text-align: center;
  max-width: calc(100% - var(--gap) * 2);
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input, select {
  font-size: 15px;
  margin: 0 auto;
  padding: 10px 0 5px;
  width: 100%;
  color: #fff;
  border: 0 none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border-bottom: 1px solid #fff !important;
  text-align: center;
  font-family: inherit;
}

.b_submit {
  margin: 20px 0 15px;
  padding: 10px 0;
  background-color: var(--darkbrown);
  color: var(--beige);
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 13px;
  letter-spacing: 0.15em;
  font-family: var(--galano);
  transition: background-color 300ms, color 300ms;
  border: none !important;
}
.b_submit:hover {
  background-color: var(--beige);
  color: var(--darkbrown);
  border: none !important;
}

select {
  padding: 20px 0 15px;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

select option {
  padding: 20px 0 15px;
  background: #fff;
  color: #000 !important;
  text-align-last: center;
  text-align: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
  text-align-last: center;
}

.privacy {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--galano);
}

.chk_holder {
  margin: 10px auto 0 auto;
  color: #fff;
}

#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: #546670;
  font-size: 18px;
  letter-spacing: 3px;
  font-family: inherit;
  text-transform: uppercase;
  display: inline;
  margin: auto;
}

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

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

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--beige);
  opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: var(--beige);
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--beige);
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--beige);
  opacity: 1;
}

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

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

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

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

/* Token Style */
ul.token-input-list-project {
  border: none;
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  text-align: -moz-left;
  text-align: -webkit-left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border-bottom: 1px solid #525252;
  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 #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;
}

.hs-error-msg {
  color: #F00D0D !important;
  font-family: var(--galano);
  font-size: 12px;
}

.hs-error-msgs {
  list-style: none;
}

.hs input {
  font-size: 15px;
  text-align: center;
  font-family: var(--galano);
}

div.field {
  padding-bottom: 10px;
  width: 100%;
}

.hs-submit {
  width: 100%;
}
.hs-submit input {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  padding: 0 20px;
  height: 28px;
  text-transform: uppercase;
  transition: all 0.5s;
  cursor: pointer;
  background-color: #fff;
  color: var(--orang);
  width: 100%;
  margin: 20px 0 0 0;
}

#contact {
  z-index: 12;
}

header {
  position: fixed;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 var(--gap);
}
header.bg {
  background-color: var(--orang);
}
header.bg .btn {
  color: var(--orang);
  background-color: #fff;
}

.logo {
  width: 432px;
  max-width: calc(100% - 200px);
}
.logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  :root {
    --xl: 80px;
    --header-height: 40px;
    --gap: 15px;
    --l:40px ;
  }
  .btn,
  .btn-light {
    font-size: 12px;
    height: 20px;
    letter-spacing: 0.05em;
    padding: 0 14px;
  }
  .desc {
    display: none;
  }
  .logo {
    left: var(--gap);
    transform: translate(0, -50%);
  }
  .rest-page .enq {
    display: none;
  }
  header {
    justify-content: flex-end;
  }
  #page-home {
    padding-top: var(--header-height);
  }
  #page-home header {
    background-color: var(--orang);
  }
  #page-home #landing {
    height: calc(100svh - var(--header-height));
  }
  #page-home .for-rest {
    display: none;
  }
  #page-home .logo {
    opacity: 1;
    pointer-events: initial;
  }
  #page-home .btn {
    background-color: #fff;
    color: var(--orang);
  }
  .cut-img {
    width: 100% !important;
    height: calc(50svh - var(--header-height) * 0.5);
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }
  .logo {
    width: 141px;
  }
  #fix {
    padding: calc(45vh - 4vw) var(--gap) var(--gap) var(--gap);
  }
  :root {
    --xl: 80px;
  }
  .register {
    font-size: 10px;
  }
  h1, h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 16px;
  }
  h3.light {
    padding: 0 30px;
  }
  p {
    font-size: 14px;
  }
  .abs-c {
    align-items: flex-start;
    text-align: left !important;
  }
  .grid_6 {
    width: 100%;
  }
  .explore {
    font-size: 11px;
  }
  input, select, label {
    font-size: 12px !important;
  }
  .logos a {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .reg-holder {
    width: 100%;
  }
  .border-m {
    display: none;
  }
  .pad-all {
    margin-bottom: 15px;
    padding: var(--gap) 0;
  }
  .pad-all .col {
    padding: 30px var(--gap);
  }
  .pad-all .list, .pad-all h4 {
    font-size: 13px;
  }
  .grid_4 {
    width: 100%;
  }
  .g100 {
    gap: 20px;
  }
  .mbm0 {
    margin-bottom: 0;
  }
  .ptm0 {
    padding-top: 0;
  }
}/*# sourceMappingURL=style.css.map */