body {
  width: 100%;
  min-height: 100vh;
}

.mainContainer {
  width: 100%;
  height: 100%;
  background: #fff;
}

.facialRecognitionVideo {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .facialRecognitionVideo {
    padding: 10px;
    max-width: 100%;
  }
}

.mainSection {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 6rem;
}
.mainSection .landingCard {
  width: 300px;
  height: 400px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 2px 2px rgba(255, 255, 255, 0.1);
  right: 30%;
  top: 40%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: 1s;
  transform: rotateY(25deg) rotateZ(5deg);
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard {
    width: 250px;
    height: 380px;
  }
}
.mainSection .landingCard:hover {
  transform: rotateY(0deg) rotateZ(0deg);
}
.mainSection .landingCard .middleman {
  position: absolute;
  width: 70%;
  background: rgba(255, 255, 255, 0.9);
  height: 60px;
  bottom: 41%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}
.mainSection .landingCard .middleman .mainPageNameInput {
  text-align: center;
  border: none;
  background: transparent;
  color: var(--blackColor);
  font-weight: 500;
  outline: none;
}
.mainSection .landingCard .middleman .mainPageIdNo {
  text-align: center;
  border: none;
  background: transparent;
  color: black;
  font-weight: bold;
  outline: var(--primaryColor);
}
.mainSection .landingCard .cardSection1 {
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.mainSection .landingCard .cardSection1 p {
  color: gray;
  font-size: 0.8rem;
}
.mainSection .landingCard .cardSection1 img {
  position: absolute;
  width: auto;
  height: 200px;
  bottom: -40px;
  transition: 2s;
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard .cardSection1 img {
    width: 180px;
    height: 150px;
    bottom: -20px;
  }
}
.mainSection .landingCard .cardSection1 img:hover {
  transform: rotateY(15deg) rotateZ(5deg);
}
.mainSection .landingCard .cardSection1 .eyeBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10px;
  z-index: 3;
  position: absolute;
  top: calc(100% - 88px);
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard .cardSection1 .eyeBox {
    top: calc(100% - 78px);
  }
}
.mainSection .landingCard .cardSection1 .eyeBox .eye {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
  background: #fff;
  margin: 0 20px;
  border-radius: 50%;
  box-shadow: 0 5px 45px egba(0, 0, 0, 0.2), inset 0 0 15px #000, inset 0 0 15px #000;
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard .cardSection1 .eyeBox .eye {
    margin: 0 14px;
    width: 12px;
    height: 12px;
  }
}
.mainSection .landingCard .cardSection1 .eyeBox .eye::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  top: 50%;
  left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 90%;
  box-shadow: 100px 100px 100px black;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard .cardSection1 .eyeBox .eye::before {
    width: 10px;
    height: 10px;
  }
}
.mainSection .landingCard .cardSection1 .eyeBox .eye::after {
  position: absolute;
  content: "";
  background-color: #86DCF3;
  top: 50%;
  left: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  box-shadow: 100px 100px 100px red;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 4;
}
.mainSection .landingCard .cardSection1 .eyeBox .eye:nth-child(1) {
  left: 16px;
  background: #86DCF3;
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard .cardSection1 .eyeBox .eye:nth-child(1) {
    left: 14px;
  }
}
.mainSection .landingCard .cardSection1 .eyeBox .eye:nth-child(2) {
  background: #86DCF3;
  left: 7px;
}
@media screen and (max-width: 800px) {
  .mainSection .landingCard .cardSection1 .eyeBox .eye:nth-child(2) {
    left: 3px;
  }
}
.mainSection .landingCard .divider1 {
  width: 100%;
  height: 10%;
  background-color: var(--secondaryColor);
  padding: 10px;
}
.mainSection .landingCard .cardSection2 {
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
}
.mainSection .landingCard .cardSection2 .cardSection2Texts {
  margin-top: 15px;
  padding: 5px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  justify-items: center;
  gap: 10px;
}
.mainSection .landingCard .cardSection2 .cardSection2Texts input {
  outline: none;
  border: transparent;
  background-color: transparent;
  width: 100%;
  font-size: 0.8rem;
}
.mainSection .landingCard .cardSection2 .cardSection2Texts input:nth-child(4) {
  grid-column: 1/3;
}
.mainSection .landingCard .cardSection2 .loadingType {
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #fff;
}
.mainSection .landingCard .cardSection2 .loadingType .loadingTypeLight {
  background: var(--primaryColor);
  width: 40%;
  height: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 700px) {
  .mainSection {
    flex-direction: column;
    gap: 3rem;
  }
}
.mainSection .section1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
.mainSection .section1 h1 {
  font-size: clamp(3rem, 6rem, 10vw);
  color: var(--secondaryColor);
  cursor: pointer;
  text-align: center;
  transition: 0.5s;
  font-weight: 300;
  font-size: 6rem;
}
@media screen and (max-width: 700px) {
  .mainSection .section1 h1 {
    /* This property allows you to skip spaces when underlining */
    text-underline-offset: 20px;
  }
}
@media screen and (max-width: 500px) {
  .mainSection .section1 h1 {
    text-decoration: none;
  }
}
.mainSection .slash {
  height: 500px;
  width: 1px;
  background: #000;
  transform: rotate(10deg);
}
@media screen and (max-width: 700px) {
  .mainSection .slash {
    transform: rotate(8deg);
    height: 1px;
    width: 90%;
  }
}
.mainSection .section2 {
  gap: 40px;
}
.mainSection .section2 p {
  font-size: var(--fontSmaller);
}
@media screen and (max-width: 700px) {
  .mainSection .section2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .mainSection .motto {
    display: none;
  }
}

