@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

@font-face {
  font-family : "UTM Yen Tu";
  src         : url("../fonts/UTMYenTu.eot");
  src         : url("../fonts/UTMYenTu.eot?#iefix") format("embedded-opentype"), url("../fonts/UTMYenTu.woff2") format("woff2"), url("../fonts/UTMYenTu.woff") format("woff"), url("../fonts/UTMYenTu.ttf") format("truetype"), url("../fonts/UTMYenTu.svg#UTMYenTu") format("svg");
  font-weight : normal;
  font-style  : normal;
  font-display: swap;
}

:root {
  --primary-color: #e43e30;
  --font-yentu   : "UTM Yen Tu";
}

html,
body {
  overscroll-behavior: none;
  /* Chặn mọi hành vi mặc định khi kéo quá */
  touch-action       : none;
  /* Ngăn tương tác kéo trên toàn bộ trang */
}

body {
  overflow   : hidden;
  position   : relative;
  font-size  : 13px;
  line-height: 1.5;
  width      : 100vw;
  display    : block;
  font-family: "Montserrat", sans-serif;
}

.background {
  width         : 100vw;
  height        : 100vh;
  position      : fixed;
  z-index       : -1;
  pointer-events: none;
}

.background .--logo {
  top      : 12%;
  position : absolute;
  left     : 0;
  right    : 0;
  margin   : auto;
  width    : -moz-max-content;
  width    : max-content;
  animation: raiseUp-logo 3.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.background .--sun {
  top      : 20%;
  position : absolute;
  right    : 8%;
  width    : -moz-max-content;
  width    : max-content;
  animation: raiseUp-sun 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.background .--landscape {
  bottom  : 30%;
  position: absolute;
  left    : 0;
  right   : 0;
  margin  : auto;
  width   : 100%;
  height  : 90px;
}

.background .--landscape .--layer1 {
  position: absolute;
  bottom  : -9%;
  z-index : 4;
  width   : 100%;
  height  : 20%;
}

.background .--landscape .--layer1 .--left {
  transform-origin: top left;
  animation       : slideInLeft 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.background .--landscape .--layer1 .--right {
  right           : 0;
  left            : initial;
  transform-origin: top right;
  animation       : slideInRight 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@media (max-width: 769px) {
  .background .--landscape .--layer1 {
    bottom: -6%;
  }

  .background .--landscape .--layer1 .--left {
    left: -20%;
  }

  .background .--landscape .--layer1 .--right {
    right: -60%;
  }
}

.background .--landscape .--layer2 {
  position        : absolute;
  z-index         : 3;
  width           : 100%;
  height          : 80%;
  bottom          : 0;
  transform-origin: top left;
  animation       : slideInParallax 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay : 0.2s;
}

.background .--landscape .--layer3 {
  position        : absolute;
  z-index         : 2;
  width           : 100%;
  bottom          : 6%;
  height          : 80%;
  transform-origin: top right;
  animation       : slideInParallax 3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay : 0.4s;
}

.background .--landscape .--layer4 {
  position        : absolute;
  z-index         : 1;
  width           : 100%;
  bottom          : 4%;
  height          : 80%;
  transform-origin: top right;
  animation       : slideInParallax 3.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay : 0.6s;
}

.background .--landscape::after {
  content   : "";
  width     : 100%;
  height    : 240px;
  background: linear-gradient(180deg, rgba(228, 62, 48, 0.05), #fff);
  display   : block;
  position  : absolute;
  top       : 100%;
}

.background .--landscape svg {
  position: absolute;
  bottom  : 0;
  left    : 0;
  height  : 100%;
  width   : -moz-max-content;
  width   : max-content;
}

@media (max-width: 640px) {
  .background .--logo {
    top: 10%;
  }

  .background .--logo svg {
    width: 200px;
  }

  .background .--landscape {
    bottom: 28%;
  }

  .background .--sun {
    top  : 20%;
    right: -10%;
  }

  .background .--sun svg {
    width: 120px;
  }
}

@keyframes doorEntrance {
  from {
    top: 100%;
  }

  to {
    top: 0;
  }
}

@keyframes raiseUp-logo {
  from {
    transform: translateY(42vh);
    opacity  : 0;
  }

  to {
    transform: translateY(0);
    opacity  : 1;
  }
}

@keyframes raiseUp-sun {
  0% {
    transform: translateY(32vh);
    opacity  : 0;
  }

  25% {
    transform: translateY(32vh);
    opacity  : 0;
  }

  100% {
    transform: translateY(0);
    opacity  : 1;
  }
}

@keyframes maskPulse {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(0.5);
  }
}

.entrance {
  position       : fixed;
  height         : -moz-max-content;
  height         : max-content;
  z-index        : 100;
  pointer-events : none;
  top            : 64%;
  left           : 50%;
  right          : 0;
  margin         : auto;
  transform      : translate(-50%, -28.7%);
  width          : 100%;
  display        : flex;
  align-items    : center;
  justify-content: center;
  flex-flow      : column;
}

@media (max-width: 769px) {
  .entrance {
    top      : 56%;
    transform: translate(-50%, -136.5px);
  }
}

.ModalDistributor {
  position      : fixed;
  top           : 50%;
  left          : 50%;
  width         : 500px;
  opacity       : 0;
  pointer-events: none;
  z-index       : 101;
  background    : #e43e30;
  color         : #fff;
  padding       : 24px;
  transform     : translate(-50%, -50%) scale(0);
  transition    : all 0.3s ease-in-out;
}

.ModalDistributor .--note {
  font-size     : 16px;
  font-weight   : bold;
  text-transform: uppercase;
}

.ModalDistributor .--close {
  position : absolute;
  top      : 12px;
  right    : 12px;
  cursor   : pointer;
  font-size: 20px;
}

.ModalDistributor .--name {
  text-transform: uppercase;
  font-size     : 20px;
}

.ModalDistributor h5 {
  margin-bottom: 0;
}

.ModalDistributor p {
  font-size     : 14px;
  margin-bottom : 0px;
  text-transform: uppercase;
}

.ModalDistributor article {
  font-size : 16px;
  margin-top: 16px;
}

.ModalDistributor.active {
  opacity       : 1;
  pointer-events: auto;
  display       : flex;
  flex-flow     : column;
  transform     : translate(-50%, -50%) scale(1);
}

@media (max-width: 769px) {
  .ModalDistributor {
    width: calc(100% - 32px);
  }
}

.bgDark {
  position      : fixed;
  top           : 0;
  left          : 0;
  width         : 100vw;
  height        : 100vh;
  background    : rgba(0, 0, 0, 0.5);
  z-index       : 100;
  opacity       : 0;
  pointer-events: none;
}

.bgDark.active {
  opacity       : 1;
  pointer-events: auto;
}

.activate {
  position      : absolute;
  top           : 20px;
  left          : 50%;
  transform     : translateX(-50%);
  z-index       : 100;
  pointer-events: auto;
}

.doorWrapper {
  overflow: hidden;
  overflow: hidden;
  width   : 228px;
  height  : 320px;
}

.doorWrapper .--door {
  position: relative;
  width   : 80px;
  height  : 273px;
  overflow: visible;
  top     : 47px;
  left    : 65px;
}

.doorWrapper .--door svg {
  position : absolute;
  animation: doorEntrance 1.5s ease-out forwards;
  transform: translate(-65px, -47px);
}

.doorWrapper .--shadow {
  position: absolute;
  left    : -68px;
  top     : 99%;
}

.doorWrapper .--mask {
  position: absolute;
  top     : 46px;
  left    : 68px;
}

.doorWrapper .--mask svg {
  animation       : maskPulse 3s ease-in-out infinite;
  transform-origin: center;
  fill            : rgba(228, 62, 48, 0.3);
}

main {
  top              : 0;
  left             : 0;
  width            : 100vw;
  height           : 100vh;
  position         : fixed;
  z-index          : 10;
  opacity          : 0;
  -webkit-clip-path: polygon(calc(50% - 48px) calc(64% - 136.5px), calc(50% + 34px) calc(64% - 136.5px), calc(50% + 34px) calc(64% + 135.5px), calc(50% - 48px) calc(64% + 135.5px));
  clip-path        : polygon(calc(50% - 48px) calc(64% - 136.5px), calc(50% + 34px) calc(64% - 136.5px), calc(50% + 34px) calc(64% + 135.5px), calc(50% - 48px) calc(64% + 135.5px));
}

@keyframes fadeInChar {
  100% {
    opacity  : 1;
    transform: translateY(0);
  }
}

main .tagline {
  color      : #e43e30;
  font-size  : 40px;
  font-weight: 800;
  text-align : center;
  position   : absolute;
  z-index    : 1000;
  top        : 16%;
  left       : 50%;
  transform  : translateX(-50%);
  width      : -moz-max-content;
  width      : max-content;
  font-family: "Cormorant Garamond", serif;
  font-style : italic;
  font-weight: 300;
}

main .tagline.active .char {
  transform: none;
  opacity  : 1;
}

main .tagline .char {
  display   : inline-block;
  transform : translate(-20px, 20px);
  opacity   : 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 769px) {
  main .tagline {
    top: 80px;
  }

  main .tagline.active {
    visibility: unset !important;
  }

  main .tagline .char {
    transform: none;
  }
}

main .section {
  height             : 100vh;
  background-image   : linear-gradient(180deg, #fbf1f0, #fff);
  position           : relative;
  background-size    : cover;
  background-position: center;
}

main .section .slide {
  width              : 100%;
  height             : 100%;
  position           : relative;
  background-size    : cover;
  background-position: center;
}

main .section .--bg {
  width              : 100vw;
  height             : 100vh;
  background-size    : cover;
  background-position: center;
}

main .section .--content h5 {
  font-size     : 14px;
  letter-spacing: 0.1em;
  margin-bottom : 4px;
}

main .section .--content p {
  font-size: 11px;
}

@media (max-width: 769px) {
  main {
    padding-top      : 54px;
    top              : unset;
    left             : unset;
    position         : relative;
    overflow-y       : auto;
    overflow-x       : hidden;
    -webkit-clip-path: polygon(calc(50% - 48px) calc(56.1% - 136.5px), calc(50% + 34px) calc(56.1% - 136.5px), calc(50% + 34px) calc(56.15% + 136.5px), calc(50% - 48px) calc(56.15% + 136.5px));
    clip-path        : polygon(calc(50% - 48px) calc(56.1% - 136.5px), calc(50% + 34px) calc(56.1% - 136.5px), calc(50% + 34px) calc(56.15% + 136.5px), calc(50% - 48px) calc(56.15% + 136.5px));
  }

  @supports (-webkit-touch-callout: none) {
    main {
      padding-bottom: 120px;
    }
  }

  @supports not (-webkit-touch-callout: none) {
    main {
      padding-bottom: 47px;
    }
  }

  main .section {
    height   : auto;
    display  : flex;
    flex-flow: column;
    width    : 100%;
  }

  main .section .slide {
    height: auto;
    width : 100%;
  }

  main .section .--bg {
    width              : 100%;
    height             : 100%;
    background-size    : cover;
    background-position: center;
  }

  main .slide {
    min-height: 200px;
  }
}

.sectionTitle {
  font-size     : 18px;
  text-transform: uppercase;
  margin-bottom : 2rem;
  font-weight   : 600;
  letter-spacing: 4px;
  opacity       : 0;
  width         : -moz-max-content;
  width         : max-content;
}

.sectionTitle .char {
  display    : inline-block;
  will-change: transform, opacity, filter;
  opacity    : 0;
}

@media (max-width: 769px) {
  .sectionTitle .char {
    filter   : blur(10px);
    opacity  : 0;
    transform: translateY(50px);
  }
}

#s2 .fp-slidesNav {
  display: none;
}

#s2 .--slide-2 {
  background-color: var(--primary-color);
  position        : relative;
  z-index         : 2;
}

#s2 .--slide-2 .--content {
  top           : 50%;
  transform     : translate(-50%, -50%);
  bottom        : unset;
  padding-bottom: 70px;
}

@media (max-width: 769px) {
  #s2 .--slide-1 {
    height             : 600px;
    position           : relative;
    background-repeat  : no-repeat;
    background-position: 23%;
  }

  #s2 .--slide-1::after {
    content       : "";
    position      : absolute;
    top           : 0;
    left          : 0;
    width         : 100%;
    height        : 100%;
    background    : linear-gradient(180deg, rgba(39, 66, 55, 0) 53.19%, rgba(39, 66, 55, 0.5) 67.77%, #274237 100%);
    pointer-events: none;
  }

  #s2 .--slide-1 .--content article {
    opacity: 0;
  }

  #s2 .--slide-1 .--content article.hidden {
    opacity: 0 !important;
  }

  #s2 .--slide-2 .--content {
    bottom   : 0;
    position : relative;
    left     : unset;
    transform: none;
    padding  : 48px 0;
  }
}

