/* @import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap"); */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --theme--highlight-color: #1a7391;
  --color-white: #fff;
  --color-black: #000;
  --color--facebook: #3b5998;
  --color--linkedin: #0077b5;
  --color--whatsapp: #25d366;
  --gradient--insta: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
body {
  scroll-behavior: smooth;
  font-family: "Miranda Sans", sans-serif;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
h1 {
  /* font-size: clamp(1.5rem, 3.8vw, 2.8rem); */
  font-size: clamp(1.7rem, 3vw, 5rem);
  font-weight: 700;
}
h1 span {
  font-size: calc(clamp(2rem, 5vw, 6rem) * 0.8);
  display: block;
}
h2 {
  font-size: clamp(1.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--para-main);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--para-main);
}

h4 {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--para-main);
}
h5 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--para-main);
  font-weight: 700;
}
h6 {
  font-size: 1.1rem;
}
p,
ul li,
a,
ol li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--color-black);
}
ul {
  padding: 0px;
  margin: 0px;
}
figure {
  margin: 0;
}
.color_main {
  color: rgb(0, 0, 0);
}
.py-6 {
  padding-block: 60px;
}
/* keyframes start */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* shinning animation */
@keyframes shine {
  100% {
    left: 150%;
  }
}
/* rotate image animation */

