@charset "UTF-8";

:root {
  --primary-color: #00cc9c;
  --secondary-color: #003f88;
  --trietory-color: linear-gradient(
    90deg,
    rgb(0 204 156) 11%,
    rgb(0 77 167 / 98%) 52%
  );
  --highlight-text: #00b0ea;
  --body-bg-color: #efefef;
  --body-text-color: #000000;
  --z-index: 1;
  --z-index-header: 100;
  --z-index-popup: 1000;
  --font-weight-xlight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-xbold: 800;
  --base-text: 16px;
  --base-size: 16px;
  --font-style-italic: italic;
  --text-xmd: 1.1875rem;
  --text-md: 1.125rem;
  --text: 1rem;
  --text-sm: 0.6875rem;
  --text-xs: 0.75rem;
  --text-xxs: 0.625rem;
  --size-xxxl: 5rem;
  --size-xxl: 2.438rem;
  --size-xl: 1.875rem;
  --size-l: 1.25rem;
  --size-m: 1.25rem;
  --size-s: 1.125rem;
  --size-xs: 0.938rem;
  --h1: var(--size-xxxl);
  --h2: var(--size-xxl);
  --h3: var(--size-xl);
  --h4: var(--size-l);
  --h5: var(--size-m);
  --h6: var(--size-s);
}

@media (min-width: 1200px) {
  :root {
    --base-size: 0.8333vw;
  }
}

.h1,
h1 {
  font-size: var(--h1);
}

.h2,
h2 {
  font-size: var(--h2);
}

.h3,
h3 {
  font-size: var(--h3);
}

.h4,
h4 {
  font-size: var(--h4);
}

.h5,
h5 {
  font-size: var(--h5);
}

.h6,
h6 {
  font-size: var(--h6);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.15;
  font-family: "Poppins", sans-serif;
}

p {
  line-height: 1.4;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

ul,
li {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.btn--blue {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  font-weight: 600;
  font-size: 1rem;
  background-color: #00a0e2;
}

.btn--red:hover {
  background-color: transparent;
  border: 1px solid #00a0e2;
  transition: all 0.3s ease-in-out;
}

html.has-dom-loading,
html.has-scroll-smooth {
  height: 100%;
  overflow: hidden;
}

html.has-scroll-smooth {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

html {
  font-size: var(--base-size);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

.flex {
  display: flex;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin-top: 0;
}

a {
  text-decoration: none;
}

.heading-section {
  text-align: center;
}

/* .heading-section h2 {
  padding-bottom: 1.625rem;
} */

.footer__inner ul {
  padding: 0;
}

.container-fluid {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1280px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.834rem;
  margin-right: -0.834rem;
  row-gap: 0.834rem;
}

.col {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  padding-left: 0.834rem;
  padding-right: 0.834rem;
}

.col-12 {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
  }

  .col-sm-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
  }

  .col-sm-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
  }

  .col-sm-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
  }

  .col-sm-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
  }

  .col-sm-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
  }

  .col-sm-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
  }

  .col-sm-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
  }

  .col-sm-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
  }

  .col-sm-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
  }

  .col-sm-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
  }

  .col-sm-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
  }

  .col-md-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
  }

  .col-md-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
  }

  .col-md-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
  }

  .col-md-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
  }

  .col-md-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
  }

  .col-md-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
  }

  .col-md-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
  }

  .col-md-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
  }

  .col-md-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
  }

  .col-md-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
  }

  .col-md-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
  }

  .col-lg-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
  }

  .col-lg-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
  }

  .col-lg-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
  }

  .col-lg-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
  }

  .col-lg-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
  }

  .col-lg-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
  }

  .col-lg-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
  }

  .col-lg-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
  }

  .col-lg-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
  }

  .col-lg-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
  }

  .col-lg-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xls-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
  }

  .col-xls-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
  }

  .col-xls-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
  }

  .col-xls-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
  }

  .col-xls-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
  }

  .col-xls-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
  }

  .col-xls-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
  }

  .col-xls-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
  }

  .col-xls-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
  }

  .col-xls-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
  }

  .col-xls-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
  }

  .col-xls-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
  }
}