.investerListing {
  gap       : 60px;
  margin-top: 32px;
}

.investerItem {
  width      : 240px;
  display    : flex;
  flex-flow  : column;
  align-items: center;
}

.investerItem .--img {
  width  : 160px;
  display: flex;
  height : auto;
}

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

@media (min-width: 1024px) {

  #s2 .--slide-1::after,
  #s3 .--slide-1::after {
    content       : "";
    position      : absolute;
    top           : 0;
    left          : 0;
    width         : 100%;
    height        : 100%;
    pointer-events: none;
    background    : linear-gradient(180deg, rgba(39, 66, 55, 0) 53.19%, rgba(39, 66, 55, 0.5) 67.77%, #274237 100%);
  }
}

#s2 .--content,
#s3 .--content {
  position   : absolute;
  z-index    : 1;
  color      : white;
  max-width  : 660px;
  width      : 100%;
  margin     : 0 auto;
  bottom     : 12%;
  left       : 50%;
  text-align : center;
  transform  : translate(-50%, 0);
  display    : flex;
  flex-flow  : column;
  align-items: center;
}

@media (max-width: 769px) {

  #s2 .--content,
  #s3 .--content {
    bottom   : 48px;
    transform: none;
    left     : unset;
    padding  : 0;
  }
}

#s3 .fp-slidesNav {
  bottom : 12%;
  display: none;
  /* Ẩn mặc định */
}

