@charset "UTF-8";
@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.woff2") format("woff2"), url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Fragment Glare";
  src: url("../fonts/PPFragment-GlareLight.woff2") format("woff2"), url("../fonts/PPFragment-GlareLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Commons";
  src: url("../fonts/TTCommons-Light.woff2") format("woff2"), url("../fonts/TTCommons-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chamberi Display";
  src: url("../fonts/ChamberiDisplay-Regular.woff2") format("woff2"), url("../fonts/ChamberiDisplay-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --header-height:90px;
  --dark: #000;
  --light: #F4F0EA;
  --white:#fff;
  --grey:#f3f7fc;
  --gap: 30px;
  --xs: 20px;
  --s: 34px;
  --m: 40px;
  --l: 73px;
  --xl: 120px;
  --c-gap:clamp(80px,320px,16vw) ;
}

body {
  background: var(--white);
  color: var(--dark);
  text-align: center;
  font-family: "TT Commons";
  overflow-x: hidden;
  font-style: normal;
  font-weight: 300;
  font-size: 21.33px;
  line-height: 1.2;
}
body.vn {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}
body.vn .title {
  font-family: "Open Sans", sans-serif;
}
body.vn h1, body.vn h2, body.vn h3, body.vn h4 {
  font-family: "Chamberi Display";
}

.main {
  height: calc(100vh + 1px);
  height: calc(100svh + 1px);
  transition: opacity 0.5s;
  overflow: hidden;
}

.white {
  color: #fff;
}

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

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

.w650 {
  width: calc(50% - 40px);
  position: relative;
  z-index: 3;
}

.w760 {
  z-index: 1;
  width: calc(50% - 40px);
}

.has-after {
  position: relative;
}
.has-after::after {
  position: absolute;
  display: block;
  width: 100vw;
  right: -100vw;
  top: 0;
  height: 100%;
  background-color: var(--white);
  content: "";
}

.has-befor {
  position: relative;
}
.has-befor::after {
  position: absolute;
  display: block;
  width: 100vw;
  left: -100vw;
  top: 0;
  height: 100%;
  background-color: var(--white);
  content: "";
}

.g44 {
  width: 44.5%;
}

.g35 {
  width: 35%;
}

.grid_4 {
  width: calc(33.33% - 53.33px);
}

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

.slider-wrapper {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  min-width: 100%;
  gap: 20px;
  flex-wrap: nowrap;
}

.slider-flex {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 20px;
}
.slider-flex .slide {
  width: 760px;
  max-width: calc(43vw - var(--gap));
}

a,
button {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  outline: none;
  background: transparent;
  border: none;
}

img {
  border: none;
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.img {
  display: block;
  width: 100%;
}

a,
img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.h-fit-obj {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fit-obj {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.full-width {
  width: 100%;
  height: auto;
}

.abs {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-height {
  height: 100vh;
  color: #fff;
  height: 100svh;
  width: 100%;
  background-position: center;
  background-size: cover;
  padding: 20px;
}

.h-slider {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.h-full {
  height: 100vh;
  height: 100svh;
  display: flex;
}

.asp67 {
  aspect-ratio: 0.67;
}

.asp95 {
  aspect-ratio: 0.954;
}

.asp139 {
  aspect-ratio: 1.39;
}

.pad-type1 {
  padding-top: 64vh;
}

.pad-type2 {
  padding-left: 8vw;
  padding-top: 4.2vh;
}

.pad-type3 {
  padding-right: 8vw;
}

.gradient {
  background: linear-gradient(to top, #F7EAD3 0%, rgba(247, 234, 211, 0) 100%);
  height: 50vh;
  border-bottom: 1px solid currentColor;
  z-index: 3;
  position: relative;
}

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

.drag-inner {
  display: flex;
  gap: 2vw;
  width: -moz-max-content;
  width: max-content;
}

.drag-container {
  width: 100%;
  overflow: hidden;
}

.content {
  display: flex;
  flex-wrap: nowrap;
  gap: 2vw;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
}
.content img {
  display: block;
  width: 100%;
}

.w21 {
  width: 21.87vw !important;
  min-width: 21.87vw;
}

.w15 {
  width: 15.62vw !important;
  min-width: 15.62vw;
}

.w17 {
  width: 17vw !important;
  min-width: 17vw;
}

/* General */
.gap {
  gap: var(--gap);
}

.gap60 {
  gap: 45px;
}

.g10 {
  gap: 10px;
}

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

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

.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-e {
  justify-content: space-evenly;
}

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

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

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

.j-sb {
  justify-content: space-between;
}

.c_a {
  text-align: center;
}

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

.r-a {
  text-align: right;
}

.center-a {
  text-align: center;
}

.stretch {
  align-self: stretch;
}

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

.mb {
  margin-bottom: 1em;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 26px;
}

.mb30 {
  margin-bottom: 28px;
}

.mb40 {
  margin-bottom: 42px;
}

.mb70 {
  margin-bottom: 70px;
}

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

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

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

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

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

.ptxxl {
  padding-top: var(--xxl);
}

.pbxxl {
  padding-bottom: var(--xxl);
}

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

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

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

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

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

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

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.o-hidden {
  overflow: hidden;
}

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

.box {
  padding: 108px 0 103px 0;
}

.sticky {
  position: sticky;
  top: 0;
  z-index: 2;
}

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

h1, h2 {
  font-family: "PP Fragment Glare";
  font-weight: 300;
  font-size: 40px;
  line-height: 1.25;
  margin-bottom: 0.87em;
  text-transform: uppercase;
}

h3 {
  font-family: "PP Fragment Glare";
  font-weight: 300;
  font-size: 24px;
  line-height: 1;
}

h4 {
  font-family: "PP Fragment Glare";
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
}

.title {
  font-family: "Gotham";
  font-size: 14px;
  line-height: 1;
  margin-bottom: 2.5em;
  text-transform: uppercase;
}

.p-mb {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

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

.artist {
  position: relative;
}

.artist:after {
  position: absolute;
  right: 23px;
  bottom: 15px;
  color: inherit;
  font-size: 10px;
  display: block;
  content: "Artist’s Impression";
  z-index: 1;
  color: #fff;
}

.vn .artist:after {
  content: "Phối cảnh minh họa";
}

.btn {
  font-family: var(--boldFont);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 27px;
  padding: 0px 20.5px;
  line-height: 1;
  vertical-align: middle;
  transition: all 0.4s;
  border-radius: 0;
  cursor: pointer;
  color: var(--dark);
  background-color: #fff;
  text-transform: uppercase;
}

.mob {
  display: none !important;
}

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

.logos {
  gap: 50px;
  padding: 60px 0 100px 0;
}

.scroll-wrapper {
  position: relative;
  width: 100%;
}

.scroll-container {
  overflow: hidden;
  white-space: nowrap;
  cursor: grab;
}

.scroll-container.kinetic-active {
  cursor: grabbing;
}

.scroll-inner {
  display: inline-flex;
}

.scrollbar {
  height: 2px;
  background: #CCCCCC;
  width: 1000px;
  max-width: calc(100% - 40px);
  margin: auto;
  position: relative;
  border-radius: 0;
}

.thumb {
  height: 100%;
  width: 60px;
  background: #000;
  border-radius: 1px;
  position: absolute;
  left: 0;
  cursor: grab;
}

.social {
  width: 230px;
}

.legal {
  font-size: 15px;
  border-top: 0.6px solid currentColor;
  padding-top: 45px;
}

.disclaimer {
  text-align: left;
  width: 908px;
  max-width: calc(56% - 15px);
}

.member {
  text-align: right;
  width: 532px;
  max-width: calc(44% - 15px);
}

.social img {
  max-height: 18px;
}

header {
  position: fixed;
  height: var(--header-height);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  padding: 20px 76px;
  transition: background 0.5s, padding 0.5s;
  color: #fff;
  font-family: "PP Fragment Glare";
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0);
}
header * {
  fill: currentColor;
}
header.bg {
  color: var(--dark);
  background-color: rgb(255, 255, 255);
  padding: 16px 76px;
}
header.bg .logo {
  width: 260px;
}

.logo {
  display: block;
  width: 350px;
  transition: width 0.5s;
  max-width: 55vw;
}
.logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.fake {
  min-width: 86px;
}

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

#enquire {
  padding: var(--xl) 0;
}

#enquire {
  background-color: var(--light);
  position: relative;
}

.register {
  max-width: 640px;
  margin: auto;
  padding-top: 95px;
}

input:not([type=submit]),
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  color: inherit;
  border: none;
  font-family: inherit;
  font-size: 13.33px;
  line-height: 1.3;
  font-family: "Gotham";
  padding: 0 0 15px 0;
  border-bottom: 1px solid #CCCCCC;
  resize: none;
  display: block;
  width: 100%;
  text-align: center;
}

.vn input:not([type=submit]),
textarea, .privacy,
select {
  font-family: "Open Sans", sans-serif;
}

select {
  -moz-text-align-last: center;
       text-align-last: center;
  background-position: 100% top;
  background-repeat: no-repeat;
  background-image: url("../images/buttons/arrow.svg");
}

.form-row {
  position: relative;
  padding-bottom: 35px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--dark);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--dark) !important;
}

option {
  color: var(--dark);
  background-color: var(--light);
}

.b_submit {
  margin: 15px auto 59px auto;
  background-color: #fff;
  color: var(--dark);
  width: 100%;
  padding: 20px;
  font-size: 16px;
  border: none;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 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;
}

.privacy {
  font-family: "Gotham";
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
}

.vn .privacy {
  font-family: "Open Sans", sans-serif;
}

.parsley-errors-list {
  list-style: none;
  font-size: 10px;
  color: red;
  position: absolute;
  bottom: 16px;
  text-align: center;
  width: 100%;
}

li {
  list-style: none;
}

.token-input-dropdown-project {
  background-color: var(--dark);
}

.token-input-token-project {
  display: flex;
  gap: 2px;
}

.check-holder {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.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: 18px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

.check-holder label:before {
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid currentColor;
  content: "";
  display: block;
}

.check-holder label:after {
  position: absolute;
  left: 2px;
  width: 6px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 5px;
}

.other-holder {
  width: 100%;
}

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

.d-slider .slick-list {
  transform: translateX(-10vw) !important;
}

.slick-slider div {
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.dq-slider {
  width: 45vw;
  margin: auto;
}

.d-slider .slick-track {
  display: flex;
  gap: 80px;
  align-items: center;
}

.slick-current .q-slide .caption {
  opacity: 1;
}
.slick-current .q-slide .to-scale {
  transform: scale(1);
}

.q-slide .caption {
  transition: opacity 0.5s;
  opacity: 0;
}
.q-slide .to-scale {
  transition: transform 0.5s;
  transform: scale(0.8);
}
.q-slide.active .to-scale {
  transform: scale(1);
}

.q-slide {
  width: 42vw;
}

.sq-slider {
  width: calc(100% + 20px);
}

.caption {
  padding: 50px 0 0 0;
}

.lq-slider {
  width: calc(100% + 40px);
  transform: translateX(-20px);
}

.slick-list {
  position: relative;
  display: block;
  overflow: initial;
  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;
  width: 100%;
}

.slick-slide .h-full img {
  width: 50%;
}

.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 {
  position: absolute;
  bottom: -60px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  z-index: 3;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  background-image: url("../images/buttons/next.svg");
  background-size: 12px 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow.slick-prev {
  right: 62px;
  background-image: url("../images/buttons/prev.svg");
}

.pad-rl {
  padding: 0 20px;
}

.slick-dots {
  background: #CCCCCC;
  width: -moz-max-content;
  width: max-content;
  margin: var(--xl) auto 0 auto;
  position: relative;
  display: flex;
  height: 1px;
  font-size: 0;
  width: 50vw;
}
.slick-dots li {
  flex-basis: 100%;
  position: relative;
  height: 100%;
}
.slick-dots li.slick-active button:after {
  background-color: #000;
}
.slick-dots button {
  height: 30px;
  font-size: 0;
  border: none;
  margin-top: -15px;
  position: relative;
  width: 100%;
}
.slick-dots button:after {
  position: absolute;
  top: 15px;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
}

@media screen and (max-width: 1000px) {
  :root {
    --c-gap: 50px ;
  }
  header {
    padding: 13px var(--gap);
  }
  header button {
    font-size: 18px;
  }
  .w650 {
    width: 100%;
    max-width: 650px;
  }
  .w760 {
    width: calc(100% - 4vw);
  }
  .sq-slider {
    transform: translateX(-10px);
  }
  .pad-rl {
    padding: 0 10px;
  }
  .dq-slider {
    width: calc(100% - 40px);
    transform: none;
    margin: auto;
  }
  .member,
  .disclaimer {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --l: 30px;
    --xl: 60px;
    --m: 40px;
    --gap: 15px;
    --header-height: 55px;
  }
  body {
    font-size: 14px;
  }
  body.vn {
    font-size: 13px;
  }
  #lan {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    color: var(--dark);
    z-index: 5;
    height: 40px;
    justify-content: center;
    align-items: center;
  }
  .logo {
    width: 190px;
  }
  .fake {
    display: none;
  }
  header.bg {
    padding: 12px 25px;
  }
  header.bg .logo {
    width: 145px;
  }
  header {
    font-size: 13px;
    justify-content: center !important;
  }
  .full-height {
    height: calc(100vh - 40px);
    height: calc(100svh - 40px);
  }
  .d-slider .slick-track {
    gap: 40px;
  }
  .has-befor.pbl,
  .has-after.pbl {
    padding-bottom: 60px;
  }
  .d-slider .slick-list {
    transform: translateX(0) !important;
  }
  .w21 {
    width: 75vw !important;
  }
  .w15 {
    width: 45vw !important;
  }
  .w17 {
    width: 52vw !important;
  }
  .grid_4 {
    width: 100%;
  }
  .mb70 {
    margin-bottom: 40px;
  }
  .middle {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: var(--gap);
    transform: translate(0%, -50%);
    width: 160px;
  }
  h1,
  h2 {
    font-size: 22px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 13px;
  }
  footer .grid_4 {
    margin-bottom: 15px;
  }
  .privacy {
    font-size: 13px;
  }
  input:not([type=submit]),
  textarea,
  select {
    font-size: 12px;
  }
  .register {
    padding-top: 60px;
  }
  .title {
    font-size: 10px;
    margin-bottom: 1.8em;
  }
  .mob {
    display: block !important;
  }
  .mb10m {
    margin-bottom: 15px;
  }
  .desk {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */