@import url('https://fonts.googleapis.com/css2?family=Jost: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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@font-face {
  font-display: block;
  font-family: bootstrap-icons;
  src: url(../fonts/bootstrap-icons-476adf42.woff2) format('woff2');
}
:root {
  --primary-gradiant: linear-gradient(90deg, #4154f1 0%, #6472f1 100%);
  --secondary-color: #4154f1;
  --primary-color: #4154f1;
  --text-color: rgb(186, 186, 186);
  --heading-color: rgb(0, 0, 0);
  --field-color: rgb(186, 186, 186);
}

.first {
  height: 80vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.first h1 {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
  color: #012970;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 40px;
}
.getstarted {
  min-width: 250px;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 30px;
  padding: 1.15rem 3.2rem;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: .5s;
  color: #fff;
  background: #4154f1;
  box-shadow: 0 5px 30px #4154f166;
}

body {
  font-family: 'Jost';
  width: 100%;
}
main {
  min-height: 100vh;
  width: 100%;
  /* display: grid; */
}
header {
  width: 100%;

  display: flex;
  align-items: center;
  padding: 30px 100px;
  position: relative;
}
.step-count {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-number {
  border-radius: 50%;
  background-color: rgb(227, 227, 227);
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.step-number::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--primary-gradiant);
  transition: 0.3s;
}

.step-number .number-inner {
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  width: 46px;
  height: 46px;
  font-size: 28px;
  font-family: 'Roboto';
  color: rgb(227, 227, 227);
  font-weight: bold;
  display: grid;
  place-content: center;
  position: relative;
}
.step-count-bar {
  display: flex;
  align-items: center;
  position: relative;
}
.step-count-bar::before {
  content: '';
  position: absolute;
  background: var(--primary-gradiant);
  height: 4px;
  width: 0px;
  left: 75px;
  z-index: 1;
  transition-delay: 0.5s;
  transition: 0.3s;
}
.step-count-bar::after {
  content: '';
  display: inline-block;
  background-color: rgb(227, 227, 227);
  height: 4px;
  width: 100px;
  position: relative;
  z-index: 0;
}
.no-line::before {
  display: none;
}
.no-line::after {
  display: none;
}
.active .step-number .number-inner {
  color: var(--primary-color);
}
.timer {
  position: absolute;
  top: 100px;
  right: 100px;
}
.timer-inner {
  width: 130px;
  height: 130px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: grid;
  column-gap: 50px;
  align-items: center;
  border: solid 10px var(--primary-color);
}

.timer .timer-count {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: normal;
  text-align: center;
  line-height: 1;
}
.timer .timer-count span {
  display: block;
  font-weight: bold;
  font-size: 30px;
}
.question {
  position: absolute;
  top: 110px;
  left: 40px;
  z-index: -2;
}
form {
  position: relative;
}
form::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  background-image: url(../images/bubble.png);
  border-top: solid 4px var(--field-color);
  width: 100%;
  height: 56%;
  z-index: -1;
}

.quiz-question {
  font-size: 50px;
  color: var(--heading-color);
  font-weight: bold;
  text-align: center;
  width: 75%;
  margin: 70px auto;
  margin-bottom: 145px;
}
.radio-btn {
  position: relative;
  width: 93%;
  height: 200px;
  text-align: center;
  display: grid;
  align-content: center;
  padding: 0 15px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.radio-btn::after {
  content: '';
  width: 0;
  height: 4px;
  right: -30px;
  top: 80px;
  background-image: var(--primary-gradiant);
  position: absolute;
  transition: 0.5s;
}
.radio-btn::before {
  content: '';
  width: 0;
  height: 4px;
  left: -30px;
  top: 80px;
  background-image: var(--primary-gradiant);
  position: absolute;
  z-index: 0;
  transition: 0.5s;
}

.radio-btn.active::before,
.radio-btn.active::after {
  width: 30px;
}

.radio-btn label {
  font-size: 25px;
  color: var(--field-color);
  font-weight: bold;
  pointer-events: none;
  transition: 0.5s;
  position: relative;
  z-index: 100;
}
.radio-btn input {
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  border: solid 4px var(--field-color);
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  cursor: pointer;
  transition: 0.5s;
}
.radio-btn input::before {
  content: 'X';
  border: solid 4px var(--field-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: grid;
  place-content: center;
  font-size: 25px;
  color: var(--field-color);
  font-weight: bold;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  transition: 0.5s;

  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  pointer-events: none;
}

.radio-btn .op1::before {
  content: 'A';
}
.radio-btn .op2::before {
  content: 'B';
}
.radio-btn .op3::before {
  content: 'C';
}
.radio-btn .op4::before {
  content: 'D';
}
.radio-btn .op5::before {
  content: 'E';
}
.radio-btn .op6::before {
  content: 'F';
}
.radio-btn input:checked {
  border-color: var(--primary-color);
}

.radio-btn input:checked ~ label {
  color: var(--primary-color);
}
.radio-btn input:checked::before {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.next-prev {
  width: 97%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  height: 100px;
  align-items: center;
  flex-wrap: wrap;
}
.next-prev button {
  border: solid 1px rgb(225, 225, 225);
  border-radius: 6px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.03);
  width: 234px;
  height: 72px;
  font-size: 18px;
  color: rgb(124, 120, 120);
  font-weight: bold;
  text-transform: uppercase;
}
.next-prev button i {
  margin: 0 8px;
}
.next {
  background-image: linear-gradient(90deg, #4154f1 0%, #6472f1 100%);
  color: rgb(255, 255, 255) !important;
}

#error div {
  position: fixed;
  top: 20px;
  left: 20px;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

.header.header-scrolled {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 20px #0129701a;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 40px;
  height: 40px;
  margin-right: 6px;
  margin-inline-end: 6px;
}

.header .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #012970;
  font-family: Nunito, sans-serif;
  margin-top: 3px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: Nunito, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #012970;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  margin-inline-start: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #4154f1;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #4154f1;
  padding: 8px 25px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #5969f3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0 0 30px #7f89a140;
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .ml-20 {
  margin-left: 20px;
  margin-inline-start: 20px;
}

@media only screen and (max-width: 780px) {
  .navbar .ml-20 {
    margin-left: 0;
  }
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #4154f1;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0 0 30px #7f89a140;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #4154f1;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
.bi:before,
[class^='bi-']:before,
[class*=' bi-']:before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.bi-list:before {
  content: '\f479';
}
.bi-check-circle:before {
  content: '\f26b';
}
.quiz-question img {
  width: 100%;
  max-width: 300px;
}
.radio-btn img {
  max-width: 100%;
}
@media (max-width: 480px) {
  .radio-btn {
    height: 160px;
  }
}
#testimonials .card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.5rem;
  color: #8492a6;
}
#pricing .card {
  --bs-card-border-width: none !important;
  --bs-card-border-radius: 0.8rem !important;
}
#testimonials .card {
  margin: 0;
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #eff2f7;
  border-radius: 0.375rem;
}
#testimonials .avatar {
  position: relative;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  height: 40px;
  width: 40px;
  border-radius: 0.25rem;
}
#testimonials .text-muted {
  color: #8492a6 !important;
}
#testimonials .d-block {
  display: block !important;
}
#testimonials .static-rating {
  color: rgb(24, 238, 160);
}
#testimonials .pl-3,
.px-3 {
  padding-left: 1rem !important;
  padding-inline-start: 1rem !important;
}
#testimonials h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 600;
}
#testimonials i {
  padding-right: 4px;
  padding-inline-end: 4px;
  padding-left: 4px;
  padding-inline-start: 4px;
  padding-bottom: 2px;
  margin-right: 2px;
  margin-inline-end: 2px;

  color: rgb(255 255 255);
  background: #01bb97;
  font-size: 0.85rem;
  vertical-align: middle;
}
#testimonials .fluid-paragraph {
  margin: auto;
  padding: 0 1.5rem;
  position: relative;
}
#fullResult1 {
  display: none;
}
.ssl-img {
  height: 2rem;
  display: none;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.18) !important;
}
.border-primary {
  /* --bs-border-opacity: 1.5px; */
  border-color: #5871ff !important;
  border-width: 0.15rem !important;
}
.pricing-table {
  justify-content: center;
  align-items: center;
  padding-top: 15px;
  display: flex;
}
.pricing-table-image {
  max-width: 159.69px;
}
.pricing-table-image1 {
  max-width: 340px;
}
#getFullResults1 {
  display: none;
}
#getFullResults {
  display: block;
}
fullTitle {
  font-weight: 600;
  font-size: 1.5rem;
  color: #323c99;
}
.title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #4e5475;
}
.position-relative .shape-bottom {
  top: 100%;
}