#s3 .fp-slidesNav ul {
  width                  : -moz-max-content;
  width                  : max-content;
  margin                 : 0 auto;
  display                : flex;
  flex-direction         : row;
  justify-content        : center;
  align-items            : center;
  padding                : 0 12px;
  gap                    : 16px;
  height                 : 24px;
  background             : rgba(255, 255, 255, 0.1);
  border                 : 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter        : blur(2px);
  border-radius          : 36px;
}

#s3 .fp-slidesNav li {
  width : 8px;
  height: 8px;
  margin: 0;
}

#s3 .fp-slidesNav li a {
  display: block;
  width  : 100%;
  height : 100%;
}

#s3 .fp-slidesNav li a span {
  width           : 100%;
  height          : 100%;
  display         : block;
  background-color: #fff;
  margin          : 0;
  transform       : none;
  position        : relative;
  left            : 0;
  top             : 0;
}

#s3 .fp-slidesNav li a span:first-child {
  display: none;
}

#s3 .fp-slidesNav li a.active span {
  background: #e43e30;
  transform : scale(1.5);
}

@media (max-width: 769px) {
  #s3 article {
    margin-top: 0;
  }

  #s3 .--slide-1 {
    padding : 60px 16px;
    position: relative;
  }

  #s3 .slide:nth-child(n+2) {
    height       : 120px;
    overflow     : hidden;
    margin-bottom: 4px;
  }

  #s3 .slide:nth-child(n+2) .--bg {
    height: 280px;
  }

  #s3 .--content {
    padding  : 0;
    max-width: 100%;
    transform: none;
    z-index  : 1;
    position : relative;
    bottom   : unset;
    left     : unset;
    color    : initial;
  }
}

