* {
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

img {
  pointer-events: none;
}

@font-face {
  font-family: mplus;
  src: url("../fonts/MPLUS1p-Regular.ttf");
}
@font-face {
  font-family: mulish_b;
  src: url("../fonts/Mulish-Bold.ttf");
}
@font-face {
  font-family: mulish;
  src: url("../fonts/Mulish-Regular.ttf");
}
.body-first {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.body-first .block {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  animation: alive 5s alternate infinite;
}
@keyframes alive {
  100% {
    rotate: 360deg;
    scale: 1.9;
  }
}
.body-first .top {
  top: 25%;
  left: 17%;
  background-color: #ff80d2;
}
.body-first .bottom {
  bottom: 25%;
  right: 17%;
  background-color: #2abbfe;
  animation-delay: 3s;
}
@media (max-width: 900px) {
  .body-first .bottom {
    opacity: 0;
  }
}
.body-first .body-content {
  background-color: rgba(255, 255, 255, 0.7215686275);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(35px);
          backdrop-filter: blur(35px);
}
.body-first .body-content header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 2% 5%;
}
.body-first .body-content header img {
  width: 7rem;
}
.body-first .body-content header .wow-btn {
  overflow: hidden;
  max-height: 20px;
  cursor: pointer;
  z-index: 1;
}
.body-first .body-content header .wow-btn p {
  transition: 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 14px;
}
.body-first .body-content header .wow-btn p span {
  transition: 0.3s ease;
  font-family: mplus;
  color: #0182eb;
}
.body-first .body-content header .wow-btn p span:nth-last-child(1) {
  transform: skewY(5deg);
}
.body-first .body-content header .wow-btn:hover p {
  margin-top: -25px;
}
.body-first .body-content header .wow-btn:hover p span:nth-child(1) {
  transform: skewY(5deg);
}
.body-first .body-content header .wow-btn:hover p span:nth-last-child(1) {
  transform: skewY(0deg);
}
@media (max-width: 900px) {
  .body-first .body-content header {
    padding: 5%;
  }
  .body-first .body-content header img {
    width: 5rem;
  }
  .body-first .body-content header .wow-btn {
    height: 13px;
  }
  .body-first .body-content header .wow-btn p {
    font-size: 10px;
  }
  .body-first .body-content header .wow-btn:hover p {
    margin-top: -15px;
  }
}
.body-first .body-content main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 2% 5%;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 95%;
}
.body-first .body-content main .col {
  width: 100%;
}
.body-first .body-content main .col img {
  max-width: 80%;
}
.body-first .body-content main .col h2 {
  color: #0e1518;
  font-family: mulish_b;
  font-size: clamp(25px, 4vw, 40px);
}
.body-first .body-content main .col:nth-last-child(1) {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}
.body-first .body-content main .col p {
  color: #0e1518;
  font-family: mulish;
  margin: 1rem 0 2rem 0;
  max-width: 40rem;
  font-size: clamp(14px, 4vw, 20px);
}
.body-first .body-content main .col .continue {
  border-radius: 10px;
  height: 3rem;
  width: 9rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  overflow: hidden;
  cursor: pointer;
}
.body-first .body-content main .col .continue::before {
  content: "";
  background: conic-gradient(white, white, #0182eb, white, white, #0182eb, white);
  width: 100%;
  height: 100%;
  position: absolute;
  animation: attract 3s linear infinite;
  scale: 4;
}
@keyframes attract {
  100% {
    rotate: 360deg;
  }
}
.body-first .body-content main .col .continue::after {
  transition: 0.2s ease;
  content: "Deposit";
  position: absolute;
  border-radius: inherit;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  font-size: 15px;
  color: #0182eb;
  font-family: mulish;
}
.body-first .body-content main .col .continue:hover::before {
  animation-play-state: paused;
}
@media (max-width: 900px) {
  .body-first .body-content main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
  }
  .body-first .body-content main .col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .body-first .body-content main .col:nth-last-child(1) {
    justify-content: center;
  }
  .body-first .body-content main .col img {
    max-width: 20rem;
  }
}
.body-first .body-content footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  z-index: 1;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 90%;
  padding: 2% 5%;
  font-family: mulish;
  font-size: 10px;
  color: #5d5d5d;
}
@media (max-width: 900px) {
  .body-first .body-content footer {
    justify-content: center;
    padding: 5%;
  }
}
.body-first .body-content footer .small {
  font-size: 7px;
  margin: 0 0.4rem;
}
.body-first .body-content footer span {
  cursor: pointer;
}
.body-first .body-content footer span:hover {
  color: #0182eb;
}
.body-first .body-content .terms {
  transition: 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  position: absolute;
  top: 0;
  width: 30rem;
  height: 100%;
  background-color: #fbfbfb;
  z-index: 2;
  box-shadow: -23px 0px 57.9px rgba(0, 0, 0, 0.25);
}
.body-first .body-content .terms[view=false] {
  right: -35rem;
}
.body-first .body-content .terms[view=true] {
  right: 0;
}
@media (max-width: 650px) {
  .body-first .body-content .terms {
    width: 100%;
    box-shadow: none;
  }
  .body-first .body-content .terms[view=false] {
    right: -110%;
  }
}
.body-first .body-content .terms h2 {
  color: #0182eb;
  font-family: mulish_b;
  padding: 7%;
  width: 86%;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-weight: normal;
}
.body-first .body-content .terms img {
  width: 86%;
  margin: 7%;
  max-height: 61%;
}
.body-first .body-content .terms .btn-align {
  width: 75%;
  margin: 0 13.5%;
}
.body-first .body-content .terms .btn-align .agree {
  transition: 0.2s ease;
  background-color: #0182eb;
  color: #fbfbfb;
  border-radius: 5px;
  padding: 0.5rem 1.4rem;
  width: -moz-max-content;
  width: max-content;
  font-family: mulish;
  font-size: 12px;
  cursor: pointer;
}
.body-first .body-content .terms .btn-align .agree:hover {
  scale: 1.1;
}
.body-first .window {
  transition: 0.08s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5137254902);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  z-index: 3;
}
@media (max-width: 960px) {
  .body-first .window {
    align-items: flex-end;
  }
}
.body-first .window .request {
  transition: 0.2s ease;
  width: 50vw;
  height: 65vh;
  overflow: hidden;
  position: relative;
  background-color: white;
  box-shadow: 3px 4px 73.6px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
}
@media (max-width: 960px) {
  .body-first .window .request {
    width: 100%;
    border-radius: 14px 14px 0 0;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 2rem;
  }
  .body-first .window .request h2 {
    margin-bottom: 1rem;
  }
}
.body-first .window .request h2 {
  transition: 0.08s ease;
  padding: 20px 30px;
  width: calc(100% - 60px);
  color: #0e1518;
  font-weight: 100;
  font-family: mulish;
  border-bottom: 1px solid #dfdfdf;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.body-first .window .request h2 svg {
  cursor: pointer;
  transition: 0.2s ease;
}
.body-first .window .request h2 svg:hover {
  rotate: 90deg;
}
.body-first .window .request form {
  transition: 0.08s ease;
  padding: 20px 30px;
  width: calc(100% - 60px);
}
.body-first .window .request form .co-inp {
  transition: 0.2s linear;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
  width: 100%;
  position: relative;
}
.body-first .window .request form .co-inp p {
  transition: 0.2s linear;
  position: absolute;
  color: #9b9b9b;
  font-family: mulish;
  font-size: 14px;
  left: 20px;
}
.body-first .window .request form .co-inp .symbol {
  position: absolute;
  color: #9b9b9b;
  font-family: mulish;
  font-size: 14px;
  top: 14px;
  right: 20px;
}
.body-first .window .request form .co-inp input,
.body-first .window .request form .co-inp textarea {
  padding: 1rem;
  width: calc(100% - 2rem);
  border: none;
  border-radius: inherit;
  outline: none;
  position: sticky;
  z-index: 2;
  background: transparent;
}
.body-first .window .request form .co-inp textarea {
  height: 10vh;
  resize: none;
}
.body-first .window .request form .co-inp .letter-counter {
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 9px;
  color: #9b9b9b;
  font-family: mulish;
}
.body-first .window .request form .co-inp[focus=false] p {
  top: 14px;
  z-index: 1;
}
.body-first .window .request form .co-inp[focus=false] input {
  color: #0e1518;
}
.body-first .window .request form .co-inp[focus=true] {
  border-color: #279b48;
}
.body-first .window .request form .co-inp[focus=true] p {
  top: -10px;
  z-index: 3;
  padding: 0 6px;
  background-color: white;
  color: #279b48;
}
.body-first .window .request form .co-inp[focus=true] input,
.body-first .window .request form .co-inp[focus=true] textarea {
  color: #279b48;
}
.body-first .window .request form .co-inp[focus=true] .symbol {
  color: #279b48;
}
.body-first .window .request form .co-inp[focus=true] .letter-counter {
  color: #279b48;
}
.body-first .window .request form .co-inp[focus=stay] p {
  top: -10px;
  z-index: 3;
  padding: 0 6px;
  background-color: white;
}
.body-first .window .request form .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.body-first .window .request form .row .co-inp:nth-child(1) {
  margin-right: 0.5rem;
}
.body-first .window .request form .row .co-inp:nth-last-child(1) {
  margin-left: 0.5rem;
}
@media (max-width: 960px) {
  .body-first .window .request form .row {
    flex-direction: column;
  }
  .body-first .window .request form .row .co-inp:nth-child(1) {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .body-first .window .request form .row .co-inp:nth-last-child(1) {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.body-first .window .request form .row-end {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}
.body-first .window .request form .row-end input[type=submit] {
  transition: 0.2s ease;
  background-color: #279b48;
  color: white;
  border-radius: 4px;
  padding: 0.5rem 1.4rem;
  outline: none;
  border: none;
  cursor: pointer;
}
.body-first .window .request form .row-end input[type=submit]:hover {
  scale: 1.1;
}
.body-first .window .request form .mtb {
  margin: 1rem 0;
}
.body-first .window .request .request-done {
  transition: 0.08s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 10vw);
  height: calc(100% - 10vh);
  padding: 5vh 5vw;
  scale: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.body-first .window .request .request-done .col {
  width: 100%;
}
.body-first .window .request .request-done .col img {
  transition: 0.2s ease;
  width: 60%;
}
.body-first .window .request .request-done .col h3 {
  color: #9696ff;
  font-family: mulish;
  font-size: clamp(18px, 4vw, 30px);
}
.body-first .window .request .request-done .col p {
  color: #0e1518;
  margin: 1rem 0;
  font-size: 14px;
  font-family: mulish;
}
.body-first .window .request .request-done .col button {
  transition: 0.2s ease;
  background-color: #9696ff;
  color: white;
  outline: none;
  border: none;
  padding: 0.5rem 1.4rem;
  border-radius: 4px;
  font-family: mulish;
  cursor: pointer;
}
.body-first .window .request .request-done .col button:hover {
  scale: 0.9;
}
@media (max-width: 650px) {
  .body-first .window .request .request-done {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: calc(100% - 15vw);
    padding: 5vh 7.5vw;
  }
  .body-first .window .request .request-done .col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100%;
  }
  .body-first .window .request .request-done .col img {
    width: 45%;
  }
}
.body-first .window[view=true] {
  scale: 1;
}
.body-first .window[view=done] h2,
.body-first .window[view=done] form {
  scale: 0;
}
.body-first .window[view=done] .request-done {
  scale: 1;
}
.body-first .window[view=false] {
  scale: 0;
}/*# sourceMappingURL=style.css.map */