.position-relative .shape-fluid-x {
  width: 100%;
}

.position-relative .shape {
  background-color: currentColor;
  pointer-events: none;
  position: absolute;
}

.position-relative .text-dark {
  color: #1b1642 !important;
}

.position-relative .pb-18 {
  padding-bottom: 14rem !important;
}

.position-relative .shape-bottom .shape-img {
  top: inherit;
}

.position-relative .shape-fluid-x .shape-img {
  width: inherit;
}

.position-relative .shape-img {
  overflow: hidden;
  position: inherit;
}

.position-relative .pb-8 {
  padding-bottom: 6rem !important;
}

.position-relative .shape-bottom .shape-img > svg {
  top: 0;
  transform-origin: bottom center;
}

.position-relative .shape-img > svg {
  height: 100%;
  position: inherit;
  transform: scale(2);
  width: 100%;
}

.position-relative img,
svg {
  vertical-align: middle;
}

.pricing .text-left {
  text-align: left;
  text-align: start;
}

.pricing .text {
  width: 100%;
  text-align: right;
  text-align: end;
  font-size: 1.1rem;
}

.pricing .img-fluid {
  max-width: 100%;
  width: auto;
  height: 8.5rem;
}

.pricing .card-body {
  padding: 2.5rem 2rem;
}