#s4 .--content {
  width          : 52%;
  max-width      : 100%;
  left           : 4%;
  position       : absolute;
  top            : calc(50% - 36px);
  transform      : translate(0, -50%);
  text-align     : center;
  color          : var(--primary-color);
  display        : flex;
  flex-flow      : column;
  align-items    : center;
  justify-content: center;
}

#s4 .partnerListing {
  display        : flex;
  flex-wrap      : wrap;
  gap            : 18px;
  justify-content: center;
}

#s4 .partnerItem {
  width         : calc(33.3333333333% - 12px);
  display       : flex;
  flex-flow     : column;
  align-items   : center;
  text-transform: uppercase;
}

#s4 .partnerItem:last-child {
  width: -moz-max-content;
  width: max-content;
}

#s4 .partnerItem:last-child img {
  opacity: 0.7;
}

#s4 .partnerItem h5 {
  font-size: 12px !important;
}

#s4 .partnerItem p,
#s4 .partnerItem h5 {
  width    : -moz-max-content;
  width    : max-content;
  max-width: 100%;
}

#s4 .partnerItem .--img {
  width       : 100px;
  aspect-ratio: 1;
}

#s4 .partnerItem .--img img {
  width             : 100%;
  height            : 100%;
  -o-object-fit     : contain;
  object-fit        : contain;
  -o-object-position: center;
  object-position   : center;
  filter            : grayscale(1);
}

@media (max-width: 769px) {
  #s4 .--content {
    position : relative;
    left     : unset;
    top      : unset;
    transform: none;
    padding  : 48px 16px;
    width    : 100%;
  }

  #s4 .partnerItem p,
  #s4 .partnerItem h5 {
    font-size: 10px !important;
  }

  #s4 .partnerListing {
    gap: 16px;
  }

  #s4 .partnerItem {
    width: calc(50% - 8px);
  }

  #s4 .partnerItem h5,
  #s4 .partnerItem p {
    width: 100%;
  }
}

#s5 .--content {
  position       : absolute;
  top            : 48%;
  left           : 4%;
  transform      : translate(0, -50%);
  text-align     : center;
  color          : var(--primary-color);
  width          : 56%;
  display        : flex;
  flex-flow      : column;
  align-items    : center;
  justify-content: center;
}

@media (max-height: 750px) and (min-width: 1024px) {
  #s5 .distributorsListing {
    gap: 0 60px;
  }
}

@media (max-width: 769px) {
  #s5 .--content {
    position : relative;
    left     : unset;
    top      : unset;
    transform: none;
    padding  : 48px 1rem 48px;
    width    : 100%;
  }

  #s5 .sectionTitle {
    margin-bottom: 3rem;
  }
}

