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

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
  line-height: 1.4 !important;
}

img {
  max-width: 100%;
}

.wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 35px 35px;
}
@media screen and (max-width: 991px) {
  .wrapper {
    padding: 80px 25px;
  }
}

.main-content {
  padding-top: 120px;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.heading-top {
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 26px;
}

h1 {
  font-size: 55px;
  font-weight: 600;
  line-height: 75px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 1.5;
  }
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 35px;
    line-height: 1.4;
  }
}
h2 span {
  color: #7702ff;
}

.global--form {
  background-color: #fff;
  padding: 50px 40px 20px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.global--form h2 {
  font-weight: 500;
  font-size: 30px;
}
.global--form .form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}
.global--form .form-group .form-control {
  height: 50px;
  background: #ffffff;
  border: 0.5px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding-left: 30px;
  padding-right: 30px;
}
.global--form .form-group textarea.form-control {
  height: 150px;
  padding-top: 10px;
}
.global--form .form-group .btn--primary {
  width: 100%;
  display: block;
  margin-top: 35px;
}

.btn {
  min-width: 150px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 15px;
  border: 1px solid #014cc4;
  border-radius: 5px;
}
.btn--primary {
  background-color: #014cc4;
  color: #fff;
}
.btn--primary:hover {
  background-color: initial;
  color: #014cc4;
}
.btn--secondary {
  color: #014cc4;
}
.btn--secondary:hover {
  background-color: #014cc4;
  color: #fff;
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
}
header .wrapper {
  max-width: 1280px;
}
header .main-navigation ul {
  padding: 0;
  margin: 0;
}
header .main-navigation ul li {
  display: inline-block;
  padding: 0 16px;
}
@media (max-width: 1440px) {
  header .main-navigation ul li {
    padding: 0 12px;
  }
}
header .main-navigation ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
@media (max-width: 1280px) {
  header .main-navigation ul li a {
    font-size: 14px;
  }
}
header .main-navigation ul li a:hover {
  color: #014cc4;
}
header .right {
  text-align: right;
}
header .right .btn {
  display: inline-block;
  margin-left: 8px;
}
@media (max-width: 1280px) {
  header .right .btn {
    font-size: 14px;
  }
}

@media (max-width: 1080px) {
  .header--desktop {
    display: none;
  }
}

.header--mobile {
  display: none;
  background-color: #ffffff;
  box-shadow: 1px 0 5px 1px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}
.header--mobile .logo {
  max-width: 150px;
}
.header--mobile .mobile-menu {
  z-index: 99;
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  background-color: #ffffff;
  padding: 70px 30px;
  -webkit-transform: translate(240px, 0);
  transform: translate(240px, 0);
  transition: -webkit-transform 0.5s cubic-bezier(0, 0.52, 0, 1);
  transition: transform 0.5s cubic-bezier(0, 0.52, 0, 1);
  transition: transform 0.5s cubic-bezier(0, 0.52, 0, 1), -webkit-transform 0.5s cubic-bezier(0, 0.52, 0, 1);
  overflow: auto;
}
.header--mobile .mobile-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header--mobile .mobile-menu ul li {
  display: block;
  padding-bottom: 11px;
  margin-bottom: 13px;
  border-bottom: 1px solid #f1f1f1;
}
.header--mobile .mobile-menu ul li a {
  z-index: 12;
  position: relative;
  font-size: 14px;
  color: #000;
  transition: all 300ms ease;
}
.header--mobile .mobile-menu ul li a:hover {
  color: #014cc4;
}
.header--mobile .mobile-menu ul li a.btn {
  width: 100%;
}
.header--mobile .mobile-menu ul li a.btn--primary {
  color: #fff;
}
.header--mobile .mobile-menu ul li a.btn--primary:hover {
  color: #014cc4;
}
.header--mobile .mobile-menu ul li a.btn--secondary:hover {
  color: #fff;
}
.header--mobile .mobile-menu ul li.has-dropdown a.has-collapse {
  position: relative;
  display: block;
}
.header--mobile .mobile-menu ul li.has-dropdown a.has-collapse:before {
  content: "\f078";
  position: absolute;
  top: 2px;
  right: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  font-size: 14px;
}
.header--mobile .mobile-menu ul li.has-dropdown a.has-collapse:after {
  display: none;
  content: initial;
}
.header--mobile .mobile-menu ul li.has-dropdown ul li {
  padding: 0;
  border: 0;
}