@media (min-width: 1270px) {
  .col-xl-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
  }

  .col-xl-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
  }

  .col-xl-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
  }

  .col-xl-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
  }

  .col-xl-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
  }

  .col-xl-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
  }

  .col-xl-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
  }

  .col-xl-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
  }

  .col-xl-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
  }

  .col-xl-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
  }

  .col-xl-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
  }

  .col-xl-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
  }
}

@media (min-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 calc(8.3333333333% * 1);
    max-width: calc(8.3333333333% * 1);
    width: 100%;
  }

  .col-xxl-2 {
    flex: 0 0 calc(8.3333333333% * 2);
    max-width: calc(8.3333333333% * 2);
    width: 100%;
  }

  .col-xxl-3 {
    flex: 0 0 calc(8.3333333333% * 3);
    max-width: calc(8.3333333333% * 3);
    width: 100%;
  }

  .col-xxl-4 {
    flex: 0 0 calc(8.3333333333% * 4);
    max-width: calc(8.3333333333% * 4);
    width: 100%;
  }

  .col-xxl-5 {
    flex: 0 0 calc(8.3333333333% * 5);
    max-width: calc(8.3333333333% * 5);
    width: 100%;
  }

  .col-xxl-6 {
    flex: 0 0 calc(8.3333333333% * 6);
    max-width: calc(8.3333333333% * 6);
    width: 100%;
  }

  .col-xxl-7 {
    flex: 0 0 calc(8.3333333333% * 7);
    max-width: calc(8.3333333333% * 7);
    width: 100%;
  }

  .col-xxl-8 {
    flex: 0 0 calc(8.3333333333% * 8);
    max-width: calc(8.3333333333% * 8);
    width: 100%;
  }

  .col-xxl-9 {
    flex: 0 0 calc(8.3333333333% * 9);
    max-width: calc(8.3333333333% * 9);
    width: 100%;
  }

  .col-xxl-10 {
    flex: 0 0 calc(8.3333333333% * 10);
    max-width: calc(8.3333333333% * 10);
    width: 100%;
  }

  .col-xxl-11 {
    flex: 0 0 calc(8.3333333333% * 11);
    max-width: calc(8.3333333333% * 11);
    width: 100%;
  }

  .col-xxl-12 {
    flex: 0 0 calc(8.3333333333% * 12);
    max-width: calc(8.3333333333% * 12);
    width: 100%;
  }
}

/* common-css */

a.green-button {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid #00cc9c;
  padding: 5px 16px;
  border-radius: 10px;
  display: inline-block;
}

.ft__dashboard_main_wrapper a.green-button {
  padding: 10px 25px;
}

a.green-button:hover {
  opacity: 0.8;
}

a.border-button {
  border: 2px solid #00cc9c;
  padding: 5px 16px;
  border-radius: 10px;
  color: #00cc9c;
}

a.border-button:hover {
  background: var(--primary-color);
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.ac__how-it-work .heading-section h2,
.ac__what-will-you-get .heading-section h2,
.ac__trust-by-section .heading-section h2 {
  padding-bottom: 1.625rem;
}

/* header */
header.header {
  padding: 10px 5px;
  box-shadow: 0px 4px 30px 0 rgb(0 0 0 / 10%);
}

.ac__logo-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
}

.ac__header--right {
  align-items: center;
  justify-content: center;
  display: flex;
}

.ac__header--buttons {
  display: flex;
  gap: 25px;
}