.distributorsListing {
  display              : grid;
  grid-template-columns: repeat(2, 1fr);
  gap                  : 20px 40px;
}

@media (max-width: 769px) {
  .distributorsListing {
    -moz-column-gap: 12px;
    column-gap     : 12px;
    row-gap        : 20px;
  }
}

.distributorItem {
  text-transform: uppercase;
  display       : flex;
  flex-flow     : column;
  align-items   : center;
}

.distributorItem h5 {
  font-size: 13px !important;
}

.distributorItem .--img {
  width        : 60%;
  max-width    : 220px;
  height       : -moz-max-content;
  height       : max-content;
  margin-bottom: 1rem;
  display      : flex;
  filter       : grayscale(1);
}

.distributorItem .--img h5,
.distributorItem .--img p {
  width    : -moz-max-content;
  width    : max-content;
  max-width: 100%;
}

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

@media (max-width: 1024px) {
  .distributorItem .--img {
    max-width: 120px;
  }
}

@media (max-width: 769px) {
  .distributorItem h5 {
    font-size: 10px !important;
  }

  .distributorItem .--img {
    max-width: 100%;
    height   : auto;
  }

  .distributorItem .--img img {
    height: auto;
  }
}

@media (max-width: 769px) {
  #s6 .contactContent {
    display    : flex !important;
    padding-top: 48px;
  }
}

.doorMaskWrapper {
  display: none;
}

.doorMask {
  position : fixed;
  top      : 50%;
  left     : 50%;
  transform: translate(-50%, -50%);
  width    : 81px;
  height   : 275px;
  z-index  : -1;
  opacity  : 0;
}

.doorDecor .--wrapper {
  position               : absolute;
  top                    : 0;
  left                   : 25%;
  height                 : 100%;
  z-index                : 100;
  pointer-events         : none;
  transition             : all 2.4s ease-out;
  perspective            : 1000px;
  display                : flex;
  gap                    : 80px;
  height                 : 100%;
  align-items            : center;
  transform-style        : preserve-3d;
  will-change            : transform;
  -webkit-transform-style: preserve-3d;
}

.doorDecor .--hinge {
  background                 : #e43e30;
  position                   : absolute;
  top                        : 0;
  right                      : 0;
  height                     : 100%;
  z-index                    : 100;
  width                      : 300px;
  transform-origin           : left;
  transition                 : all 1.5s ease-in-out;
  transform-style            : preserve-3d;
  will-change                : transform;
  -webkit-transform-style    : preserve-3d;
  -webkit-backface-visibility: hidden;
  -webkit-perspective        : 1000;
}

@supports (-webkit-touch-callout: none) {
  .doorDecor .--hinge {
    transform        : translateX(300px) rotateY(90deg);
    -webkit-transform: translateX(100%) rotateY(90deg) translateZ(0);
  }
}

@supports not (-webkit-touch-callout: none) {
  .doorDecor .--hinge {
    transform        : translateX(300px);
    -webkit-transform: translateX(100%);
  }
}

@media (min-width: 2500px) {
  .doorDecor .--hinge {
    width: 550px;
  }

  @supports (-webkit-touch-callout: none) {
    .doorDecor .--hinge {
      transform: translateX(550px) rotateY(90deg);
    }
  }

  @supports not (-webkit-touch-callout: none) {
    .doorDecor .--hinge {
      transform: translateX(550px);
    }
  }
}

.doorDecor img {
  opacity   : 0;
  transition: opacity 0.3s ease-out 0s;
}

.doorDecor img:nth-child(3) {
  height          : 130%;
  transform       : translateX(15%);
  transition      : all 1s ease-out;
  transform-origin: top left;
  transform-style : preserve-3d;
  position        : relative;
}

.doorDecor img:nth-child(3)::after {
  content         : "";
  position        : absolute;
  left            : 50%;
  top             : 0;
  width           : 100px;
  height          : 100%;
  background      : #274237;
  transform       : rotateY(90deg) translateX(-50%);
  transform-origin: left center;
}

.doorDecor img:nth-child(2) {
  height    : 65%;
  transform : translateY(100%);
  margin-top: auto;
}

.doorDecor img:nth-child(1) {
  height    : 42%;
  transform : translateY(100%);
  margin-top: auto;
}

@media screen and (min-width: 1300px) and (max-width: 1400px) and (min-height: 700px) and (max-height: 800px) {
  .doorDecor img:nth-child(3) {
    height: 110%;
  }
}

@media (min-width: 1920px) {
  .doorDecor img:nth-child(3) {
    height: 110%;
  }
}

@media (min-width: 2500px) and (min-height: 1600px) {
  .doorDecor img:nth-child(3) {
    height: 100%;
  }
}

