* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --primary-color: #3aa63e;
  --secondary-color: #0b7ab8;
  --bg-blue: #0060b4;
  --text-color: #000;
  --bg-button: #00be75;
}

body {
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

.main-nav-wrapper {
  background-color: #f5f7fa;
  position: sticky;
  top: 0px;
  width: 100%;
  z-index: 9999;
}

.main-nav-wrapper .bg-light {
  background-color: transparent !important;
}

.main-nav-wrapper .navbar-brand {
  margin-right: 92px;
}

.main-nav-wrapper .navbar-brand img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.main-nav-wrapper .navbar-nav .nav-item {
  margin-right: 0px;
}

.main-nav-wrapper .navbar-nav .nav-link {
  font-size: 14px;
  padding: 16px 14px;
  color: var(--text-color);
}

.main-nav-wrapper .dropdown-toggle::after {
  content: none;
}

.main-nav-wrapper .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav-wrapper .dropdown-toggle img {
  width: 13px;
  height: auto;
  object-fit: contain;
}

.main-nav-wrapper .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.main-nav-wrapper .button {
  background-color: var(--bg-button);
  color: white;
  padding: 12px 16px;
  border: 1px solid var(--bg-button);
 text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
}

.header-main {
  min-height: 700px;
  background: #f0f8ffbf;

  position: relative;
  display: flex;
  align-items: center;
}
.header-main.home-header {
  min-height: 700px;
  background-image: url(../assets/images/home-bg.gif);
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
}

.header-main.home-header::before {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;

  height: 100%;
  content: "";
  background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.95)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04));
  z-index: 0;
}

.header-main .container {
  position: relative;
  z-index: 2;
  height: 100%;
}

.header-main .title {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1.3;
  font-size: 62px;
  font-weight: 400;

  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 24px;
}
.header-main .title.title-large {
  font-size: 72px;
}
.title .text-wrapper {
  position: relative;
  display: inline-block;

  overflow: hidden;
}

.title .letter {
  display: inline-block;
}

[data-aos="fade-up"] {
  transform: translateY(20px);
  /* Start from 20px below */
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(-20px);
  /* End at normal position */
}

.header-main .subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

.header-main .header-right img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 10px;
}

.header-main .header-right {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #ececec;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.buttons-flex {
  display: flex;
  align-items: center;
  gap: 16px;
}

.button-blue {
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  padding: 16px 24px;
  width: max-content;
  font-family: "Poppins", sans-serif;
}
.button-light {
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  color: #0b7ab8;

  font-size: 16px;
  font-weight: 600;
  line-height: 18px;
  padding: 16px 24px;
  font-family: "Poppins", sans-serif;
}

.healthcare-wrapper {
  background-color: white;
  padding: 80px 0px;
}

.healthcare-wrapper .logo-wrapper {
  background: #f8f8f8;
  box-shadow: 0px 3px 4px 0px #0000001a;
  border-radius: 20px;
  height: 160px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.healthcare-wrapper .logo-wrapper img {
  width: 120px !important;
  height: auto;
  object-fit: contain;
}

.integration-wrapper {
  background-color: #f8f8f8;
  padding: 80px 0px;
}

.integration-wrapper .logo-wrapper {
  background: #fff;
  box-shadow: 0px 3px 4px 0px #0000001a;
  border-radius: 20px;
  height: 160px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.integration-wrapper .logo-wrapper img {
  width: 120px !important;
  height: auto;
  object-fit: contain;
}

.headinglight {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;

  letter-spacing: -0.05em;
}

.owl-carousel.owl-drag .owl-item {
  padding: 10px 0px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-24 {
  margin-bottom: 24px;
}
.mb-22 {
  margin-bottom: 22px;
}
.mb-40 {
  margin-bottom: 40px;
}
.image-slider-wrapper {
  background-color: #f8f8f8;
  padding: 80px 0px;
}

.image-slider-wrapper {
  position: relative;
}

.image-slider-wrapper .images-carousel-wrapper .content {
  padding-left: 30px;
}

.image-slider-wrapper .images-carousel-wrapper .title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -1.5px;
  text-align: left;
}

.image-slider-wrapper .images-carousel-wrapper .subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 30.6px;
  letter-spacing: -0.20000000298023224px;
  text-align: left;
}

.image-slider-wrapper .images-carousel-wrapper .image-wrapper {
  background-color: #f8f8f8;
  border-radius: 20px;
}

.image-slider-wrapper .images-carousel-wrapper .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.image-slider-wrapper .owl-theme .owl-nav {
  position: absolute;
  right: 0px;
  bottom: -40px;
}

.image-slider-wrapper .owl-carousel .owl-nav button {
  height: 36px;
  width: 36px;
  border-radius: 50% !important;
  color: #fff !important;
  background: #424245b8 !important;
  padding: 4px !important;
}

.image-slider-wrapper .owl-theme .owl-dots {
  position: absolute;
  left: 0px;
  bottom: -40px;
}

.future-vision-container {
  background-color: var(--bg-blue);
  padding: 80px 0px;
}

.future-vision-container .image-wrapper {
  margin-bottom: 30px;
}

.future-vision-container .image-wrapper img {
  width: 230px;
  height: auto;
  object-fit: contain;
}

.future-vision-container .title {
  font-size: 33px;
  font-weight: 500;
  line-height: 1.3;
  color: white;
  margin-bottom: 24px;
  text-align: left;
}

.title .text-wrapper {
  position: relative;
  display: inline-block;

  overflow: hidden;
}

.future-vision-container .text {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.005em;
  text-align: left;
}

/* Progress slider css */
.progress-slider-wrapper {
  background-color: white;
  padding: 100px 0px;
}

.progress-slider-wrapper .inner {
  background-color: #e6f3fa;
  padding: 80px 80px;
  overflow: hidden;
  position: relative;
  border-radius: 22px;
}

.progress-slider-wrapper .title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-align: left;
}

.progress-slider-wrapper .subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.005em;
  text-align: left;
  margin-bottom: 24px;
}

.progress-slider-wrapper .title-smalll {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-align: left;
  margin-bottom: 16px;
}

.progress-slider-wrapper .subtitle-small {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.005em;
  text-align: left;
}

.progress-slider-wrapper .count {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 300;
  line-height: 54px;
  text-align: left;
}

.progress-slider-wrapper .image-wrapper {
  background-color: #faefea;
  border-radius: 8px;
}

