* {
  margin: 0;
  font-family: "Outfit", sans-serif;
  user-select: none;
}

a {
  text-decoration: none;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

/* styling */
:root {
  --white: #dfdfdf;
  --white-opacity: #dfdfdf2c;
  --white-opacity-2: #dfdfdf09;
  --white-opacity-3: #dfdfdf17;

  --purple: #9336eb;
  --purple-opacity: #9436eb2c;
  --purple-2: #7c3aed;
  --gray: #151515;

  --bg-1: #111111;
  --bg-2: #171717;
  --bg-opacity: #111111b7;

  --popup-error: #f55252;
  --popup-success: #9336eb;
}

body {
  background-color: var(--bg-1);
}

.page {
  position: relative;
  padding: 160px 0px 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.page-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 96px;
  width: 1440px;
  animation: revealScroll forwards;
  animation-timeline: view();
  animation-range-end: 70vh;
}

.bg-1 {
  background-color: var(--bg-1);
}

.bg-2 {
  background-color: var(--bg-2);
}

.banner-bg {
  z-index: -1;
  filter: grayscale(0.85) brightness(0.15);
  position: relative;
}

.d-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 500;
  font-size: 25px;
  margin-bottom: -12px;
}

.d-text span {
  font-size: 20px;
}

.t-text {
  color: var(--white);
  font-size: 110px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 100px;
}

.lt-text {
  color: var(--white);
  font-size: 80px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 80px;
}

.mt-text {
  color: var(--white);
  font-size: 64px;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 64px;
}

.st-text {
  color: var(--white);
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
}

.xst-text {
  color: var(--white);
  font-weight: 500;
  font-size: 36px;
  line-height: 36px;
}

.p-text {
  color: var(--white);
  opacity: 0.75;
  font-weight: 300;
  font-size: 28px;
}

.ip-text {
  color: var(--white);
  opacity: 0.75;
  font-weight: 300;
  font-size: 26px;
  line-height: 34px;
}

.bp-text {
  color: var(--white);
  opacity: 0.95;
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
}

.span-text {
  color: var(--purple);
}

.info-img {
  border-radius: 6px;
  width: 510px;
}

button {
  white-space: nowrap;
  border-radius: 24px;
  transition: 0.25s;
  opacity: 0.85;
  font-size: 19px;
  font-weight: 500;
  outline: none;
  border: none;
  padding: 15px 56px 15px 56px;
  cursor: pointer;
}

button:hover {
  opacity: 1;
}

.button-1 {
  color: var(--white);
  border: 1px solid var(--white);
  background-color: transparent;
}

.button-2 {
  color: var(--white);
  border: 1px solid var(--purple);
  background-color: var(--purple);
}

.button-3 {
  background-color: var(--white-opacity);
  color: var(--white);
}

.button-4 {
  background-color: var(--white);
  padding: 16px 40px 16px 48px;
  font-weight: 400;
  width: 240px !important;
  opacity: 0.95;
  color: var(--black);
}

.button-4 span {
  color: var(--purple);
}

.button-5 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  opacity: 0.7;
  border: 1px solid var(--white-opacity-3);
  background-color: var(--white-opacity-2);
  width: calc(50% - 8px);
  padding: 16px 24px;
  font-weight: 400;
  font-size: 20px;
  text-align: left;
}

.button-5:hover {
  scale: 1.024;
}

.button-5 span {
  font-size: 21px;
}

.button-5.active {
  border: 1px solid var(--purple);
  background-color: var(--purple-opacity);
  opacity: 1;
  color: var(--white);
}

.button-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  width: 220px;
  gap: 10px;
}

.button-info:hover span {
  margin-left: 2px;
}

.button-info span {
  transition: 0.25s;
  font-size: 21px;
  margin-bottom: -2px;
}

.overlay {
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
  pointer-events: none;
  position: absolute;
}

.overlay:nth-child(2) {
  animation: fadeOverlay 4.5s infinite alternate;
}

.overlay:nth-child(3) {
  opacity: 0;
  animation: fadeOverlay 4.5s 7s infinite alternate;

}

.overlay:nth-child(4) {
  opacity: 0;
  animation: fadeOverlay 6s 9s infinite alternate;
}

::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

a {
  text-decoration: none;
}

/* input */
.input-list {
  width: 100%;
  display: flex;
  gap: 16px;
}

.input {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.input input,
.input textarea {
  transition: 0.25s;
  outline: none;
  color: var(--white);
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--white-opacity-3);
  background-color: var(--white-opacity-2);
  width: 100%;
  min-height: 24px;
  max-height: 240px;
  resize: vertical;
}

.input:hover input,
.input:hover textarea {
  border: 1px solid var(--white-opacity);
}

.input input:focus,
.input input:valid,
.input textarea:focus,
.input textarea:valid   {
  border: 1px solid var(--purple);
}

