@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Colors */
  --color-fff: #fff;
  --color-000: #000;
  --color-031644: #031644;
  --color-31343D: #31343d;
  --color-0058FF: #0058ff;
  /* Font Family */
  --font-primary: 'Poppins', sans-serif;
  --font-12: 0.75rem;
  --font-14: 0.875rem;
  --font-16: 1rem;
  --font-18: 1.125rem;
  --font-20: 1.25rem;
  --font-22: 1.375rem;
  --font-24: 1.5rem;
  --font-26: 1.625rem;
  --font-28: 1.75rem;
  --font-30: 1.875rem;
  --font-32: 2rem;
  --font-34: 2.125rem;
  --font-36: 2.25rem;
  --font-38: 2.375rem;
  --font-45: 2.8125rem;
  --font-55: 3.4375rem;
  --font-70: 4.375rem;
  --font-100: 6.25rem;
  --font-140: 8.75rem;
}
.text-primary {
  color: var(--color-0058FF) !important;
}
.text-muted {
  color: var(--color-31343D) !important;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-size: var(--font-16);
  font-weight: 400;
  line-height: 1.25;
  font-family: var(--font-primary);
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--color-fff);
  color: var(--color-31343D);
}
img {
  max-width: 100%;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}
button,
.btn {
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
}
.font-12 {
  font-size: var(--font-12);
}
.font-14 {
  font-size: var(--font-14);
}
.font-16 {
  font-size: var(--font-16);
}
.font-18 {
  font-size: var(--font-18);
}
.font-20 {
  font-size: var(--font-20);
}
.font-22 {
  font-size: var(--font-22);
}
.font-24 {
  font-size: var(--font-24);
}
.line-height-15 {
  line-height: 1.5;
}
.menu-nav-box {
  max-width: 57.5rem;
  margin-inline: auto;
  margin-bottom: 3.125rem;
  margin-top: 3.125rem;
}
.menu-nav-bar {
  display: flex;
  align-items: center;
  border-radius: 1.25rem;
  border: 1px solid #d5e0f6;
  box-shadow: 0px 4px 26.2px -17px #0058ffe3;
  background: linear-gradient(131.13deg, #f8fafd 22.77%, #eef4ff 101.07%);
  padding: 1.125rem 40px;
}
.logo-box {
  width: 10rem;
}
.nav-item-bar {
  margin-left: auto;
}
.nav-items {
  display: flex;
}
.nav-item-link {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
  display: block;
  padding: 1rem 1.875rem;
  text-decoration: none;
  color: var(--color-000);
}
.nav-item-link:hover {
  background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.temer-heading {
  font-weight: 500;
  font-size: var(--font-36);
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.countdown-item {
  text-align: center;
  padding: 0 2.875rem;
  position: relative;
  flex-shrink: 0;
  width: 16.875rem;
}

.countdown-item::after {
  content: '';
  width: 1px;
  height: 3.625rem;
  background: #d5e0f6;
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-70%);
}
.countdown-item:last-child:after {
  display: none;
}

.countdown-number {
  font-size: var(--font-140);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(180deg, #015efb 0%, #d6ffef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-label {
  font-size: var(--font-18);
  font-weight: 600;
  color: var(--color-31343D);
  text-transform: uppercase;
  letter-spacing: 7%;
}
.cta-banner {
  background: var(--color-fff);
  padding: 1.875rem;
  border-radius: 6rem;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.031);
  border: 1px solid #d5e0f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 64.375rem;
  position: relative;
  z-index: 2;
}

.btn-primary {
  background: var(--color-0058FF);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4rem;
  transition: all 0.2s ease;
  font-family: Poppins;
  font-weight: 600;
  font-size: var(--font-18);
  text-align: center;
  border: 1px solid #0058FF;
}

.btn-primary:hover {
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.2),
    0 2px 6px rgba(30, 64, 175, 0.15);
  background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid #0058FF;
}
.reg-header {
  color: var(--color-0058FF);
  font-weight: 600;
  font-size: var(--font-24);
  line-height: 100%;
  letter-spacing: 0%;
}
.reg-icon {
  max-width: 2.375rem;
  margin-right: 0.75rem;
}
.form-iframe {
  width: 100%;
  /* min-height: 33rem; */
}

/* https://css-loaders.com/spinner */
.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#0058ff 94%,#0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%,#15f6a0);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13{ 
  100%{transform: rotate(1turn)}
}