.progress-slider-wrapper .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.progress-slider-wrapper .progress-bar-wrapper {
  width: 100%;
  height: 16px;
  background-color: #eee;
  margin-top: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.progress-slider-wrapper .progress-barr {
  height: 100%;
  width: 0;
  background-color: var(--secondary-color);
  transition: all 2.8s ease-out;
}

.logo-wrapper img {
  width: 100%;
  height: 500px;
}

.performance-wrapper {
  background-color: #00be75;
  padding: 80px 0px;
  color: white;
}

.performance-wrapper .title {
  color: white;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-align: left;

  margin-bottom: 16px;
}

.performance-wrapper .subtitle {
  color: white;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.005em;
  text-align: left;
  margin-bottom: 24px !important;
}

.performance-wrapper .image-wrapper {
  padding: 30px;
}

.performance-wrapper .image-wrapper img {
  height: 430px;
  width: 100%;
  object-fit: contain;
}

.mb-100 {
  margin-bottom: 100px;
}

.performance-wrapper .count-wrapper .sign {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.performance-wrapper .count-wrapper .digit {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-align: center;
}

.performance-wrapper .count-wrapper .text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
.title .text-wrapper {
  position: relative;
  display: inline-block;

  overflow: hidden;
}

.title .letter {
  display: inline-block;
}
.exceptional-wrapper {
  background-color: white;
  padding-left: 14%;
}
.exceptional-wrapper .container-fluid {
  padding-right: 0px !important;
}
.exceptional-wrapper .inner {
  padding: 80px 0px;
  position: relative;
  padding-bottom: 160px;
}

.exceptional-wrapper .title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}



.exceptional-wrapper .subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 0.005em;
  text-align: left;
  margin-bottom: 16px;
}

.exceptional-wrapper {
  position: relative;
}

.exceptional-wrapper .inner .abs {
  position: absolute;
  right: 100px;
  max-height: 100%;
  width: auto;
  top: 0px;
}

.exceptional-wrapper .owl-theme .owl-nav {
  position: absolute;
  right: 100px;
  bottom: -80px;
}

.exceptional-wrapper .owl-carousel .owl-nav button {
  height: 36px;
  width: 36px;
  border-radius: 50% !important;
  color: #fff !important;
  background: #424245b8 !important;
  padding: 4px !important;
}

.exceptional-wrapper .owl-theme .owl-dots {
  position: absolute;
  left: 0px;
  bottom: -80px;
}

.exceptional-wrapper .owl-carousel .owl-item {
  width: calc(100% / 3.8);
  /* Adjust width to show 3.5 slides */
}

.exceptional-wrapper .exceptional-item {
  background-color: #e8eff4;
  border-radius: 30px;
  min-height: 400px;
  padding: 32px;
}

.exceptional-wrapper .exceptional-item img {
  margin-bottom: 16px;
  max-width: 0px 0px;
  height: 60px;
  width: auto !important;
  object-fit: contain;
}

.exceptional-wrapper .exceptional-item .titlee {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 8px;
}

.exceptional-wrapper .exceptional-item .subtitlee {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
}

.hippa-wrapper {
  background: #01baef33;
}

.hippa-wrapper .inner {
  padding: 80px 0px;
  position: relative;
}

.hippa-wrapper .inner .abs-image {
  position: absolute;
  right: 140px;
  top: 0px;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.hippa-wrapper .left-image {
  padding-right: 40px;
  margin-bottom: 32px;
}

.hippa-wrapper .left-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hippa-wrapper .right {
  padding-left: 40px;
}

.hippa-wrapper .text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: left;
}

.mb-32 {
  margin-bottom: 32px !important;
}

.mb-36 {
  margin-bottom: 36px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}
.mb-90 {
  margin-bottom: 90px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}

.mb-16 {
  margin-bottom: 16px;
}

.hippa-wrapper .title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: left;
}

.powered-wrapper .title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: left;
}

.powered-wrapper {
  background-color: #f8f8f8;
  padding: 80px 0px;
}

.powered-wrapper .image-wrapper {
  margin-bottom: 32px;
}

.powered-wrapper .image-wrapper img {
  width: 400px;
  height: auto;
}

.powered-wrapper .icon-wrapper {
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 158px;
}

.powered-wrapper .icon-wrapper img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.generation-wrapper {
  padding: 80px 0px;
  position: relative;
}

.generation-wrapper .abs {
  position: absolute;
  left: 0px;
  top: 0px;

  z-index: 0;
  width: 100%;
  height: 100%;
}

.generation-wrapper .abs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.generation-wrapper::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  content: "";
  left: 0px;
  top: 0px;
  z-index: 1;
}

.generation-wrapper .container {
  position: relative;
  z-index: 2;
}

.generation-wrapper .title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  text-align: left;
  color: #3ebaff;
}

.generation-wrapper .subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.005em;
  text-align: left;
  color: white;
}

.generation-wrapper .content {
  text-align: center;
}

.generation-wrapper .content img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.generation-wrapper .content .label {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: center;
  color: #fff;
}

.generation-wrapper .content .text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: center;
  color: #fff;
}

.solutuons-wrapper {
  background-color: white;
  padding: 100px 0px;
}

.solutuons-wrapper .inner {
  padding: 80px;
  background-color: #f2f2f2;
  border-radius: 22px;
  position: relative;
}

.solutuons-wrapper .inner .title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  text-align: left;
}

.solution-carousel-wrapper .title-small {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.005em;
  text-align: left;
}

.solution-carousel-wrapper .subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: left;
}

.solution-carousel-wrapper .image-wrapper {
  background-color: #e6f3fa;
  box-shadow: 0px 3px 4px 0px #0000001a;
  border-radius: 8px;
}

.solution-carousel-wrapper .image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.solutuons-wrapper .owl-theme .owl-dots {
  position: absolute;
  right: -115px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.solutuons-wrapper button.owl-dot.active span {
  width: 80px !important;
  height: 8px !important;
  background-color: #333333 !important;
}

.solutuons-wrapper button.owl-dot span {
  background: #7d7d7d !important;

  height: 8px !important;
  width: 8px !important;
}

.faq-section {
  background-color: white;
  padding: 80px 0px;
}

.faq-section .title {
  font-size: 60px;
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0.005em;
  text-align: left;
}

.main-accordian .accordion-item {
  border: none !important;
}

.main-accordian .accordion-button {
  padding: 21px 0px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0px;
}

.main-accordian .accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.main-accordian .accordion-body {
  font-size: 14px;
  color: #333;
  padding: 1rem;
}

.main-accordian .accordion-button:not(.collapsed) {
  background-color: transparent !important;
  color: #000 !important;
}

.next-wrapper {
  background-color: white;
  padding: 80px 0px;
}

.next-wrapper .inner {
  background-color: #f5f7fa;
  border-radius: 22px;
  padding: 80px;
}

.next-wrapper .content .title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  text-align: center;
}

.next-wrapper .content {
  max-width: 520px;
  text-align: center;
  margin: 10px auto;
}

footer {
  background-color: #263238;
  padding: 80px 0px;
}

footer .logo {
  margin-bottom: 40px;
  display: block;
}

footer .logo img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