.pricing .card-footer {
  padding: 2rem 3rem;
}

.pricing .bottom-start {
  left: 0 !important;
}

.pricing .bottom-end,
.bottom-start {
  bottom: 0 !important;
  transform: none !important;
}

.pricing .text-warning {
  color: #7272f5 !important;
}

.pricing .ms-n10 {
  margin-left: -5rem !important;
}

.pricing .mb-n10 {
  margin-bottom: -5rem !important;
}

.pricing .position-absolute {
  position: absolute !important;
}

.pricing .pricing-text {
  width: 100%;
  text-align: right;
  text-align: end;
  font-size: 1.2rem;
}

.pricing-services img {
  max-width: 100%;
  width: auto;
  height: 11.5rem;
  transition: 0.5s;
  transform: scale(1.1);
}

.pricing-services .service-box {
  border: 1px solid #eff2f7;
  box-shadow: 0 0.75rem 1.5rem #12263f08;
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.pricing-services .service-box:hover img {
  transform: scale(1);
}

.pricing-services h3 {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
}

.pricing-top h1 {
  font-weight: 700 !important;
  font-size: 3.1rem !important;
  margin-bottom: 1rem !important;
}

@media (max-width: 992px) {
  .pricing-top h1 {
    font-weight: 700 !important;
    font-size: 3rem !important;
    margin-bottom: 0.5rem !important;
  }

  html {
    font-size: 15px;
  }

  .col-12.col-lg-4 {
    order: 2;
  }

  .col-12.col-lg-8 {
    order: 1;
  }

  .col-12.col-lg-4 img {
    padding-top: 20px;
  }
}
.final-container {
  margin: 20px 16px;
  display: flex;
  justify-content: center;
}
.final-content {
  max-width: 420px;
}
.final-container img {
  display: block;
  width: 100%;
  max-width: 100%;
}
.fullTitle {
  font-weight: 600;
  font-size: 1.5rem;
  color: #323c99;
}
.title {
  font-weight: 600;
  font-size: 1.5rem;
  color: #4e5475;
}
.custom-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.custom-text span {
  font-size: 15px;
}
.custom-text span:first-child {
  font-weight: 600;
}
.custom-select {
  display: block;
  position: relative;
  width: auto;
  max-width: 100%;
  font-size: 1.15rem;
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.select-button-full {
  border: 1px solid #4d5de7;
}
.select-button {
  width: 100%;
  font-size: 1.15rem;
  background-color: #fff;
  padding: 1rem 1rem;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.select-dropdown {
  position: relative;
  list-style: none;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border-radius: 4px;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.select-dropdown li {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 10px 8px;
}
.pricing .card-body {
  padding: 2.5rem 2rem;
}
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.position-relative {
  position: relative !important;
}
.arrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #000;
  transition: transform ease-in-out 0.3s;
}
.pricing .card-footer {
  padding: 2rem 3rem;
}
.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.d-flex {
  display: flex !important;
}
.pricing-text {
  width: 100%;
  text-align: right;
  text-align: end;
  font-size: 1.2rem;
}
.pricing-text h4 {
  margin-bottom: 0;
}

.getstarted {
  background: #4d5de7;
  padding: 18px 0;
  border-radius: 4px;
  color: #fff;
  border: #4d5de7;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
}