@media (min-width: 1280px) and (max-width: 1300px) and (min-height: 750px) and (max-height: 850px) {
  .doorDecor img:nth-child(3) {
    height: 105%;
  }
}

@media (max-height: 700px) {
  .doorDecor img:nth-child(3) {
    height: 135%;
  }
}

@media (max-width: 769px) {
  .doorDecor {
    display: none !important;
  }
}

@supports (-webkit-touch-callout: none) {

  .doorDecor .--wrapper,
  .doorDecor .--hinge {
    transform              : translateZ(0);
    -webkit-transform-style: preserve-3d;
    -webkit-transform      : translateZ(0);
  }
}

.navbar {
  background-color: var(--primary-color) !important;
  padding         : 0.5rem 1rem;
  overflow        : hidden;
}

.navbar .container-fluid {
  padding: 0;
}

.navbar .nav {
  width                     : 100%;
  display                   : flex;
  flex-wrap                 : nowrap;
  overflow-x                : auto;
  scroll-behavior           : smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width           : none;
  -ms-overflow-style        : none;
  padding                   : 0 1rem;
}

.navbar .nav::-webkit-scrollbar {
  display: none;
}

.navbar .nav .nav-item {
  flex      : 0 0 33.333%;
  text-align: center;
}

.navbar .nav .nav-item .nav-link {
  color         : rgba(255, 255, 255, 0.7);
  font-size     : 10px;
  text-transform: uppercase;
  padding       : 0.5rem 0;
  transition    : color 0.3s ease;
  white-space   : nowrap;
}

.navbar .nav .nav-item .nav-link.active {
  color      : #fff;
  background : none;
  font-weight: 600;
  position   : relative;
}

.navbar .nav .nav-item .nav-link.active::after {
  content      : "";
  position     : absolute;
  bottom       : 0;
  left         : 50%;
  transform    : translateX(-50%);
  width        : 6px;
  height       : 6px;
  background   : #fff;
  border-radius: 50%;
}

.navbar .progress {
  position     : absolute;
  bottom       : 10px;
  left         : 0;
  width        : 100%;
  height       : 2px;
  background   : rgba(255, 255, 255, 0.2);
  border-radius: 0;
  opacity      : 0;
}

.navbar .progress .progress-bar {
  background-color: #fff;
  transition      : width 0.3s ease;
}

.menuMobi {
  display: none !important;
}

.contactContent {
  color         : #fff;
  position      : absolute;
  z-index       : 100;
  left          : 3rem;
  top           : 50%;
  width         : 100%;
  max-width     : 240px;
  opacity       : 0;
  transition    : all 0.3s ease-out 0s;
  transform     : translateY(-80%);
  display       : flex !important;
  flex-flow     : column;
  gap           : 32px;
  pointer-events: none;
}

.contactContent .sectionTitle,
.contactContent p {
  margin-bottom: 0;
}

.contactContent .contactItem {
  display        : flex;
  flex-flow      : column;
  color          : #fff;
  text-decoration: none;
}

.contactContent .contactItem:hover {
  color: #fff;
}

@media (max-width: 769px) {
  .contactContent {
    position      : relative;
    transform     : none;
    left          : unset;
    top           : unset;
    max-width     : 100%;
    opacity       : 1;
    z-index       : 1;
    padding       : 0 1rem 48px;
    color         : var(--primary-color);
    width         : 100%;
    gap           : 24px;
    pointer-events: auto;
    display       : none !important;
  }

  .contactContent .contactItem {
    color: var(--primary-color);
  }

  .contactContent .contactItem:hover {
    color: var(--primary-color);
  }
}

.fp-viewing-3 .doorDecor img:nth-child(3),
.fp-viewing-4 .doorDecor img:nth-child(3) {
  opacity  : 1;
  transform: none;
}

.fp-viewing-5 .doorDecor .--wrapper {
  transform      : rotateY(180deg);
  transform-style: preserve-3d;
  left           : -46%;
  gap            : 120px;
}

.fp-viewing-5 .doorDecor .--hinge {
  transform: translateX(-100vw);
}

@supports (-webkit-touch-callout: none) {
  .fp-viewing-5 .doorDecor .--hinge {
    transition: all 2s ease-in-out;
  }
}

@supports not (-webkit-touch-callout: none) {
  .fp-viewing-5 .doorDecor .--hinge {
    transition: all 1.8s ease-in-out;
  }
}

.fp-viewing-5 .doorDecor img:nth-child(3) {
  opacity  : 1;
  transform: translateX(0) scaleX(0.7);
}

.fp-viewing-5 .doorDecor img:nth-child(2) {
  opacity   : 0.5;
  transform : none;
  transition: all 0.8s cubic-bezier(0.08, 0.96, 0.54, 1) 1s;
}

