* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Tahoma, Circular;
}

.landingPage-container {
  transition: all 0.5s ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
  height: 100vh;
}
@media (max-width:900px) {
  .landingPage-container {
    min-height: 100vh;
    height: unset;
  }
  .landingPage-container::before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    height: 100%;
    width: 100vw;
    background: rgba(14, 2, 24, 0.726);
  }
}
.landingPage-container .landingPage {
  height: 100%;
  background: #faeaea;
  padding: 30px 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media (max-width:900px) {
  .landingPage-container .landingPage {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    background: none;
    padding: 8px;
  }
}
.landingPage-container .landingPage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  height: 90%;
  width: 100%;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    height: unset;
  }
}
.landingPage-container .landingPage-top-left {
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  row-gap: 16px;
  height: 100%;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    row-gap: 26px;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left {
    height: unset;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 16px;
  }
}
.landingPage-container .landingPage-top-left-important {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 10px;
}
.landingPage-container .landingPage-top-left-important-title {
  font-size: 55px;
  font-weight: 700;
  color: #412424;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-important-title {
    font-size: 80px;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-important-title {
    font-size: 40px;
    color: #e1d5d5;
  }
}
.landingPage-container .landingPage-top-left-important-paragraph p {
  width: 65%;
  font-size: 28px;
  color: #6c5151;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-important-paragraph p {
    width: 80%;
    font-size: 24px;
    color: #968888;
  }
}
.landingPage-container .landingPage-top-left-modal {
  display: none;
  margin: auto;
  padding: 20px 25px;
  width: 70%;
  align-self: flex-start;
  background: rgba(250, 234, 234, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-modal {
    width: 90%;
    margin: 0 auto;
    background: rgba(250, 234, 234, 0.1);
  }
}
.landingPage-container .landingPage-top-left-modal-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  color: #272626;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-modal-content {
    color: #c1acac;
    line-height: 1.5;
  }
}
.landingPage-container .landingPage-top-left-modal-content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  flex-direction: column;
}
.landingPage-container .landingPage-top-left-modal-content-loader {
  width: 100%;
  height: 18px;
  border-radius: 8px;
  background-color: white;
  position: relative;
}
.landingPage-container .landingPage-top-left-modal-content-loader-text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-modal-content-loader-text {
    font-size: 22px;
  }
}
.landingPage-container .landingPage-top-left-modal-content-loader-animating {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #7209b7;
  height: 18px;
  animation-name: loadingAnimation;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  width: 0%;
}
@media (min-width: 1301px) {
  .landingPage-container .landingPage-top-left-modal .multiStepLoading-modal {
    width: 450px;
  }
}
@keyframes loadingAnimation {
  0% {
    width: 0%;
  }
  10% {
    width: 15%;
  }
  20% {
    width: 15%;
  }
  35% {
    width: 35%;
  }
  45% {
    width: 35%;
  }
  50% {
    width: 55%;
  }
  60% {
    width: 55%;
  }
  70% {
    width: 75%;
  }
  80% {
    width: 75%;
  }
  95% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
.landingPage-container .landingPage-top-left-finalPage {
  display: none;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage {
    row-gap: 16px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-congratulations p {
  font-size: 55px;
  font-weight: 700;
  color: #412424;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-congratulations p {
    font-size: 80px;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-congratulations p {
    font-size: 36px;
    color: #c1acac;
  }
}
.landingPage-container .landingPage-top-left-finalPage-elligible div {
  width: 100%;
  font-size: 22px;
  color: #6c5151;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-elligible div {
    font-size: 20px;
    color: #c1acac;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-elligible div {
    font-size: 24px;
    color: #c1acac;
  }
}
.landingPage-container .landingPage-top-left-finalPage-elligible p {
  font-size: 22px;
  font-weight: 800;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-elligible p {
    font-size: 18px;
    color: white;
  }
}
.landingPage-container .landingPage-top-left-finalPage-basedOn {
  font-size: 20px;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-basedOn {
    font-size: 22px;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-basedOn {
    font-size: 16px;
    color: #faeaea;
  }
}
.landingPage-container .landingPage-top-left-finalPage-basedOn span {
  font-weight: 600;
}
.landingPage-container .landingPage-top-left-finalPage-approved {
  font-weight: 600;
  color: #34af6d;
  font-size: 18px;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-approved {
    font-size: 26px;
    color: #c1acac;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-approved {
    font-size: 18px;
    color: #c1acac;
  }
}
.landingPage-container .landingPage-top-left-finalPage-rules {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 12px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-rules {
    color: white;
    row-gap: 10px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-rules {
    row-gap: 18px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-rules-title {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-rules-title {
    color: white;
    font-size: 16px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-rules-title {
    font-size: 24px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-rules-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 16px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-rules-list {
    row-gap: 8px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-rules-list-content {
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-weight: 500;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-rules-list-content {
    color: #e91717;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-rules-list-content {
    font-size: 22px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-failure {
  color: #968888;
  font-size: 18px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-failure {
    font-size: 16px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-failure {
    font-size: 22px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-aggreeButton {
  align-self: center;
}
.landingPage-container .landingPage-top-left-finalPage-aggreeButton div {
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  cursor: pointer;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  background-color: #34af6d;
  border-radius: 12px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-finalPage-aggreeButton div {
    font-size: 16px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-finalPage-aggreeButton div {
    font-size: 22px;
    padding: 6px 16px;
  }
}
.landingPage-container .landingPage-top-left-finalPage-aggreeButton div a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.landingPage-container .landingPage-top-left-finalPage-aggreeButton div a p {
  color: white;
  text-decoration: none;
}
.landingPage-container .landingPage-top-left-description {
  color: #514d6f;
  font-size: 18px;
  width: 85%;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-description {
    width: 100%;
  }
}
.landingPage-container .landingPage-top-left-description p {
  line-height: 1.5;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-description p {
    text-align: center;
    width: 100%;
  }
}
.landingPage-container .landingPage-top-left-description p span {
  font-weight: 600;
  color: #412424;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-description p span {
    color: white;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-description {
    font-size: 24px;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-description {
    color: #a6a3b5;
    font-size: 16px;
    align-self: center;
  }
}
.landingPage-container .landingPage-top-left-olderThan {
  align-self: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 6px;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan {
    row-gap: 10px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-title {
  font-weight: 700;
  font-size: 16px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-title {
    color: #c1acac;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-title {
    font-size: 30px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-checkBoxList {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  row-gap: 6px;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-checkBoxList {
    row-gap: 10px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-checkBoxList p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-checkBoxList p {
    font-size: 20px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-checkBoxList p {
    font-size: 24px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-checkBoxList div {
  width: 45%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  cursor: pointer;
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-checkBoxList div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
  }
}
.landingPage-container .landingPage-top-left-olderThan-checkBoxList div input {
  margin-top: 3px;
}
.landingPage-container .landingPage-top-left-olderThan-checkBoxList div label {
  font-size: 16px;
  color: black;
  position: relative;
  font-weight: 500;
  top: 0;
  cursor: pointer;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-checkBoxList div label {
    color: #c1acac;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-checkBoxList div label {
    font-size: 22px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-choose {
  display: none;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-choose {
    color: #c1acac;
    font-size: 16px;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-choose {
    color: #c1acac;
    font-size: 20px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-buttons {
  align-self: space-between;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 25px;
       column-gap: 25px;
  width: 100%;
  color: white;
}
.landingPage-container .landingPage-top-left-olderThan-buttons-left {
  padding: 4px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  cursor: pointer;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  background-color: #34af6d;
  border-radius: 12px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-buttons-left {
    font-size: 16px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-buttons-left {
    font-size: 22px;
    padding: 6px 16px;
  }
}
.landingPage-container .landingPage-top-left-olderThan-buttons-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background-color: #e91717;
  padding: 4px 16px;
  border-radius: 12px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-left-olderThan-buttons-right {
    font-size: 16px;
  }
}
@media (min-width:1400px) {
  .landingPage-container .landingPage-top-left-olderThan-buttons-right {
    font-size: 22px;
    padding: 6px 16px;
  }
}
.landingPage-container .landingPage-top-right {
  width: 30%;
  height: 100%;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-right {
    display: none;
  }
}
.landingPage-container .landingPage-top-right-slide {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  height: 100%;
  border-radius: 30px;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-right-slide {
    border-radius: 0;
  }
}
.landingPage-container .landingPage-top-right-slide-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  transition: all 0.5s ease-in-out;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-top-right-slide-img {
    border-radius: 0;
  }
}
.landingPage-container .landingPage-bottom {
  width: 100%;
  text-align: center;
}
.landingPage-container .landingPage-bottom p {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width:900px) {
  .landingPage-container .landingPage-bottom p {
    font-size: 16px;
    position: relative;
    z-index: 100;
    color: white;
  }
}
@media (max-width:900px) {
  .landingPage-container .landingPage-bottom {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */