/*------------------------------------------------------------------
Project:  ComingSoon
Version:  
Last change:  July 8, 2025
Assigned to:  Bach Le
Primary use:  
-------------------------------------------------------------------*/

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins/Poppins-Regular.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-Thin;
  src: url('../fonts/Poppins/Poppins-Thin.ttf'); 
}

@font-face {
  font-family: Poppins-Black;
  src: url('../fonts/Poppins/Poppins-Black.ttf'); 
}

@font-face {
  font-family: Poppins-Medium;
  src: url('../fonts/Poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: PlayfairDisplay-Italic;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Italic.ttf'); 
}

@font-face {
  font-family: PlayfairDisplay-BlackItalic;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-BlackItalic.ttf'); 
}

@font-face {
  font-family: PlayfairDisplay-Bold;
  src: url('../fonts/PlayfairDisplay/PlayfairDisplay-Bold.ttf'); 
}

/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/
.container {
  max-width: min(85%, 1400px);
  margin-left: auto;
  margin-right: auto;
}

/*//////////////////////////////////////////////////////////////////
[ Form ]*/
/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: min(100%, 28rem);
  position: relative;
  background-color: rgba(255,255,255, 0.1);
  height: clamp(2.25rem, 4vw, 3rem);
  padding-right: clamp(3rem, 6vw, 4rem);
  margin: 0 auto;
}

.input100 {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 0.75rem 0 1.25rem;
  background-color: transparent;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #fff;
}

.input100:focus {
  background-color: rgba(255,255,255, 0.12);
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 0;
  padding: 0.25rem 1.25rem 0.25rem 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(3.5rem, 7vw, 4.5rem);
  pointer-events: none;
  font-family: Poppins-Medium;
  color: #c80000;
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
  line-height: 1.4;
  text-align: left;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f071";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  right: clamp(3.75rem, 7.5vw, 4.75rem);
}

.alert-validate:hover::before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 768px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*//////////////////////////////////////////////////////////////////
[ Simple slide100 ]*/
.simpleslide100 {
  display: block;
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
}