.fp-viewing-5 .doorDecor img:nth-child(1) {
  opacity   : 0.2;
  transform : none;
  transition: all 0.8s cubic-bezier(0.08, 0.96, 0.54, 1) 2s;
}

.fp-viewing-5 .contactContent {
  opacity         : 1;
  transform       : translateY(-50%);
  transition-delay: 1s;
  pointer-events  : auto;
}

.fp-section {
  transition: opacity 0.8s ease-in-out;
  opacity   : 1;
}

.fp-section.fp-completely {
  opacity: 1;
}

header {
  position        : fixed;
  bottom          : 0;
  left            : 0;
  width           : 100vw;
  height          : 70px;
  z-index         : 999;
  background-color: #e43e30;
  display         : flex;
  align-items     : center;
  gap             : 90px;
  padding         : 0 30px;
  transform       : translateY(100%);
  transition      : all 0.3s ease-out 0s;
}

header.active {
  transform: translateY(0);
}

header .logo {
  overflow: hidden;
  width   : 180px;
}

header .logo svg {
  height    : 32px;
  transition: all 0.75s ease-in-out;
  transform : translate(100%, 0);
}

header .logo svg.active {
  transform: none;
}

header .fp-slidesNav {
  text-align: center;
  bottom    : 100px !important;
}

header .fp-slidesNav ul {
  display        : flex;
  gap            : 20px;
  justify-content: center;
  margin         : 0;
}

header .fp-slidesNav ul li {
  width : auto;
  height: auto;
  margin: 0;
}

header .fp-slidesNav ul li a span {
  background: white;
  width     : 8px !important;
  height    : 8px !important;
}

header .fp-slidesNav ul li.active a.active span {
  background: #e43e30;
}

header .menu {
  display    : flex;
  align-items: center;
  position   : relative;
  flex-grow  : 1;
  transition : all 0.75s ease-in-out;
  transform  : translate(50%, 0);
  opacity    : 0;
}

header .menu.active {
  transform: none;
  opacity  : 1;
}

header .menu #fp-nav {
  position : relative;
  top      : auto;
  right    : auto;
  margin   : 0;
  width    : 100%;
  transform: none;
}

header .menu #fp-nav ul {
  display        : flex;
  margin         : 0;
  justify-content: space-between;
  width          : 100%;
}

header .menu #fp-nav ul::after {
  content   : "";
  position  : absolute;
  bottom    : 2px;
  background: linear-gradient(270deg, #e43e30 0%, rgba(255, 255, 255, 0) 100%);
  width     : 18%;
  height    : 4px;
  right     : -4%;
}

header .menu #fp-nav ul::before {
  content   : "";
  position  : absolute;
  bottom    : 2px;
  background: linear-gradient(90deg, #e43e30 0%, rgba(255, 255, 255, 0) 100%);
  width     : 10%;
  height    : 4px;
  left      : -4%;
  z-index   : 1;
}

header .menu #fp-nav ul li {
  width : auto;
  height: auto;
  margin: 0;
}

header .menu #fp-nav ul li a {
  display        : flex;
  flex-flow      : column;
  align-items    : center;
  justify-content: center;
  gap            : 4px;
  position       : relative;
}

header .menu #fp-nav ul li a.active::after {
  opacity: 1;
}

header .menu #fp-nav ul li a.active span:first-child {
  font-weight: bold;
}

header .menu #fp-nav ul li a.active span:last-child {
  background: #fff;
}

header .menu #fp-nav ul li a span:first-child {
  position      : relative;
  top           : unset;
  left          : unset;
  transform     : unset;
  width         : -moz-max-content;
  width         : max-content;
  height        : auto;
  margin        : 0;
  border-radius : 0;
  overflow      : unset;
  opacity       : 1;
  z-index       : 99;
  font-size     : 12px;
  text-transform: uppercase;
  clip          : unset;
  background    : unset;
  color         : #fff;
  letter-spacing: 0.16em;
}

header .menu #fp-nav ul li a span:last-child {
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease-in-out;
  position  : relative;
  margin    : 0;
  width     : 11px;
  height    : 11px;
  top       : unset;
  left      : unset;
}

header .menu #fp-nav ul li .fp-tooltip {
  display: none !important;
}

header .line {
  position        : absolute;
  height          : 3px;
  background-color: #007bff;
  /* Màu dòng */
  bottom          : 0;
  left            : 0;
  transition      : all 0.3s ease;
  width           : 30px;
}

.fp-viewing-1-1 .toggleLanguage span,
.fp-viewing-3 .toggleLanguage span,
.fp-viewing-4 .toggleLanguage span {
  color: #fff;
}

.fp-viewing-1-1 .soundWave span,
.fp-viewing-3 .soundWave span,
.fp-viewing-4 .soundWave span {
  background: #fff;
}