.hamburger {
  z-index: 1234;
  position: relative;
  top: 0;
  display: inline-block;
  width: 28px;
  height: 21px;
  margin: -5px 0;
  cursor: pointer;
}
.hamburger div {
  z-index: 12;
  position: relative;
  margin-top: 9px;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #014cc4;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.hamburger div:before {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #014cc4;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
}
.hamburger div:after {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #014cc4;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
}

.nav-open .mobile-menu {
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
  box-shadow: 8px 79px 60px 0px rgba(22, 22, 22, 0.17);
}
.nav-open .hamburger div {
  background-color: transparent;
}
.nav-open .hamburger div:after {
  top: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-open .hamburger div:before {
  top: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.nav-open .main-header.fixed .hamburger div {
  background-color: transparent;
}

@media (max-width: 1080px) {
  .header--mobile {
    display: block;
  }
}
@media (max-width: 1440px) {
  .header--mobile .mobile-navigation--top-nav {
    padding: 4px 0;
  }
  .header--mobile .mobile-navigation--top-nav ul li a {
    font-size: 18px;
    padding: 8px 20px;
  }
}
@media (max-width: 576px) {
  .header--mobile .mobile-navigation--top-nav {
    padding: 0;
  }
}
@media (max-width: 680px) {
  .header--mobile .mobile-navigation--top-nav ul {
    align-items: center;
  }
  .header--mobile .mobile-navigation--top-nav ul li a {
    display: block;
    padding: 8px 10px;
  }
}
@media (max-width: 540px) {
  .header--mobile .mobile-navigation--top-nav ul {
    flex-wrap: wrap;
  }
  .header--mobile .mobile-navigation--top-nav ul li {
    flex: 0 0 33.33%;
    width: 33%;
  }
  .header--mobile .mobile-navigation--top-nav ul li a {
    font-size: 16px;
    text-align: center;
    padding: 4px 10px;
    max-width: 130px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .header--mobile .mobile-navigation--top-nav ul li a {
    font-size: 16px;
    padding: 8px 15px;
  }
}
footer {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #000000 30.21%, #252A3C 85.94%);
  border-radius: 40px 40px 0px 0px;
}
@media (max-width: 991px) {
  footer {
    padding: 30px 0;
    border-radius: 20px 20px 0px 0px;
  }
}
@media (max-width: 991px) {
  footer .col-2,
  footer .col-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  footer .center a {
    display: inline-block;
    margin-bottom: 10px;
  }
}
footer h2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  footer h2 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
footer h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  footer h3 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 24px;
  }
}
footer h3 span {
  display: block;
  color: #014cc4;
}
footer .space {
  height: 40px;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 18px;
}
footer ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
footer ul li a:hover {
  color: #014cc4;
}
footer .disclaimer {
  padding-top: 180px;
}
@media (max-width: 991px) {
  footer .disclaimer {
    padding-top: 40px;
  }
}
footer .disclaimer p {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
}

.section-header {
  text-align: center;
}
.section-header__subtitle {
  color: #909090;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin: 0;
}
.section-header__subtitle .text {
  margin: 0;
}
@media screen and (max-width: 991px) {
  .section-header__subtitle {
    flex-direction: column;
  }
}
.section-header__title {
  margin-top: 10px;
  margin-bottom: 0;
  margin-bottom: 35px;
}

.cta {
  background: url("/zima-assets-redesign-v4-landing-pages/images/comparison-page-images/Final CTA.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
@media screen and (max-width: 991px) {
  .cta {
    height: 600px;
  }
}
.cta__content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  align-items: start;
  height: 100%;
}
.cta__content__heading {
  text-align: start;
}
.cta__content__heading h2 {
  margin-bottom: 10px;
}
.cta__content__heading p {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .cta__content__heading {
    text-align: center;
  }
}
.cta__content__action-button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  justify-content: start;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .cta__content__action-button {
    flex-direction: column;
    justify-content: center;
  }
}

.accordion .card {
  margin-bottom: 1rem;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 16px !important;
}
.accordion .card .card-header {
  padding: 0;
  background-color: #fff;
}
.accordion .card .card-header .btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: none;
  box-shadow: none;
  padding: 20px;
}
.accordion .card .card-header .btn .icon::before {
  font-family: "bootstrap-icons";
  content: "\f4fe";
  font-size: 20px;
  color: #000;
}
.accordion .card .card-header .btn:not(.collapsed) {
  background-color: #014cc4;
  color: #fff;
}
.accordion .card .card-header .btn:not(.collapsed) .icon::before {
  content: "\f62a";
  color: #fff;
}
.accordion .card .collapse.show {
  background-color: #014cc4;
}
.accordion .card .collapse.show .card-body {
  background-color: #014cc4;
  color: #fff;
}

