@font-face {
  font-family: "FrutigerNormal";
  src: url("/assets/Fonts/FRUTIGER.TTF") format("truetype");
}

@font-face {
  font-family: "FrutigerBold";
  src: url("/assets/Fonts/FRUTIGER_BOLD.TTF") format("truetype");
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

:root {
  --navbar-top-color: #f1f1f1;
  --navbar-color: #f9f9f9;
  --navbar-text-color: #4d4d4d;
  --navbar-text-drop-color: #5c5c5c;
  --navbar-text-hover-color: #ff3535;
  --secondary2: #ff6041;
  --secondary3: #e56060;
  --text-Disc-color: #efefef;
  --black-color: #000000;
  --white-color: #ffffff;
  --gray-color: #909090;
  --disable-gray-color: #0000004b;
  --dark-gray-color: #737373;
  --medium-gray-color: #6d6d6d;
  --complete-order-color: #25d366;
  --notcomplete-order-color: #d9d9d9;
  --hr-color: #dfdfdf;
  --f6-color: #f6a500;
  --order-color: #1e1e1e;
  --f9-color: #f9f9f9;
}

.LoadingSection {
  width: 100%;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navbar-color);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.LoadingSection.fade-out {
  opacity: 0;
  transform: translateY(-100%);
}

.PageContent {
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.8s ease, opacity 0.8s ease;
  -webkit-transition: transform 0.8s ease, opacity 0.8s ease;
  -moz-transition: transform 0.8s ease, opacity 0.8s ease;
  -ms-transition: transform 0.8s ease, opacity 0.8s ease;
  -o-transition: transform 0.8s ease, opacity 0.8s ease;
}

.PageContent.visible {
  opacity: 1;
  transform: translateY(0);
}


.LoadingSection .LoadingContent {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.LoadingSection .LoadingVideo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.LoadingSection .LoadingVideo .lottie-wrapper {
  width: 125px;
  height: auto;
  margin: 0 auto;
  transform: scale(1.8);
  transform-origin: center;
}

@media (max-width:768px) {
  .LoadingSection .LoadingVideo .lottie-wrapper {
    width: 100px;
    height: auto;
    margin: 0 auto;
    transform: scale(1.8);
    transform-origin: center;
  }
}

/* -------------------------------------------------------------------------- */



.NavBar .navBarContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.NavBar .navBarContent img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 1024px) {
  .NavBar .navBarContent img {
    max-width: 150px;
    height: auto;
  }
}

/* -------------------------------------------------------------------------- */
.HomeHero {
  width: 100%;
  height: 100dvh;
  position: relative;
  padding: 40px 40px;
  background-image: url(/assets/Images/Hero/ComingSoon.svg);
  background-color: var(--color-Main);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.HomeHero.visible {
  opacity: 1;
}

.no-scroll {
  overflow: hidden;
}

.HomeHero .HeroContent {
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0%;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.HomeHero .HeroContent .HeroText {
  width: 100%;
}

.HomeHero .HeroText .Title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.HomeHero .HeroText .Title .TitleTwo {
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white-color);
  font-family: 'FrutigerBold';
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  text-align: left;
  text-transform: uppercase;
}

.HomeHero .HeroDisc .Disc {
  color: var(--white-color);
  font-family: 'FrutigerNormal';
  font-weight: 400;
  font-size: 22px;
  line-height: 100%;
  text-align: left;
  margin-bottom: 10px;
}

.HomeHero .HeroForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.HomeHero .HeroForm .InputField {
  width: 100%;
}

.HomeHero .HeroForm .InputField .input-field {
  width: 490px;
  height: 55px;
  background: transparent;
  border: 1px solid var(--white-color);
  outline: none;
  padding: 0 10px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  font-family: "FrutigerNormal";
}

.HomeHero .HeroForm .InputField .input-field.error {
  border-color: var(--navbar-text-hover-color) !important;
}

.HomeHero .HeroForm .InputField .input-field::placeholder {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  font-family: "FrutigerNormal";
}

@media (min-width: 1024px) {
  .HomeHero .HeroForm .InputField .input-field {
    font-size: 14px;
  }
}

.HomeHero .HeroForm .SubmitButton {
  width: fit-content;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  outline: none;
  background: var(--white-color);
  font-family: "FrutigerBold";
}

.HomeHero .HeroForm .SubmitButton-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 15px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  color: var(--black-color);
}

.HomeHero .HeroForm .SubmitButton-text.top {
  transform: translateY(0);
}

.HomeHero .HeroForm .SubmitButton-text.bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
}