.fp-viewing-1-1 .topBar svg path,
.fp-viewing-3 .topBar svg path,
.fp-viewing-4 .topBar svg path {
  fill: #fff;
}

.nested-slides {
  position: relative;
  width   : 100%;
  height  : 100%;
  overflow: hidden;
}

.nested-slides .nested-slide {
  position  : absolute;
  width     : 100%;
  height    : 100%;
  opacity   : 0;
  transition: opacity 0.5s ease-in-out;
}

.nested-slides .nested-slide.active {
  opacity: 1;
}

.nested-slides .nested-slide .--content {
  position  : absolute;
  z-index   : 1;
  padding   : 50px;
  color     : white;
  max-width : 800px;
  top       : 50%;
  left      : 50%;
  transform : translate(-50%, -50%);
  text-align: center;
}

.nested-slides .nested-slide .--content h2 {
  font-size    : 3rem;
  margin-bottom: 1rem;
}

.nested-slides .nested-slide .--content p {
  font-size  : 1.2rem;
  line-height: 1.6;
}

.nested-nav {
  position       : absolute;
  bottom         : 50%;
  width          : 100%;
  display        : flex;
  justify-content: space-between;
  padding        : 0 30px;
  z-index        : 2;
  transform      : translateY(50%);
}

.nested-nav button {
  background   : rgba(255, 255, 255, 0.2);
  border       : none;
  color        : white;
  padding      : 15px 25px;
  font-size    : 20px;
  cursor       : pointer;
  border-radius: 5px;
  transition   : background-color 0.3s ease;
}

.nested-nav button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.nested-nav button:active {
  background: rgba(255, 255, 255, 0.4);
}

.topBar {
  position: fixed;
  top     : 0;
  left    : 0;
  width   : 100vw;
  z-index : 9999;
}

@media (max-width: 769px) {
  .topBar {
    background-color: #fff;
  }
}

.toggleLanguage span {
  font-size: 12px;
  color    : var(--primary-color);
}

.toggleLanguage span.active {
  font-weight: 600;
}

.soundToggle {
  width   : 54px;
  height  : 8px;
  position: relative;
}

.soundWave {
  width         : 32px;
  height        : 100%;
  cursor        : pointer;
  z-index       : 999;
  pointer-events: all;
  position      : absolute;
  top           : 0;
  right         : 0;
}

.soundWave.active span {
  animation: bodong 1.5s infinite ease;
}

.soundWave span {
  width     : 2px;
  height    : 4px;
  bottom    : 0px;
  position  : absolute;
  background: #e16d30;
}

.soundWave span:nth-child(1) {
  left           : 0px;
  animation-delay: 0.3s;
}

.soundWave span:nth-child(2) {
  left           : 7px;
  height         : 7px;
  animation-delay: 0.4s;
}

.soundWave span:nth-child(3) {
  left           : 14px;
  height         : 9px;
  animation-delay: 0.6s;
}

.soundWave span:nth-child(4) {
  left           : 21px;
  height         : 11px;
  animation-delay: 0.8s;
}

.soundWave span:nth-child(5) {
  left           : 28px;
  height         : 13px;
  animation-delay: 1s;
}

.soundWave .hideAnm span {
  animation: unset !important;
}

@keyframes bodong {
  0% {
    height    : 5px;
    background: bule;
  }

  30% {
    height    : 15px;
    background: bule;
  }

  60% {
    height    : 20px;
    background: bule;
  }

  80% {
    height    : 15px;
    background: bule;
  }

  100% {
    height    : 5px;
    background: bule;
  }
}

#myAudio {
  opacity       : 0;
  visibility    : hidden;
  position      : absolute;
  pointer-events: none;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity  : 0;
  }

  to {
    transform: translateX(0);
    opacity  : 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity  : 0;
  }

  to {
    transform: translateX(0);
    opacity  : 1;
  }
}

@keyframes slideInParallax {
  from {
    transform: translateX(-120%);
    opacity  : 0;
  }

  to {
    transform: translateX(0);
    opacity  : 1;
  }
}

@media (max-width: 769px) {
  @keyframes slideInParallax {
    from {
      transform: translateX(-120%);
      opacity  : 0;
    }

    to {
      transform: translateX(-80%);
      opacity  : 1;
    }
  }
}

.fp-watermark {
  display   : none !important;
  visibility: hidden !important;
}

@keyframes waveAnimation {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.fp-viewing-6 .doorDecor .--wrapper {
  transform: none;
  left     : 25%;
}

.fp-viewing-6 .doorDecor .--hinge {
  transform: translateX(100%) rotateY(90deg);
}

/*# sourceMappingURL=phase3.css.map */