footer .text {
  font-size: 14px;
  color: #f5f7fa;
  line-height: 1.6;
  margin-bottom: 8px;
}

footer .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #fff;
}
.gray-color {
  color: #00be75 !important;
}
.black-color {
  color: #000 !important;
}
.orange-color {
  color: #fec432 !important;
}

footer .link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #f5f7fa;
  display: block;
  text-decoration: none;
}

footer .input-wrapper {
  position: relative;
  border-radius: 8px;
  background-color: #2f3a40;
  width: 100%;
  height: 40px;
}

footer .input-wrapper .send {
  position: absolute;
  height: 18px;
  width: 18px;
  right: 11px;
  top: 11px;
  object-fit: contain;
  cursor: pointer;
}

footer .input-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  height: 40px;
  padding: 10px 12px;
  background-color: transparent;
  border-radius: 8px;
  font-size: 14px;
  color: #f5f7fa;
}

footer .input-wrapper input::placeholder {
  color: #d9dbe1;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* Contact us page css */

.contact-wrapper {
  padding: 160px 0px;
  background-color: #C5E6F8;
  background-image: url(../assets/images/contact.png);
  background-position: 100% bottom;
  background-size: 800px;
  background-repeat: no-repeat;
  width: 100%;
}

.blog-wrapper {
  
  padding: 160px 0px;
  background-color: #C5E6F8;
  background-image: url(../assets/images/blog.png);
  background-position: 100% bottom;
  background-size: 800px;
  background-repeat: no-repeat;
  width: 100%;
}
.dispute-wrapper {
  background-color: #C5E6F8;
  padding: 160px 0px;
  
  background-image: url(../assets/images/dispute-banner.png);
  background-position: 90% bottom;
  background-size: 700px;
  background-repeat: no-repeat;
  width: 100%;
}
.contact-wrapper .title.mb-48 {
  font-size: 80px;
  line-height: 1.4;
  font-weight: 400;
}
.contact-wrapper.blog-wrapper .title.mb-48 {
  font-size: 110px;
  font-weight: 300;
  line-height: 1.5;
}

.contact-wrapper .subtitle {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 300;
  color: #292827;
}

.contact-form-wrapper {
  background-color: white;
  padding: 100px 0px;
}

.contact-form-wrapper .content {
  padding-right: 50px;
}

.contact-form-wrapper .title {
  font-size: 52px;
  line-height: 1.24;
  font-weight: 300;
}

.contact-form-wrapper .subtitle {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

.contact-form-wrapper .form-wrapper label {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  color: #7d7d7d;
  padding-left: 8px;
}

.contact-form-wrapper .form-wrapper input {
  border: none;
  height: auto;
  width: 100%;
  border-bottom: 1px solid #7d7d7d;
  padding: 5px 8px;
  background-color: transparent;
  outline: none;
  color: #000;
  font-size: 16px;
}

.contact-form-wrapper .form-wrapper select {
  border: none;
  height: auto;
  width: 100%;
  border-bottom: 1px solid #7d7d7d;
  padding: 5px 8px;
  background-color: transparent;
  outline: none;
  color: #000;
  font-size: 16px;
}

.contact-form-wrapper .form-wrapper textarea {
  border: none;

  width: 100%;
  border-bottom: 1px solid #7d7d7d;
  padding: 5px 8px;
  background-color: transparent;
  outline: none;
  color: #000;
  font-size: 16px;
}

.contact-form-wrapper .form-wrapper input::placeholder {
  color: #7d7d7d;
}

.contact-form-wrapper .form-wrapper input:focus {
  outline: none;
  box-shadow: none;
}

.contact-form-wrapper .form-wrapper .button {
  background-color: #00be75;
  border: 1px solid #00be75;
  color: white;
  display: block;
  width: 100%;
  text-align: center;
  height: 60px;
  font-size: 18px;
}

.contact-form-wrapper .map-wrapper {
  min-height: 700px;
  border-radius: 20px;
  width: 100%;
}

.contact-form-wrapper .map-wrapper iframe {
  height: 100%;
  min-height: 700px;
  border-radius: 20px;
  width: 100%;
}

.contact-info-wrapper {
  padding: 24px 0px;
  background-color: #f3f3f3;
}

.contact-info-wrapper .info {
  width: 100%;
  min-height: 236px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  gap: 16px;
}

.contact-info-wrapper .info img {
  height: 24px;
  width: 24px;
  object-fit: contain;
}

.contact-info-wrapper .info .title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
}

.contact-info-wrapper .info .subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.contact-info-wrapper .info .subtitle a {
  text-decoration: none;
  color: inherit;
}

.blog-items .blog-item .image-wrapper {
  width: 100%;
  height: 312px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.blog-items .blog-item .image-wrapper img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.blog-items .blog-item .bread_crumbs {
  display: flex;
  align-items: center;
  gap: 1px;

  font-size: 15.74px;
  font-weight: 275;
  line-height: 20.46px;
  letter-spacing: 0.6295259594917297px;
  text-align: left;
  color: #525f58;
  margin-bottom: 24px;
}

.blog-items .blog-item .bread_crumbs a {
  text-decoration: none;
  color: #525f58;
}

.blog-items .blog-item .desc {
  font-size: 24.89px;
  text-decoration: none;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.25181034207344055px;
  text-align: left;
  color: #292827;
}

.filters-wrapper {
  margin: 48px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filters-wrapper .left {
  width: auto;
}

.filters-wrapper .left ul {
  display: flex;
  padding: 0px;
  margin: 0px;
  list-style: none;
  gap: 48px;
  align-items: center;
}

.filters-wrapper .left ul li {
  padding: 0px;
  margin: 0px;
}

.filters-wrapper .left ul li a {
  display: flex;
  align-items: center;
  gap: 72px;

  border-right: 0.87px solid #e6e4e2;
  text-decoration: none;

  font-size: 19px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.19934988021850586px;
  text-align: left;
  color: #525f58;
  padding: 4px 16px 4px 0px;
}

.filters-wrapper .results a {
  text-decoration: none;

  font-size: 18px;
  font-weight: 300;
  line-height: 23.92px;
  letter-spacing: 0.19934988021850586px;
  text-align: left;
  color: #00be75;
  padding: 4px 0px 4px 0px;
}

.filters-wrapper .left ul li a img {
  height: 18px;
  width: auto;
  object-fit: contain;
}

.separator {
  width: 100%;
  border-bottom: 0.87px solid #e6e4e2;
}
.blog-detail-wrapper {
  height: auto;
  padding-bottom: 20px;
}
.blog-detail-wrapper .header {
  padding: 120px 0px;
}
.blog-detail-wrapper .header .date {
  color: #222;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  margin-bottom: 32px;
}
.blog-detail-wrapper .header .title {
  font-size: 137.88px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--text-color);
}
.blog-detail-wrapper .header .bread-crums {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #222;
  font-size: 11.44px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  justify-content: center;
}
.blog-detail-wrapper .header .bread-crums a {
  text-decoration: none;
  color: #222;
}
.blog-detail-wrapper .main-image {
  height: 700px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 190px;
}
.blog-detail-wrapper .main-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.blog-detail-wrapper .content {
  max-width: 824px;
  margin: 10px auto;
}
.blog-detail-wrapper .content .subtitle {
  font-size: 43.75px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 64px;
}
.blog-detail-wrapper .content .title-small {
  font-size: 25.75px;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  margin-bottom: 48px;
}
.blog-detail-wrapper .content .text {
  font-size: 20.63px;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 32px;
}
.blog-detail-wrapper .content .video-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
  height: 460px;
}
.blog-detail-wrapper .content .video-wrapper iframe {
  width: 100%;
  height: 460px;
}
.blog-detail-wrapper .image-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
.blog-detail-wrapper .image-wrapper img {
  width: 100%;
  height: auto;
}
.blog-detail-wrapper .title-styled {
  font-size: 38.63px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.9;
  text-align: left;
  position: relative;
  color: #222222;
}
.mb-72 {
  margin-bottom: 72px;
}
.blog-detail-wrapper .title-styled::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -60px;
  height: 100%;
  width: 4px;
  background-color: #222;
}
.blog-detail-wrapper .title-medium {
  color: #222;
  font-size: 44.53px;
  font-weight: 400;

  text-align: left;
}
.terms-wrapper .header {
  height: 70vh;
  background-image: url(../assets/images/terms.png);
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}
.terms-wrapper .header::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 0;
}
.terms-wrapper .header .container {
  z-index: 2;
}
.terms-wrapper .header .content .title {
  font-size: 110px;
  color: #292827;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 24px;

  letter-spacing: 1.1039999723434448px;
  text-align: left;
}
.terms-wrapper .header .content .text {
  font-size: 24px;
  font-weight: 300;
  color: #292827;
  letter-spacing: 1.0080000162124634px;
  text-align: left;
}
.terms-wrapper .body-content {
  border-bottom: 1px solid #e6e4e2;
  padding-bottom: 24px;
  margin-bottom: 80px;
}

