*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --radius-1: 16px;
  --radius-2: 24px;
  --radius-full: 100px;
  --primary: #7610bf;
  --orange: #ff7a00;
  --primary-bg: linear-gradient(0deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.5) 100%),
    #f7f5f2;
  --primary-bg-2: #f8f2ec;
  --primary-bg-3: rgba(237, 229, 218, 1);
  --secondary: #f26f21;
  --text-color: #585858;
  --text-color-2: rgba(116, 83, 61, 1);
  --brown: #74533d;
  --polish-gray: #404040;
  --text-color-2: #5e5e5e;
  --text-placeholder: #404040;
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  font-family: 'Poppins', sans-serif;
  padding-right: 0px !important;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  margin-top: 20px;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* ==========================
   From Loader
========================== */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

ul {
  padding-left: 0rem;
  margin-bottom: 0rem;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.primary-bg {
  background-color: var(--primary);
}

.custom-container {
  width: 85vw;
  max-width: 90%;
  margin: auto;
}

.custom-container-2 {
  width: 90vw;
  max-width: 100%;
  margin: auto 0 auto auto;
}

.header-container {
  position: fixed;
  top: 1vw;
  width: 100%;
  left: 0;
  z-index: 11;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  padding: 0.85rem 2rem;
  background: red;
  width: 90%;
  margin: auto;
  gap: 1rem;
  border-radius: 241px;
  border: 1px solid #eee;
  background: var(--light);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 21px;
  cursor: pointer;
}

.logo {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 120px;
  max-width: 100%;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ==========================
  Header Timer Pill Styles
========================== */

.header-timer-pill {
  background-color: var(--primary);
  border-radius: 100px;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

.timer-label {
  font-weight: 700;
  font-size: 1.1vw;
  text-wrap: nowrap;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.unit-circle {
  background-color: white;
  color: var(--primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.unit-label {
  font-size: 7px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-top: -2px;
}

.timer-separator {
  font-weight: 800;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}

/* ==========================
   Swiper Navigation 
========================== */

.swiper-button-lock,
.swiper-pagination-lock {
  display: none !important;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.contact-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 20rem;

  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);

  border-radius: 20px;
  border: 1px solid rgba(118, 16, 191, 0.34);
  background: var(--light);
  padding: 2rem 1.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

.dropdown-title {
  color: #7610bf;
  font-size: 1.35vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 700;
}

.drop-content strong {
  color: #323232;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin: 1rem 0 0.65rem 0;
}

.drop-content-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  gap: 0.5rem;
  border: 1px solid #dcb4f9;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
}

.drop-content-txt p {
  color: #7610bf !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.contact-dropdown p {
  color: #404040;
  font-size: 1rem;
  font-weight: 400;
}

.drop-contact:hover .contact-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(5%);
  -ms-transform: translateY(5%);
  transform: translateY(5%);
}

.m-n3 {
  margin: 0 0 0 -3rem;
}

.m-n2 {
  margin: -2rem 0 0 0;
}

.section-heading {
  position: relative;
  z-index: 4;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  color: #ccc !important;
  cursor: not-allowed;
}

.custom-container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

section.main-banner {
  margin: 8vw 0 0 0;
}

.banner-container {
  display: -ms-grid;
  display: grid;
  padding: 10px 50px;
  -ms-grid-columns: auto 1.5rem 38vw;
  grid-template-columns: auto;
  place-items: center;
}

@media (max-width: 489px) {

  .banner-container {
    padding: 10px;
  }
}


.banner-container .banner-content-1 {
  border-radius: 40px;
  border: 1px solid #eee;
  overflow: hidden;
  position: relative;
  background: var(--light);
  padding: 0;
  z-index: 1;
  align-self: start;
}

.desktop_image_area {
  display: block;
}

.mobile_image_area {
  display: none;
}

.desktop_image_area img,
.mobile_image_area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.disclaimer-content-1 {
  padding-top: 1rem;
  font-size: 8px;
  color: 5E5E5E;
}

.disclaimer-content-1-header {
  font-size: 8px;
}

.banner-container .banner-content-1::after {
  content: "";
  position: absolute;
  background: url(../images/line.png) no-repeat center center / cover;
  width: 100%;
  height: 45%;
  z-index: -1;
  top: 7%;
  left: 0;
}

.banner-countdown {
  width: 50vw;
  max-width: 90%;
  margin: auto;
  display: none;
  /* display: flex; */
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0.85rem 2.5rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--light);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 0 0 20px 20px;
  background-color: var(--primary);
}

.countdown-txt {
  font-size: 1.15vw;
  font-weight: 700;
  text-transform: capitalize;
}

.countdown-number .flipdown {
  width: 100%;
  height: 100%;
}

.countdown-number .flipdown.flipdown__theme-dark {
  font-family: unset;
  font-weight: unset;
}

.flipdown .rotor-group:last-child {
  padding-right: 0px !important;
}

.countdown-number .flipdown .rotor {
  float: left;
  width: 30px;
  height: 40px;
  margin: 0px 0px 0px 0px;
  border-radius: 6px 0 0 6px;

  font-size: 1.85vw;
  font-weight: 700;
}

.countdown-number .flipdown .rotor:after {
  width: 100%;
  height: 50%;
}

.countdown-number .flipdown .rotor-top,
.countdown-number .flipdown .rotor-bottom {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 50%;
}

.countdown-number .flipdown .rotor-leaf-front,
.countdown-number .flipdown .rotor-leaf-rear {
  width: 100%;
  height: 50%;
}

.countdown-number .flipdown.flipdown__theme-dark .rotor-group-heading:before {
  color: var(--light);

  font-weight: 600;
  font-size: 1rem;
}

.countdown-number .flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):before,
.countdown-number .flipdown .rotor-group:nth-child(n + 2):nth-child(-n + 3):after {
  content: "";
  position: unset;
  bottom: unset;
  left: unset;
  width: unset;
  height: unset;
  border-radius: unset;
}

.countdown-number .flipdown .rotor:last-child {
  border-radius: 0 6px 6px 0;
}

.countdown-number .flipdown .rotor-top {
  line-height: 40px;
  border-radius: 4px 4px 0px 0px;
}

.countdown-number .flipdown .rotor-leaf-front {
  line-height: 40px;
  border-radius: 4px 4px 0px 0px;
}

.countdown-number .flipdown .rotor-leaf {
  width: 100%;
  height: 100%;
}

.countdown-number .flipdown .rotor-bottom {
  bottom: 0;
  line-height: 0;
  border-radius: 0px 0px 4px 4px;
}

.countdown-number .flipdown.flipdown__theme-dark .rotor:after,
.countdown-number .flipdown.flipdown__theme-light .rotor:after {
  border-top: solid 2px var(--primary) !important;
}

.countdown-number .flipdown.flipdown__theme-dark .rotor,
.countdown-number .flipdown.flipdown__theme-dark .rotor-top,
.countdown-number .flipdown.flipdown__theme-dark .rotor-leaf-front {
  color: var(--primary);
  background-color: var(--light);
}

.countdown-number .flipdown.flipdown__theme-dark .rotor-bottom,
.countdown-number .flipdown.flipdown__theme-dark .rotor-leaf-rear {
  color: var(--primary);
  background-color: var(--light);
}


.content-img-txt {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 18vw auto;
  grid-template-columns: 18vw auto;
  margin: 1rem 0 0 0;
}

.content-img {
  width: 100%;
}

.content-img img {

  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 10;
  overflow: visible;
  left: 16%;
  top: 10%;
}

.content-txt {
  margin: 1rem 0 2rem 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

.content-txt .banner-title {
  font-weight: 900;
  text-transform: capitalize;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary);
  font-size: 2.2vw;
  text-align: right;
  margin-bottom: 25px;
  line-height: 1.1;
  padding: 0.5rem 2rem;
}

.banner-plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 90%;
  margin-left: auto;
  gap: 15px
}

.banner-plan {
  background: white;
  border-radius: 20px;
  padding: 0;
  border: 1px solid #eee;
  position: relative;
}

.banner-plan:before {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  top: 0;
  left: -35%;
  z-index: 1;
  background: #f6ebfc;
}

.banner-plan.pay-plan:before {
  display: none;
}

.pay-plan-top {
  padding: 0px 30px 10px;
  border-bottom-left-radius: 30px;
  background: #f6ebfc;
}

.banner-plan:not(.pay-plan) {
  padding: 16px 30px;
}

.pay-plan {
  padding-bottom: 0;
}

.plan-tag {
  display: inline-block;
  background: #7610bf;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 10px;
  margin-bottom: 5px;
  width: fit-content;
  position: absolute;
  top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.banner-plan.pay-plan .plan-tag {
  font-size: 18px;
}

.plan-amount {
  font-size: 80px;
  font-weight: 800;
  color: #f37021;
  margin: 0px;
  line-height: 1;
}

.banner-plan.pay-plan .pay-amount {
  font-size: 54px;
}

.plan-amount span {
  font-size: 24px;
  font-weight: 700;
  color: #f37021;
}

.plan-desc {
  font-size: 13px;
  color: #7610bf;
  font-weight: 600;
  line-height: 1.4;
}

.total-premium-paid {
  background: #cbabe9;
  color: #7610bf;
  font-size: 16px;
  font-weight: 900;
  padding: 12px;
  text-align: center;
  text-transform: uppercase;

  border-bottom-left-radius: 20px;
}

.plan-desc strong {
  color: #5a189a;
}

.dotted-line {
  border: 1px dashed #7610bf80;
  width: 1px;
}

.banner-plans .banner-plan {
  position: relative;
  background: #f6ebfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.banner-plan.pay-plan {
  width: 92%;
  margin-left: auto;
  background: linear-gradient(#f6ebfc 50%, #cbabe9 50%);
}

.banner-plans .banner-plan p {
  color: #7610bf;

  font-size: 0.85vw;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.banner-plans .banner-plan .plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.banner-plans .banner-plan .plan span {
  color: var(--secondary);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-style: italic;
  font-size: 2.25vw;
  font-weight: 500;
}

.banner-plans .banner-plan .plan strong {
  color: var(--primary);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;

  font-size: 2.15vw;
  font-weight: 700;
}

.banner-infos {
  display: -ms-grid;
  display: grid;
  margin-top: 1rem;
  -ms-grid-columns: 1fr 1rem 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  max-width: 82%;
  margin-left: auto;
}

.proof-wrapper {
  display: flex;
  gap: 24px;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.proof-card {
  min-height: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #7a2fd1;
  border-radius: 12px;
  padding: 20px 20px 24px;
  position: relative;
}

.proof-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 6px;
  background: #7a2fd1;
  border-radius: 12px 0 0 12px;
}

.proof-card h3 {
  text-align: center;
  font-size: 15px;
  color: #7a2fd1;
  margin-bottom: 16px;
  font-weight: 600;
}

.proof-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.proof-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #5a189a;
}

.proof-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7a00;
  font-size: 14px;
  font-weight: bold;
}

.info-check-img {
  width: 20px;
}

.banner-infos .banner-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  padding: 0;
  border: none;
}

.info-check {
  color: #f37021;
  font-size: 18px;
}

.banner-infos .banner-info .info-txt {
  font-size: 14px;

  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary);
  text-transform: capitalize;
}