.instructionsPage {
  width: 100%;
  padding: 40px;
  min-height: -moz-fit-content;
  min-height: fit-content;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .instructionsPage {
    padding: 10px 0px;
  }
}
.instructionsPage .instructionsBox {
  border-radius: 10px;
  width: 90%;
  background: transparent;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.instructionsPage .instructionsBox .mainCard {
  width: 300px;
  height: 400px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 2px 2px 2px rgba(255, 255, 255, 0.1);
  right: 30%;
  top: 40%;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: 1s;
  transform: rotateY(25deg) rotateZ(5deg);
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard {
    width: 250px;
    height: 350px;
  }
}
.instructionsPage .instructionsBox .mainCard:hover {
  transform: rotateY(0deg) rotateZ(0deg);
}
.instructionsPage .instructionsBox .mainCard .middleman {
  position: absolute;
  width: 70%;
  background: rgba(255, 255, 255, 0.9);
  height: 60px;
  bottom: 41%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2px;
}
.instructionsPage .instructionsBox .mainCard .middleman .mainPageNameInput {
  text-align: center;
  border: none;
  background: transparent;
  color: var(--blackColor);
  font-weight: 500;
  outline: none;
}
.instructionsPage .instructionsBox .mainCard .middleman .mainPageIdNo {
  text-align: center;
  border: none;
  background: transparent;
  color: black;
  font-weight: bold;
  outline: var(--primaryColor);
}
.instructionsPage .instructionsBox .mainCard .cardSection1 {
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.instructionsPage .instructionsBox .mainCard .cardSection1 p {
  color: gray;
  font-size: 0.8rem;
}
.instructionsPage .instructionsBox .mainCard .cardSection1 img {
  position: absolute;
  width: auto;
  height: 200px;
  bottom: -40px;
  transition: 2s;
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard .cardSection1 img {
    width: 180px;
    height: 150px;
    bottom: -20px;
  }
}
.instructionsPage .instructionsBox .mainCard .cardSection1 img:hover {
  transform: rotateY(15deg) rotateZ(5deg);
}
.instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 10px;
  z-index: 3;
  position: absolute;
  top: calc(100% - 88px);
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox {
    top: calc(100% - 78px);
  }
}
.instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye {
  position: relative;
  width: 15px;
  height: 15px;
  display: block;
  background: #fff;
  margin: 0 20px;
  border-radius: 50%;
  box-shadow: 0 5px 45px egba(0, 0, 0, 0.2), inset 0 0 15px #000, inset 0 0 15px #000;
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye {
    margin: 0 14px;
    width: 12px;
    height: 12px;
  }
}
.instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  top: 50%;
  left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 90%;
  box-shadow: 100px 100px 100px black;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye::before {
    width: 10px;
    height: 10px;
  }
}
.instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye::after {
  position: absolute;
  content: "";
  background-color: #86DCF3;
  top: 50%;
  left: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  box-shadow: 100px 100px 100px red;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  z-index: 4;
}
.instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye:nth-child(1) {
  left: 16px;
  background: #86DCF3;
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye:nth-child(1) {
    left: 14px;
  }
}
.instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye:nth-child(2) {
  background: #86DCF3;
  left: 7px;
}
@media screen and (max-width: 800px) {
  .instructionsPage .instructionsBox .mainCard .cardSection1 .eyeBox .eye:nth-child(2) {
    left: 3px;
  }
}
.instructionsPage .instructionsBox .mainCard .divider1 {
  width: 100%;
  height: 10%;
  background-color: var(--primaryColor);
  padding: 10px;
}
.instructionsPage .instructionsBox .mainCard .cardSection2 {
  width: 100%;
  height: 100%;
  background: transparent;
  padding: 10px;
}
.instructionsPage .instructionsBox .mainCard .cardSection2 .cardSection2Texts {
  margin-top: 15px;
  padding: 5px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  justify-items: center;
  gap: 10px;
}
.instructionsPage .instructionsBox .mainCard .cardSection2 .cardSection2Texts input {
  outline: none;
  border: transparent;
  background-color: transparent;
  width: 100%;
  font-size: 0.8rem;
}
.instructionsPage .instructionsBox .mainCard .cardSection2 .cardSection2Texts input:nth-child(4) {
  grid-column: 1/3;
}
.instructionsPage .instructionsBox .mainCard .cardSection2 .loadingType {
  margin-top: 20px;
  width: 100%;
  height: 20px;
  border-radius: 10px;
  background: #fff;
}
.instructionsPage .instructionsBox .mainCard .cardSection2 .loadingType .loadingTypeLight {
  background: var(--primaryColor);
  width: 40%;
  height: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .instructionsPage .instructionsBox {
    padding: 20px;
    box-shadow: none;
  }
}
.instructionsPage .instructionsBox .insideInstructionsBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .instructionsPage .instructionsBox .insideInstructionsBox {
    grid-template-columns: 1fr;
  }
}
.instructionsPage .instructionsBox .insideInstructionsBox img {
  max-width: 300px;
}
@media screen and (max-width: 600px) {
  .instructionsPage .instructionsBox .insideInstructionsBox img {
    width: 100%;
    margin-top: 20px;
  }
}
.instructionsPage .instructionsBox .insideInstructionsBox div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.instructionsPage .instructionsBox .insideInstructionsBox div h3 {
  margin-bottom: 30px;
  color: var(--blackColor);
}
.instructionsPage .instructionsBox .insideInstructionsBox div ol {
  list-style: none;
  max-width: 510px;
  margin-bottom: 30px;
  counter-set: "myCounter";
  font-size: 0.8rem;
}
.instructionsPage .instructionsBox .insideInstructionsBox div ol li {
  counter-increment: myCounter;
  padding-left: 40px;
  position: relative;
  margin-bottom: 25px;
}
.instructionsPage .instructionsBox .insideInstructionsBox div ol li::before {
  content: counter(myCounter);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #222b45;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  line-height: 24px;
  position: absolute;
  left: 0;
  top: 0;
}

