html {
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html.no-scroll {
  overflow: hidden;
}

body {
  scroll-behavior: smooth;
  background-color: #050A29 !important;
  color: #fff !important;
}
body a {
  text-decoration: none;
}
body button:focus {
  outline: none;
}
body input:focus {
  outline: none;
}
body select:focus {
  outline: none;
}
body textarea:focus {
  outline: none;
}
body input::-webkit-outer-spin-button,
body input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin-bottom: 0;
}

#scroll-btn {
  opacity: 0;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-size: 16px;
  outline: none;
  background-color: #fcab17;
  color: #fff;
  cursor: pointer;
  width: 35px;
  height: 35px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 5px;
}

.tabcontent {
  display: none;
}

.header-wrapper {
  background-color: #050a29;
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.header-logo img {
  height: 45px;
}

.blue-btn {
  display: block;
  background-color: #050a29;
  border: 1px solid #00acf9;
  color: #00acf9;
  border-radius: 3px;
  padding: 5px 15px;
}
.blue-btn:hover {
  color: #ffffff;
}

.green-btn {
  display: block;
  background-color: #23d02c;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 3px;
  padding: 5px 15px;
  animation: 1s heartbeat alternate infinite;
}
.green-btn:hover {
  color: #ffffff;
  background-color: #047227;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  100% {
    transform: scale(1.1);
    /* Slightly enlarges */
    animation-timing-function: ease-in;
  }
}
.green-btn:hover {
  transition: 0.5s;
}

.banner-wrapper {
  position: relative;
  background-image: url("../images/banner.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 0;
}

.banner-img-m {
  display: none;
}
.banner-img-m img {
  width: 100%;
}

.banner-info-wrapper {
  width: 50%;
}

.banner-logo {
  margin-bottom: 15px;
}
.banner-logo img {
  width: 300px;
}

.banner-title-holder {
  font-size: 30px;
  margin-bottom: 15px;
}

.banner-title {
  font-size: 50px;
}
.banner-title p {
  margin-bottom: 0;
}

.pink-text {
  color: #f836a8;
}

.banner-small-title {
  font-size: 24px;
}

.banner-btn {
  margin-bottom: 15px;
}
.banner-btn a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  border-width: 2px;
}

.banner-tnc {
  font-size: 12px;
  margin-bottom: 15px;
}

.step-item {
  display: flex;
  align-items: center;
}
.step-item .step-num {
  color: #f836a8;
  margin-right: 15px;
  font-weight: 500;
  font-size: 20px;
}
.step-item .step-desc {
  font-size: 14px;
}

.tnc-holder {
  color: #fff;
  font-size: 14px;
  padding: 15px 0;
  width: -moz-max-content;
  width: max-content;
}
.tnc-holder .tnc-title {
  margin-bottom: 5px;
  font-size: 17px;
}
.tnc-holder li {
  margin-bottom: 10px;
}
.tnc-holder li p {
  margin-bottom: 5px;
}
.tnc-holder .tnc-table {
  margin: 10px 0;
}
.tnc-holder .tnc-table td {
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 5px;
}

.table-holder {
  padding: 15px 0;
}

.table-title {
  font-size: 28px;
  padding: 15px 0;
  text-align: center;
}

table {
  width: 60%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: auto;
}

.cardimg {
  width: 50px;
}

th,
td {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

th {
  background: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  white-space: nowrap;
}

td {
  font-size: 16px;
}

.footer-wrapper {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-holder {
  border-top: 1px solid #2e4068;
  padding: 10px 0 0;
}

.footer-info {
  text-align: center;
  border-bottom: 1px solid #2e4068;
}

.footer-reps {
  border-bottom: 1px solid #2e4068;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 0;
}
.footer-reps img {
  height: 43px;
  opacity: 0.5;
  transition: 0.3s;
  padding: 10px;
}
.footer-reps img:hover {
  opacity: 1;
}

.footer-copyright {
  text-align: center;
  padding: 15px 0;
}

.footer-yellow {
  background-color: #FFFF00;
  padding: 5px;
  text-align: center;
}
.footer-yellow img {
  height: 20px;
}

@media only screen and (max-width: 991px) {
  .banner-wrapper {
    background-image: unset;
    padding: 0;
  }
  .banner-wrapper .container {
    padding: 0;
  }
  .banner-img-m {
    display: block;
    margin-bottom: 15px;
  }
  .banner-info-wrapper {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }
  .banner-logo {
    margin-bottom: 10px;
  }
  .banner-title-holder {
    font-size: 18px;
  }
  .banner-title {
    justify-content: center;
    font-size: 23px;
  }
  .step-item {
    text-align: left;
    margin-bottom: 15px;
  }
  .step-item .step-num {
    font-size: 16px;
  }
  .banner-btn a {
    margin: 0 auto;
    font-size: 18px;
    padding: 3px 20px;
  }
  .table-holder,
  table {
    margin: auto;
  }
  .table,
  th {
    font-size: 14px;
    white-space: normal;
  }
  .table,
  td {
    font-size: 13px;
  }
  .table-title {
    font-size: 20px;
    text-align: center;
  }
  .cardimg {
    width: 30px;
  }
  .banner-small-title {
    font-size: 15px;
  }
  .banner-logo img {
    width: 200px;
  }
  .tnc-holder {
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .banner-wrapper .container {
    max-width: unset;
    padding: 0;
  }
}/*# sourceMappingURL=index.css.map */