.banner-infos .banner-info .info-txt sup {
  font-size: 10px;
}

.banner-container .banner-content-2 .banner-form {
  border-radius: 40px;
  background: var(--light);
  overflow: hidden;
  width: 100%;
}

.banner-container .banner-content-2 {
  width: 100%;
}



.banner-container .banner-content-2 .form-head {
  color: var(--primary);
  border-radius: 40px 40px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.banner-container .banner-content-2 .form-head .termplan-top-container {
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
  gap: 20px;
}

.banner-container .banner-content-2 .form-head .termplan-title {
  justify-content: center;
  align-items: center;
  display: flex;
  color: black;
  font-size: 23px;
}

.banner-container .banner-content-2 .form-head .termplan-title .special-chars {
  font-size: 0.8rem;
  vertical-align: super;
}

@media (max-width: 992px) {
  .banner-container .banner-content-2 .form-head .termplan-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 489px) {
  .banner-container .banner-content-2 .form-head .termplan-title {
    font-size: 11px;
  }

  .banner-container .banner-content-2 .form-head .termplan-title .special-chars {
    font-size: 0.5rem;
  }
}

.banner-container .banner-content-2 .form-head .termplan-title .prime-color {
  color: var(--primary);
  font-weight: 600;
}

.banner-container .banner-content-2 .form-head .termplan-title .orange-color {
  color: var(--secondary);
}

.banner-container .banner-content-2 .form-head .dot-line {
  border: 1.6px black dotted;
  width: 0.2px;
  height: 52px;
}

@media (max-width: 489px) {
  .banner-container .banner-content-2 .form-head .dot-line {
    height: 15px;
  }
}

.banner-container .banner-content-2 .form-head .form-title {
  font-size: 2vw;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 600;

}

.banner-container .banner-content-2 .form-head .form-subtitle {
  font-size: 1.2vw;
  text-align: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  border-radius: 30px;
  background-color: var(--primary);
  color: var(--light);
  padding: .4rem 5rem;

}

@media (max-width: 489px) {

  .banner-container .banner-content-2 .form-head .form-subtitle {
    padding: .4rem 2rem;

  }
}


.banner-container .banner-content-2 .form-head .form-subtitle sup {
  font-size: 10px;
}

.custom-container-3 {
  width: 95%;
  margin: auto 0 auto auto;
}

.term-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.term-img::after {
  content: "";
  /* inset: 0; */
  width: 100vw;
  right: 0;
  height: 100%;
  background: url(../images/Vector-18.png) no-repeat center center / cover;
  position: absolute;
  bottom: 0;
  -webkit-transform: rotate(360deg) translate(0px, 5px);
  -ms-transform: rotate(360deg) translate(0px, 5px);
  transform: rotate(360deg) translate(0px, 5px);
}

.term-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fixed-button {
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: -10%;
  width: 100%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  display: none;
}

.fixed-button.show {
  bottom: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.fixed-button .btn-fixed {
  background-color: var(--secondary);
  border: none;
  color: var(--light);
  width: 100%;
  text-align: center;
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.modal-form .form-body {
  padding: 0.1rem;
}

.modal-logo {
  width: 125px;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal-close {
  width: 50px;
  cursor: pointer;
}

.modal-close img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-body {
  /* background-color: #f7f1fb; */
  padding: 1.25rem 9rem;
  color: var(--text-placeholder);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-body label {
  color: #404040;

  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

.gender-selection {
  display: flex;
  gap: 10px;
  border-radius: 12px;
}


.gender-selection.small-selection .gender-item label {
  padding: 6px;
  font-size: 13px;
  border: 1px solid #D9D9D9;
}


@media (max-width: 489px) {
  .gender-selection.small-selection .gender-item label {
    padding: 4px;
    font-size: 11px;
    border: 1px solid #404040;
  }
}

.income-selection .invalid-feedback {
  position: absolute;
}

.gender-item {
  flex: 1;
}

.gender-item input {
  display: none;
}

.gender-item label {
  display: block;
  text-align: center;
  padding: 12px;
  background: #F2ECF6;
  color: #404040;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin: 0 !important;
  transition: all 0.3s ease;
}

.gender-item input:checked+label {
  background: #7610bf;
  color: white;
}

.income-selection {
  display: flex;
  border-radius: 8px;
  gap: 5px;
  padding: 0px 10px 0px 0px;
}

.income-item {
  flex: 1;
  border-radius: 8px;
  border: 1px solid #D9D9D9;
}

.income-item input {
  display: none;
}

.income-item label {
  display: block;
  text-align: center;
  padding: 5px 0px;
  background: #F2ECF6;
  color: #404040;
  cursor: pointer;
  font-size: 13px;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 !important;
  transition: all 0.3s ease;
}


.income-item input:checked+label {
  background: #7610bf;
  color: white;
}

small {
  font-size: 0.6rem;
}

.special-chars {
  font-size: 0.8rem;
  vertical-align: super;
}

.form-body .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--light);
  background-color: var(--primary);
  border-color: unset;
}

.form-body .form-check-input {
  width: 1rem;
  height: 1rem;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.check-validation {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}

.form-check {
  display: flex;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0;
  align-items: center;
}

.form-check.agree label {
  color: #5a189a !important;
  font-size: 0.875rem !important;
  margin: 0 0.5rem !important;
  cursor: pointer !important;
  font-weight: 500 !important;
  line-height: 1.1;
}

.form-check.agree input {
  cursor: pointer !important;
}

.form-check.agree label a {
  color: #2c91f0 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  -webkit-text-decoration-style: solid;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.custom-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  color: var(--text-placeholder);
  width: 100%;
  max-width: 100%;
  font-weight: 400;
  border-radius: 8px;
  background-color: #F2ECF6;
  border: 1px solid #eee;
}

.form-select.custom-input {
  padding: 0.75rem 1rem 0.75rem 0.55rem;
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(188, 32, 49, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--primary-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

.custom-input::-webkit-input-placeholder {
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input::-moz-placeholder {
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input:-ms-input-placeholder {
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input::-ms-input-placeholder {
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.custom-input::placeholder {
  color: var(--text-placeholder) !important;
  font-weight: 400 !important;
  text-transform: unset !important;
  font-size: 0.95rem !important;
  opacity: 0.65;
}

.form-check-label {
  font-size: 0.95em;
}

.submit-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5vw;
  margin-top: 20px;
}

@media (max-width: 489px) {
  .submit-btn-container {
    margin-top: 11px;
  }
}

.btn-submit {
  border-radius: 63.42px;
  background: var(--secondary);
  color: var(--light);
  width: 40vw;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  padding: 0.69rem 1rem;
  transition: .6s;
}

.btn-submit:hover {
  background: var(--light);
  color: var(--secondary);
  outline: 1px solid var(--secondary);
}

@media (max-width: 489px) {
  .btn-submit {
    width: 80vw;
  }
}


.scroll-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 66px;
  height: 66px;
  background-color: var(--primary);
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #ffff;
  pointer-events: none;
  z-index: 100;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;

}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}


footer {
  padding: 1.175rem 0.5rem;
  color: var(--light);
  text-align: center;
  background-color: var(--text-placeholder);
  font-size: 14px;
  font-weight: 500;
}


.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--secondary) !important;
  border-radius: 3.125rem;

  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.secondary {
  background-color: var(--primary);
}

.section-heading .section-title {
  font-size: 36px;
  margin: 1.5rem 0;
  color: var(--polish-gray);
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: capitalize;
}

.section-heading .section-desc {
  font-size: 18px;
  color: var(--polish-gray);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-width: 84%;
  text-align: center;
  margin: auto;
}


.profileImage {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #512da8;
  font-size: 16px;
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-weight: 600;
  text-transform: uppercase;
}

section.section-overview {
  padding: 1.5rem 0 0 0;
  position: relative;
  z-index: 1;
}

section.section-overview::after {
  content: "";
  position: absolute;
  background: url(../images/heart.svg) no-repeat center center / cover;
  width: 35%;
  height: 45%;
  z-index: -1;
  top: 18%;
  right: 0%;
}

.wrap-container {
  width: 100%;
  margin: auto;
}

.section-heading .purple-title {
  color: var(--primary);
}

.key-benefits-swiper .swiper-wrapper {
  padding: 2rem 0 0 0;
}

.key-benefits-swiper {
  margin-top: 1.5rem;
}

.rotate-right {
  -webkit-transform: rotate(178deg);
  -ms-transform: rotate(178deg);
  transform: rotate(178deg);
}

.key-benefits-swiper .benefit-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(239, 201, 254, 0);
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#f9f1ff),
      color-stop(50%, #fff),
      to(#f9f1ff));
  background: -o-linear-gradient(left, #f9f1ff 0%, #fff 50%, #f9f1ff 100%);
  background: #F2ECF6;
  padding: 25px 20px;
  height: auto;
  min-height: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 6%;
}

.key-benefits-swiper .benefit-card:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border: 1px solid #000;
  border-radius: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.icon-circle img {
  width: 100%;
  height: 25px;
  -o-object-fit: contain;
  object-fit: contain;
}

.benefit-card h3 {
  padding: 8px 1px 5px 1px;
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 500;
  min-height: 80px;
  height: auto;
  color: #3d3d3d;
  line-height: 1.4;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.benefit-card h4 span {
  font-weight: 700;
}

.benefit-card p {
  font-size: 1vw;
  line-height: 1.6;
  color: #323232;
}

.steps_area_div .card_part {
  position: relative;
}

.steps_area_div .card_part::after {
  content: "";
  position: absolute;
  background: url(../assets/images/Vector\ 4.png) no-repeat center center / contain;
  width: 45%;
  height: 45%;
  z-index: -1;
  top: 20%;
  right: -24%;
}

.steps_area_div .card_part.step-one::after,
.steps_area_div .card_part.step-three::after {
  content: "";
  position: absolute;
  background: url(../assets/images/Vector\ 6.png) no-repeat center center / contain;
  width: 45%;
  height: 45%;
  z-index: -1;
  top: 0%;
  right: -24%;
}

.steps_area_div .card_part.step-four::after {
  display: none;
}

.steps_heading_title {
  font-size: 20px;
  font-weight: 600;
  width: 70%;
  margin: auto;
}

/* ==========================
   Plan Section
========================== */

.section-plan {
  padding: 3rem 0;
}

.plan-list {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}

.plan-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 1.8rem 2.5rem;
  overflow: hidden;
  position: relative;
  height: auto;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-transform 0.35s ease,
    -webkit-box-shadow 0.35s ease;
  transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
  -o-transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transition: transform 0.35s ease, box-shadow 0.35s ease,
    -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease;
}

.plan-item:hover {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-box-shadow: 0 14px 30px rgba(118, 16, 191, 0.22);
  box-shadow: 0 14px 30px rgba(118, 16, 191, 0.22);
}

.plan-step {
  position: relative;
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.plan-step span {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2f064b;
  z-index: 2;

}

.step-strip {
  position: relative;
  right: -79%;
  top: 0;
  height: calc(100% + 82%);
  width: 26px;
  background: #f7ecfd;
  overflow: hidden;
}

.step-strip::after {
  content: "";
  position: absolute;
  background: var(--primary);
  height: 50%;
  width: 100%;
  -webkit-transform: skewY(140deg);
  -ms-transform: skewY(140deg);
  transform: skewY(140deg);
  top: -5%;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-item:hover .step-strip::after {
  height: 100%;
  -webkit-transform: skewY(140deg);
  -ms-transform: skewY(140deg);
  transform: skewY(140deg);
}

.plan-content {
  padding-left: 8.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.plan-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.plan-content p {
  font-size: 1vw;
  color: var(--polish-gray);
  line-height: 1.6;

}

/* ==========================
  Testimonial Section
========================== */

section.section-testimonials {
  padding: 3rem 0;
}

.testimonial-swiper {
  padding-top: 2.5rem !important;
}

.testimonial-swiper .swiper-slide {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  /* -webkit-filter: blur(2px); */
  /* filter: blur(2px); */
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
  height: auto;
  display: flex;
}

.testimonial-swiper .swiper-slide-active {
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


/* ==========================
   Insurance Section
========================== */

section.section-insurance {
  padding: 3rem 0 1rem 0;
}

.insurance-benefits-swiper {
  margin-top: 3rem;
}

.insurance-benefits-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.insurance-benefits-swiper .swiper-slide {
  padding: 20px 10px;
}

.box h4 {
  font-size: 1.15vw;
  font-weight: 700;
  color: #2f064b;
  margin: 0.5rem 0 0.85rem 0;
  line-height: 1.4;
  text-align: start;
  padding: 10px 0;
}

.submit-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  gap: 0.7rem;
  color: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 1rem 0;
  border: unset;
  font-weight: 500;
}

.submit-btn .btn-icon {
  width: 27px;
  height: 27px;
  -webkit-transition: -webkit-filter 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-filter 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: filter 0.3s ease, transform 0.3s ease;
  transition: filter 0.3s ease, transform 0.3s ease;
  transition: filter 0.3s ease, transform 0.3s ease, -webkit-filter 0.3s ease,
    -webkit-transform 0.3s ease;
}

.insurance-benefits-swiper .box {
  border-radius: 40px;
  border: 2px solid rgba(118, 16, 191, 0.05);
  background: #fff;
  -webkit-box-shadow: 0 0 15.2px 0 rgba(118, 16, 191, 0.25);
  box-shadow: 0 0 15.2px 0 rgba(118, 16, 191, 0.25);
  padding: 1rem;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  overflow: hidden;
}

.insurance-benefits-swiper .box:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.insurance-benefits-swiper .icon {
  background-color: var(--primary);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* margin: auto; */
}

.insurance-benefits-swiper .icon img {
  width: 40px;
  height: 40px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.insurance-benefits-swiper .text {
  font-size: 1vw;
  line-height: 1.6rem;
  color: #323232;
  font-weight: 400;
  text-align: start;

}

/* ==========================
   Document Section
========================== */

.documents-section {
  padding: 80px 16px;
  background: #ffffff;
}

.documents-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.documents-section .container .documents-wrapper {
  width: 100%;
  text-align: center;
}

.documents-section .container .documents-wrapper .documents-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 48px;
  color: #000000;
  padding: 40px 10px 10px 10px;
}

.documents-section .container .documents-wrapper .documents-title span {
  color: #6a0dad;
}

.documents-section .container .documents-wrapper .documents-cards {
  display: flex;
  padding: 10px 10px;
}

.documents-section .container .documents-wrapper .documents-cards .document-card {
  position: relative;
  height: 300px;
  padding: 28px 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.29);
  text-align: left;
}

.documents-section .container .documents-wrapper .documents-cards .document-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #6a0dad;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.documents-section .container .documents-wrapper .documents-cards .document-card .icon-box img {
  width: 20px;
  height: 20px;
}

.documents-section .container .documents-wrapper .documents-cards .document-card .badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #b58be8;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.documents-section .container .documents-wrapper .documents-cards .document-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #000000;
}

.documents-section .container .documents-wrapper .documents-cards .document-card ul {
  list-style: none;
}

.documents-section .container .documents-wrapper .documents-cards .document-card ul li {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

.documents-section .container .documents-wrapper .documents-cards .document-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff7a00;
  font-weight: 600;
}

@media (max-width: 576px) {
  .documents-section {
    padding: 30px 12px;
  }

  .documents-section .container .documents-wrapper .documents-title {
    font-size: 25px;
  }

}

.documents-swiper {
  overflow: hidden;
}

/* ================= SWIPER NAV (ALL) ================= */

/* =========================
   SWIPER NAV WRAPPER
========================= */
.key-benefits-swiper .swiper-nav,
.testimonial-swiper .swiper-nav,
.insurance-benefits-swiper .swiper-nav,
.documents-swiper .swiper-nav,
.reason-to-invest-swiper .swiper-nav,
.proof-swiper .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* =========================
   DEFAULT BUTTON STYLE
========================= */
.key-benefits-swiper .swiper-nav button,
.testimonial-swiper .swiper-nav button,
.insurance-benefits-swiper .swiper-nav button,
.documents-swiper .swiper-nav button,
.reason-to-invest-swiper .swiper-nav button,
.proof-swiper .swiper-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  border: 0.15rem solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

/* =========================
   SVG DEFAULT (WHITE)
========================= */
.key-benefits-swiper .swiper-nav button svg path,
.testimonial-swiper .swiper-nav button svg path,
.insurance-benefits-swiper .swiper-nav button svg path,
.documents-swiper .swiper-nav button svg path,
.reason-to-invest-swiper .swiper-nav button svg path,
.proof-swiper .swiper-nav button svg path {
  stroke: #fff;
  transition: stroke 0.3s ease;
}

/* =========================
   HOVER STATE
========================= */
.key-benefits-swiper .swiper-nav button:hover,
.testimonial-swiper .swiper-nav button:hover,
.insurance-benefits-swiper .swiper-nav button:hover,
.documents-swiper .swiper-nav button:hover,
.reason-to-invest-swiper .swiper-nav button:hover,
.proof-swiper .swiper-nav button:hover {
  background: transparent;
}

.key-benefits-swiper .swiper-nav button:hover svg path,
.testimonial-swiper .swiper-nav button:hover svg path,
.insurance-benefits-swiper .swiper-nav button:hover svg path,
.documents-swiper .swiper-nav button:hover svg path,
.reason-to-invest-swiper .swiper-nav button:hover svg path,
.proof-swiper .swiper-nav button:hover svg path {
  stroke: var(--orange);
}

/* =========================
   CLICK / ACTIVE (PERSISTENT)
========================= */
.key-benefits-swiper .swiper-nav button:active,
.key-benefits-swiper .swiper-nav button.is-active,
.testimonial-swiper .swiper-nav button:active,
.testimonial-swiper .swiper-nav button.is-active,
.insurance-benefits-swiper .swiper-nav button:active,
.insurance-benefits-swiper .swiper-nav button.is-active,
.documents-swiper .swiper-nav button:active,
.documents-swiper .swiper-nav button.is-active,
.reason-to-invest-swiper .swiper-nav button:active,
.reason-to-invest-swiper .swiper-nav button.is-active,
.proof-swiper .swiper-nav button:active,
.proof-swiper .swiper-nav button.is-active {
  background: transparent;
  border-color: var(--orange);
}

.key-benefits-swiper .swiper-nav button:active svg path,
.key-benefits-swiper .swiper-nav button.is-active svg path,
.testimonial-swiper .swiper-nav button:active svg path,
.testimonial-swiper .swiper-nav button.is-active svg path,
.insurance-benefits-swiper .swiper-nav button:active svg path,
.insurance-benefits-swiper .swiper-nav button.is-active svg path,
.documents-swiper .swiper-nav button:active svg path,
.documents-swiper .swiper-nav button.is-active svg path,
.reason-to-invest-swiper .swiper-nav button:active svg path,
.reason-to-invest-swiper .swiper-nav button.is-active svg path,
.proof-swiper .swiper-nav button:active svg path,
.proof-swiper .swiper-nav button.is-active svg path {
  stroke: var(--orange);
}

/* ================= PAGINATION ================= */

.key-benefits-swiper .swiper-pagination,
.testimonial-swiper .swiper-pagination,
.insurance-benefits-swiper .swiper-pagination,
.documents-swiper .swiper-pagination,
.proof-swiper .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  width: 8% !important;
}

.key-benefits-swiper .swiper-pagination-bullet,
.testimonial-swiper .swiper-pagination-bullet,
.insurance-benefits-swiper .swiper-pagination-bullet,
.documents-swiper .swiper-pagination-bullet,
.proof-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e5e5e5;
  opacity: 1;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.key-benefits-swiper .swiper-pagination-bullet-active,
.testimonial-swiper .swiper-pagination-bullet-active,
.insurance-benefits-swiper .swiper-pagination-bullet-active,
.documents-swiper .swiper-pagination-bullet-active,
.proof-swiper .swiper-pagination-bullet-active {
  background: var(--orange);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 !important;
}

/* **********document required section ends****** */

/* *************term section starts******* */
section.section-term {
  padding: 0rem 0 2rem 0;
}

.term-box {
  background: var(--light);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #000;
}

.term-nav .nav-link {
  background: var(--light);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  border: none;
  text-align: left;
  -webkit-transition: 0.35s ease;
  -o-transition: 0.35s ease;
  transition: 0.35s ease;
  font-weight: 700;
}

.term-nav .nav-link.active {
  background: var(--primary);
  color: var(--light);
}

.term-content p {
  font-size: 1rem;
  color: #323232;
  line-height: 1.7;
  font-weight: 400;
  padding: 2rem 1rem 1rem 2rem;
}

.family-img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.family-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.term-color {
  background: #f7ecfd;
  padding: 2rem;
  border-bottom-left-radius: 28px;
  border-top-left-radius: 28px;
}

.term-background-content {
  position: relative;
  z-index: 1;
}

.term-background-content::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: url("../images/line2.svg") no-repeat center center/cover;
}

.term-background {
  background: var(--light);
  padding: 2rem;
  border-bottom-right-radius: 28px;
  border-top-right-radius: 28px;
}

.ame-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 3rem 0 0 0;
  gap: 1.25rem 1.25rem;
  font-weight: 600;
}

.nav-item .btn-ame.active {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: var(--primary);
  color: var(--light);
}

.nav-item .btn-ame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 1rem 1.85rem;
  background: rgba(118, 16, 191, 0.1);
  border-radius: var(--radius-full);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: rgba(64, 64, 64, 0.6);
  /* border: 1px solid; */
}

.accordion-button:not(.collapsed) {
  color: var(--light) !important;
  background-color: var(--primary) !important;
}

.faq-accordian .accordion-item {
  border: 1px solid #e2e1e1;
  border-radius: 10px;
  background-color: transparent;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordian .accordion-button {
  background-color: transparent;
  color: var(--polish-gray);
  padding: 10px 15px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 3px !important;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-accordian .accordion-body {
  background: rgba(118, 16, 191, 0.05);
  font-size: 0.9rem;
  line-height: 1.7rem;
  text-align: justify;
  font-weight: 400;

}

.faq-accordian .accordion-button::after {
  background-image: none !important;
}

.faq-accordian .accordion-button::after {
  font-weight: 900;
  content: "\f00d";
  /* close (X) icon */
  margin-right: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: var(--light);
}

.faq-accordian .accordion-button.collapsed::after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  color: #444;
}

.dis-accordian .accordion-button {
  background-color: rgba(118, 16, 191, 0.05);
  color: var(--primary);
  padding: 1.4rem 1.25rem;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 15px;
  border: none;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.dis-accordian .accordion-item {
  border: 1px solid #e2e1e1;
  border-radius: 20px;
  background-color: transparent;
  margin-bottom: 15px;
  overflow: hidden;
}

.form-control.datepicker {
  padding: 0.375rem 0.75rem;
}

.datepicker td,
.datepicker th {
  padding: 7px !important;
  cursor: pointer !important;
  width: 40px;
  height: 40px;
  text-align: center;
}

.datepicker table tr td.today {
  background-color: #6f2dbd;
  color: #fff;
  border-radius: 50%;
}

.datepicker table tr td.day {
  border-radius: 50%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


.datepicker-years table,
.datepicker-months table {
  width: 100%;
}

.datepicker-years td span,
.datepicker-months td span {
  display: inline-block;
  width: 33.33%;
  /* 3 years per row */
  white-space: normal;
  margin: 6px 0;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active:focus {
  background-color: #6f2dbd !important;
  color: #fff !important;
  border-radius: 50%;
}


.datepicker table tr td.today:not(.active) {
  background-color: #e6d9f5;
  color: #6f2dbd;
  border-radius: 50%;
}

.datepicker table tr td.day:hover {
  background-color: #d0aff7;
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


.steps-to-buy {
  padding-bottom: 20px;
  padding-top: 1rem;
}

.testimonial-card.testimonial-card--white {
  max-width: 420px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 26px;
  height: 100%;
}

.stars.stars-top {
  color: #ffc107;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.testimonial-content.testimonial-content--white {
  background: transparent;
  padding: 0;
  flex: 1;
}

.testimonial-content.testimonial-content--white p {
  color: #6b6b6b;
  font-size: 16px;
  line-height: 1.7;
  min-height: auto;
}

.testimonial-footer.testimonial-footer--white {
  background: transparent;
  padding: 22px 0 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.testimonial-footer--white .user-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-footer--white .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6a0dad;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-footer--white .text {
  display: flex;
  flex-direction: column;
}

.testimonial-footer--white .name {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.testimonial-footer--white .location {
  font-size: 14px;
  color: #8a8a8a;
}

@media (max-width: 576px) {
  .testimonial-card.testimonial-card--white {
    padding: 22px 20px;
  }

  .testimonial-content.testimonial-content--white p {
    font-size: 15px;
  }
}

.disclaimer .accordion-body p {
  font-size: 13px;
}

select option {
  width: 100%;
  max-width: 100%;
}

.why-afli {
  padding: 30px 2px;
}

.why-afli .section-desc {
  color: #6D6D7C;
}

/* ==========================
   Media Query
========================== */

@media only screen and (max-width: 1700px) {}

@media only screen and (max-width: 1400px) {
  .navbar-container {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    width: 95%;
    padding: 0.65rem 2rem;
  }

  .custom-container {
    width: 95%;
  }

  .banner-countdown {
    width: 100%;
    max-width: 90%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 0.85rem 1rem;
  }

  .countdown-number .flipdown .rotor-group {
    padding-right: 20px;
  }

  .form-body label {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 1300px) {
  .doc-card {
    height: 338px;
  }
}

@media only screen and (max-width: 1200px) {

  .section-heading .section-desc {
    font-size: 1.25vw;
  }

  .benefit-card p {
    font-size: 1.25vw;
  }

  .insurance-benefits-swiper .text {
    font-size: 1.25vw;
  }

  .doc-content li {
    font-size: 1.25vw;
  }

  .plan-content p {
    font-size: 1.25vw;
  }

  .key-benefits-swiper .swiper-pagination,
  .testimonial-swiper .swiper-pagination,
  .insurance-benefits-swiper .swiper-pagination,
  .documents-swiper .swiper-pagination {
    width: 14% !important;
  }

  .box h4 {
    font-size: 1.5vw;
  }

  .doc-card {
    height: 265px;
  }

  section.section-overview::after {
    width: 55%;
    top: 27%;
  }

  .navbar-container {
    padding: 0.75rem 2rem;
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 5rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }

  section.main-banner {
    margin: 9vw 0 0 0;
  }

  .banner-infos .banner-info .info-txt {
    font-size: 1.15vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-infos {
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-countdown {
    width: 100%;
    max-width: 95%;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .benefit-card h4 {
    font-size: 1.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dropdown-title {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

}

@media only screen and (max-width: 1080px) {}

@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 4.4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }


  .disclaimer-content-1 {
    margin: 0.5rem;
  }

  .special-chars {
    font-size: 0.8rem;
    vertical-align: super;
  }


  .section-heading .section-title-2 {
    font-size: 7vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading.custom-size .section-title {
    font-size: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading.custom-size .section-title-2 {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .fixed-button {
    display: block;
  }

  .section-heading .section-desc {
    font-size: 1.55vw;
  }

  .nav-links {
    gap: 1.25rem;
  }

  section.section-insurance {
    padding: 3rem 0;
  }

  footer {
    padding: 1.175rem 0.5rem 4.5rem 0.5rem;
  }

  section.section-overview::after {
    width: 100%;
  }

  .benefit-card p {
    font-size: 1.55vw;
  }

  .insurance-benefits-swiper .text {
    font-size: 1.55vw;
  }

  .box h4 {
    font-size: 2.25vw;
  }

  .doc-content li {
    font-size: 1.55vw;
  }

  .plan-content p {
    font-size: 1.55vw;
  }

  .benefit-card h4 {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .custom-mobile-nav2 .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  }

  .key-benefits-swiper .swiper-pagination,
  .testimonial-swiper .swiper-pagination,
  .insurance-benefits-swiper .swiper-pagination,
  .documents-swiper .swiper-pagination {
    width: 17% !important;
  }

  .testimonial-card {
    margin: auto;
    height: auto;
  }

  .document-container {
    width: 85%;
    margin: auto;
  }

  .term-color {
    background: #f7ecfd;
    padding: 1rem;
    border-bottom-left-radius: unset;
    border-top-left-radius: unset;
  }

  .dropdown-title {
    font-size: 2.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .faq-accordian .accordion-button {
    font-size: 1rem;
  }

  .faq-accordian .accordion-button::after {
    margin-top: -20px;
  }

  .custom-mobile-nav .form-select {
    padding: 1.2rem 2rem 1.2rem 2rem;
    color: var(--primary);
    background-color: rgba(118, 16, 191, 0.05);
    border-radius: 40px;
    border: 1px solid var(--primary);
  }

  .custom-mobile-nav2 .form-select {
    padding: 1.2rem 2rem 1.2rem 2rem;
    color: var(--light);
    background-color: var(--primary);
    border-radius: 40px;
    border: 1px solid var(--primary);
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 4rem;
  }

  section.main-banner {
    margin: 6rem 0 0 0;
  }

  .banner-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-container .banner-content-1 {
    transform: translateY(0);
  }

  .banner-container .banner-content-1::after {
    top: 20%;
    height: 50%;
  }

  .banner-container .banner-content-2 {
    margin: -2rem auto auto auto;
    position: relative;
    z-index: 3;
  }

  .content-txt .banner-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.5vw;
    text-align: left;
    padding-left: 1.75rem;
    margin: 0.5rem 0 0;
  }

  .banner-countdown {
    display: none;
  }

  .content-img-txt .content-img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 1rem;
  }

  .content-img-txt .content-txt {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0;
    width: 100%;
  }

  .banner-container .banner-content-2 .form-head .form-subtitle span {
    font-size: 4vw;
  }

  .content-img-txt {
    -ms-grid-columns: 65% auto;
    grid-template-columns: 65% auto;
    margin: 0rem 0 0 0;
    padding: 0;
    place-items: center;
    display: block;
    position: relative;
  }

  .content-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    height: auto;
  }

  .content-img img {
    /* transform: scale(-1, 1); */
    height: 35%;
    width: 58%;
    left: auto;
    right: 0;
    top: 40%;
    position: absolute;
  }

  .banner-infos .banner-info .info-txt {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .term-img::after {
    width: unset;
  }

  .banner-plans .banner-plan p {
    font-size: 2.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-plans .banner-plan .plan span {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3.5vw;
  }

  .banner-plans .banner-plan .plan strong {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.25vw;
  }

  .banner-container .banner-content-2 .form-head .form-title {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.5vw;
  }

  .banner-container .banner-content-2 .form-head .form-subtitle {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-container .banner-content-1 {
    padding: 0;
    padding-top: 1rem;
    border: none;
    border-radius: 0;
    width: 100%;
  }

  .plan-amount {
    font-size: 38px;
  }

  .plan-tag,
  .plan-amount span {
    font-size: 13px;
  }

  .plan-tag {
    padding: 3px 16px;
  }

  .banner-plan.pay-plan .plan-tag {
    font-size: 11px;
  }

  .banner-plan.pay-plan .pay-amount {
    font-size: 26px;
  }

  .total-premium-paid {
    font-size: 8px;
    padding: 1px;
    border-bottom-right-radius: 10px;
  }

  .banner-container .banner-content-2 .form-head .form-title {
    font-size: 4.5vw;
  }

  .banner-container .banner-content-2 .form-head .form-subtitle {
    font-size: 2.5vw;
  }

  .banner-container .banner-content-2 .form-head,
  .banner-container .banner-content-2 .banner-form {
    border-radius: 0;
    border: none;
  }

  .custom-container {
    width: 100%;
  }

  .banner-plans .banner-plan {
    width: 80%;
    padding-top: 1.7rem;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .pay-plan-top {
    padding: 0px 30px 4px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
  }

  .banner-plan.pay-plan {
    width: 48%;
    margin-right: auto;
    margin-left: 0;
    padding-top: 1.5rem;
  }

  .form-body {
    padding: 1.25rem 2rem;

  }

  .form-body label {
    font-size: 0.75rem;
    padding-left: 0.75rem;
  }

  .form-body .income-selection label {
    font-size: 0.75rem;
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 25px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    max-width: 75%;
    margin: auto;
  }

  .section-heading .section-title-2 {
    font-size: 6.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    top: -8px;
    transition: all 0.5s ease;
  }

  /* ********* css starts******** */
  .section-heading .section-desc {
    font-size: 2.15vw;
  }

  .box h4 {
    font-size: 3vw;
  }

  .benefit-card p {
    font-size: 2.15vw;
  }

  .insurance-benefits-swiper .text {
    font-size: 2.15vw;
  }

  .doc-content li {
    font-size: 2.15vw;
  }

  .plan-content p {
    font-size: 2.15vw;
  }

  .key-benefits-carousel .benefit-card {
    height: 100%;
  }

  .benefit-card h4 {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .key-benefits-swiper .swiper-pagination,
  .testimonial-swiper .swiper-pagination,
  .insurance-benefits-swiper .swiper-pagination,
  .documents-swiper .swiper-pagination {
    width: 36% !important;
  }

  .testimonial-card {
    margin: auto;
    height: auto;
  }

  section.section-testimonials {
    padding: 2rem 0;
  }

  section.section-insurance {
    padding: 2rem 0;
  }

  .key-benefits-swiper .swiper-wrapper {
    padding: 1rem 0;
  }

  .key-benefits-swiper .benefit-card {
    height: auto;
    margin-left: 0;
  }

  .dropdown-title {
    font-size: 3.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .document-container {
    width: 85%;
    margin: auto;
  }

  .plan-content h5 {
    font-size: 1.2rem;
  }

  .plan-step {
    min-width: unset;
  }

  .plan-content {
    padding-left: 3rem;
  }

  .plan-step span {
    font-size: 1.5rem;
  }

  .step-strip {
    height: calc(100% + 42%);
    width: 18px;
    right: -50%;
  }

  .plan-item {
    padding: 1rem 1rem;
  }

  .insurance-benefits-swiper {
    margin-top: 0rem;
  }

  section.section-document {
    padding: 2rem 0;
  }

  section.section-term {
    padding: 2rem 0;
  }

  .btn-contact span.txt {
    display: none;
  }

  .banner-plans .banner-plan p {
    font-size: 2.45vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .banner-infos .banner-info .info-txt sup {
    font-size: 6px;
  }
}

@media only screen and (max-width: 576px) {

  .section-heading .section-desc {
    font-size: 3vw;
    text-align: left;

  }

  .benefit-card p {
    font-size: 3vw;
  }

  .insurance-benefits-swiper .text {
    font-size: 3vw;
  }

  section.section-overview::after {
    width: 100%;
    height: 30%;
  }

  .doc-content li {
    font-size: 3vw;
  }

  .plan-content p {
    font-size: 3vw;
  }

  .box h4 {
    font-size: 5.15vw;
  }

  .contact-dropdown {
    width: 80vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .dropdown-title {
    font-size: 4.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .key-benefits-swiper .benefit-card {
    padding: 90px 30px 20px 30px;
  }

  .benefit-card h4 {
    font-size: 18px;
    margin-bottom: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .icon-circle {
    position: absolute;
    top: 20px;
    left: 24px;
    width: 60px;
    height: 60px;
    border: 1px solid #000;
  }

  .plan-content h5 {
    font-size: 1rem;
  }

  .logo {
    width: 100px;
  }

  .navbar-container {
    padding: 0.35rem 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 3.5rem;
  }

  .banner-plans {
    gap: 0.6rem;
    margin: 0;
  }

  .banner-plans .banner-plan p {
    font-size: 7px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .btn-contact {
    width: 44px;
    height: 44px;
  }

}

@media only screen and (max-width: 450px) {

  .section-heading .section-desc {
    font-size: 3.55vw;
  }

  .benefit-card p {
    font-size: 3.55vw;
  }

  .key-benefits-swiper .swiper-pagination,
  .testimonial-swiper .swiper-pagination,
  .insurance-benefits-swiper .swiper-pagination,
  .documents-swiper .swiper-pagination {
    width: 40% !important;
  }

  .plan-content p {
    font-size: 3.55vw;
  }

  .plan-content {
    padding-top: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .step-strip {
    height: calc(100% + 32%);
    right: -42%;
  }

}

@media only screen and (max-width: 991px) {

  .banner-container {
    grid-template-columns: 100%;
    gap: 1.5rem;
  }

  .banner-plan:not(.pay-plan) {
    padding: 6px 30px;
    padding-top: 1.5rem;
  }

  .banner-infos {
    max-width: 78%;
    margin-left: 0;
    padding-left: 1.75rem;
    margin-top: 1rem !important;
    margin-bottom: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .banner-infos .info-check-img {
    width: 16px;
  }

  .desktop_image_area {
    display: none;
  }

  .mobile_image_area {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .banner-form .col-6 {
    width: 100% !important;
  }

  .form-body {
    padding: .5rem 1.75rem !important;
  }

  .banner-infos .col-6 {
    width: 35% !important;
    margin-bottom: 0 !important;
  }

  .steps-to-buy .wrap-container {
    width: 100%;
    padding-bottom: 32px;
  }

  .steps-to-buy .wrap-container .card_part {
    padding: 0 !important;
  }

  .proof-card {
    width: 250px;
  }

  .proof-swiper .swiper-pagination {
    width: 20% !important;
  }

  .steps_area_div .card_part::after {
    display: none;
  }

  .section-heading .section-desc {
    max-width: 92%;
  }

  .steps_heading_title {
    width: 100%;
  }
}

.why-afli {
  padding-top: 1rem;
}

.key-benefits {
  padding-top: 0 !important;
}

.documents {
  padding-top: 1.5rem;
}

.customer {
  padding-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .customer .desc-sec {
    font-size: .8rem;
  }
}

/* --------------------------
   STEPS SECTION
--------------------------- */

.steps-to-buy .steps-wrapper {
  background: #F2ECF6;
  border-radius: 22px;
  padding: clamp(16px, 3vw, 32px);
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.steps-to-buy .steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px);
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.steps-to-buy .step {
  text-align: center;
  position: relative;
}

.steps-to-buy .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: clamp(40px, 6vw, 50px);
  right: -14%;
  width: 28%;
  height: 2px;
  background-image: linear-gradient(to right, #6a0dad 60%, transparent 40%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.steps-to-buy .step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: clamp(36px, 6vw, 46px);
  right: -15%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #6a0dad;
}

@media (max-width: 992px) {
  .steps-to-buy .step:not(:last-child)::before {
    top: clamp(36px, 6vw, 41px);
  }
}

@media (max-width: 489px) {
  .steps-to-buy .step:not(:last-child)::before {
    top: clamp(36px, 6vw, 41px);
    right: -24%;
  }
}

.steps-to-buy .icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.steps-to-buy .icon-box {
  width: clamp(44px, 6vw, 60px);
  height: clamp(44px, 6vw, 60px);
  background: #6a0dad;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-to-buy .icon-box img {
  width: clamp(18px, 3vw, 26px);
  height: clamp(18px, 3vw, 26px);
}

.steps-to-buy .step-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff7a1a;
  color: #fff;
  font-size: clamp(10px, 2.6vw, 13px);
  font-weight: 700;
  width: clamp(20px, 4vw, 26px);
  height: clamp(20px, 4vw, 26px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-to-buy .step h3 {
  font-size: clamp(12px, 2.8vw, 15px);
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.steps-to-buy .card {
  background: #fff;
  padding: clamp(8px, 2vw, 12px);
  font-size: clamp(10.5px, 2.8vw, 12.5px);
  color: #6b6b6b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.steps-to-buy .card {
  position: relative;
  background: #fff;
  padding: clamp(8px, 2vw, 12px);
  font-size: clamp(10.5px, 2.8vw, 12.5px);
  color: #6b6b6b;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.steps-to-buy .card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #fff;
}

@media (max-width: 489px) {
  .steps-to-buy .step h4 {
    font-size: 10px;
  }

  .steps-to-buy .card {
    font-size: 8px;
  }
}

@media (max-width: 768px) {

  .steps-to-buy .steps-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .steps-to-buy .step::after,
  .steps-to-buy .step::before {
    display: none;
  }

  .steps-to-buy .step:nth-child(1)::after {
    display: block;
    content: "";
    position: absolute;
    top: 47px;
    right: -18%;
    width: 36%;
    height: 2px;
    background-image: linear-gradient(to right, #6a0dad 60%, transparent 40%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
  }

  .steps-to-buy .step:nth-child(1)::before {
    display: block;
    content: "";
    position: absolute;
    top: 42px;
    right: -20%;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #6a0dad;
  }

  .steps-to-buy .step:nth-child(2)::before {
    display: block;
    content: "";
    position: absolute;
    bottom: -42px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #6a0dad;
  }

  .steps-to-buy .step:nth-child(3)::after {
    display: block;
    content: "";
    position: absolute;
    top: 47px;
    right: -18%;
    width: 36%;
    height: 2px;
    background-image: linear-gradient(to right, #6a0dad 60%, transparent 40%);
    background-size: 8px 2px;
    background-repeat: repeat-x;
  }

  .steps-to-buy .step:nth-child(3)::before {
    display: block;
    content: "";
    position: absolute;
    top: 42px;
    right: -20%;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #6a0dad;
  }
}

.reason-to-invest-parent {
  padding: 34px;
  background: #F2ECF6;
  border-radius: 20px;

}

.reason-to-invest-parent .invest-card {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 20px;
}

.reason-to-invest-parent .invest-card h4 {
  padding: 5px 1px;
  font-size: 20px;
}

@media (max-width: 489px) {
  .reason-to-invest-parent .invest-card {
    padding: 83px 23px;
  }
}

/* term info  */
.term-info-section {
  padding: 80px 0px 80px 10px;
  background-color: #ffffff;
}

@media (max-width: 489px) {
  .term-info-section {
    padding: 40px 0px 40px 10px;
    background-color: #ffffff;
  }
}

.term-info-section .container {
  max-width: 1200px;
  margin: auto;
}

.term-info-section .container .term-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.term-info-section .container .term-info-wrapper .content-container {
  flex: 1;
}

.term-info-section .container .term-info-wrapper .content-container .title {
  font-size: 2.9vw;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.term-info-section .container .term-info-wrapper .content-container .title span {
  color: #6a0dad;
}

.term-info-section .container .term-info-wrapper .content-container .description {
  font-size: 15px;
  line-height: 1.7;
  color: #6D6D7C;
  max-width: 560px;
}

.term-info-section .container .term-info-wrapper .image-container {
  flex: 1;
  text-align: right;
}

@media (max-width: 992px) {
  .term-info-section .container .term-info-wrapper .image-container {
    flex: 1;
    text-align: right;
    width: 300px;
  }
}

.term-info-section .container .term-info-wrapper .image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .term-info-section .container .term-info-wrapper {
    flex-direction: row;
  }

  .term-info-section .container .term-info-wrapper .image-container {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .term-info-section .container .term-info-wrapper .content-container .title {
    font-size: 26px;
  }

  .term-info-section .container .term-info-wrapper {
    flex-direction: column-reverse;
  }

  .term-info-section .container .term-info-wrapper .content-container .description {
    font-size: 14.5px;
  }
}

/* terms you must knwo  */
.insurance-terms {
  padding: 25px 16px;
  background-color: #ffffff;
}

.insurance-terms .container {
  max-width: 1200px;
  margin: 0 auto;
}

.insurance-terms .container .terms-wrapper {
  width: 100%;
}

.insurance-terms .container .terms-wrapper .terms-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.3;
}

.insurance-terms .container .terms-wrapper .terms-heading h2 span {
  color: #6a0dad;
}

.insurance-terms .container .terms-wrapper .tabs-container {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.insurance-terms .container .terms-wrapper .tabs-container .tab {
  padding: 10px 20px;
  font-size: 1.3vw;
  font-weight: 500;
  border-radius: 999px;
  border: none;
  background-color: #f3eef8;
  color: #111111;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.insurance-terms .container .terms-wrapper .tabs-container .tab.active {
  background-color: #6a0dad;
  color: #ffffff;
}

.insurance-terms .container .terms-wrapper .content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.insurance-terms .container .terms-wrapper .content-wrapper .tab-content {
  flex: 1;
  display: none;
  padding: 30px 20px 20px 20px;
}

.insurance-terms .container .terms-wrapper .content-wrapper .tab-content.active {
  display: block;
}

.insurance-terms .container .terms-wrapper .content-wrapper .tab-content h3 {
  font-size: 3vw;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.2vw;
}

.insurance-terms .container .terms-wrapper .content-wrapper .tab-content p {
  font-size: 1.4vw;
  line-height: 1.7;
  color: #6b6b6b;
  max-width: 520px;
}

.insurance-terms .container .terms-wrapper .content-wrapper .image-container {
  flex: 1;
  text-align: right;
  padding: 20px;
}

.insurance-terms .container .terms-wrapper .content-wrapper .image-container img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .insurance-terms .container .terms-wrapper .content-wrapper .tab-content p {
    max-width: 100%;
  }

  .tabs-container {
    scrollbar-width: none;
    overflow-x: scroll;
  }
}

@media (max-width: 576px) {
  .insurance-terms {
    padding: 30px 12px;
  }

  .insurance-terms .container .terms-wrapper .content-wrapper .image-container {
    order: -1;
    text-align: center;
    width: 300px;
  }

  .insurance-terms .container .terms-wrapper .content-wrapper {
    flex-direction: column;
    gap: 2px;
  }

  .insurance-terms .container .terms-wrapper .terms-heading h2 {
    font-size: 26px;
    text-align: center;
  }

  .insurance-terms .container .terms-wrapper .tabs-container .tab {
    font-size: 13px;
    padding: 9px 16px;
  }

  .insurance-terms .container .terms-wrapper .content-wrapper .tab-content h3 {
    font-size: 18px;
  }

  .insurance-terms .container .terms-wrapper .content-wrapper .tab-content p {
    font-size: 14.5px;
  }
}

.footerfaq {
  padding: 20px;
}

.accordion-custom {
  margin-top: 30px;
  border: 1px solid var(--primary);
  border-radius: 20px;
}

/* spam badge mobile  */
.spam-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.mob {
  position: relative;
}

.spam-badge-wrap {
  position: absolute;
  display: flex;
  right: 13px;
  justify-content: flex-end;
  /* margin-bottom: 5px; */
  bottom: -25px;
}

.spam-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  border-radius: 9999px;
  background-color: #d9efe6;
  color: #0a8f6a;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
}

.spam-icon {
  width: 14px;
  height: 14px;
  stroke: #0a8f6a;
}

/* homepage section 1  */
.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 16px;
  width: 100%;
}

.title-wrapper .line {
  flex: 1;
  border-top: 2px dotted #8a2be2;
  max-width: 200px;
}

.title-wrapper .arrow {
  width: 6px;
  height: 6px;
  background-color: #8a2be2;
  position: relative;
  transform: rotate(40deg);
}

.title-wrapper .title-text {
  font-size: 18px;
  font-weight: 700;
  color: #000000c9;
  white-space: nowrap;
  padding: 0px 10px;
}

@media (max-width: 480px) {
  .title-wrapper {
    padding: 8px;
  }

  .title-wrapper .line {
    max-width: 80px;
  }

  .title-wrapper .title-text {
    font-size: 14px;
  }
}


/* Toggle for form , right side */
.form-toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 35px;
  z-index: 99;
  height: 150px;
  background: linear-gradient(180deg, var(--primary), var(--primary));
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  animation: appear 0.3s ease forwards;
  animation-delay: 6s;
  box-shadow: -4px 6px 14px rgba(0, 0, 0, 0.15);
  transition: width 0.4s ease;
  display: none;
}

@media (min-width: 992px) {
  .form-toggle.show {
    display: block;
  }
}

.form-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.3px;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.collapsed-text {
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 1;
}


@keyframes appear {
  from {
    opacity: 0;
    transform: translate(40px, -50%);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}


.phone-wrapper {
  display: flex;
  align-items: center;
  background-color: #F2ECF6;
  border: 1px solid #eee;
  border-radius: 8px;
  font-weight: 400;
  overflow: hidden;
}

.mob .invalid-feedback {
  position: absolute;
  bottom: -20px;
  left: 20px;
}

.clientname .invalid-feedback {
  position: absolute;

}

@media (max-width: 480px) {
  .clientname .invalid-feedback {
    position: relative;

  }

  .mob {
    margin-top: 5px;
  }

  .mob {
    margin-bottom: 12px;
  }

  .mob .invalid-feedback {
    position: absolute;
    bottom: -20px;
    left: 10px;
  }
}

/* Country dropdown */
.country-select {
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  padding-right: 18px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='%23444444' stroke-width='1' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7L10 12L15 7' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.country-select {
  border-right: 1px solid #ccc;
  margin-right: 8px;
  padding-left: 20px;
}

.phone-input {
  padding-left: 10px !important;
}

.phone-input {
  padding: 0.37rem 0rem 0.37em 0rem;
}

.phone-input:focus {
  outline: none !important;
}



/* ==========================
  Thank you pg
========================== */