.sequence {
  width: 100%;
  padding: 40px;
  min-height: 70vh;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10%;
}
@media screen and (max-width: 600px) {
  .sequence {
    flex-direction: column;
  }
}

.deliveryPage {
  position: relative;
}
.deliveryPage strong {
  color: var(--darkGray);
}
.deliveryPage div {
  width: 100%;
}
.deliveryPage .textbox {
  padding: 10px;
  margin-bottom: 100px;
}
.deliveryPage img {
  max-width: 400px;
}
@media screen and (max-width: 600px) {
  .deliveryPage img {
    max-width: 200px;
  }
}

.integrationPage {
  position: relative;
}
.integrationPage div {
  width: 100%;
}
.integrationPage div strong {
  color: var(--darkGray);
}
.integrationPage .textbox {
  padding: 10px;
  margin-bottom: 100px;
}
.integrationPage .textbox p {
  margin-bottom: 10px;
}
.integrationPage img {
  max-width: 400px;
}
@media screen and (max-width: 600px) {
  .integrationPage img {
    max-width: 200px;
  }
}

.productsPage {
  width: 100%;
  min-height: 100vh;
}
.productsPage h3 {
  color: var(--blackColor);
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 600px) {
  .productsPage {
    padding: 30px 10px;
  }
}

.productsContainer {
  width: 100%;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}