.simpleslide100-item {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*==================================================================
[ Color ]*/
.cl0 {color: #fff;}

/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
.s1-txt1 {
  font-family: PlayfairDisplay-Italic;
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
  color: #fff;
  line-height: 1;
}

.s2-txt1 {
  font-family: Poppins-Medium;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #fff;
  line-height: 1.2;
}

/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/
.m1-txt1 {
  font-family: PlayfairDisplay-Italic;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  color: #333;
  line-height: 1.2;
}

.m2-txt1 {
  font-family: Poppins-Regular;
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  color: #cccccc;
  line-height: 1.2;
}

/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
.l1-txt1 {
  font-family: PlayfairDisplay-Bold;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #fff;
  line-height: 1;
}

.l1-txt2 {
  font-family: PlayfairDisplay-BlackItalic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1.1;
}

/*==================================================================
[ Size ]*/
.size1 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.size2 {
  min-width: clamp(5rem, 12vw, 7rem);
  height: clamp(2rem, 4vw, 2.5rem);
}

.size3 {
  width: clamp(1.25rem, 3vw, 1.75rem);
  height: clamp(1.25rem, 3vw, 1.75rem);
}

.size4 {
  width: clamp(2.5rem, 6vw, 3.5rem);
  height: 100%;
}

/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.wsize1 {
  width: clamp(3.5rem, 8vw, 4.5rem);
}

.wsize2 {
  max-width: min(90%, 30rem);
  width: 100%;
}

/*//////////////////////////////////////////////////////////////////
[ Background ]*/
.bg0 {background-color: #fff;}

.bg-img1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*==================================================================
[ Where ]*/
.where1 {
  align-self: flex-start;
}

.where2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  max-width: min(90%, 20rem);
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}

.where2 a:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.where2 a:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.where2 a:nth-child(3) { grid-area: 2 / 1 / 3 / 3; justify-self: center; }

.where3-parent {
  position: relative;
  display: flex;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 2vw, 1rem);
}

.where3 {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
  max-width: min(90%, 40rem);
  text-align: center;
}

/*==================================================================
[ How ]*/
.placeholder0::-webkit-input-placeholder { color: #fff;}
.placeholder0:-moz-placeholder { color: #fff;}
.placeholder0::-moz-placeholder { color: #fff;}
.placeholder0:-ms-input-placeholder { color: #fff;}

.overlay1 {
  position: relative;
  z-index: 1;
}

.overlay1::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
}

.wrappic1 {
  display: block;
  flex-grow: 1;
}

.wrappic1 img {
  max-width: 100%;
}

.how-btn1 {
  padding: 0 0.75rem;
  background-color: #fff;
  border-radius: 1.25rem;
}

.how-btn1:hover {
  background-color: rgba(255,255,255,0.12);
  color: #fff;
}

.how-social {
  color: #fff;
  font-size: clamp(0.875rem, 2vw, 1.25rem);
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.how-social:hover {  
  color: rgba(255,255,255,0.2);
}

/*//////////////////////////////////////////////////////////////////
[ Pseudo ]*/
.focus-in0:focus::-webkit-input-placeholder { color:transparent; }
.focus-in0:focus:-moz-placeholder { color:transparent; }
.focus-in0:focus::-moz-placeholder { color:transparent; }
.focus-in0:focus:-ms-input-placeholder { color:transparent; }

.hov-cl0:hover {color: #fff;}
.hov-bg0:hover {background-color: #fff;}

.hov1:hover {
  background-color: rgba(255,255,255,0.12);
}

/*==================================================================
[ Responsive ]*/
.cd100 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(0.5rem, 1vw, 0.75rem);
  max-width: min(90%, 20rem);
  margin: 0 auto;
}

.cd100 .flex-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: clamp(3rem, 8vw, 4rem);
  max-width: clamp(4.5rem, 12vw, 6rem);
  text-align: center;
}

.cd100 .flex-col:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.cd100 .flex-col:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.cd100 .flex-col:nth-child(3) { grid-area: 2 / 1 / 3 / 2; }
.cd100 .flex-col:nth-child(4) { grid-area: 2 / 2 / 3 / 3; }

@media (min-width: 1920px) {
  .container {
    max-width: min(80%, 1600px);
  }
  .l1-txt2 {
    font-size: clamp(2.25rem, 3.5vw, 3rem);
  }
  .l1-txt1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }
  .cd100 {
    max-width: min(80%, 24rem);
  }
  .cd100 .flex-col {
    min-width: clamp(4rem, 10vw, 5rem);
    max-width: clamp(5rem, 12vw, 7rem);
  }
  .where2 {
    max-width: min(80%, 24rem);
  }
}

@media (max-width: 1200px) {
  .m-0-xl {margin: 0;}
  .m-lr-0-xl {margin-left: 0; margin-right: 0;}
  .m-lr-15-xl {margin-left: 0.75rem; margin-right: 0.75rem;}
  .p-0-xl {padding: 0;}
  .p-lr-0-xl {padding-left: 0; padding-right: 0;}
  .p-lr-15-xl {padding-left: 0.75rem; padding-right: 0.75rem;}
  .w-full-xl {width: 100%;}
}

@media (max-width: 992px) {
  .m-lr-auto-lg {
    margin-right: auto;
    margin-left: auto;
  }
  .m-0-lg {margin: 0;}
  .m-lr-0-lg {margin-left: 0; margin-right: 0;}
  .m-lr-15-lg {margin-left: 0.75rem; margin-right: 0.75rem;}
  .p-0-lg {padding: 0;}
  .p-lr-0-lg {padding-left: 0; padding-right: 0;}
  .p-lr-15-lg {padding-left: 0.75rem; padding-right: 0.75rem;}
  .w-full-lg {width: 100%;}
  .respon1 {
    position: relative;
    left: unset;
    top: unset;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .respon2 {
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .respon3 {
    flex-direction: row;
    justify-content: center;
    padding-top: clamp(1.5rem, 5vw, 2.5rem);
  }
  .respon4 {
    align-items: center;
    margin-right: 0.75rem;
    margin-left: 0.75rem;
  }
  .respon5 {
    padding-top: clamp(1rem, 3vw, 1.5rem);
    padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
    flex-direction: row;
    justify-content: center;
  }
  .respon6 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .m-0-md {margin: 0;}
  .m-lr-0-md {margin-left: 0; margin-right: 0;}
  .m-lr-15-md {margin-left: 0.75rem; margin-right: 0.75rem;}
  .p-0-md {padding: 0;}
  .p-lr-0-md {padding-left: 0; padding-right: 0;}
  .p-lr-15-md {padding-left: 0.75rem; padding-right: 0.75rem;}
  .w-full-md {width: 100%;}
  .respon8 {
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  }
}

@media (max-width: 640px) {
  .cd100 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: clamp(0.25rem, 1vw, 0.5rem);
    max-width: 100%;
  }
  .cd100 .flex-col {
    max-width: 100%;
    min-width: 0;
  }
  .where2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.25rem, 1vw, 0.5rem);
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .m-0-sm {margin: 0;}
  .m-lr-0-sm {margin-left: 0; margin-right: 0;}
  .m-lr-15-sm {margin-left: 0.75rem; margin-right: 0.75rem;}
  .p-0-sm {padding: 0;}
  .p-lr-0-sm {padding-left: 0; padding-right: 0;}
  .p-lr-15-sm {padding-left: 0.75rem; padding-right: 0.75rem;}
  .w-full-sm {width: 100%;}
  .respon7 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
}

@media (max-width: 320px) {
  .l1-txt2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
  .l1-txt1 {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
  }
  .m2-txt1 {
    font-size: clamp(0.625rem, 2vw, 0.875rem);
  }
  .wrap-input100 {
    height: clamp(1.5rem, 4vw, 2rem);
    padding-right: clamp(1.5rem, 5vw, 2.5rem);
  }
  .size4 {
    width: clamp(1.5rem, 4vw, 2rem);
  }
}