.section-gapping {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* hero-section */
section.ac__hero-section {
  padding-top: 84px;
}

.ac__hero--wraper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.ac__hero--content h1 {
  line-height: 62px;
  font-size: 48px;
}

.ac__hero--content p {
  font-size: 18px;
}

.ac__hero--content span {
  background: var(--trietory-color);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

/* .ac__hero--image {
    position: relative;
    padding-top: 34%;
    width: 50%;
} */

.ac__hero--buttons {
  display: flex;
  gap: 25px;
}

.ac__hero--buttons a.btn {
  padding: 10px 16px;
  display: flex;
  gap: 15px;
}

/* .ac__hero--image img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
} */

.ac__hero--review {
  display: flex;
  margin-top: 30px;
  align-items: center;
}

.ac__hero--review--img {
  display: flex;
  margin-right: 40px;
}

img.avatar-img {
  border: 2px solid #fff;
  border-radius: 40px;
  width: 40px;
  margin-right: -17px;
}

.review--txt-wrap {
  display: flex;
  flex-direction: column;
}
.review--txt {
  display: flex;
  align-items: center;
  gap: 5px;
}
.review--txt-wrap p {
  margin: 0;
}

.review-start {
  display: flex;
  align-items: center;
}

span.font-bold {
  font-weight: 600;
  background: var(--body-text-color);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.ac__header--buttons .border-button {
  border: 1.5px solid #00a060;
  color: #00a060;
}

.ac__header--buttons .border-button:hover {
  background: #00a060;
  color: #fff;
}

.ac__header--buttons .green-button {
  background: #00a060;
  color: #fff;
  border: 1.5px solid #00a060;
}

.ac__header--buttons .green-button:hover {
  background: #008a52;
}

.ac__admin-name {
  text-align: center;
  align-items: center;
  justify-content: end;
  display: flex;
}

.ac__admin-name span {
  font-family: "Poppins";
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 18px;
}

.ac__responsive--header {
  display: none;
}

/* Toggle button */
.ac_menu--toggle--button {
  display: none;
  cursor: pointer;
}

.ac_menu--toggle--button img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.ac_menu--toggle--button .close__menu__button {
  display: none;
}

.ac_menu--toggle--button.active .open__menu__button {
  display: none;
}

.ac_menu--toggle--button.active .close__menu__button {
  display: inline-block;
  transform: rotate(180deg);
}

/* Mobile menu */
.ac__mobile--menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ac__mobile--menu.active {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 20px 0;
}

.ac__mobile--menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ac__mobile--menu ul li {
  margin: 15px 0;
}

.ac__mobile--menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  transition: color 0.3s ease;
}

.ac__mobile--menu ul li a:hover {
  color: #00a060;
}

/* Mobile buttons inside menu */
.ac__header--buttons.mobile {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.ac__client {
  padding: 40px 0;
}

.ac__client.swiper_client-wrapper {
  overflow: hidden;
}
.ac__client.swiper_client-wrapper .swiper-client .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.ac__client.swiper_client-wrapper .swiper-client .swiper-wrapper .swiper-slide {
  transition: 0.5s all ease-in-out;
}
.ac__client.swiper_client-wrapper
  .swiper-client
  .swiper-wrapper
  .swiper-slide
  .swiper-slide-img
  img {
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper_client-wrapper {
  overflow: hidden;
}

/* how-it-work */
/* .row.ac__how-it-work-content {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
} */

/* .col.ac__how-it-work-item {
    padding: 30px;
    max-width: calc((100% / 3) - ((2.5rem * 2) / 3));
    flex: calc((100% / 3) - ((2.5rem * 2) / 3));
    border: 2px solid rgb(5 80 169 / 50%);
    border-radius: 14px;
} */

.ac__how-it-work-item {
  border: 2px solid rgb(5 80 169 / 50%);
  padding: 30px;
  border-radius: 14px;
}

.ac__how-it-work-item--image {
  padding-bottom: 12px;
}

.ac__how-it-work-item--content p:nth-of-type(1) {
  font-size: 18px;
  font-weight: 600;
}

.ac__how-it-work-item--content p:nth-of-type(2) {
  font-size: 14px;
}

/* available-test */
.ac__available-test {
  background: rgb(188 211 237 / 30%);
}

.ac__available-test--content {
  padding-top: 5rem;
  padding-bottom: 3rem;
  justify-content: space-between;
}

/* .row.ac__available-test-content {
    gap: 20px;
} */

.ac__available-test--image img {
  margin: 0 auto;
  padding-bottom: 0.5rem;
  padding-top: 1.875rem;
}

.ac__available-test-item {
  padding: 30px;
}

.ac__testing-time {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}

.ac__timing,
.ac__question {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ac__available-test-item {
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #ebdfdf;
}

.ac__available-btn a.btn.green-button {
  margin: 0;
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 10px;
}

.ac__available-test-item--image {
  padding-bottom: 15px;
}

.ac__available-test-item--content h6 {
  padding-bottom: 15px;
  font-size: 15px;
}

.ac__timing p,
.ac__question p {
  margin: 0;
  font-size: 14px;
}

/* boots-section */
.ac__boost-item--number {
  border: 2px solid #003f88;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-size: 28px;
  justify-content: center;
  font-family: "Poppins";
}

.ac__boost-item--content p {
  font-weight: 600;
  margin: 0;
  padding-top: 10px;
}

.ac__boost-item {
  width: 100%;
  max-width: 408px;
  border: 1px solid #d9c7c7;
  border-radius: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-inline: 16px;
}

ul.boots-lists {
  padding: 0;
  padding-top: 20px;
}

.boots-lists li {
  padding-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* what-will-you-get */
.ac__what-will-you-get {
  background-color: rgb(188 211 237 / 30%);
}

.ac__what-will-data {
  width: 100%;
}

.ac__what-will--content {
  display: flex;
  gap: 16px;
}

.ac__what-will-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.ac__what-will-wraper {
  width: 100%;
  color: var(--primary-color);
  max-width: calc((100% / 5) - ((1.5rem * 4) / 5));
  flex: calc((100% / 5) - ((1.5rem * 4) / 5));
  border: 1px solid rgb(199, 220, 236);
  padding-top: 24px;
  padding-bottom: 24px;
  border-radius: 10px;
  background-color: #fff;
}

.ac__what-will-data p {
  font-size: 14px;
  margin: 0;
  color: #000;
}

.ac__what-will-icon {
  padding: 4px;
}

/* trusted-by */
.ac__trust-by-icon {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ac__trust-by-data {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ac__trust-by--bottom {
  display: flex;
  justify-content: end;
}

.ac__trust-by-wraper {
  border: 1px solid;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0px 4px 30px 0 rgb(0 0 0 / 10%);
}

.ac__trust-by-icon p {
  font-size: 14px;
  font-weight: 600;
}

.ac__trust-by-data p,
.ac__trust-by--bottom p {
  font-size: 14px;
}

.ac__trust-by--information p {
  font-size: 16px;
}

section.ac__trust-by-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* community-section */
.ac__community-section {
  background-color: rgb(188 211 237 / 30%);
  padding: 40px 0;
}

.ac__community-content .heading-section h2 {
  text-align: left;
}

.ac__community-section p {
  margin-bottom: 0;
}

p.ac__community-content--txt--res {
  display: none;
}
.ac__community-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ac__community-social {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

a.ac__social-icon:hover {
  transition: all ease-in-out 0.3s;
  transform: scale(1.05);
}

.ac__social-icon img {
  background-color: #fff;
  padding-top: 14px;
  padding-bottom: 14px;
  border: 1px solid #00a0e2;
  border-radius: 10px;
}
/* explore-plan */
.ac__explore--content {
  display: flex;
  justify-content: center;
  gap: 30px;
  transition: all ease-in-out 0.3s;
}

.ac__explore-item {
  background-color: #fff;
  box-shadow: 0px 4px 30px 0 rgb(0 0 0 / 10%);
  border: 1px solid;
  border-radius: 10px;
  padding: 30px;
}

.ac__explore--content :hover {
  transition: all ease-in-out 0.3s;
  transform: scale(1.05);
}

.ac__explore-item h3 {
  font-size: 18px;
}

.ac__explore-information h3 {
  font-size: 39px;
  padding-bottom: 32px;
}

.ac__explore-information sub {
  font-size: 14px;
  color: #a1a1aa;
  font-weight: 400;
}

.boots-lists.explore li {
  color: #a1a1aa;
  padding-bottom: 12px;
}

/*FAQ Seciton*/
.ac_faq {
  padding-block: 5rem;
}
@media (max-width: 375px) {
  .ac_faq {
    padding-block: 3rem;
  }
}
.ac_faq .ck_web-services {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.ac_faq a {
  text-decoration: none;
}
.ac_faq .accordion,
.ac_faq .accordion * {
  box-sizing: border-box;
}
.ac_faq .accordion {
  overflow: hidden;
  background: #ffffff;
}

@media (max-width: 375px) {
  .ac_faq .accordion {
    padding-top: 0.5rem;
  }
}
.ac_faq .accordion-section .accordion-section-title {
  margin-bottom: 1.563rem;
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
  padding: 0.938rem 1.75rem;
  display: inline-block;
  position: relative;
  color: #333333;
  background: rgb(188 211 237 / 30%);
  transition: all linear 0.15s;
  text-decoration: none;
  cursor: pointer;
  font-family: poppins;
  font-weight: 600;
}
.ac_faq .accordion-section .accordion-section-title:focus {
  color: #1a1918;
}
.ac_faq .accordion-section .accordion-section-title::after {
  content: "";
  position: absolute;
  background: url(../images/down-arrow.svg) no-repeat center / cover;
  background-size: cover;
  background-position: center;
  right: 1.25rem;
  top: 0.938rem;
  width: 100%;
  max-width: 1.563rem;
  height: 1.563rem;
  transition: transform 0.5s ease-in-out;
}

.ac_faq .accordion-section .accordion-section-title.active::after {
  transform: rotate(180deg);
  filter: invert(1);
}
.ac_faq .accordion-section-content {
  padding: 0.938rem 0.313rem;
  display: none;
  margin-bottom: 1.563rem;
}
.ac_faq .accordion-section-content p {
  margin-top: 0;
  font-size: 14px;
}
.ac_faq .accordion-section-content#accordion-3 p {
  margin-bottom: 0.125rem;
  line-height: 1.2;
} /*# sourceMappingURL=service.css.map */

/* footer */
.ac__footer {
  background-color: rgb(0, 27, 54);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.ac__footer-main {
  display: flex;
  justify-content: space-between;
}

.ac__footer-social-logo {
  display: flex;
  gap: 25px;
  padding-top: 20px;
}

.ac__footer--right {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.ac__footer--bottom {
  padding-top: 1rem;
  text-align: center;
}

.customer-text p,
.ac__detail a,
.ac__footer--bottom p {
  color: #fff;
  font-size: 14px;
}

.ac__detail a:hover {
  color: #00a67f;
  transition: all ease-in-out 0.3s;
}

a.customer-support {
  display: flex;
  gap: 10px;
  border: 1px solid #fff;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.ac__footer-content a {
  color: #fff;
}

.customer-text p {
  margin: 0;
}

.ac__footer-content p {
  font-size: 14px;
}

.ac__footer-heading h4 {
  padding-bottom: 20px;
}

.ac__footer-social-icon img:hover {
  transition: all ease-in-out 0.5s;
  transform: scale(1.05);
}

a.customer-support:hover {
  background-color: #fff;
  color: #000;
  transition: all ease-in-out 0.3s;
}

a.customer-support:hover .customer-text p {
  color: #000;
  transition: all ease-in-out 0.3s;
}

a.customer-support:hover .customer-logo img {
  filter: brightness(0);
  transition: all ease-in-out 0.3s;
}

/* login-form-START */

h2.ays-quiz-login-title {
  margin-bottom: 0;
  text-align: center;
}

label.ays-quiz-login-label {
  font-weight: 600;
}

p.ays-quiz-login-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}

input.ays-quiz-login-input {
  margin-top: 10px;
}

/* login-form-END */

/* register-form-START */
.ays-quiz-login-register {
  text-align: center;
}

p.ays-quiz-register-subtitle {
  text-align: center;
}

h2.ays-quiz-register-title {
  text-align: center;
  margin-bottom: 0;
}
/* register-form-END */

/* test-section-START */
.ft__quiz_page_wrapper .heading-section {
  padding-bottom: 40px;
}
/* test-section-END */

/* quiz-list-START */
.ft__quiz_page_wrapper {
  min-height: 59.8vh;
}
/* quiz-list-END */

/* data-table-START */
.dataTables_length label,
.dataTables_filter,
.dataTables_info {
  font-family: "Poppins";
  font-weight: 500;
}

.dataTables_length {
  padding-bottom: 10px;
}

tbody {
  font-family: "Poppins";
  font-weight: 400;
}

tr.ays_lb_li.odd {
  background: rgb(188 211 237 / 30%);
}
/* data-table-END */

/* keybord-score-START */
.ays-quiz-user-results-container.ays-quiz-user-results-empty {
  min-height: 59vh;
}

h1.ft__sc_heading_section {
  text-align: center;
  padding-block: 20px;
}

.ays-quiz-user-results-container {
  background-color: transparent;
  padding-block: 1.875rem;
}

.dataTables_info {
  padding-top: 20px;
}

/* thank-you-START */
.ac__thank-you-wraper {
  text-align: center;
  align-items: center;
}

.ac__thank-you-wraper h1 {
  color: #004da7;
}

.ac__thank-you-wraper p {
  color: var(--primary-color);
  font-weight: 700;
}

.ac__thank-you-wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 96vh;
}

.ac__admin-name--res span:last-child {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: unset;
  max-width: none;
}

/* thank-you-END */

/* How-it-works-START */

h1.entry-title {
  text-align: center;
  padding-top: 4rem;
}

h2.wp-block-heading {
  text-align: center;
  padding-bottom: 2.5rem;
}

ul.wp-block-list {
  padding-left: 2.5rem;
  padding-top: 2rem;
}

.entry-content {
  padding-bottom: 4rem;
}

ol.wp-block-list {
  padding-left: 2rem;
  padding-top: 2rem;
}

.wp-block-list li {
  list-style: auto;
}

ul.wp-block-list li {
  list-style: outside;
}

h4.wp-block-heading {
  padding-top: 2rem;
}

.entry-content a {
  color: #000;
}

.entry-content a:hover {
  color: #008a52;
  transition: all ease-in-out 0.3s;
}

/* How-it-works-END */
/*keybord-score-END */

/* Deskboard 05-11-25 */
.ft__dashboard_wrapper {
  text-align: center;
}

h1.ft__sc_heading_section.ft__dashboard_heading {
  font-size: 2.375rem;
}

h2.ft__dashboard_display_name {
  font-size: 30px;
  color: #00a060;
}

.ft__dashboard_btn_wrapper {
  text-align: center;
  padding: 20px;
  padding-inline: 20px;
}

.ft__dashboard_main_wrapper {
  min-height: 50.8vh;
}

.ft__dash_user_btn_wrapper {
  box-shadow: 0px 4px 30px 0px #0000001a;
  padding-block: 20px;
  margin-bottom: 40px;
}

@media (min-width: 1250px) and (max-width: 1440px) {
  .ac__available-test-item--content h6 {
    font-size: 16px;
  }

  .ac__how-it-work-item--content p:nth-of-type(2) {
    font-size: 15px;
  }

  .ac__timing p,
  .ac__question p {
    margin: 0;
    font-size: 14px;
  }

  .boots-lists li,
  .wp-block-list li {
    font-size: 15px;
  }
}

.ft__not-found-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 55vh;
}

.ft__not-found-wrapper h1 {
  color: #004da7;
  font-size: 72px;
}

.ft__not-found-wrapper p {
  color: var(--primary-color);
  font-weight: 700;
}