@media screen and (max-width: 1100px) {
  .productsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .productsContainer {
    grid-template-columns: 1fr;
    padding: 10px;
  }
}
.productsContainer .product {
  min-width: 400px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  background: #fff;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1100px) {
  .productsContainer .product {
    max-width: 250px;
  }
}
@media screen and (max-width: 700px) {
  .productsContainer .product {
    min-width: 200px;
  }
}
.productsContainer .product h6 {
  color: gray;
}
.productsContainer .product img {
  max-width: 100%;
}
.productsContainer .product p {
  font-size: var(--fontSmaller);
}
.productsContainer .product div {
  display: flex;
  flex-direction: column;
}
.productsContainer .product .descriptionBox {
  box-shadow: var(--boxShadow1);
  padding: 10px;
  width: 100%;
}
.productsContainer .product .productDetailsBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: var(--boxShadow1);
  padding: 10px;
}
.productsContainer .product .quantityDetailsBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  box-shadow: var(--boxShadow1);
  padding: 10px;
}
.productsContainer .product .quantityDetailsBox .quantityBox {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.productsContainer .product .quantityDetailsBox .quantityBox .quantityInput {
  width: 50px;
  text-align: center;
}
.productsContainer .product button {
  background: var(--primaryColor);
  box-shadow: var(--boxShadow1);
}
.productsContainer .product button i {
  color: var(--whiteColor);
}
.productsContainer .product button:hover {
  background: var(--whiteColor);
}
.productsContainer .product button:hover i {
  color: var(--primaryColor);
}

.footer {
  position: relative;
  background: var(--primaryColor);
  flex-direction: column;
  padding-bottom: 10px;
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  position: relative;
  font-size: var(--fontSmall);
}
.footer .copyright {
  color: #fff;
  border-top: 1px solid white;
  width: 100%;
  text-align: center;
  padding: 10px;
}
.footer .container {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  top: 20px;
}
@media screen and (max-width: 600px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.footer .container div {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 600px) {
  .footer .container div {
    align-items: center;
  }
}
.footer .container div p {
  color: var(--secondaryColor);
  cursor: pointer;
  -webkit-text-decoration: 1px underline;
          text-decoration: 1px underline;
  -webkit-text-decoration-skip: spaces;
          text-decoration-skip: spaces;
  text-underline-offset: 10px;
}
.footer .container div a {
  text-decoration: none;
  color: white;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.footer .container div a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--secondaryColor);
  left: 0;
  transition: 0.3s;
  bottom: 0;
}
.footer .container div a:hover::before {
  width: 100%;
}

.motto {
  position: absolute;
  display: flex;
  flex-direction: row;
  padding: 10px 30px;
  justify-content: space-between;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
  left: 0;
  bottom: 0;
  margin-top: 20px;
  background: var(--primaryColor);
  color: #fff;
  width: 300px;
}
@media screen and (max-width: 900px) {
  .motto {
    padding: 0px 10px;
  }
}
.motto p {
  width: -moz-fit-content;
  width: fit-content;
}
.motto h4 {
  width: 40%;
  font-size: var(--fontMedium);
  text-align: center;
}
@media screen and (max-width: 900px) {
  .motto h4 {
    font-size: var(--fontSmaller);
  }
}/*# sourceMappingURL=index.css.map */