.heading-1 {
  font-weight: 500;
  font-size: var(--font-28);
  flex-grow: 1;
  text-align: center;
}
.hero-banner-wraper {
  display: block;
  position: relative;
  border-radius: 1.25rem;
  background: linear-gradient(131.13deg, #f8fafd 22.77%, #eef4ff 101.07%);
  padding: 1.875rem;
  padding-top: 6.0625rem;
}

#register {
	padding-top: 3rem;
}

.hero-section {
  padding: 4rem 0 7rem 0;
}

.hero-title {
  margin-bottom: 1.125rem;
  font-weight: 500;
  font-size: var(--font-45);
  background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading2 {
  /* margin-bottom: 1.125rem; */
  font-weight: 500;
  font-size: var(--font-45);
  background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-left: 0.625rem;
}

.result-text .heading2 {
	padding-left: 0;
}

.hero-subtitle {
  margin-bottom: 1rem;
  font-family: Poppins;
  font-weight: 500;
  font-size: var(--font-45);
  line-height: 121%;
  color: var(--color-031644);
  width: 100%;
  max-width: 32.1875rem;
}
.hero-sub-sub-title {
  font-size: var(--font-20);
  color: var(--color-31343D);
  width: 100%;
  max-width: 27.5rem;
}
.feature-tags {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.feature-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: var(--font-14);
  letter-spacing: 7%;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--color-000);
  z-index: 1;
  overflow: hidden;
  border: 2px solid transparent;
}

.feature-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 2rem;
  background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.regsec {
  position: absolute;
  height: 98.25rem;
}
.reg-bg {
  position: sticky;
  top: 1rem;
}
.reg-bg::before {
  content: '';
  position: absolute;
  background: #0058ff;
  filter: blur(42.599998474121094px);
  width: 60%;
  height: 77%;
  top: 50%;
  left: 50%;
  transform: translate(-71%, -45%);
}
.registration-form {
  display: block;
  padding: 1.875rem;
  border-radius: 1rem;
  border: 1px solid;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 0px solid transparent;
}

.registration-form::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 88, 255, 0.2) 0%, #d5e0f6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.what-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 34.375rem;
}

.what-feature-box {
  padding: 2.8125rem 0;
}