@keyframes rotateYPause {
  0% {
    transform: rotateY(0deg);
  }
  20% {
    transform: rotateY(360deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  60% {
    transform: rotateY(720deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
/* keyframes end */
/* button css start */
.golden-button {
  touch-action: manipulation;
  display: inline-block;
  outline: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
  border: none;
  border-radius: 50px;
  height: 2.75em;
  text-transform: uppercase;
  padding: 0 1em;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(110, 80, 20, 0.23);
  background: white;
  border: 1px solid #3b3b3b;
  color: var(--color-black);
  /* text-shadow: 0 2px 2px rgba(250, 227, 133, 1); */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-size: 100% 100%;
  background-position: center;
  place-content: center;
}

.golden-button:focus,
.golden-button:hover {
  background-size: 150% 150%;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.19),
    0 6px 6px rgba(0, 0, 0, 0.23);
  border: 1px solid rgba(190, 190, 190, 0.6);
  background: #000;
  color: #ffffff;
}

.golden-button:active {
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 5px 1px #b17d10,
    inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

/* button css end */
/* header start */

.navbar {
  width: 100%;
  padding: 0;
  /* background-color: var(--color-black); */
  background-color: transparent;
  /* box-shadow: 0 1px 3px rgba(226, 160, 53, 0.082); */
  transition: background-color 0.5s ease-in-out;
  /* transform: translateY(-100%); */
  position: relative;
  z-index: 9;
  position: fixed;
  top: 0;
  flex-direction: column;
}
.navbar .container-fluid {
  position: relative;
  z-index: 10;
}
.fixed_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  animation: slideDown 0.5s ease forwards;
  background-color: var(--theme--highlight-color);
}
.navbar .navbar-brand {
  /* z-index: 10;
  position: relative; */
}
.navbar .navbar-brand img {
  width: 280px;
  height: auto;
  padding-block: 6px;
}
.scrolled_nav {
  background-color: var(--color-black);
  box-shadow: 0 1px 3px rgba(226, 160, 53, 0.082);
}
.navbar-brand {
}
.navbar-expand-lg .navbar-nav {
  flex-wrap: wrap;
}
.top_bar {
  transition: all 0.9s ease;
}
.topbar_left a i {
  font-size: 24px;
  color: var(--color-white);
}
.topbar_left a {
  border-right: 2px solid var(--color-white);
  color: var(--color-white);
}
.topbar_socials a {
  /* padding: 5px; */
  background-color: var(--color-white);
  border-radius: 50px;
  width: 35px;
  height: 35px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.topbar_socials a.top_facebook {
  background-color: var(--color--facebook);
}
.topbar_socials a.top_instagram {
  background: var(--gradient--insta);
}
.topbar_socials a.top_linkedin {
  background-color: var(--color--linkedin);
}

.topbar_socials a:hover {
  animation: beat 0.5s infinite alternate;
}
.nav-item {
  padding-inline: 3px;
}
.nav-item a.nav-link {
  color: var(--color-white);
  font-weight: 600;
  transition: 0.3s ease;
  font-size: 21px;
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active,
.nav-item .nav-link:focus,
.nav-item .dropdown-menu .dropdown-item:hover {
  /* background-color: var(--color-white); */
  color: var(--color-white) !important;
  /* border-radius: 8px; */
  scale: 0.9;
}

.dropdown-menu li {
  border-bottom: 0.3px solid #424242;
}
.dropdown-menu.show {
  background-color: var(--color-black);
  padding-top: 15px !important;
  box-shadow: 1px 1px 4px rgba(104, 76, 25, 0.7);
}
.nav-item .dropdown-menu .dropdown-item {
  color: var(--color-white);
  transition: 0.3s ease;
}
/* hero banner */
.hero-banner {
  height: 90vh;
}
.hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero_bg_img {
  z-index: 0;
}
.hero_path {
  width: 45%;
  z-index: 2;
}
.hero_path svg path {
  fill: #24437aa8;
}
.hero_content {
  width: 32%;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  z-index: 3;
}
.hero_content h1 {
  color: var(--color-white);
}
/* direct billing */
.directBilling {
  padding-block: 50px;
  background: rgba(51, 37, 12, 0.2);
}
.billing_slider .single_billing {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: #fff;
  border-radius: 18px;
  padding: 5px;
  border: 1px solid #eee;
}

.billing_slider .single_billing img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.35s ease;
}

.billing_slider:hover .single_billing img {
  filter: grayscale(100%) blur(2px);
  opacity: 0.7;
}

/* keep hovered item normal */
.billing_slider .single_billing:hover img {
  filter: grayscale(0) blur(0);
  opacity: 1;
}
.hero__text_content {
  bottom: 5%;
  left: 5%;
  padding: 40px 50px 40px 40px;
  place-content: center;
  z-index: 2;
}
.hero__text_content::before {
}
/* about */
.about-us {
  background-color: #ccd4f1;
  margin-top: 20px;
}
.about_img {
  width: 100%;
  height: 450px;
  border-radius: 18px;
  overflow: hidden;
}
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image_shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 150, 255, 0.4),
    transparent
  );

  transform: skewX(-20deg);
}

/* HOVER ANIMATION */
.image_shine:hover::before {
  animation: shine 2.8s ease forwards infinite;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.why_us_usp_single_icon {
  margin-bottom: 20px;
  position: relative;
}

.why_us_usp_single_icon i {
  font-size: 60px;
  color: var(--theme--highlight-color);
  margin-inline: auto;
}
.choose_img {
  height: 550px;
}
.choose_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why_us_usp_single p {
  text-align: justify;
}
/* service */
.service {
  background-color: #ccd4f1;
}
.service_single {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.service_single_img {
  width: 100%;
  /* height: 250px; */
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  margin-top: 20px;
  padding-inline: 15px;
}
.service_single_img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  transition: all 0.3s ease;
  padding-right: 15px;
  border-right: 3px dotted var(--theme--highlight-color);
}
/* .service .row:has(:hover) .service_single:not(:hover) .service_single_img img {
  filter: grayscale(100%) blur(2px);
  opacity: 0.7;
} */
.service_single_img h5 {
  margin-left: 15px;
}
.service_single_text {
  padding: 25px;
}
/* team */
.team-1-block {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 30px;
}
.team-1-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.team-1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.team-1-info {
  position: absolute;
  left: 42px;
  background: var(--theme--highlight-color);
  right: 0;
  bottom: 0;
  padding: 18px 30px;
}
.team-1-read-more {
  position: absolute;
  right: 30px;
  bottom: 24px;
  font-size: 35px;
}
.team-1-info-overlay {
  position: absolute;
  left: 42px;
  background: var(--theme--highlight-color);
  right: 0;
  bottom: 0;
  padding: 18px 30px;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(80px);
}
.team-1-block:hover .team-1-info-overlay {
  opacity: 1;
  transform: translateY(0);
}
.team-1-name {
  color: var(--color-white);
}
.team-1-info,
.team-1-info-overlay {
  border-radius: 15px 0 0 0;
}
.team-1-block i {
  color: var(--color-white);
}
/* banner_call_to_action */
.banner_call_to_action {
  height: 65vh;
}
.call_details {
  width: 60%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  padding-right: 50px;
  top: 50%;
  /* transform: translateY(-50%); */
  background-color: var(--theme--highlight-color);
  z-index: 0;
}
.banner_call_to_action .container {
  position: relative;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.call-icon {
  display: inline-block;
  transform-origin: center;
  animation: ringShake 1.2s infinite;
}
.banner_call_to_action_img {
  z-index: -1;
}
.banner_call_to_action_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home_contact_form textarea {
  height: 120px;
}
@keyframes ringShake {
  0%,
  100% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(12deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  30% {
    transform: rotate(8deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-2deg);
  }
}
.call_action_img a {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-white);
  transition: all 0.3s ease;
}
.call_action_img:hover a {
  scale: 0.9;
}
/* blogs */
.news .single_news .golden-button {
  margin-bottom: 30px;
  margin-top: auto;
}
.news .single_news .service_text .service_para {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
.single_service {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  margin-block: 30px;
}
.single_service:hover {
  transform: translateY(-6px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
}
.service_img {
  width: 100%;
  aspect-ratio: 1/0.45;
  overflow: hidden;
  border-radius: 20px 20px 0px 0px;
}
.service_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service_text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service_text h4 {
  margin: 20px 0;
}
.services .row .col-lg-4 {
  display: flex;
}
.brand_icon {
  top: 20px;
  right: 20px;
  width: 75px;
  aspect-ratio: 1/1;
  clip-path: circle(100%);
  position: absolute;
  z-index: 4;
}
/* site_footer */
.site_footer {
  background-color: var(--theme--highlight-color);
  padding: 50px 0;
}
.footer_list.quick_links li a {
  color: var(--color-white);
  transition: all 0.3s ease;
}
.footer_list.quick_links li a:hover {
  color: var(--color-black);
  scale: 0.97;
}
.footer_list.contact_list li {
  margin-bottom: 10px;
}
.footer_list.contact_list li a span {
  color: var(--color-white);
  transition: all 0.3s ease;
}
.footer_list.contact_list li a span:hover {
  color: var(--color-black);
  scale: 0.97;
}
.footer_list.contact_list li a i {
  font-size: 28px;
  color: var(--color-white);
  margin-right: 6px;
}
.topbar_socials a:not(:last-child) i {
  color: var(--color-white);
}
.right_top_location i,
.right_top_call i {
  font-size: 26px;
  color: #fff;
}
.single_usp {
  padding: 40px 20px;
  text-align: center;
  flex: 1;
  background-color: var(--theme--highlight-color);
  color: var(--color-white);
}
.single_usp i {
  font-size: 50px;
  color: var(--color-white);
  margin-bottom: 20px;
}
.single_usp:nth-child(even) {
  background-color: #ccd4f1;
  color: var(--color-black);
}
.single_usp:nth-child(even) i {
  color: var(--theme--highlight-color);
}

/* recovery */
.recovery_process {
  position: relative;
  overflow: hidden;
}

.process_top {
  text-align: center;
  margin-bottom: 80px;
}

.process_top span {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: #e8efff;
  color: #246bff;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-size: 14px;
}

.process_top h2 {
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.1;
}

.process_wrapper {
  position: relative;
}

.middle_line {
  position: absolute;
  top: 48%;
  left: 16%;
  width: 68%;
  height: 2px;
  border-top: 2px dashed #c9d8ff;
  z-index: 0;
}

.process_card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 20px;
  text-align: center;
  position: relative;
  height: 100%;
  z-index: 2;
  transition: 0.4s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-inline: 10px;
}

.process_card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.step_no {
  font-size: 40px;
  font-weight: 900;
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 15px;
}

.blue {
  color: var(--theme--highlight-color);
}

.green {
  color: var(--theme--highlight-color);
}

.purple {
  color: var(--theme--highlight-color);
}

.icon_wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon_wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1px;
  background-image: conic-gradient(from 36deg, #fefefe, #1a7391);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  animation: rotate 8s linear infinite;
}

.icon_wrap::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 18px 0 currentColor,
    0 -18px 0 currentColor;
}

.icon_inner {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  background: var(--theme--highlight-color);
}

.process_card h3 {
  font-weight: 700;
  margin-bottom: 22px;
}

.process_card p {
  color: #6d7892;
  line-height: 1.5;
}

.bottom_features {
  margin-top: 40px;
}

.feature_item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  align-items: center;
  padding: 8px 10px;
  background: #fff;
}

.feature_icon {
  min-width: 75px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature_item h5 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0d173c;
}

.feature_item p {
  color: #6d7892;
  margin: 0;
  line-height: 1.7;
  font-size: 19px;
}

.f_blue {
  background: #e7efff;
  color: var(--theme--highlight-color);
}

.f_green {
  background: #e7efff;
  color: var(--theme--highlight-color);
}

.f_purple {
  background: #e7efff;
  color: var(--theme--highlight-color);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.fade_up {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.fade_up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .process_top h2 {
    font-size: 42px;
  }

  .process_top p {
    font-size: 18px;
  }

  .middle_line {
    display: none;
  }

  .process_card {
    margin-bottom: 25px;
  }

  .bottom_features .col-lg-3 {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .recovery_process {
    padding: 70px 0;
  }

  .process_top h2 {
    font-size: 34px;
  }

  .process_card {
    padding: 40px 25px;
  }

  .icon_wrap {
    width: 140px;
    height: 140px;
  }

  .icon_inner {
    width: 100px;
    height: 100px;
    font-size: 38px;
  }

  .process_card h3 {
    font-size: 28px;
  }

  .process_card p {
    font-size: 17px;
  }

  .feature_item h5 {
    font-size: 22px;
  }

  .feature_item p {
    font-size: 16px;
  }
}

.process_steps {
  position: relative;
  margin-bottom: 70px;
}

.steps_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* BACKGROUND DOTTED LINE */

.line_bg {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 92%;
  height: 5px;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 50px;

  background: repeating-linear-gradient(
    90deg,
    #c5cedf 0 10px,
    transparent 10px 20px
  );
}

/* ACTIVE LINE */

.line_progress {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 0%;
  height: 5px;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 50px;
  overflow: hidden;

  transition:
    width 1s cubic-bezier(0.77, 0, 0.18, 1),
    background 0.6s ease;

  box-shadow:
    0 0 15px rgba(255, 100, 100, 0.25),
    0 0 20px rgba(0, 180, 0, 0.15);
}

.line_progress::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120px;
  width: 120px;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.85),
    transparent
  );

  animation: shine 2s linear infinite;
}

@keyframes shine {
  0% {
    left: -120px;
  }

  100% {
    left: 100%;
  }
}

/*====================================
  STEP ITEM
====================================*/

.step_item {
  position: relative;
  cursor: pointer;
}

.step_circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  font-weight: 700;

  position: relative;
  z-index: 5;

  transition: 0.4s;

  box-shadow:
    inset -10px -10px 16px rgba(255, 255, 255, 0.2),
    inset 10px 10px 18px rgba(0, 0, 0, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.step_item:hover .step_circle {
  transform: translateY(-10px);
}

/* STEP COLORS */

.step_1 {
  background: linear-gradient(135deg, #ff2020, #ff4545);
}

.step_2 {
  background: linear-gradient(135deg, #ff6a38, #ffaf4a);
}

.step_3 {
  background: linear-gradient(135deg, #ffcb38, #f4de57);
}

.step_4 {
  background: linear-gradient(135deg, #9ade39, #2cb700);
}

.step_5 {
  background: linear-gradient(135deg, #10be00, #009900);
}

/*====================================
  ORBIT ACTIVE EFFECT
====================================*/

.orbit_ring {
  position: absolute;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 4px dashed #1676e7;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  opacity: 0;
  transition: 0.4s;
}

.step_item.active .orbit_ring {
  opacity: 1;
  animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ARROWS */

.orbit_ring span {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 18px solid #cfcfcf;
}

.orbit_ring span:nth-child(1) {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit_ring span:nth-child(2) {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

/*====================================
  CONTENT BOX
====================================*/

.content_box {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  min-height: 320px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
  width: 75%;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

/* CONTENT ITEM */

.content_item {
  display: none;
  animation: fadeUp 0.7s ease;
}

.content_item.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONTENT INNER */

.content_inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/*====================================
  LEFT ILLUSTRATION
====================================*/

.illustration {
  width: 145px;
  min-width: 145px;
  height: 145px;

  border-radius: 50%;
  border: 3px dashed #9aa3b5;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

.illustration_inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;

  background: #edf1f7;

  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration_inner i {
  font-size: 40px;
  color: var(--theme--highlight-color);

  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* VERIFIED BADGE */

.verified {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: #4ba4cb;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  border: 2px solid #fff;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/*====================================
  TEXT CONTENT
====================================*/

.content_text h2 {
  line-height: 1.1;
  font-size: 30px;
  margin-bottom: 15px;

  text-transform: uppercase;

  color: #48a0ce;
}

.content_text p {
  line-height: 1.5;
  color: #000;
}

/*====================================
  RESPONSIVE
====================================*/

@media (max-width: 1199px) {
  .content_text h2 {
    font-size: 48px;
  }

  .content_text p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .step_circle {
    width: 85px;
    height: 85px;
    font-size: 40px;
  }

  .orbit_ring {
    width: 120px;
    height: 120px;
  }

  .content_box {
    padding: 40px 30px;
  }

  .content_inner {
    flex-direction: column;
    text-align: center;
  }

  .content_text h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .recovery_process {
    padding: 70px 0;
  }

  .step_circle {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .orbit_ring {
    width: 85px;
    height: 85px;
    border-width: 2px;
  }

  .orbit_ring span {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid #cfcfcf;
  }

  .content_box {
    padding: 30px 20px;
  }

  .illustration {
    width: 180px;
    min-width: 180px;
    height: 180px;
  }

  .illustration_inner {
    width: 140px;
    height: 140px;
  }

  .illustration_inner i {
    font-size: 60px;
  }

  .verified {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .content_text h2 {
    font-size: 28px;
  }

  .content_text p {
    font-size: 15px;
    line-height: 1.8;
  }
}
/* multispecialist step */
.multi_specialist_section {
  background: #f7f7f7;
  overflow: hidden;
}

/* heading */
.section_heading .sub_title {
  font-size: 16px;
  letter-spacing: 2px;
  color: #7a7a7a;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

.section_heading h2 {
  margin-bottom: 20px;
}

.section_heading p {
  max-width: 850px;
  margin: auto;
}

/* cards */
.specialist_card {
  text-align: center;
  padding: 20px 35px;
  position: relative;
  height: 100%;
  border-right: 1px solid #dcdcdc;
  transition: all 0.4s ease;
}

.border_none {
  border-right: 0;
}

.specialist_card:hover {
  transform: translateY(-8px);
}

.specialist_img {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialist_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.specialist_card h3 {
  color: var(--theme--highlight-color);
  margin-bottom: 20px;
}

.specialist_card p {
  margin: auto;
}

/* center active effect */
.active_card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background: #dcdcdc;
}

@media (max-width: 991px) {
  .specialist_card {
    border-right: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
  }

  .border_none {
    border-bottom: 0;
  }

  .section_heading h2 {
    font-size: 28px;
  }

  .specialist_card h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section_heading h2 {
    font-size: 22px;
  }

  .section_heading p {
    font-size: 15px;
  }

  .specialist_card h3 {
    font-size: 26px;
  }

  .specialist_img {
    width: 120px;
    height: 120px;
  }
}
.qstns {
  text-decoration: none;
}
.qstns li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}
.qstns li i {
  font-size: 20px;
  color: #fff;
  background-color: var(--theme--highlight-color);
  padding: 6px;
  border-radius: 50%;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  place-content: center;
}
.qstns li span {
  font-size: 22px;
  font-weight: 500;
}

/* =========================
Comparison Section
========================= */

.comparison_section {
  position: relative;
  background: url("./../assets/images/banner3.jpg") center center/cover
    no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.comparison_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px);
}

.comparison_table_wrap {
  position: relative;
  z-index: 2;
  overflow-x: auto;
}

.comparison_table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  overflow: hidden;
}

.comparison_table thead th {
  text-align: center;
  padding: 20px;
  font-weight: 700;
  color: #3d4b57;
  background: rgba(255, 255, 255, 0.85);
}

.comparison_table thead th img {
  max-width: 160px;
}

.comparison_table tbody tr:nth-child(even) {
  background: rgba(216, 236, 242, 0.55);
}

.comparison_table tbody td {
  padding: 10px 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  color: #111;
}

.comparison_table tbody td:first-child {
  width: 42%;
  text-align: center;
  font-weight: 700;
}

.check,
.cross,
.question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 700;
}

.check {
  color: #0a9f27;
}

.cross {
  color: #ff0000;
}

.question {
  color: #003cff;
}
.bg-theme {
  background: var(--theme--highlight-color) !important;
}
/* responsive */

@media (max-width: 991px) {
  .comparison_section {
    padding: 70px 0;
    background-attachment: scroll;
  }

  .comparison_table {
    min-width: 850px;
  }
}

@media (max-width: 767px) {
  .comparison_section {
    padding: 60px 0;
  }

  .comparison_table tbody td,
  .comparison_table thead th {
    padding: 14px;
  }
}
.blogs_slider {
  background-color: #ccd4f1;
}
.object-fit-cover{
    object-fit: cover;
}