.terms-wrapper .body-content .title-small {
  font-size: 48px;
  line-height: 1.5;
  font-weight: 400;

  letter-spacing: -0.05em;
  text-align: left;
  margin-bottom: 24px;
}
.mb-24 {
  margin-bottom: 24px;
}
.terms-wrapper .text-large {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: left;
}
.terms-wrapper .body-content ul {
  padding-left: 12px;
}
.terms-wrapper .body-content ul li {
  list-style: none;
  margin-bottom: 16px;
}
.terms-wrapper .body-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
.help-center-wrapper .header {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3e9fa;
}
.help-center-wrapper .header .content {
  padding: 20px;
}
.help-center-wrapper .header .title {
  font-size: 110px;
  line-height: 1.5;
  font-weight: 300;
  color: #292827;
  text-align: center;
  margin-bottom: 24px;
}
.help-center-wrapper .header .text {
  font-size: 25px;
  line-height: 1.4;
  font-weight: 300;
  color: #292827;
  text-align: center;
  margin-bottom: 24px;
}
.help-center-wrapper .header .input-wrapper {
  max-width: 608px;
  width: 100%;
  margin: auto;
  position: relative;
  height: 50px;
}
input:focus {
  outline: none;
  box-shadow: none;
}
.help-center-wrapper .header .input-wrapper input {
  border: none;
  background-color: white;
  padding: 16px;
  padding-left: 35px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0px 0.74px 1.47px 0px #1018280d;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #53686a;
  text-align: left;
}
.help-center-wrapper .header .input-wrapper img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  height: 16px;
  width: 16px;
  object-fit: contain;
}
.help-center-wrapper .header .input-wrapper input::placeholder {
  color: #53686a;
}
.help-content {
  padding: 80px 0px;
}
.help-content .main-title {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 80px;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-align: left;
}
.help-content .help-item {
  margin-bottom: 72px;
  padding-right: 30px;
}
.help-content .help-item .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e3e9fa;
  margin-bottom: 24px;
}
.help-content .help-item .icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.help-content .help-item .title {
  color: #000000;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: left;
}
.help-content .help-item .text {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: left;
}
.queries-container {
  background-color: #e3e9fa;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 18px;
  margin-bottom: 80px;
  gap: 30px;
}
.help-center-wrapper .queries-container .data .title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
}
.help-center-wrapper .queries-container .data .text {
  color: #53686a;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0px;
  text-align: left;
}
.help-center-wrapper .queries-container .button {
  padding: 16px 24px;
  text-align: center;
  background-color: #0b7ab8;
  border: 1px solid #0b7ab8;
  font-family: Poppins;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
}
.seamless-integrations {
  padding: 80px 0px;
  background-color: #f8f8f8;
}
.seamless-integrations .left .title {
  color: #0b7ab8;
  margin-bottom: 40px;
  line-height: 1.5;
  font-size: 48px;
  font-weight: 400;

  letter-spacing: -0.05em;
  text-align: left;
}
.seamless-integrations .left .item-flex {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.seamless-integrations .left .item-flex .icon {
  width: 80px;
  background-image: url(../assets/images/vector.svg);
  background-size: 100% 100%;
  height: 130px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 20px;
  color: #00002e;
}
.seamless-integrations .left .title-small {
  font-size: 24px;
  line-height: 1.4;
  color: #000;
  margin-bottom: 8px;
  font-weight: 500;
}
.seamless-integrations .left .text {
  font-size: 16px;
  color: #3d3d3d;
  margin-bottom: 8px;
  font-weight: 500;
  line-height: 1.6;
}
.seamless-integrations .image-wrapper {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.seamless-integrations .image-wrapper .top {
  width: 100%;
  height: auto;
  border: 6px solid #000;
  border-radius: 8px;
  overflow: hidden;

}
.seamless-integrations .image-wrapper .top img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
}
.seamless-integrations .image-wrapper .bottom {
  
  height: auto;


}
.seamless-integrations .image-wrapper .bottom img {
  width: 100%;
  height: 100%;
  
  object-fit: contain;
}

.health-outcomes {
  padding: 80px 0px;
  background-color: #ecf2f9;
}
.health-outcomes .title {
  color: #000;

  font-size: 48px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.health-outcomes .text {
  color: #000;
  max-width: 815px;
  font-size: 20px;
  font-weight: 400;

  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.health-outcomes .health-item {
  box-shadow: 0px 4px 4px 0px #0000001a;
  border-radius: 20px;
}
.health-outcomes .health-item .image-wrapper {
  height: 212px;
  width: 100%;
}
.health-outcomes .health-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.health-outcomes .health-item .content {
  min-height: 220px;
  padding: 24px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: white;
}
.health-outcomes .health-item .content .title-small {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
  margin-bottom: 8px;
}
.health-outcomes .health-item .content .text-small {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3d3d3d;
  margin-bottom: 16px;
}
.health-outcomes .health-item .content .link {
  color: #1e68d3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.forecasting-wrapper {
  background-color: #f8f8f8;
  padding: 80px 0px;
}
.forecasting-wrapper .title {
  color: #0b7ab8;
  text-align: center;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin-bottom: 80px;
}
.forecasting-wrapper .inner {
  max-width: 1285px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.forecasting-wrapper .inner .item {
  position: relative;
  padding: 0px 60px;
  padding-bottom: 80px;
  border-bottom: 2.7px solid #00000014;
  height: 250px;
}
.forecasting-wrapper .inner .item .data {
  max-width: 540px;
}
.forecasting-wrapper .inner .item.center .data {
  display: none;
}
.forecasting-wrapper .inner .item .circle {
  position: absolute;
  background-color: #f8f8f8;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1.5px solid #2d4df2;
  color: #00002e;
  font-size: 20px;
  font-weight: 700;
}
.forecasting-wrapper .inner .item.orange .circle {
  border: 1.5px solid #cb9d28;
}
.forecasting-wrapper .inner .item.orange .circle::before {
  background-color: #cb9d28;
}
.forecasting-wrapper .inner .item.gray .circle {
  border: 1.5px solid #00be75;
}
.forecasting-wrapper .inner .item.gray .circle::before {
  background-color: #00be75;
}
.forecasting-wrapper .inner .item .circle::before {
  position: absolute;
  content: "";
  bottom: 49px;
  left: 50%;
  transform: translateX(-50%);
  height: 60px;
  width: 2.7px;
  background-color: #2d4df2;
}
.forecasting-wrapper .inner .item.center .circle::before {
  top: 49px;
}
.forecasting-wrapper .title-small {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 9px;
  line-height: 1.4;
  text-align: center;
}
.forecasting-wrapper .text {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: center;
}
.forecasting-wrapper .bottom {
  justify-content: center;
  display: flex;
  padding-top: 120px;
}
.forecasting-wrapper .bottom .data {
  max-width: 540px;
  padding: 0px 40px;
}
.owl-carousel .owl-item {
  position: relative;
}

.fade-in-up .title {
  opacity: 0;
  transform: translateY(-40px) !important;
   transition: opacity .4s ease, transform .4s ease;
}

.fade-in-up.active .title {
  opacity: 1;
  transform: translateY(0px) !important;
}

.fade-out-up .title {
  opacity: 1;
  transform: translateY(0px) !important;
   transition: opacity .4s ease, transform .4s ease;
}

.fade-out-up.inactive .title {
  opacity: 0;
  transform: translateY(-40px) !important;
}

/* Subtitle animation */
.fade-in-up .subtitle {
  opacity: 0;
  transform: translateX(50) !important;
  transition: opacity .4s ease, transform .4s ease;
}

.fade-in-up.active .subtitle {
  opacity: 1;
  transform: translateX(0px) !important;
  transition: opacity .4s ease, transform .4s ease;
}

.fade-out-up .subtitle {
  opacity: 1;
  transform: translateX(0px) !important;
  
  transition: opacity .4s ease, transform .4s ease;
}

.fade-out-up.inactive .subtitle {
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: translateX(50px) !important;
}


/* Button animation */
.fade-in-up .button-blue {
  opacity: 0;
  transform: translateY(40px) !important;
   transition: opacity .4s ease, transform .4s ease;
}
.fade-in-up.active .button-blue {
  opacity: 1;
  transition: opacity .4s ease, transform .4s ease;
  transform: translateX(0px) !important;
}

.fade-out-up .button-blue {
  opacity: 1;
  transform: translateX(0px) !important;
  
   transition: opacity .4s ease, transform .4s ease;
}

.fade-out-up.inactive .button-blue {
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: translateY(40px) !important;
}
/* Title small */
.fade-in-up .title-small {
  opacity: 0;
  transform: translateY(30px) !important;
   transition: opacity .15s ease, transform .15s ease;
}

.fade-in-up.active .title-small {
  opacity: 1;
  transition: opacity .15s ease, transform .15s ease;
  transform: translateY(0px) !important;
}

.fade-out-up .title-small {
  opacity: 1;
  transform: translateY(0px) !important;
  
  transition: opacity .15s ease, transform .15s ease;
}

.fade-out-up.inactive .title-small {
  opacity: 0;
  transition: opacity .15s ease, transform .15s ease;
  transform: translateY(30px) !important;
}


.dropdown-menu {
  min-width: 180px;
  border-radius: 4px;
  border: none !important;
  box-shadow: 0px 8px 12px 0px #091e4226;
}
.dropdown-item {
  padding: 10px 16px !important;
  font-size: 14px;
  color: #000000 !important;
}
.dropdown-item:focus {
  background-color: var(--bg-blue) !important;
  color: white !important;
}
.blue-color {
  color:  #00002E !important;
}
.main-blue{
  color:#2563EA !important;
}
.dispute-content-wrapper .title-small {
  font-size: 48px;
  color: #000;
  margin-bottom: 80px;

  line-height: 1.5;
letter-spacing: -0.05em;
text-align: left;

}
.dispute-content-wrapper .grey-section {
  background-color: #F9FAFC;
  padding: 48px 0px;
}
.dispute-content-wrapper .grey-section .inner {
  background-color: white;
  padding: 38px 32px;
  border-radius: 8px;
}
.dispute-content-wrapper .grey-section  .title {
 color: #000;
font-size: 28px;
font-weight: 600;
line-height: 1.4;
text-align: left;
margin-bottom: 16px;

}
.dispute-content-wrapper .grey-section  .text {
  color: #3D3D3D;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.6;
 text-align: left;
 margin-bottom: 24px;
 
 }
 .dispute-content-wrapper .grey-section  .title-small {
  color: #000;
 font-size: 20px;
 font-weight: 600;
 line-height: 1.4;
 text-align: left;
 margin-bottom: 10px;
 
 }
 .dispute-content-wrapper   .title-medium {
  color: #000;
 font-size: 28px;
 font-weight: 600;
 line-height: 1.4;
 text-align: left;

 
 }
 .dispute-content-wrapper .grey-section  ul {
  padding-left: 24px;
 }
 .dispute-content-wrapper .grey-section  ul li {
  color: #3D3D3D;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.6;
 text-align: left;
 margin-bottom: 8px;
 
 }
 .dispute-content-wrapper  .process-item {
  text-align: center;
 }
 .dispute-content-wrapper .review-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
 }
 .dispute-content-wrapper .review-section .left .title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 2px;
 }
 .dispute-content-wrapper .review-section .left .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #3D3D3D;
  margin-bottom: 2px;
 }
 .dispute-content-wrapper .review-section .right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
 }
 .dispute-content-wrapper .review-section .right .count {

font-size: 16.64px;
font-weight: 700;
line-height: 1.5;
color: #000;


 }
 .dispute-content-wrapper .review-section .right .rating {
  display: flex;
  align-items: center;
  gap: 4px;
 }
 .dispute-content-wrapper  .process-item .icon {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2661F2;
  font-weight: 600;
  font-size: 14px;
  color: white;
  margin: auto;
  margin-bottom: 9px;
 }
 .dispute-content-wrapper  .process-item .icon-white {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;

  color: white;
  margin: auto;
  margin-bottom: 9px;
 }
 .dispute-content-wrapper  .process-item .icon-grey {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E3E9FA;

  color: white;
  margin: auto;
  margin-bottom: 9px;
 }
 .dispute-content-wrapper  .process-item .label {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 9px;
 }
 .dispute-content-wrapper  .process-item .label.text-left {
  text-align: left;
 }
 .dispute-content-wrapper  .process-item .text {
  color: #3D3D3D;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 9px;
 }
 .dispute-content-wrapper  .process-item .text.text-left {
  text-align: left;
 }
 .dispute-content-wrapper .grey-dark {
background-color: #EFF6FF;
padding: 48px 0px;
 }
 .dispute-content-wrapper .get-box {
  background-color: white;
  padding: 66px;
  text-align: center;
  border-radius: 8px;
  padding: 24px;

 }
 .dispute-content-wrapper .get-box .icon {
  margin: auto;
  margin-bottom: 16px;
 }
 .dispute-content-wrapper .get-box .title {
  font-size: 24px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 16px;
  font-weight: 400;
 }
 .dispute-content-wrapper .get-box .text {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 2px;
  font-weight: 300;
 }
 .dispute-content-wrapper .white-box {
  background-color: white;
  box-shadow: 3px 3px 4px 0px #2C2CB31F;
  border-radius: 8px;
  padding: 24px;

 }
 .dispute-content-wrapper .white-section {
  background-color: white;
  padding: 48px 0px;
 }
 .dispute-content-wrapper .table-responsive th {
  background-color: #0060b4;
  padding: 4px 24px;
  font-weight: 500;
  font-size: 16px;
  color: white;
  border: none;
 }
 .dispute-content-wrapper .table-responsive th:first-child {
  border-top-left-radius: 10px;
 }
 .dispute-content-wrapper .table-responsive th:last-child {
  border-top-right-radius: 10px;
 }
 .dispute-content-wrapper .table-responsive td{
  border: 1px solid #BDBDBD;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: 16px 24px;
 }
 .dispute-content-wrapper .table-responsive tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
 }
 .dispute-content-wrapper .table-responsive tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
 }