.HomeHero .HeroForm .SubmitButton:hover .SubmitButton-text.top {
  transform: translateY(-100%);
}

.HomeHero .HeroForm .SubmitButton:hover .SubmitButton-text.bottom {
  transform: translateY(0);
}




@media (max-width:1100px) {
  .HomeHero {
    width: 100%;
    height: 100dvh;
    padding: 30px 20px;
  }

  .HomeHero .HeroContent {
    width: 100%;
    position: absolute;
    bottom: 30px;
    left: 0%;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .HomeHero .HeroText .Title .TitleTwo {
    font-size: 12vw;
    line-height: 100%;
  }

  .HomeHero .HeroDisc .Disc {
    font-size: 14px;
  }

  .HomeHero .HeroForm .InputField .input-field {
    width: 310px;
    height: 55px;
    background: transparent;
    border: 1px solid var(--white-color);
    outline: none;
    padding: 0 10px;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    font-family: "FrutigerNormal";
  }
}



@media (min-width:768px) and (max-width:1100px) {

  .HomeHero .HeroText .Title .TitleTwo {
    font-size: 8vw;
    line-height: 100%;
  }

  .HomeHero .HeroDisc .Disc {
    font-size: 16px;
  }

}


@media (min-width:450px) and (max-width:768px) {


  .HomeHero .HeroText .Title .TitleTwo {
    font-size: 10vw;
    line-height: 100%;
  }

  .HomeHero .HeroDisc .Disc {
    font-size: 16px;
  }

}

@media (min-width:0px) and (max-width:450px) {
  .HomeHero {
    background-position: -180px 0px;
  }

  .HomeHero .HeroText .Title .TitleTwo {
    font-size: 12vw;
    line-height: 100%;
  }

}



/* -------------------------------------------------------------------------- */

.PupopContainer {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.PupopContainer .ThanksImage {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.PupopContainer .ThanksImage img {
  width: 42px;
  height: 58px;
}

.PupopContainer .ThanksTitleDisc {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.PupopContainer .ThanksTitleDisc h3 {
  color: var(--black-color);
  font-family: 'FrutigerBold';
  font-weight: 700;
  font-size: 34px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
}

.PupopContainer .ThanksTitleDisc p {
  color: var(--navbar-text-drop-color);
  font-family: 'FrutigerNormal';
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  text-transform: capitalize;
}

.PupopContainer .Btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--black-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  cursor: pointer;
  border: none;
  outline: none;
}

.modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  text-align: center;
  padding: 0px 40px;
  background-color: var(--white-color);
  width: 650px;
  height: 350px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width:0px) and (max-width:700px) {
  .modal {
    gap: 20px;
    padding: 30px 20px;
    width: 90%;
    height: auto;
  }

  .PupopContainer .ThanksImage img {
    width: 32px;
    height: 38px;
  }

  .PupopContainer .ThanksTitleDisc {
    width: 100%;
  }

  .PupopContainer .ThanksTitleDisc h3 {
    font-size: 24px;
    line-height: 100%;
  }

  .PupopContainer .ThanksTitleDisc p {
    font-size: 12px;
    line-height: 16px;
  }

  .PupopContainer .Btn {
    width: 25px;
    height: 25px;
  }
}