.numheading2 {
  font-weight: 600;
  font-size: var(--font-140);
  background: linear-gradient(
    180deg,
    #15f6a0 -37.5%,
    rgba(214, 255, 239, 0.2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

ul.numul li {
  display: flex;
  align-items: center;
  padding: 2.25rem 0;
  border-bottom: solid 1px #d2eae1;
}
ul.numul li:last-child {
  border-bottom: 0;
}
.atitle {
  font-size: var(--font-28);
  font-weight: 500;
  color: var(--color-031644);
  margin-bottom: 1.75rem;
}

.adesc {
  color: var(--color-31343D);
  width: 100%;
  max-width: 25rem;
}
.num-box {
  margin-right: 2.5rem;
  width: 5.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ctbanner {
  margin-bottom: -10rem;
  position: relative;
  margin-top: 5rem;
}
.ctbanner::before {
  content: '';
  position: absolute;
  width: 60%;
  height: 2rem;
  background: #4fffbc;
  filter: blur(202.60000610351562px);
  z-index: -1;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.early-result-section .early-result-section {
  border-radius: 1.25rem;
  background: linear-gradient(123.25deg, #f8fafd 24.16%, #eef4ff 105.47%);
}
.res-foot-text-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.125rem;
}

.early-result-top {
  position: relative;
  display: block;
  border-radius: 1rem;
  background: #fff;
  padding: 3.125rem;
  z-index: 1;
  border: 0px solid transparent;
  width: 100%;
  box-shadow: 0 1.25rem 1.375rem -0.625rem #0058ff29;
}

.early-result-top::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(0, 88, 255, 0.2) 0%, #d5e0f6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.erly-text-right-bx {
  text-align: center;
}
.erly-text-right-head-bx {
  display: inline-block;
  margin-inline: auto;
  text-align: right;
  margin-bottom: 1.5rem;
}
.res-label {
  display: inline-flex;
  padding: 0 1.875rem;
  position: relative;
}
.res-label::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 1px;
  background: #031644;
  top: calc(50% - 1px);
  left: 0;
  z-index: -1;
}
.res-label span {
  background: #fff;
}
.erly-text-right-head {
  font-size: var(--font-28);
  color: var(--color-031644);
  text-align: center;
  line-height: 1.21;
}
.erly-text-right-head strong {
  font-weight: 500;
}
.erly-text-right-head span {
  color: var(--color-0058FF);
}
.result-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.result-col {
  /* border-right: solid 2px #0058ff; */
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.result-col:first-child {
  padding-right: 1.25rem;
}
.result-col:nth-child(2) {
  justify-content: center;
  padding: 0 0.625rem;
}
.result-col:last-child {
  justify-content: flex-start;
  border: 0;
}
.result-col-bx {
  width: 100%;
  max-width: 12.5rem;
}
.result-col-bx-point {
  font-size: var(--font-100);
  font-weight: 600;
  background: linear-gradient(180deg, #1ecd8a 27%, #d6ffef 112.33%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-col-bx-desc {
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 127%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-31343D);
}

.res-foot-text {
  line-height: 169%;
  letter-spacing: 0%;
  color: var(--color-31343D);
  max-width: 16.875rem;
}

.res-foot-text-img {
  rotate: -90deg;
}
.elybtncontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-top: 3.125rem;
  margin-bottom: -5.625rem;
}
.elybtnbox {
  position: relative;
  display: block;
  border-radius: 3.75rem;
  background: #fff;
  padding: 1.375rem;
  z-index: 1;
  overflow: hidden;
  border: 0px solid transparent;
  box-shadow: 0 1.25rem 1.375rem -0.625rem #0058ff29;
}

.elybtnbox::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 3.75rem;
  background: linear-gradient(180deg, rgba(0, 88, 255, 0.2) 0%, #d5e0f6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.elybtnbox .btn {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.speek-box {
  width: 100%;
  max-width: 59.375rem;
}
.speek-sec {
  padding: 9.0625rem 0 4.375rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.heading-3 {
  font-weight: 500;
  font-size: var(--font-45);
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color-031644);
}

.speek-box-content-box {
  margin-bottom: 1.875rem;
}
.speek-img-box {
  display: block;
  position: relative;
  width: 18rem;
  /* height: 17.375rem; */
  height: 18rem;
  border-radius: 1.125rem;
  background: #fff;
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1.25rem 1.375rem -0.625rem #0058ff29;
}
.early {
  position: relative;
}
.erly-tag-box {
  position: absolute;
  bottom: 0.625rem;
  left: -0.75rem;
}
.erly-tag-img {
  max-width: 100%;
}
.speek-img-box img {
  /* min-width: 100%;
  min-height: 100%; */
  width: 17rem;
  height: 17rem;
  object-fit: cover;
  border-radius: 0.5625rem;
}

.speek-text-box {
  text-align: center;
  padding: 1.375rem 0;
}

.speek-text-title {
  color: var(--color-0058FF);
  font-weight: 600;
  font-size: var(--font-24);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.speek-text-title img {
	height: var(--font-24);
	margin-left: 10px;
}

.speek-text-box h4 a:hover {
	/* background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
  	background-clip: text; */
  	color: #0058FF !important;
  	text-decoration: underline !important;
}

.speek-text-box p {
  font-weight: 500;
  font-size: var(--font-18);
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
  margin-top: 0.625rem;
  width: 100%;
  padding: 0 1.25rem;
}
.fttr .btn {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.footer {
  padding: 4.375rem 0;
}
.footer-logo {
  text-align: center;
}
.footer-tagline {
  font-weight: 500;
  font-size: var(--font-28);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.footer-sub-tagline {
  font-weight: 500;
  font-size: var(--font-28);
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  background: linear-gradient(90.57deg, #0058ff 30.15%, #15f6a0 72.13%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3.125rem;
}

.footer-nav-box {
  display: flex;
  justify-content: center;
}
.footer-nav {
  width: 44.6875rem;
  height: 4rem;
  padding: 0 3.125rem;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 6.25rem;
  background: #fff;
  z-index: 1;
  overflow: hidden;
  border: 0 solid transparent;
  gap: 2.5rem;
}

.footer-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 6.25rem;
  background: linear-gradient(180deg, rgba(0, 88, 255, 0.2) 0%, #d5e0f6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}
.footer-nav-box-bottom {
  display: none;
}
.footer-nav a:hover {
  background: linear-gradient(90deg, #0058ff 0%, #15f6a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-nav a.ms-auto {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--color-31343D) !important;
}
.mob-lounch-box {
  display: none;
}
@media (min-width: 1400px) {	
  .pos {
    position: relative;
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  html {
    font-size: 90%;
  }
  .pos {
    position: relative;
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  html {
    font-size: 86%;
  }
  .regsec {
    height: 105.25rem;
  }
  .pos {
    position: relative;
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  html {
    font-size: 80%;
  }
  .countdown-number {
    font-size: var(--font-70);
  }
  .countdown-item {
    width: 11.875rem;
  }
  .container,
  .container-md,
  .container-sm {
    max-width: 900px;
  }
  .what-title-box {
    max-width: 30.375rem;
  }
  .regsec {
    position: absolute;
    height: 100.25rem;
  }
  .res-foot-text-bx {
    margin-top: 1.125rem;
    flex-direction: column;
  }
  .res-foot-text {
    max-width: 21.875rem;
    text-align: center;
    margin-bottom: 1.875rem;
  }
  .res-foot-text-img {
    rotate: 45deg;
    width: 1.875rem;
    margin-bottom: 32px;
  }
  .reg-header {
    font-weight: 500;
  }
  .numheading2 {
    font-size: var(--font-70);
  }
  .num-box {
    margin-right: 1rem;
    width: 4.625rem;
  }
  ul.numul li {
    align-items: flex-start;
  }
  .result-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  html {
    max-width: 100vw;
    overflow: hidden;
    overflow-y: auto;
  }
  body {
    max-width: 100vw;
    padding-top: 5.375rem;
    padding-bottom: 3.625rem;
    overflow: hidden;
    overflow-y: auto;
  }
  header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
  }
  .mamberger-box {
    position: absolute;
    top: 1.25rem;
    right: 1.625rem;
    width: 19px;
    height: 18px;
    background: url('../images/menu-bar.svg') no-repeat center center;
    cursor: pointer;
    transition: all 0.2s;
  }
  .mamberger-box.show {
    background: url('../images/arrow-up.svg') no-repeat center center;
  }

  .mamberger-box img {
    display: none;
  }
  .logo-box {
    width: 6.25rem;
  }
  .menu-nav-box {
    width: unset;
    margin-bottom: 1.125rem;
    margin-top: 0;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
  .menu-nav-bar {
    position: relative;
    border-radius: 0;
    padding: 0.875rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav-item-bar {
    margin-left: unset;
    width: 100%;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }
  .nav-item-link {
    border-bottom: solid 1px #d5e0f6;
  }
  .nav-item-bar.show {
    height: 210px;
    padding-top: 0.9375rem;
  }
  .hero-section {
	padding: 4rem 0 1rem 0;
}
  .nav-items {
    display: flex;
    flex-direction: column;
  }
  .temer-heading {
    font-size: var(--font-18);
  }
  .countdown-number {
    font-size: var(--font-55);
  }
  .countdown-item {
    padding: 0 0.51rem;
    width: 6rem;
  }
  .countdown-label {
    font-size: var(--font-12);
  }
  .cta-banner {
    padding: 1rem;
    border-radius: 1rem;
    margin: 1rem auto;
    flex-direction: column;
  }
  .heading-1 {
    font-size: var(--font-20);
    max-width: 20rem;
  }
  .btn-primary {
    padding: 0.75rem 2rem;
    border-radius: 4rem;
    font-size: var(--font-16);
  }
  .cta-banner .btn-primary {
    width: 80%;
    margin-top: 1rem;
  }
  .hero-banner-wraper {
    padding: 0;
    padding-top: 4.063rem;
    margin-left: -12px;
    margin-right: -12px;
    padding-bottom: 200px;
    margin-bottom: 350px;
  }
  .hero-title {
    margin-bottom: 0;
    font-size: var(--font-30);
  }
  .hero-subtitle {
    margin-bottom: 1ren;
    font-size: var(--font-30);
  }
  .hero-sub-sub-title {
    font-size: var(--font-18);
  }
  .feature-tags {
    gap: 0.5rem;
    margin: 1rem 0;
  }
  .feature-tag {
    padding: 0.575rem 1.25rem;
    font-size: var(--font-12);
  }
  .heroblk {
    padding: 1.5rem !important;
  }
  .pos {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .regsec {
    position: absolute;
    height: unset;
    padding: 0 16px;
    top: 0;
  }
  .reg-bg {
    position: relative;
    top: unset;
    padding: 0 1rem;
  }
  .reg-bg::before {
    display: none;
  }
  .registration-form {
    display: block;
    padding: 1.5rem 1rem;
    box-shadow: 0 0 18px 2px rgba(13, 119, 255, 0.1);
  }
  .reg-header {
    font-weight: 500;
    font-size: var(--font-20);
    line-height: 1.3;
  }
  .reg-icon {
    max-width: 3.5rem;
  }
  .heading2 {
    font-weight: 500;
    font-size: var(--font-30);
  }
  .what-title-box {
    flex-direction: row-reverse;
    align-items: last baseline;
    justify-content: flex-end;
    padding-left: 14px;
  }
  .what-title-box img {
    width: 40px;
    margin-right: 1rem;
  }
  .what-feature-box {
    padding: 0 12px 30px;
  }
  .num-box {
    margin-right: 0;
    width: 2.85rem;
    justify-content: flex-start;
  }
  .numheading2 {
    font-size: var(--font-55);
  }
  .atitle {
    font-size: var(--font-20);
    margin-bottom: 5px;
  }
  ul.numul li {
    align-items: flex-start;
    padding: 1.5rem 0;
  }
  .result-text {
    text-align: center;
  }
  .early-result-section .early-result-section {
    border-radius: 0;
    background: linear-gradient(-180deg, #fff 24.16%, #eef4ff 105.47%);
    position: relative;
  }
  .early-result-top {
    padding: 2.75rem 2rem;
    box-shadow: 0 0 12px 0 #0058ff29;
  }
  .res-foot-text-bx {
    margin-top: 1.125rem;
    flex-direction: column;
  }
  .res-foot-text-img {
    rotate: 45deg;
    width: 1rem;
    margin: 1rem auto;
  }
  .erly-text-right-head {
    font-size: var(--font-20);
  }
  .erly-text-right-head strong {
    display: block;
  }
  .erly-text-right-head span {
    color: var(--color-0058FF);
    display: block;
  }
  .erly-text-right-head-bx {
    text-align: center;
  }
  .res-label {
    padding: 0 1rem;
    font-size: var(--font-12);
  }
  .result-row {
    align-items: end;
    gap: 1rem;
  }
  .result-col {
    align-items: center;
    justify-content: flex-end;
    /* padding-bottom: 1rem; */
  }
  .result-col-bx-point {
    font-size: var(--font-70);
  }
  .elybtncontainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-top: 1.125rem;
    margin-bottom: 0;
  }
  .elybtnbox {
    border-radius: 0;
    background: unset;
    padding: 0;
    border: 0px solid transparent;
    box-shadow: none;
  }
  .elybtnbox::before {
    display: none;
  }
  .elybtnbox .btn {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .heading-3 {
    font-size: var(--font-30);
  }
  .speek-sec {
    padding: 2rem 0 3rem 0;
  }
  .speek-box-content-box {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .speek-img-box {
    margin-inline: auto;
    box-shadow: 0 20px 18px -19px #0058ff29;
    /* width: 223px;
    height: 220px; */
  }
  .speek-text-box {
    text-align: center;
    padding: 1.125rem 0 1.375rem 0;
  }
  .speek-text-title {
    font-size: var(--font-20);
  }
  .speek-text-box p {
    font-size: var(--font-16);
    margin-top: 0.25rem;
    max-width: 280px;
  }
  .footer {
    padding: 2.375rem 0 0;
  }
  .fttr {
    margin-top: 0.75rem;
  }
  .footer-logo {
    text-align: center;
    max-width: 187px;
    margin-inline: auto;
  }
  .footer-tagline {
    font-size: var(--font-20);
    line-height: 1.5;
    max-width: 290px;
    margin-inline: auto;
  }
  .footer-sub-tagline {
    font-size: var(--font-20);
  }
  .footer-nav a.text-muted {
    display: none;
  }
  .footer-nav a.text-primary {
    margin: auto;
  }
  .footer-nav {
    width: 134px;
    height: 34px;
    padding: 0;
    text-align: center;
  }
  .footer-nav-box-bottom {
    display: block;
  }
  .footer-nav1 {
    background: #f1f6ff;
    display: flex;
    padding: 1rem;
    margin: 20px -12px 0;
    gap: 40px;
    justify-content: center;
  }
  .footer-nav1 a {
    font-size: 0.625rem;
  }
  .ms-auto {
    margin: auto !important;
  }
  .mob-lounch-box {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
  }
  .mob-lounch-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    color: var(--color-0058FF);
    text-decoration: none;
    border-top: solid 1px #0058ff36;
    box-shadow: 0px -4px 10px -2px rgba(0, 55, 159, 0.1);
    background: #fff;
  }
  .container,
  .container-sm {
    max-width: unset;
    width: 100%;
  }
  .result-col-bx-desc {
    font-size: var(--font-12);
  }
  .ctbanner::before {
    width: 50%;
    height: 3rem;
  }
}

@media (max-width: 576px) {
	.countdown-item {
        padding: 0 0.51rem;
        width: 5.4rem;
    }
    .hero-banner-wraper {
        padding: 0;
        padding-top: 4.063rem;
        margin-left: -12px;
        margin-right: -12px;
        padding-bottom: 250px;
        margin-bottom: 300px;
    }
    .ctbanner {
    	margin-top: 3rem;
    }
  .result-row {
    flex-direction: column;
  }
  .result-col {
    align-items: center;
    justify-content: center;
    padding-bottom: 1rem;
  }
  .result-row {
    align-items: center;
    gap: 1rem;
  }
  .result-col {
    border-bottom: 1px solid #e8effd;
    border-right: 0;
  }
  	.result-col:nth-child(2) {
  		padding-bottom: 1rem;
  	}
	.result-col:first-child {
		padding-right: 0;
	}
	.result-col-bx-desc {
    font-size: var(--font-18);
  }
}
@media (max-width: 359px) {
	.countdown-item {
        padding: 0 0.51rem;
        width: 25vw;
    }
	.countdown-number {
	  font-size: var(--font-36);
	}
}