.navigation .nav-pills {
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 50px;
}
.navigation .nav-pills .nav-item .nav-link {
  color: #000;
}
.navigation .nav-pills .nav-item .nav-link.active {
  border-radius: 50px;
  background-color: #014cc4;
  color: #fff;
}
.navigation .dropdown .dropdown-toggle {
  background-color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  color: black;
  padding: 0;
  padding: 20px 50px;
}

.page--custom-comparison .hero {
  position: relative;
}
.page--custom-comparison .hero__bg-image {
  height: 600px;
  width: 100%;
  position: relative;
}
.page--custom-comparison .hero__bg-image__overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.page--custom-comparison .hero__bg-image img {
  object-fit: cover;
  object-position: 0% 30%;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .hero__bg-image img {
    object-position: center;
  }
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .hero .wrapper {
    padding: 230px 25px 80px;
  }
}
.page--custom-comparison .hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
}
.page--custom-comparison .hero__content .title {
  margin-bottom: 10px;
}
.page--custom-comparison .hero__content .subtitle {
  margin-bottom: 35px;
}
.page--custom-comparison .hero__content__card {
  background-color: #fff;
  width: 700px;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .hero__content__card {
    width: 350px;
  }
}
.page--custom-comparison .hero__content__card .card-list {
  margin: 0;
  margin-left: 60px;
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .hero__content__card .card-list {
    margin-left: 12%;
  }
}
.page--custom-comparison .hero__content__card .card-list .card-item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  padding: 0;
}
.page--custom-comparison .hero__content__card .card-list .card-item .bi {
  color: #14ae5c;
  font-size: 20px;
}
.page--custom-comparison .hero__content__card .card-list .card-item .text {
  color: #000;
  margin: 0;
  font-weight: 600;
}
.page--custom-comparison .hero__content__card .button-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .hero__content__card .button-container {
    flex-direction: column;
    align-items: center;
  }
}
.page--custom-comparison .trust__content .section-header .stars {
  display: flex;
  gap: 5px;
}
.page--custom-comparison .trust__content .section-header .stars .bi-star-fill {
  color: #ffcd29;
  font-size: 16px;
}
.page--custom-comparison .trust__content__card-list {
  row-gap: 1rem;
}
.page--custom-comparison .trust__content__card-list .card-item .card {
  padding: 30px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: none;
  border-radius: 16px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.page--custom-comparison .trust__content__card-list .card-item .card .img-top img {
  width: 50px;
}
.page--custom-comparison .trust__content__card-list .card-item .card .bi {
  color: #014cc4;
  font-size: 50px;
}
.page--custom-comparison .quick-comparison__content__card-list {
  row-gap: 1rem;
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .easy-consult-card,
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card {
  background-color: #4d80d3;
  border-radius: 16px;
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .easy-consult-card .card-body,
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body {
  color: #fff;
  text-align: center;
  padding: 50px;
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .quick-comparison__content__card-list .card-item .easy-consult-card .card-body,
  .page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body {
    padding: 23px;
  }
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .easy-consult-card .card-body .list .item,
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body .list .item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .easy-consult-card .card-body .list .item .bi,
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body .list .item .bi {
  color: #11ff80;
  font-size: 32px;
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .easy-consult-card .card-body .list .item .card-text,
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body .list .item .card-text {
  margin: 0;
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card {
  background-color: rgba(0, 0, 0, 0.1);
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body {
  color: #424242;
}
.page--custom-comparison .quick-comparison__content__card-list .card-item .teledoc-card .card-body .list .item {
  padding: 12px 0;
}
.page--custom-comparison .full-comparison__content .table-container {
  overflow-x: auto;
}
@media screen and (max-width: 480px) {
  .page--custom-comparison .full-comparison__content .table-container .table {
    display: block;
    min-width: 100%;
  }
}
.page--custom-comparison .full-comparison__content .table-container .bg-easyconsult {
  background-color: #4d80d3;
  color: #fff;
}
.page--custom-comparison .full-comparison__content .table-container .bg-easyconsult-soft {
  background-color: rgba(77, 128, 211, 0.2);
}
.page--custom-comparison .choose__content__card-row {
  row-gap: 1rem;
}
.page--custom-comparison .choose__content__card-row .card-item .card {
  padding: 25px;
  border: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  height: 100%;
}
.page--custom-comparison .choose__content__card-row .card-item .card .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.page--custom-comparison .testimonial {
  overflow: hidden;
  position: relative;
  background-color: #F4F3F3;
}
.page--custom-comparison .testimonial .shape-1 {
  position: absolute;
  right: 25%;
  top: 10%;
  transform: translate(-5%, -5%);
}
.page--custom-comparison .testimonial .shape-2 {
  height: 500px;
  width: auto;
  position: absolute;
  right: -12%;
  top: 12%;
  transform: translate(-5%, -5%);
}
@media screen and (max-width: 991px) {
  .page--custom-comparison .testimonial .shape-1,
  .page--custom-comparison .testimonial .shape-2 {
    display: none;
  }
}
.page--custom-comparison .testimonial__content .section-header {
  display: flex;
  flex-direction: column;
  text-align: start;
}
.page--custom-comparison .testimonial__content .section-header__subtitle {
  justify-content: start;
}
.page--custom-comparison .testimonial__content--slider {
  position: relative;
  overflow: hidden;
}
.page--custom-comparison .testimonial__content--slider .card-row {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 112px 35px 30px;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container {
  flex: 0 0 auto;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card {
  padding: 20px;
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: start;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body {
  padding: 0;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body .stars {
  color: #ffcd29;
  margin-bottom: 1rem;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body .stars i {
  font-size: 1.2rem;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body--comment {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: display 0.5s ease-in-out;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body--comment:hover {
  display: block;
  cursor: default;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body__profile img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body__profile .profile-info .name {
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.page--custom-comparison .testimonial__content--slider .card-row .card-container .card .card-body__profile .profile-info .position {
  margin-bottom: 0;
  color: #909090;
  font-size: 0.9rem;
}
.page--custom-comparison .testimonial__content--slider .action-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.page--custom-comparison .testimonial__content--slider .action-controls .slider-indicators {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.page--custom-comparison .testimonial__content--slider .action-controls .slider-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.2s;
}
.page--custom-comparison .testimonial__content--slider .action-controls .slider-indicators .indicator.active {
  background-color: #007bff;
}
.page--custom-comparison .testimonial__content--slider .action-controls .slider-buttons {
  display: flex;
  gap: 1rem;
}
.page--custom-comparison .testimonial__content--slider .action-controls .slider-buttons .btn {
  min-width: 0;
  line-height: 1.5;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}

.page--custom-faq .hero {
  position: relative;
}
.page--custom-faq .hero__bg-image {
  height: 400px;
  width: 100%;
  position: relative;
}
.page--custom-faq .hero__bg-image__overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.page--custom-faq .hero__bg-image img {
  object-fit: cover;
  object-position: 0% 30%;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .page--custom-faq .hero__bg-image img {
    object-position: center;
  }
}
.page--custom-faq .hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 50px 35px;
}
.page--custom-faq .hero__content .section-heading__title {
  color: white;
  margin-bottom: 10px;
}
.page--custom-faq .hero__content .section-heading__subtitle {
  margin-bottom: 35px;
}
.page--custom-faq .hero__content .search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 50px;
  width: 530px;
}
.page--custom-faq .hero__content .search .form-group {
  margin-bottom: 0;
}
.page--custom-faq .hero__content .search .form-group input {
  border: none;
  box-shadow: none;
}
.page--custom-faq .hero__content .search .search-btn {
  border-radius: 50px;
  min-width: 120px;
}
@media screen and (max-width: 991px) {
  .page--custom-faq .hero__content .search {
    width: 100%;
  }
}
.page--custom-faq .navigation .nav-pills {
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 50px;
}
.page--custom-faq .navigation .nav-pills .nav-item .nav-link {
  color: #000;
}
.page--custom-faq .navigation .nav-pills .nav-item .nav-link.active {
  border-radius: 50px;
  background-color: #014cc4;
  color: #fff;
}
.page--custom-faq .navigation .dropdown .dropdown-toggle {
  background-color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: none;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
  color: black;
  padding: 0;
  padding: 20px 50px;
}

.page--custom-reviews .hero {
  position: relative;
}
.page--custom-reviews .hero__bg-image {
  height: 400px;
  width: 100%;
  position: relative;
}
.page--custom-reviews .hero__bg-image__overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.page--custom-reviews .hero__bg-image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .page--custom-reviews .hero__bg-image img {
    object-position: center;
  }
}
.page--custom-reviews .hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 50px 35px;
}
.page--custom-reviews .hero__content .section-heading__title {
  color: white;
  margin-bottom: 10px;
}
.page--custom-reviews .hero__content .section-heading__subtitle {
  margin: 0;
}
.page--custom-reviews .overview__content__container {
  row-gap: 1rem;
}
.page--custom-reviews .overview__content__container--image {
  height: 100%;
}
.page--custom-reviews .overview__content__container--image img {
  height: 100%;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}
.page--custom-reviews .overview__content__container--details .section-header {
  text-align: start;
}
.page--custom-reviews .overview__content__container--details .section-header__subtitle {
  text-align: start;
  justify-content: start;
}
@media screen and (max-width: 991px) {
  .page--custom-reviews .overview__content__container--details .section-header {
    text-align: center;
  }
}
.page--custom-reviews .all-reviews__content--slider {
  position: relative;
  overflow: hidden;
}
.page--custom-reviews .all-reviews__content--slider .card-row {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.3s ease;
  margin: 0;
  padding: 112px 35px 30px;
  padding: 112px 35px 30px;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container {
  flex: 0 0 auto;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card {
  padding: 20px;
  border: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: start;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body {
  padding: 0;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body__head {
  display: flex;
  gap: 1rem;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body__head--profile img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body__head--info .name,
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body__head--info .position {
  margin-bottom: 0;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body__head--info .position {
  color: #909090;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body__head--info .stars {
  color: #ffcd29;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body--comment {
  margin-top: 1rem;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: display 0.5s ease-in-out;
}
.page--custom-reviews .all-reviews__content--slider .card-row .card-container .card .card-body--comment:hover {
  display: block;
  cursor: default;
}
.page--custom-reviews .all-reviews__content--slider .action-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.page--custom-reviews .all-reviews__content--slider .action-controls .slider-indicators {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.page--custom-reviews .all-reviews__content--slider .action-controls .slider-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.2s;
}
.page--custom-reviews .all-reviews__content--slider .action-controls .slider-indicators .indicator.active {
  background-color: #007bff;
}
.page--custom-reviews .all-reviews__content--slider .action-controls .slider-buttons {
  display: flex;
  gap: 1rem;
}
.page--custom-reviews .all-reviews__content--slider .action-controls .slider-buttons .btn {
  min-width: 0;
  line-height: 1.5;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
}
.page--custom-reviews .aggregated__content .row {
  display: inline-flex;
  margin: 0;
  margin-top: 40px;
  margin-left: 10%;
}
.page--custom-reviews .aggregated__content .row .col-12 {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.page--custom-reviews .aggregated__content .row .col-12 img {
  height: auto;
  width: 40px;
}
.page--custom-reviews .aggregated__content .row .col-12 p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .page--custom-reviews .aggregated__content .row {
    margin-left: 0;
  }
  .page--custom-reviews .aggregated__content .row .col-12 p {
    font-size: 16px;
  }
}

.page--custom-hipaa .hero {
  position: relative;
}
.page--custom-hipaa .hero__bg-image {
  height: 400px;
  width: 100%;
  position: relative;
}
.page--custom-hipaa .hero__bg-image__overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .hero__bg-image__overlay {
    height: 800px;
  }
}
.page--custom-hipaa .hero__bg-image img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .hero__bg-image img {
    object-position: center;
    height: 800px;
  }
}
.page--custom-hipaa .hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 50px 35px;
  height: 100%;
}
.page--custom-hipaa .hero__content .section-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.page--custom-hipaa .hero__content .section-heading__title {
  color: white;
  margin-bottom: 10px;
}
.page--custom-hipaa .hero__content .subtitle {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .hero__content .hero-cards {
    width: 100% !important;
  }
}
.page--custom-hipaa .hero__content .hero-cards .hero-card .text {
  margin-bottom: 35px;
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .hero__content {
    justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .hero {
    height: 800px;
  }
}
.page--custom-hipaa .overview__content__container {
  row-gap: 1rem;
}
.page--custom-hipaa .overview__content__container--details .section-header {
  text-align: start;
}
.page--custom-hipaa .overview__content__container--details .section-header__subtitle {
  text-align: start;
  justify-content: start;
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .overview__content__container--details .section-header {
    text-align: center;
  }
}
.page--custom-hipaa .overview__content__container--image {
  display: flex;
  align-items: center;
  width: 100%;
}
.page--custom-hipaa .overview__content__container--image img {
  width: 100%;
  border-radius: 16px;
  object-fit: contain;
}
.page--custom-hipaa .how-we-protect__content__card-list {
  row-gap: 1rem;
}
.page--custom-hipaa .how-we-protect__content__card-list .card-item .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  border: none;
  border-radius: 16px;
  box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.page--custom-hipaa .how-we-protect__content__card-list .card-item .card .img-top img {
  width: 50px;
}
.page--custom-hipaa .how-we-protect__content__card-list .card-item .card .bi {
  color: #014cc4;
  font-size: 50px;
}
.page--custom-hipaa .how-we-protect__content__card-list .card-item .card .card-body {
  text-align: center;
  flex: 1 1 auto;
  padding: 0;
}
.page--custom-hipaa .compliance__content .checklist {
  row-gap: 1rem;
}
.page--custom-hipaa .compliance__content .checklist .check-item {
  display: flex;
  align-items: center;
}
.page--custom-hipaa .compliance__content .checklist .check-item .text {
  margin: 0;
}
.page--custom-hipaa .final-overview__content__container {
  row-gap: 1rem;
}
.page--custom-hipaa .final-overview__content__container--image {
  display: flex;
  align-items: center;
  width: 100%;
}
.page--custom-hipaa .final-overview__content__container--image img {
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
}
.page--custom-hipaa .final-overview__content__container--details .section-header {
  text-align: start;
}
.page--custom-hipaa .final-overview__content__container--details .section-header__subtitle {
  text-align: start;
  justify-content: start;
}
@media screen and (max-width: 991px) {
  .page--custom-hipaa .final-overview__content__container--details .section-header {
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
