@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.test-secA {
  padding: 70px 0;
  background: var(--gray);
  margin-top: var(--headerheight);
}
.test-secA .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
  align-items: center;
}
.test-secA .grid .media {
  border-radius: 10px;
  overflow: hidden;
}
.test-secA .grid .media img {
  width: 100%;
}
.test-secA .grid .heading {
  width: 100%;
  max-width: 450px;
}
.test-secA .grid .heading p {
  margin: 15px 0 24px;
}

.test-secB {
  padding: 70px 0;
}
@media only screen and (max-width: 991px) {
  .test-secB {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .test-secB {
    padding: 30px 0;
  }
}
.test-secB .heading {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}
.test-secB .swiper {
  margin-top: 3rem;
}
@media only screen and (max-width: 767px) {
  .test-secB .swiper {
    margin-top: 2rem;
  }
}
.test-secB .swiper .swiper-wrapper {
  align-items: stretch;
}
.test-secB .swiper .swiper-wrapper .swiper-slide {
  margin: 30px 0;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .test-secB .swiper .swiper-wrapper .swiper-slide {
    margin: 0;
  }
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card {
  background: rgb(255, 255, 255);
  border-radius: 12px;
  position: relative;
  height: 100%;
  display: flex;
  border: 1px solid rgb(219, 219, 219);
  flex-direction: column;
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card .card-header {
  padding: 25px;
}
@media only screen and (max-width: 540px) {
  .test-secB .swiper .swiper-wrapper .swiper-slide .card .card-header {
    padding: 15px;
  }
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card .card-header h5 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card .card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 1;
}
@media only screen and (max-width: 540px) {
  .test-secB .swiper .swiper-wrapper .swiper-slide .card .card-body {
    padding: 20px;
  }
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card .card-body ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card .card-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.test-secB .swiper .swiper-wrapper .swiper-slide .card .card-body ul li img, .test-secB .swiper .swiper-wrapper .swiper-slide .card .card-body ul li svg {
  width: 24px;
  height: 24px;
}
.test-secB .swiper .swiper-wrapper .swiper-slide.active {
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.test-secB .swiper .swiper-wrapper .swiper-slide.active .card {
  background: rgb(239, 234, 249);
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  margin: 0;
  border: 1px solid var(--primary);
}

.test-secC {
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .test-secC {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .test-secC {
    padding: 40px 0;
  }
}
.test-secC .content-wrapper {
  background: var(--gradient-a);
  padding: 70px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .test-secC .content-wrapper {
    padding: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .test-secC .content-wrapper {
    padding: 40px;
  }
}
.test-secC .content-wrapper::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border: 50px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.test-secC .content-wrapper .heading {
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .test-secC .content-wrapper .heading {
    margin-bottom: 2rem;
  }
}
.test-secC .content-wrapper .heading h3 {
  color: var(--white);
}
.test-secC .content-wrapper .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .test-secC .content-wrapper .grid {
    gap: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .test-secC .content-wrapper .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.test-secC .content-wrapper .item-img {
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .test-secC .content-wrapper .item-img {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
}
.test-secC .content-wrapper .item-img img {
  width: 100%;
  height: auto;
  display: block;
}
.test-secC .content-wrapper .item-content {
  width: 100%;
  max-width: 340px;
  position: relative;
  padding: 45px 0 45px 45px;
}
@media only screen and (max-width: 991px) {
  .test-secC .content-wrapper .item-content {
    max-width: 560px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 540px) {
  .test-secC .content-wrapper .item-content {
    padding: 35px 0 35px 38px;
  }
}
.test-secC .content-wrapper .item-content::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 1px;
  height: calc(100% - 16px);
  background: #ddd;
  border-radius: 2px;
}
.test-secC .content-wrapper .item-content::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  width: 1px;
  height: 0;
  background: var(--white);
  border-radius: 2px;
}
.test-secC .content-wrapper .item-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.test-secC .content-wrapper .item-content li {
  position: relative;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
}
@media only screen and (max-width: 540px) {
  .test-secC .content-wrapper .item-content li {
    margin-bottom: 14px;
  }
}
.test-secC .content-wrapper .item-content li::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  z-index: 2;
}
@media only screen and (max-width: 540px) {
  .test-secC .content-wrapper .item-content li::before {
    left: -32px;
  }
}
.test-secC .content-wrapper .item-content li::after {
  content: "";
  position: absolute;
  left: -39px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--white);
  transform: scale(0);
  z-index: 3;
}
@media only screen and (max-width: 540px) {
  .test-secC .content-wrapper .item-content li::after {
    left: -32px;
  }
}
.test-secC .content-wrapper .item-content li:last-child {
  margin-bottom: 0;
}
.test-secC .content-wrapper .item-content li p {
  margin: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.test-secC .content-wrapper.animate .item-content::after {
  animation: lineGrow 2.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.test-secC .content-wrapper.animate .item-content li {
  animation: stepShow 0.6s ease forwards;
}
.test-secC .content-wrapper.animate .item-content li::after {
  animation: dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(1) {
  animation-delay: 0.4s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(1)::after {
  animation-delay: 0.6s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(2) {
  animation-delay: 1s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(2)::after {
  animation-delay: 1.2s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(3) {
  animation-delay: 1.6s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(3)::after {
  animation-delay: 1.8s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(4) {
  animation-delay: 2.2s;
}
.test-secC .content-wrapper.animate .item-content li:nth-child(4)::after {
  animation-delay: 2.4s;
}

@keyframes stepShow {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dotPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: calc(100% - 16px);
  }
}
.test-secD {
  padding: 70px 0;
}
@media only screen and (max-width: 768px) {
  .test-secD {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .test-secD {
    padding: 40px 0;
  }
}
.test-secD .heading {
  margin-bottom: 3rem;
  text-align: center;
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .test-secD .heading {
    margin-bottom: 2rem;
  }
}
.test-secD .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 3rem;
}
@media only screen and (max-width: 991px) {
  .test-secD .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .test-secD .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.test-secD .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  background: rgb(248, 246, 252);
  padding: 24px;
  height: 100%;
  border-radius: 10px;
}
.test-secD .item p {
  margin: 0;
  font-weight: 300;
  color: var(--text);
}
.test-secD .item img, .test-secD .item svg {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.test-secE {
  padding: 70px 0;
  background: var(--gray);
}
@media only screen and (max-width: 991px) {
  .test-secE {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .test-secE {
    padding: 30px 0;
  }
}
.test-secE .heading {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 40px;
  text-align: center;
}
.test-secE .heading h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .test-secE .heading h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .test-secE .heading h3 {
    font-size: 20px;
  }
}
.test-secE .heading h3 span {
  display: block;
  color: var(--purple);
  font-size: 32px;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .test-secE .heading h3 span {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  .test-secE .heading h3 span {
    font-size: 20px;
  }
}
.test-secE .accordion-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.test-secE .accordion-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.test-secE .accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.test-secE .accordion-item.active .accordion-icon {
  color: var(--black);
}
.test-secE .accordion-item.active .accordion-header h4 {
  color: var(--black);
}
.test-secE .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.test-secE .accordion-header:hover {
  background: #fafafa;
}
.test-secE .accordion-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}
@media only screen and (max-width: 375px) {
  .test-secE .accordion-header h4 {
    font-size: 14px;
  }
}
.test-secE .accordion-icon {
  font-size: 24px;
  font-weight: 300;
  color: #666;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.test-secE .accordion-content {
  padding: 0 25px 20px;
  display: none;
  background: var(--white);
  padding-right: 3rem;
}
.test-secE .accordion-content p {
  padding: 20px 0;
  margin: 0;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (max-width: 375px) {
  .test-secE .accordion-content p {
    font-size: 12px;
  }
}
.test-secE .accordion-content ul {
  margin-left: 20px;
}
.test-secE .accordion-content ul li {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  line-height: 1.8;
  list-style-type: disc;
}
@media only screen and (max-width: 375px) {
  .test-secE .accordion-content ul li {
    font-size: 12px;
  }
}

.speakToConsultant .content .text p {
  opacity: 1 !important;
}/*# sourceMappingURL=test.css.map */