@media (max-width: 1560px) {
  .dispute-content-wrapper .title-small {
    font-size: 40px;
    margin-bottom: 70px;
   
  
  }
  .exceptional-wrapper .container-fluid {
    padding-right: 0.75rem !important;
  }
  .health-outcomes .health-item .content .text-small {
    font-size: 14px;
  }
  .header-main {
    padding-top: 30px;
  }
  .exceptional-wrapper .exceptional-item .subtitlee {
    font-size: 14px;
  }
  .button-blue,
  .button-light {
    padding: 12px 20px;
  }
  .seamless-integrations .left .title-small {
    font-size: 22px;
  }
  .seamless-integrations .left .text {
    font-size: 15px;
  }
  .contact-form-wrapper .map-wrapper iframe {
    min-height: 600px;
  }
  .contact-wrapper.blog-wrapper .title.mb-48 {
    font-size: 80px;
    line-height: 1.5;
  }
  .contact-form-wrapper .subtitle {
    font-size: 18px;
  }
  .contact-form-wrapper .form-wrapper .button {
    font-size: 16px;
  }
  .faq-section .title {
    font-size: 50px;
  }
  .progress-slider-wrapper .title {
    font-size: 50px;
  }
  .solutuons-wrapper .inner .title {
    font-size: 50px;
  }
  .headinglight {
    font-size: 40px;
  }
  .exceptional-wrapper {
    background-color: white;
    padding-left: 100px;
  }
  .blog-detail-wrapper .title-medium {
    font-size: 36px;
  }
  .blog-detail-wrapper .image-wrapper {
    margin-bottom: 60px;
  }
  .blog-detail-wrapper .title-styled {
    font-size: 30px;
  }
  .generation-wrapper .content .label {
    font-size: 24px;
  }
  .health-outcomes .health-item .content .title-small {
    font-size: 22px;
  }
  .generation-wrapper .content .text {
    font-size: 16px;
  }
  .header-main .title {
    font-size: 48px;
  }
  .header-main .title.title-large {
    font-size: 72px;
  }
  .seamless-integrations .left .title {
    font-size: 40px;
  }
  .terms-wrapper .header {
    margin-bottom: 60px;
  }
  .help-center-wrapper .header .input-wrapper {
    max-width: 550px;
  }
  .help-center-wrapper .queries-container .data .title {
    font-size: 20px;
  }
  .help-center-wrapper .queries-container .data .text {
    font-size: 16px;
  }
  .help-content .help-item .title {
    font-size: 20px;
  }
  .help-content .help-item .text {
    font-size: 16px;
  }
  .help-content .main-title,
  .forecasting-wrapper .title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .health-outcomes .title,
  .generation-wrapper .title {
    font-size: 40px;
  }
  .terms-wrapper .body-content {
    border-bottom: 1px solid #e6e4e2;
    padding-bottom: 24px;
    margin-bottom: 50px;
  }
  .terms-wrapper .body-content .title-small {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .terms-wrapper .text-large {
    font-size: 30px;
  }
  .terms-wrapper .body-text {
    font-size: 16px;
  }
  .terms-wrapper .header .content .title,
  .help-center-wrapper .header .title {
    font-size: 70px;
  }
  .terms-wrapper .header .content .text,
  .help-center-wrapper .header .text {
    font-size: 20px;
  }
  .blog-detail-wrapper .main-image {
    height: 500px;
    margin-bottom: 100px;
  }
  .blog-detail-wrapper .content .subtitle {
    font-size: 30px;
    margin-bottom: 48px;
  }
  .blog-detail-wrapper .content .title-small {
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    text-align: left;
    margin-bottom: 32px;
  }
  .blog-detail-wrapper .content .text {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .blog-detail-wrapper .header .title {
    font-size: 90px;
  }
  .main-nav-wrapper .navbar-nav .nav-link {
    font-size: 13px;
  }
  .main-nav-wrapper .navbar-brand img {
    width: 130px;
  }
  .blog-items .blog-item .bread_crumbs {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .blog-items .blog-item .desc {
    font-size: 18px;
  }
  .contact-wrapper .title.mb-48 {
    font-size: 64px;
    margin-bottom: 32px !important;
  }
  .contact-wrapper .subtitle {
    font-size: 18px;
  }
  .filters-wrapper {
    margin: 32px auto;
  }

  .filters-wrapper .left ul {
    gap: 32px;
  }

  .filters-wrapper .left ul li {
    padding: 0px;
    margin: 0px;
  }

  .filters-wrapper .left ul li a {
    gap: 56px;

    font-size: 16px;
  }

  .filters-wrapper .results a {
    font-size: 16px;
  }

  .filters-wrapper .left ul li a img {
    height: 16px;
  }
}

@media (max-width: 768px) {
  .dispute-content-wrapper .title-small {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .dispute-content-wrapper .grey-section .title {
    font-size: 20px;
  }
  .dispute-content-wrapper .title-medium {
    font-size: 20px;
  }
  .dispute-content-wrapper .process-item .label {
    font-size: 18px;
  }
  .dispute-content-wrapper .process-item .icon-grey,.dispute-content-wrapper .process-item .icon-white {
    width: 45px;
    height: 45px;
    padding: 10px;
  }
  .dispute-content-wrapper .table-responsive th {
    padding: 4px 12px;
    white-space: nowrap;
    
  }
  .dispute-wrapper {
    background-size: 100%;
  }
.dispute-content-wrapper .table-responsive td{
    padding: 4px 12px;
    
  }
  .forecasting-wrapper .inner {
    flex-wrap: wrap;
  }
  .seamless-integrations .image-wrapper .bottom {
    height: 150px;
  }
  .exceptional-wrapper {
    padding-left: 0px;
  }
  .exceptional-wrapper .container-fluid {
    padding: 0px 24px !important;
  }
  .exceptional-wrapper .owl-theme .owl-nav {
    right: 0px;
  }
  .help-content .main-title,
  .forecasting-wrapper .title {
    font-size: 24px;
  }
  .header-main .title {
    font-size: 28px;
  }
  .integration-wrapper .logo-wrapper {
    height: 100px;
  }
  .header-main .subtitle {
    font-size: 16px;
  }
  .powered-wrapper .icon-wrapper {
    height: 110px;
    padding: 24px;
  }
  .buttons-flex {
    margin-bottom: 24px;
  }
  .forecasting-wrapper,
  .help-content {
    padding: 50px 0px;
  }
  .help-content .main-title,
  .forecasting-wrapper .title {
    margin-bottom: 24px;
  }
  .help-content .help-item .text {
    font-size: 15px;
  }
  .help-content .help-item {
    margin-bottom: 50px;
    padding-right: 10px;
  }
  .help-content .col-12:last-child .help-item {
    margin-bottom: 0px;
  }
  .help-content .help-item .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
  .forecasting-wrapper .inner .item {
    padding: 40px 10px;
    padding-top: 80px;
    height: auto;
  }
  .forecasting-wrapper .inner .item:last-child {
    border-bottom: none;
    padding-bottom: 10px;
  }
  .forecasting-wrapper .inner .item .circle {
    top: 20px;
    height: 45px;
    width: 45px;
  }
  .forecasting-wrapper .text,
  .exceptional-wrapper .subtitle,
  .health-outcomes .text,
  .generation-wrapper .subtitle,
  .generation-wrapper .content .text {
    font-size: 15px;
    line-height: 1.6;
  }
  .generation-wrapper {
    padding: 50px 0px;
  }
  .generation-wrapper .col-12:last-child .content {
    margin-bottom: 0px;
  }
  .generation-wrapper .subtitle.mb-80 {
    margin-bottom: 40px !important;
  }
  .generation-wrapper .content img {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
  }
  .generation-wrapper .content .label {
    font-size: 20px;
  }
  .generation-wrapper .content {
    margin-bottom: 40px;
  }
  .forecasting-wrapper .title-small,
  .health-outcomes .health-item .content .title-small {
    font-size: 20px;
  }
  .forecasting-wrapper .inner .item .circle::before {
    content: none;
  }
  .forecasting-wrapper .bottom {
    display: none;
  }
  .forecasting-wrapper .inner .item.center .data {
    display: block;
  }
  .exceptional-wrapper .title,
  .health-outcomes .title,
  .generation-wrapper .title {
    font-size: 24px;
  }
  .exceptional-wrapper .exceptional-item {
    min-height: 330px;
  }
  .exceptional-wrapper .owl-theme .owl-nav,
  .exceptional-wrapper .owl-theme .owl-dots {
    bottom: -60px;
  }
  .exceptional-wrapper .exceptional-item img {
    height: 50px;
    width: 50px;
  }
  .exceptional-wrapper .exceptional-item .titlee {
    font-size: 20px;
  }
  .exceptional-wrapper .inner {
    padding: 50px 0px;
    padding-bottom: 80px;
  }
  .health-outcomes,
  .seamless-integrations {
    padding: 50px 0px;
  }
  .seamless-integrations .left .title {
    font-size: 24px;
  }
  .seamless-integrations .left .item-flex .icon {
    width: 60px;
  }
  .seamless-integrations .left .title-small {
    font-size: 20px;
  }
  .seamless-integrations .left .item-flex {
    margin-bottom: 40px;
  }
  footer {
    padding: 50px 0px;
  }
  footer .title {
    font-size: 18px;
  }
  .container {
    padding: 0px 24px;
  }
  .blog-wrapper {
    padding: 100px 0px;
  }
  .contact-wrapper .title.mb-48 {
    font-size: 40px;
  }
  .filters-wrapper {
    overflow-x: auto;
    padding-bottom: 12px;
  }
  .filters-wrapper .left ul li a {
    font-size: 14px;
    gap: 16px;
  }
  .filters-wrapper .results a {
    margin-left: 16px;
  }
  .filters-wrapper .left ul li a img {
    height: 14px;
  }
  .blog-items .blog-item .image-wrapper {
    margin-bottom: 16px;
    height: 280px;
  }
  .blog-items .blog-item .desc {
    font-size: 16px;
  }
  .blog-item.mb-100 {
    margin-bottom: 50px !important;
  }
  .filters-wrapper .left ul li {
    flex-shrink: 0;
  }
  .filters-wrapper .left ul {
    gap: 16px;
  }
  .filters-wrapper .results,
  .filters-wrapper .left {
    flex-shrink: 0;
  }
  .blog-detail-wrapper .header {
    padding: 100px 0px;
  }
  .blog-detail-wrapper .main-image {
    height: auto;
    margin-bottom: 50px;
  }
  .blog-detail-wrapper .content .subtitle {
    font-size: 20px;
    line-height: 1.5;
  }
  .blog-detail-wrapper .content .title-small {
    font-size: 18px;
    line-height: 1.5;
  }
  .blog-detail-wrapper .title-styled {
    font-size: 24px;
  }
  .blog-detail-wrapper .title-medium {
    font-size: 24px;
  }
  .blog-detail-wrapper .image-wrapper {
    margin-bottom: 30px;
  }
  .blog-detail-wrapper .title-styled::before {
    content: none;
  }
  .mb-72 {
    margin-bottom: 36px !important;
  }
  .blog-detail-wrapper .content .text {
    font-size: 15px;
  }
  .blog-detail-wrapper .header .title {
    font-size: 40px;
  }
  .main-nav-wrapper .navbar-nav .nav-link {
    font-size: 15px;
    border-bottom: 1px solid #ddd;
    padding-left: 0px;
    margin-bottom: 5px;
  }
  .contact-wrapper {
    position: relative;
  }
  .contact-wrapper::before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    z-index: 0;
  }
  .contact-wrapper .container {
    z-index: 5;
    position: relative;
  }
  .contact-wrapper .title.mb-48 {
    font-size: 28px;
    line-height: 1.4;
  }
  .contact-wrapper {
    padding: 80px 0px;
  }
  .contact-form-wrapper {
    padding: 50px 0px;
  }
  .contact-form-wrapper .title {
    font-size: 30px;
    margin-bottom: 16px !important;
  }
  .contact-form-wrapper .form-wrapper .button {
    margin-bottom: 24px;
  }
  .contact-form-wrapper .subtitle {
    font-size: 16px;
  }
  .contact-form-wrapper .map-wrapper,
  .contact-form-wrapper .map-wrapper iframe {
    min-height: 200px;
    width: 100%;
  }
  .terms-wrapper .header .content .title,
  .help-center-wrapper .header .title {
    font-size: 30px;
  }
  .help-center-wrapper .header {
    height: auto;
    padding: 80px 0px;
  }
  .terms-wrapper .header .content .text,
  .help-center-wrapper .header .text {
    font-size: 18px;
  }
  .help-center-wrapper .header .content {
    padding: 0px;
  }
  .queries-container {
    flex-wrap: wrap;
    margin-bottom: 0px;
    margin-top: 30px;
  }
  .help-center-wrapper .queries-container .button {
    width: 100%;
  }
  .contact-info-wrapper .info {
    min-height: 200px;
    margin-bottom: 24px;
  }
  .terms-wrapper .header {
    height: auto;
    padding: 80px 0px;
  }
  .terms-wrapper .text-large {
    font-size: 20px;
  }
  .terms-wrapper .body-text,
  .terms-wrapper .body-content ul li {
    font-size: 15px;
  }
  .terms-wrapper .body-content .title-small {
    font-size: 24px;
  }
  .terms-wrapper .body-content {
    margin-bottom: 40px;
  }
  .header-main .title.title-large {
    font-size: 34px;
  }
  .header-main .header-right {
    margin-top: 24px;
  }
  .healthcare-wrapper,
  .image-slider-wrapper,
  .future-vision-container,
  .integration-wrapper,
  .progress-slider-wrapper,
  .performance-wrapper {
    padding: 50px 0px;
  }
  .image-slider-wrapper {
    padding-bottom: 80px;
  }
  .headinglight.mb-80 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 32px !important;
  }
  .image-slider-wrapper .images-carousel-wrapper .image-wrapper {
    margin-bottom: 24px;
  }
  .image-slider-wrapper .images-carousel-wrapper .subtitle,
  .future-vision-container .text,
  .progress-slider-wrapper .subtitle {
    font-size: 15px;
    line-height: 1.5;
  }
  .healthcare-wrapper .logo-wrapper {
    height: 100px;
  }
  .image-slider-wrapper .images-carousel-wrapper .title,
  .progress-slider-wrapper .title {
    font-size: 24px;
    line-height: 1.5;
  }
  .future-vision-container .image-wrapper img {
    width: 200px;
  }
  .future-vision-container .title {
    font-size: 21px;
  }
  .progress-slider-wrapper .inner {
    padding: 20px 20px;
  }
  .progress-slider-wrapper .title-smalll {
    font-size: 20px;
  }
  .progress-slider-wrapper .count {
    font-size: 24px;
    line-height: 1;
  }
  .progress-slider-wrapper .subtitle {
    border-bottom: 1px solid #00be75;
    padding-bottom: 16px;
  }
  .progress-slider-wrapper .progress-bar-wrapper {
    height: 8px;
  }
  .progress-slider-wrapper .subtitle-small {
    font-size: 15px;
  }
  .performance-wrapper .title {
    font-size: 24px;
  }
  .performance-wrapper .subtitle {
    font-size: 15px;
    line-height: 1.5;
  }
  .performance-wrapper .count-wrapper .digit {
    font-size: 45px;
    text-align: center;
  }
  .performance-wrapper .count-wrapper .sign {
    font-size: 40px;
  }
  .performance-wrapper .count-wrapper .text {
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
  }
  .count-wrapper.mb-100 {
    margin-bottom: 40px !important;
  }
  .performance-wrapper .image-wrapper img {
    height: auto;
  }
  .powered-wrapper,
  .solutuons-wrapper {
    padding: 50px 0px;
  }
  .exceptional-wrapper .inner .abs,
  .hippa-wrapper .inner .abs-image {
    display: none;
  }
  .hippa-wrapper .right {
    padding-left: 0px;
  }
  .powered-wrapper .image-wrapper img {
    width: 95%;
  }
  .hippa-wrapper .title,
  .powered-wrapper .title {
    font-size: 20px;
    line-height: 1.4;
  }
  .hippa-wrapper .text {
    font-size: 15px;
  }
  .powered-wrapper .icon-wrapper img {
    width: 90%;
  }
  .solutuons-wrapper .inner {
    padding: 20px;
    border-radius: 10px;
  }
  .solutuons-wrapper .inner .title.mb-32 {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px !important;
  }
  .solutuons-wrapper .inner .title {
    font-size: 20px;
  }
  .solution-carousel-wrapper .subtitle {
    font-size: 15px;
  }
  .solutuons-wrapper .owl-theme .owl-dots {
    right: -105px;
  }
  .faq-section .title.mb-80 {
    font-size: 20px;
    margin-bottom: 16px !important;
    line-height: 1.4;
  }
  .main-accordian .accordion-button {
    padding: 10px 0px;
    font-size: 15px;
  }
  .faq-section,
  .next-wrapper {
    padding: 50px 0px;
  }
  .next-wrapper .inner {
    padding: 20px;
    border-radius: 10px;
  }
  .next-wrapper .content .title {
    font-size: 20px;
    line-height: 1.5;
  }
  .navbar-toggler {
    font-size: 1rem;
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
}
@media (max-width: 468px) {
  
  .seamless-integrations .image-wrapper .bottom {
    height: 100px;
  }
}