.input p {
  font-size: 18px;
  transition: 0.25s;
  opacity: 0.5;
  left: 16px;
  pointer-events: none;
  position: absolute;
  color: var(--white);
  top: 13px;
}

.input input:focus + p,
.input input:valid + p,
.input textarea:focus + p,
.input textarea:valid + p,
.input p.active {
  transition: 0.25s;
  font-size: 16px;
  top: -24px;
  left: 0px;
  color: var(--purple);
  opacity: 1;
}

.input-ts:focus,
.input-ts:valid {
  margin-top: 16px;
}

.input-ts:focus + p,
.input-ts:valid + p {
  top: -8px !important;
}

.input input[type="date"]::-webkit-calendar-picker-indicator,
.input input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);  /* Invert black to white */
    cursor: pointer;
    padding-left: 16px;
}

/* checkbox */
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-item p {
  color: var(--white);
  font-size: 22px;
  line-height: 24px;
  font-weight: 300;
}

.checkbox-item .checkbox {
  transition: 0.25s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white-opacity);
  border-radius: 6px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.checkbox-item .checkbox:hover {
  background-color: var(--white-opacity-2);
}

.checkbox-item .checkbox.active {
  background-color: var(--white-opacity-2);
}

.checkbox-item .checkbox span {
  scale: 0;
  transition: 0.15s;
  transform: translateY(8px);
  opacity: 0;
  color: var(--purple-2);
}

.checkbox-item .checkbox.active span {
  scale: 1;
  opacity: 1;
  transform: translateY(0);
}

/* redirect container */
#redirect-container {
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--bg-1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#redirect-container.active {
  opacity: 1;
  pointer-events: all;
}

#redirect-container .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 840px;
}

#redirect-container img {
  width: 64px;
}

#redirect-container h2 {
  margin-top: 24px;
  color: var(--white);
  font-size: 56px;
  line-height: 64px;
}

#redirect-container p {
  text-align: center;
  opacity: 0.65;
  font-size: 24px;
  font-weight: 400;
  margin-top: 12px;
  margin-bottom: 24px;
}

#redirect-container button {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 1;
  font-size: 18px;
  padding: 14px 42px 14px 32px;
  border-radius: 8px;
}

#redirect-container button:hover {
  opacity: 0.85;
  filter: drop-shadow(0 0 1.5rem #9436eb4d) brightness(1.1);
}

#redirect-container button img {
  width: 24px;
}

/* glow */
.glow-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  pointer-events: none;
}

/* popups */
#info-popup {
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  padding: 12px 24px 12px 12px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  z-index: 3;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, -50%);
  background-color: var(--popup-error);
}

#info-popup.active {
  opacity: 1;
  bottom: 40px;
}

#info-popup.success {
  background-color: var(--popup-success);
}

#info-popup img {
  height: 32px;
}

#info-popup p {
  color: var(--white);
  font-size: 20px;
  white-space: nowrap;
}

/* media queries - main */
@media (max-width: 1500px) {
  .page-wrapper {
    width: 80%;
  }
}

@media (max-width: 1300px) {
  .button-5 {
    font-size: 18px;
    padding: 16px 18px;
  }

  .button-5 span {
    font-size: 19px;
  }
}

@media (max-width: 1100px) {
  .info-img {
    width: 380px !important;
  }
}

@media (max-width: 1050px) {
  .info-img {
    display: none;
  }
}

@media (max-width: 800px) {
  #redirect-container h2 {
    font-size: 44px;
    line-height: 54px;
  }

  #redirect-container p {
    font-size: 20px;
    line-height: 28px;
  }
}

@media (max-width: 750px) {
  .t-text {
    font-size: 64px;
    line-height: 54px;
  }

  .lt-text {
    font-size: 52px;
    line-height: 54px;
  }

  .xst-text {
    font-size: 32px;
  }

  .st-text {
    font-size: 36px;
    line-height: 36px;
  }

  .p-text, .ip-text {
    font-size: 20px;
    line-height: 28px;
  }

  .bp-text {
    font-size: 21px;
    line-height: 24px;
  }

  button {
    padding: 14px 36px !important;
    font-size: 15px;
  }

  .button-info {
    width: 200px;
  }

  .button-5 {
    padding: 16px 18px !important;
  }

  #redirect-container h2 {
    font-size: 40px;
    line-height: 54px;
  }

  #redirect-container button {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .button-5 {
    overflow: hidden;
    width: 100%;
  }

  #redirect-container h2 {
    font-size: 36px;
    line-height: 42px;
  }

  #redirect-container button {
    font-size: 15px;
    padding: 12px 32px !important;
  }
}

@media (max-height: 900px) {
  .page-wrapper {
    animation: none !important;
  }
}