@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --Urbanist-font: "Urbanist", sans-serif;
  --c2c-container: 1520px;
  --orange: #ff6600;
  --dark-grey: #282c32;
  --medium-grey: #5c5f63;
  --white: #ffffff;
  --blue: #146ee4;
  --black: #000000;
  --deep-blue: #034779;
  --light-grey: #d1d1d1;
  --bg-grey: #f8f8fc;
  --fs-72: 72px;
  --fs-64: 64px;
  --fs-58: 58px;
  --fs-48: 48px;
  --fs-40: 40px;
  --fs-32: 32px;
  --fs-26: 26px;
  --fs-24: 24px;
  --fs-22: 22px;
  --fs-20: 20px;
  --fs-18: 18px;
  --fs-16: 16px;
  --fs-12: 12px;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
a:focus-visible {
  outline: none !important;
}
.post,
.page {
  margin: 0;
}
.row {
  margin: 0;
}
p,
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}
.row > * {
  padding-left: 0;
  padding-right: 0;
}
body {
  width: 100%;
  font-family: var(--Urbanist-font);
  color: var(--dark-grey);
  background-color: var(--white);
}
a {
  text-decoration: none;
  color: inherit;
}
.cc-container {
  width: 100%;
  max-width: var(--c2c-container);
  margin: 0 auto;
}
/* Common CSS Start */
.py-100 {
  padding: 100px 0px;
}
.common-btn-light {
  padding: 10px 24px;
  border: 1px solid #282c3280;
  color: var(--dark-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.common-btn-light:hover {
  border: 1px solid var(--blue);
  background: var(--blue) !important;
  color: var(--white);
}
.common-btn {
  background: var(--blue);
  padding: 10px 24px;
  border: 1px solid var(--blue);
  color: var(--white);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  border-radius: 50px;
  transition: all 0.3s linear;
}
.common-btn:hover {
  border: 1px solid var(--deep-blue);
  background: var(--deep-blue);
}
.common-header-bg {
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0px;
}
.common-header-bg h1 {
  color: var(--dark-grey);
  font-size: var(--fs-64);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 16px;
}
.why-cc p,
.pricing-plan p,
.common-header-bg p,
.ai-first-growth p,
.about-banner p,
.about-description p,
.what-we-do-main p,
.our-team-main p,
.hero-content p,
.pricing-desc p,
.common-header .common-header p,
.common-p {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.ai-first-growth .common-title,
.doctor-growth .common-title,
.pricing-plan .common-title,
.feature-section .common-title,
.why-cc .common-title,
.about-banner .common-title,
.about-cc-detail .common-title,
.what-we-do-main .common-title,
.our-team-main .common-title,
.vision-mission .common-title,
.common-title {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.ai-first-growth .common-header,
.common-header {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 56px;
}
.orange {
  color: var(--orange);
}
.blue {
  color: var(--deep-blue);
}
/* Header CSS Start*/
.custom-header {
  position: sticky;
  top: 0;
  z-index: 999;
}
.custom-header .navbar-nav,
.custom-header .header-gap {
  gap: 32px;
}
.custom-header .navbar-nav .nav-link {
  color: var(--medium-grey);
  font-family: var(--primary-font);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.custom-header .navbar-nav .nav-link.active {
  color: var(--deep-blue);
  font-weight: 600;
}
.custom-header .navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7px);
}
/* Hero-Section CSS */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 32px;
}
.hero-content h1 {
  color: var(--dark-grey);
  font-size: var(--fs-64);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}
.client-info {
  background-color: #ff66001a;
  padding: 4px 12px 4px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-images img {
  object-fit: cover;
  margin-left: -12px;
}
.client-info span {
  color: var(--medium-grey);
  text-align: center;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.vertical-slider {
  display: flex;
  gap: 20px;
  height: 520px;
  position: relative;
}
.vertical-slider::before {
  content: "";
  height: 40px;
  width: 104%;
  position: absolute;
  background-color: black;
  bottom: -24px;
  background: linear-gradient(351deg, #ffffff -9.53%, #ffffff 92.54%);
  filter: blur(7px);
  z-index: 2;
  left: -12px;
}
.vertical-slider .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.vertical-slider .swiper-slide {
  height: 350px !important;
  position: relative;
}
.doctor-name {
  border-radius: 4px;
  background: var(--white);
  padding: 4px;
  position: absolute;
  left: 12px;
  bottom: 12px;
}
.doctor-name h3 {
  color: var(--dark-grey);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}
.doctor-name span {
  color: var(--medium-grey);
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
}
.vertical-slider .swiper-slide img {
  width: 100%;
  border-radius: 12px;
}

/* Meet Your AI Doctor Section */
.ai-doctor-grid {
  display: grid;
  grid-template-columns: 1fr 446px;
  grid-gap: 32px;
  align-items: center;
}
.ai-doctor-detail {
  display: flex;
  flex-direction: column;
  grid-gap: 32px;
  align-items: start;
}
.ai-doctor-detail h3 {
  color: var(--dark-grey);
  font-size: var(--fs-40);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 12px;
}
.ai-doctor-detail p {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
}
.ai-doctor-detail ul {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
  padding-left: 30px;
}
.ai-doctor-detail ul li {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 150%;
  position: relative;
}
.ai-doctor-detail ul li::after {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  background-color: var(--deep-blue);
  left: -26px;
  border-radius: 50%;
  top: 2px;
}
.moving-border {
  border-radius: 100px;
  border: 2px solid var(--orange);
  background: rgba(255, 102, 0, 0.12);
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 10px;
}
.moving-border span {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
/*   <!-- AI-First Growth --> */
.ai-first-growth .common-header {
  justify-content: start;
  align-items: start;
}
.ai-first-growth-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
.ai-first-growth-card {
  background: var(--bg-grey);
  padding: 16px;
  border-radius: 16px;
}
.ai-first-growth-details h3 {
  border-bottom: 1px solid #282c3280;
  padding-bottom: 12px;
  margin-bottom: 12px;
  margin-top: 20px;
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
}
.ai-first-growth-details h4 {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 8px;
}
.ai-first-growth-details ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: start;
}
.ai-first-growth-details ul li {
  display: flex;
  align-items: start;
  grid-gap: 4px;
  position: relative;
}
.ai-first-growth-details ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: url(https://click2cure.softcube.co.in/wp-content/uploads/2025/11/correct.svg)
    no-repeat center center/contain;
}
.ai-first-growth-details ul li span {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 150%;
  padding-left: 28px;
}
.ai-first-growth-card img {
  max-height: 248px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.ai-first-growth-grid > .ai-first-growth-card:nth-child(4) {
  grid-column: span 1; /* 33% */
}
.ai-first-growth-grid > .ai-first-growth-card:nth-child(5) {
  grid-column: span 2; /* 66% */
  display: grid;
  grid-template-columns: 550px 1fr;
  grid-gap: 28px;
  align-items: center;
}
.ai-first-growth-grid > .ai-first-growth-card:nth-child(5) img {
  max-height: 100%;
  border-radius: 8px 0 0 8px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {
  .ai-first-growth-grid {
    grid-template-columns: 1fr;
  }

  .ai-first-growth-grid > .ai-first-growth-card:nth-child(4),
  .ai-first-growth-grid > .ai-first-growth-card:nth-child(5) {
    grid-column: span 1;
  }
}
/*  We Mean It Section  */
.doctor-growth {
  background-color: var(--bg-grey);
}
.doctor-growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-gap: 56px;
  margin-top: 56px;
}
.doctor-growth-detail {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}
.doctor-growth-detail h3 {
  color: var(--deep-blue);
  font-size: var(--fs-64);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 10px;
}
.doctor-growth-detail p {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
}
.doctor-growth-detail span {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 150%;
}
.doctor-growth-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 16px;
  height: 266px;
  position: relative;
  overflow: hidden;
}
.doctor-growth-vector {
  background: linear-gradient(
    124deg,
    rgba(255, 180, 130, 0.24) 1.8%,
    rgba(183, 225, 255, 0.24) 97.95%
  );
  min-height: 114px;
  min-width: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  right: -16px;
  top: -16px;
}
/* Launch Platform Section */
.ai-platform h2 {
  color: var(--dark-grey);
  text-align: center;
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 16px;
}
.ai-platform p {
  color: var(--medium-grey);
  text-align: center;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  max-width: 58%;
  margin: 0 auto;
}
.booking-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 32px;
  margin-top: 32px;
}
/* Footer CSS */
.footer-main {
  background-color: var(--deep-blue);
  padding: 64px 0px 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 140px;
}
.footer-logo-image {
  min-width: 362px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
  align-items: start;
}
.footer-contact a {
  color: var(--white);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  grid-gap: 12px;
  align-items: start;
}
.footer-links h3 {
  color: var(--white);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
.footer-links a {
  color: var(--white);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  transition: all 0.2s linear;
}
.footer-links a:hover {
  padding-left: 4px;
}
.social-media ul {
  display: flex;
  flex-direction: row;
}
.social-media a {
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--white);
  border-radius: 50px;
}
.social-media a:hover {
  padding: 0;
}
.social-media img {
  filter: brightness(0) invert(1);
}
.social-media a:hover {
  background-color: var(--white);
}
.social-media a:hover img {
  filter: none;
}
.copyright {
  display: flex;
  justify-content: space-between;
  color: var(--light-grey);
  text-align: right;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.footer-main hr {
  color: var(--white);
}
.copyright a {
  font-weight: 600;
}
/* Pricing Page Start*/
.banner-content {
  display: flex;
  justify-content: space-between;
  grid-gap: 20px;
  align-items: center;
}
.pricing-plan {
  background-color: #f8f8fc;
}
.pricing-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  grid-gap: 12px;
  margin-bottom: 56px;
}
.pricing-grid {
  padding: 0 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 96px;
}
.pricing-text {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
.pricing-cards {
  border-radius: 16px;
  border: 1px solid #282c3280;
  background: var(--white);
  padding: 32px;
}
.pricing-cards.active {
  border: 1px solid var(--deep-blue);
}
.pricing-cards .header-content {
  border-radius: 12px;
  background: rgba(255, 131, 49, 0.12);
  padding: 8px 12px;
}
.pricing-cards .header-content span {
  color: var(--orange);
  text-align: center;
  font-size: var(--fs-40);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  display: block;
}
.pricing-cards .header-content ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pricing-cards .header-content ul li {
  color: var(--orange);
  text-align: center;
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  list-style-type: none;
  list-style-position: inside;
}
.pricing-cards .plan-price {
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 20px 0 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #282c3280;
}
.pricing-cards .plan-price h2 {
  color: var(--dark-grey);
  font-size: var(--fs-72);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.pricing-cards .plan-price span {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.plan-benefits p {
  color: var(--dark-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.plan-benefits h3 {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 20px 0 12px;
}
.plan-checklist {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
.plan-checklist li {
  display: flex;
  grid-gap: 4px;
  align-items: center;
}
.plan-checklist li span {
  color: var(--dark-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.plan-benefits .label {
  background-color: #ff66001a;
  padding: 4px 6px;
  display: block;
  margin: 20px 0px 32px;
  border-radius: 8px;
  text-align: center;
  color: var(--dark-grey);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.plan-benefits .common-btn-light,
.plan-benefits .common-btn {
  width: 100%;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: block;
  text-align: center;
  cursor: pointer;
}
/* Feature Section */
.feature-list {
  background: var(--bg-grey);
  padding: 20px;
  border-radius: 8px;
}

.feature-list table {
  margin-bottom: 0;
}

.feature-list table th,
.feature-list table td {
  background: var(--bg-grey);
}
.feature-section .common-title {
  margin-bottom: 56px;
  text-align: center;
}
.feature-section table thead tr th {
  padding-top: 0;
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}

.feature-section table th,
.feature-section table td {
  padding: 20px 0;
}
.feature-section table tbody tr th {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.feature-section table tbody td span {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.feature-section .table-inner {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.feature-section table tbody tr:last-child th,
.feature-section table tbody tr:last-child td {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-section table tbody tr:last-child th {
  font-size: var(--fs-24);
}
.feature-section table tbody tr:last-child td .table-inner span {
  color: var(--deep-blue);
  font-size: var(--fs-24);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.feature-section tr:last-child {
  border-bottom: none;
}

/* Why Click2Cure */
.why-cc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  grid-gap: 28px;
}
.why-cc-cards {
  background-color: var(--bg-grey);
  padding: 16px;
  border-radius: 16px;
}
.why-cc-cards img {
  width: 100%;
}
.why-cc-cards h3 {
  color: var(--dark-grey);
  font-size: var(--fs-32);
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
  margin: 28px 0 12px;
  text-align: center;
}
.why-cc-cards p {
  color: var(--medium-grey);
  text-align: center;
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
/* Frequently asked questions Start */
.frequently-asked-questions-main {
  padding-top: 100px;
}
.frequently-asked-questions-grid {
  display: grid;
  grid-template-columns: 625px 1fr;
  align-items: center;
  grid-gap: 60px;
}
.frequently-asked-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 20px;
}
.frequently-asked-card h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  padding-bottom: 8px;
}
.frequently-asked-card p {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: 30px;
}
.faq-card-inner {
  padding: 32px;
  border-radius: 16px;
  background: var(--bg-grey);
}
.faq-card-inner h3 {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
  padding: 20px 0px 0px;
}
.faq-card-inner p {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 150%;
  padding: 0px 0px 20px 0px;
}
.frequently-asked-questions-main .accordion-item {
  border: none;
  border-bottom: 1px solid #eaecf0;
}
.frequently-asked-questions-main .accordion-item:last-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.frequently-asked-questions-main .accordion-button {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 8px;
  background-color: var(--white);
  box-shadow: none;
}
.frequently-asked-questions-main .accordion-button.collapsed {
  padding-top: 24px;
  padding-bottom: 32px;
}
.frequently-asked-questions-main .accordion-button::after {
  background-image: url(../images/acco-open.svg);
}
.frequently-asked-questions-main .accordion-button:not(.collapsed)::after {
  background-image: url(../images/acco-close.svg);
}
.frequently-asked-questions-main .accordion-body {
  padding-top: 0;
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 150%;
}
/* Frequently asked questions End */

/* Extra CSS */

/* Success Story Page CSS Start */
.success-story {
  padding-top: 100px;
}
.ss-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(378px, 1fr));
  grid-gap: 28px;
}
.ss-card {
  border-radius: 16px;
  background: var(--bg-grey);
  padding: 16px;
}
.ss-main-image {
  margin-bottom: 16px;
}
.ss-main-image img {
  width: 100%;
  max-height: 246px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.card-doctor-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 10px;
}
.doctor-detail {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}
.doctor-avtar img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.doctor-detail h4 {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 140%;
}
.doctor-detail span,
.views-detail span {
  color: var(--medium-grey);
  font-size: var(--fs-12);
  font-weight: 500;
  line-height: 150%;
}
.views-detail p {
  color: var(--orange);
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 140%;
  text-align: end;
}
.card-doctor-description {
  margin-top: 16px;
}
.card-doctor-description p {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 150%;
}

/* Contact Page CSS Start */
.form-main {
  background-color: var(--bg-grey);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 532px;
  grid-gap: 48px;
}
.form-links {
  display: flex;
  flex-direction: column;
  grid-gap: 48px;
  align-items: start;
  justify-content: start;
}
.cc-contact h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 24px;
}
.cc-contact ul {
  display: flex;
  justify-content: start;
  align-items: start;
  grid-gap: 8px;
  flex-direction: column;
}
.cc-contact li {
  display: flex;
  grid-gap: 12px;
  align-items: start;
}
.cc-contact a {
  color: var(--dark-grey) !important;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 150%;
}
.cc-social-media h3 {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
.cc-media-grid {
  display: flex;
  grid-gap: 12px;
}
.cc-media-grid a {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--medium-grey);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.cc-media-grid a:hover {
  background-color: var(--orange);
  border-color: var(--orange);
}
.cc-media-grid a:hover img {
  filter: brightness(0) invert(1);
}
.form-main-card input,
.form-main-card input:focus .form-main-card textarea,
.form-main-card textarea#input_1_8,
.form-main-card textarea:focus {
  border: none !important;
  outline: none !important;
  padding: 24px 10px !important;
  font-size: 20px !important;
}
.form-main-card textarea#input_1_8 {
  padding: 8px 10px !important;
}
.form-main-card .gform_validation_errors,
.form-main-card .gform_required_legend,
.form-main-card .gfield_required_asterisk,
.form-main-card .gform-loader {
  display: none !important;
}
.form-main-card label {
  color: var(--dark-grey) !important;
  font-size: var(--fs-20) !important;
  font-weight: 500 !important;
  line-height: 140% !important;
}
.form-main-card .gform-theme--foundation .gform_fields {
  row-gap: 12px !important;
  column-gap: 10px !important ;
}
.form-main-card input#gform_submit_button_1 {
  background: var(--blue) !important;
  padding: 14px 24px !important;
  border: 1px solid var(--blue) !important;
  color: var(--white) !important;
  font-size: var(--fs-20) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: 150% !important;
  transition: all 0.3s linear !important;
  width: 100%;
}
.form-main-card input#gform_submit_button_1:hover {
  border: 1px solid var(--deep-blue) !important;
  background: var(--deep-blue) !important;
}
/* About us Page Start */
.about-banner {
  text-align: center;
}
.about-banner h2 {
  color: var(--deep-blue);
  font-size: var(--fs-64);
  font-weight: 600;
  line-height: 110%;
}
.about-banner h3 {
  margin: 8px 0px 16px;
}
.about-cc {
  display: grid;
  grid-template-columns: 1fr 614px;
  grid-gap: 128px;
  align-items: center;
}
.about-cc-detail h2 {
  margin-bottom: 32px;
}
.about-description {
  display: flex;
  flex-direction: column;
  align-items: start;
  grid-gap: 20px;
}
.what-we-do {
  background-color: var(--bg-grey);
}
.what-we-do-main h2 {
  margin-bottom: 12px;
}
.what-we-do-main p {
  margin-bottom: 36px;
}
.what-we-do-inner h3 {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 16px;
}
.what-we-do-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 32px;
  row-gap: 16px;
}
.what-we-do-details .features {
  display: flex;
  align-items: center;
  gap: 8px;
}
.what-we-do-details .features span {
  min-width: 54px;
  min-height: 54px;
  background: linear-gradient(
    124deg,
    rgba(255, 180, 130, 0.24) 1.8%,
    rgba(183, 225, 255, 0.24) 97.95%
  );
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.what-we-do-details .features h4 {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
}
.our-team-header h2 {
  margin-bottom: 16px;
}
.our-team-header {
  margin-bottom: 32px;
}
.our-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 28px;
}
.our-team-flex {
  display: flex;
  grid-gap: 28px;
  justify-content: center;
  margin-top: 28px;
}
.our-team-flex .our-team-cards {
  max-width: 488px;
}
.our-team-cards {
  background-color: var(--bg-grey);
  border-radius: 16px;
  padding: 16px;
}
.our-team-image img {
  border-radius: 8px 8px 0 0;
  max-height: 282px;
  width: 100%;
  object-fit: cover;
}
.our-team-details {
  margin-top: 10px;
}
.our-team-details h3 {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 4px;
}
.our-team-details p {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 150%;
}
.vision-mission .common-header-bg {
  padding: 50px 0px;
}
.vision-mission h2 {
  margin-bottom: 32px;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 590px;
  grid-gap: 32px;
}
.vision-mission-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.33);
  padding: 16px;
}
.vision-mission-card h3 {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 10px;
}
.vision-mission-card p {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 150%;
}
.core-value {
  padding-top: 100px;
}
.core-value h2 {
  margin-bottom: 56px;
  text-align: center;
}
.core-value-image img {
  max-height: 370px;
  border-radius: 8px 8px 0 0;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.core-value-detail {
  padding: 16px;
  border-radius: 10px;
  border: 2px solid var(--Strock, rgba(40, 44, 50, 0.5));
  background: #f1f0ff;
  margin-top: -30px;
  position: relative;
}
.core-value-detail h3 {
  color: var(--dark-grey);
  font-size: var(--fs-24);
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 16px;
}
.core-value-detail p {
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 150%;
}
.core-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  grid-gap: 28px;
}
section.defulatbig {
  padding: calc((100vh - 488px) / 2) 0;
  text-align: center;
  background: var(--white);
}
.cc-media-grid a img {
  filter: grayscale(1);
}
.privacycontent h2 {
  color: var(--deep-blue);
  font-size: var(--fs-40);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.privacycontent h3 {
  color: var(--deep-blue);
  font-size: var(--fs-32);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.privacycontent h3 {
  color: var(--deep-blue);
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
}
.privacycontent p {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 20px;
}
.privacycontent ul {
  padding-left: 30px;
  margin-bottom: 20px;
}
.privacycontent ul li {
  color: var(--medium-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
  list-style: disc;
}
.privacycontent a {
  color: var(--orange);
  font-weight: bold;
}
.privacy-policy-inner {
  padding: 120px 0;
}

/* Feature Page CSS Start */
.features-header {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
}
.features-header h2 {
  color: var(--dark-grey);
  text-align: center;
  font-size: var(--fs-58);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 16px;
}
.features-header p {
  max-width: 74%;
  color: var(--medium-grey);
  text-align: center;
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 140%;
  margin: 0 auto;
}
.features-header p b {
  color: var(--dark-grey);
}
.challenges {
  background-color: var(--bg-grey);
}
.challenges h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
}
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(365px, 1fr));
  grid-gap: 28px;
  margin-top: 50px;
}
.challenges-cards {
  border-radius: 16px;
  border: 1px solid #eaecf0;
  background: var(--white);
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
}
.challenges-cards img {
  border-radius: 20px;
  width: 100%;
}
.challenges-cards h3 {
  color: var(--dark-grey);
  font-size: var(--fs-32);
  font-weight: 600;
  line-height: 115%;
}
.challenges-cards p {
  color: var(--medium-grey);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 140%;
  margin-top: 10px;
}
.framework-header h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 10px;
}
.framework-header ul {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-bottom: 50px;
}
.framework-header ul li {
  color: #215fff;
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 140%;
  list-style-type: disc;
}
.framework-header ul li::marker {
  color: #000000;
}
.framework-header ul li:nth-child(2) {
  color: #edae0c;
}
.framework-header ul li:nth-child(3) {
  color: #19a66a;
}
.framework-header ul li:nth-child(4) {
  color: #ff5121;
}
.framwork-inner-header {
  border-radius: 10px;
  background: rgba(33, 95, 255, 0.1);
  padding: 12px 10px;
  text-align: center;
  margin-bottom: 14px;
}
.framwork-inner-header.header-yellow,
.what-we-do-card.header-yellow {
  background: rgba(237, 174, 12, 0.1);
}
.framwork-inner-header.header-green,
.what-we-do-card.header-green {
  background: rgba(25, 166, 106, 0.1);
}
.framwork-inner-header.header-red,
.what-we-do-card.header-red {
  background: rgba(255, 81, 33, 0.1);
}
.framwork-inner-header h3 {
  color: var(--black);
  text-align: center;
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.framwork-inner-header p {
  color: var(--medium-grey);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 150%;
}
.framwork-video iframe {
  border-radius: 12px;
  min-height: 440px;
}
.framwork-card {
  display: grid;
  grid-template-columns: 750px 1fr;
  gap: 60px;
  align-items: center;
}
.framwork-content h4 {
  color: var(--black);
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 150%;
}
.framwork-list ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  margin-top: 20px;
  padding-left: 20px;
}
.framwork-list ul li {
  list-style-type: disc;
  color: var(--black);
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 150%;
}
.framwork-list ul li::marker {
  color: #000000;
}
.framwork-list ul li p {
  color: var(--medium-grey);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 150%;
}
.framwork-list span {
  color: #19a66a;
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 150%;
  margin-top: 20px;
  display: block;
}
.framwork-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.one-line-header {
  margin-bottom: 50px;
}
.one-line-header h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 10px;
}
.one-line-header p {
  color: var(--medium-grey);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 140%;
  text-align: center;
}
.one-line-main iframe {
  border-radius: 12px;
}
.what-we-do-feature h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 50px;
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.what-we-do-card {
  border-radius: 10px;
  background: rgba(33, 95, 255, 0.1);
  padding: 25px 20px;
}
.what-we-do-card h3 {
  color: var(--dark-grey);
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}
.what-matter {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
.what-matter-content h3 {
  color: var(--white);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 50px;
}
.what-matter-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 30px;
  align-items: start;
}
.what-matter-content ul li {
  color: var(--white);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 150%;
  list-style-type: disc;
}
.what-matter-content b {
  color: var(--white);
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  margin-top: 25px;
  display: block;
}
.what-matter-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.what-different-detail {
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
.what-different-detail table {
  width: 100%;
  border-collapse: collapse;
}
.what-different-detail thead th {
  color: var(--white);
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
  background: var(--orange);
  padding: 18px 24px;
  text-align: left;
  border-radius: 12px 0 0 12px;
}
.what-different-detail thead th:nth-child(2) {
  border-radius: 0 12px 12px 0;
}
.what-different-detail tbody td {
  padding: 18px 24px;
  font-size: 16px;
}
.what-different-detail tbody tr:nth-child(even) {
  background: #f6f8fb;
}
.what-different-detail tbody td {
  border-radius: 12px 0 0 12px;
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 150%;
}
.what-different-detail tbody td:nth-child(2) {
  border-radius: 0 12px 12px 0;
}
.what-different-detail .highlight {
  color: var(--deep-blue);
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 150%;
}
.what-different h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 50px;
}
.what-different-grid {
  display: grid;
  grid-template-columns: 673px 1fr;
  gap: 50px;
  align-items: center;
}
.what-different-img img {
  border-radius: 15px;
  width: 100%;
}
.what-different-grid:nth-child(3) {
  grid-template-columns: 1fr 780px;
  margin-top: 100px;
}
.what-different-detail h3 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  text-align: center;
  margin-bottom: 50px;
}
.what-different-detail ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 30px;
}
.what-different-detail ul li {
  color: var(--dark-grey);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 150%;
  list-style-type: disc;
}
.what-different {
  padding-bottom: 0 !important;
}
.what-different-img {
  width: 100%;
}

/* Sucess Story Page CSS */
.success-story-header h1 {
  color: var(--dark-grey);
  text-align: center;
  font-size: var(--fs-64);
  font-weight: 600;
  line-height: 110%;
  max-width: 55%;
  margin: 0 auto;
}
.ss-vd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}
.ss-vd-card {
  height: 300px;
}
.ss-vd-card iframe {
  border-radius: 12px;
}
.ss-vd-header {
  text-align: center;
  margin-bottom: 50px;
}
.ss-vd-header h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 10px;
}
.ss-vd-header p {
  color: var(--dark);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 150%;
}
.partner-main {
  padding-bottom: 100px;
}
.partner-main h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 50px;
}
.core-value-swiper {
  width: 100%;
}

.core-value-swiper .swiper-wrapper {
  align-items: center;
}

.core-value-swiper .swiper-slide {
  text-align: center;
  height: 100%;
}

.core-value-swiper .swiper-slide img {
  min-height: 100px;
  max-height: 300px;
  width: 100%;
  object-fit: contain;
}

.google-search {
  background-color: var(--bg-grey);
}
.google-search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
}
.google-search-grid img {
  border-radius: 12px;
  width: 100%;
}
.google-search-header {
  text-align: center;
  margin-bottom: 50px;
}
.google-search-header h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 10px;
  text-align: center;
}
.google-search-header p {
  color: var(--dark);
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 150%;
  max-width: 50%;
  margin: 0 auto;
}
/* Pricing Page CSS */
.all-pricing-plan h2 {
  color: var(--dark-grey);
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 50px;
  text-align: center;
}
.main-pricing-plan-card {
  border-radius: 16px;
  border: 1px solid rgba(128, 128, 128, 0.25);
  padding: 24px;
}
.pricing-full-details {
  margin: 0 126px;
}
.main-pricing-plan-card {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.pricing-heading {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 12px;
}
.pricing-heading h3 {
  color: var(--black);
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 120%;
  text-transform: capitalize;
}
.pricing-heading span {
  min-width: 58px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edae0c1a;
  border-radius: 8px;
  color: #edae0c;
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 120%;
}
.pricing-details {
  padding: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-pricing-details .pricing-details:nth-child(odd) {
  background: var(--bg-grey);
}
.inner-pricing-details .pricing-details:nth-child(even) {
  background: var(--white);
}
.pricing-details .pricing-details-title h4 {
  color: #000;
  font-family: var(--font-family, Urbanist);
  font-size: var(--fs-20);
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 30px */
}
.pricing-check-list p {
  color: var(--black);
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 150%;
  text-align: center;
}
.pricing-details-title p {
  margin-top: 4px;
  color: #282c3280;
  font-size: var(--fs-18);
  font-weight: 500;
  line-height: 150%;
}
.pricing-check-list {
  min-width: 166px;
  text-align: center;
}
.pricing-green span {
  color: #19a66a;
  background-color: #19a66a1a;
}
.pricing-orange span {
  color: #ff5121;
  background-color: #ff51211a;
}
.pricing-pink span {
  color: #ff21a6;
  background-color: #ff21a61a;
}
.pricing-number {
  margin-top: 24px;
  background-color: var(--deep-blue);
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  justify-content: end;
  align-items: center;
}
.pricing-number span {
  color: var(--white);
  text-align: right;
  font-size: var(--fs-26);
  font-weight: 900;
  line-height: 150%;
}
.ornage-bg-pricing {
  background-color: var(--orange);
  margin-top: 2px;
}
.post-plan {
  background-color: var(--bg-grey);
}
.post-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  row-gap: 80px;
}
.post-plan-card {
  background-color: var(--white);
  border-radius: 20px;
  border: 1px solid #eaecf0;
  padding: 30px;
  position: relative;
  min-height: 300px;
}
.post-plan-card span {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #215fff1a;
  border-radius: 8px;
}
.post-plan-card h3 {
  color: var(--black);
  font-size: var(--fs-26);
  font-weight: 700;
  line-height: 120%;
  margin: 26px 0 14px;
}
.post-plan-card p {
  color: var(--strock);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 1px;
}
.mini-pricing-details {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 22px 16px;
  border: 1px solid #eaecf0;
  border-radius: 15px;
  position: absolute;
  width: 90%;
  bottom: -110px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  min-height: 104px;
}
.vector-yellow span {
  background-color: #edae0c1a;
}
.vector-purple span {
  background-color: #8521ff1a;
}
.vector-orange span {
  background-color: #ff51211a;
}
.vector-green span {
  background-color: #19a66a1a;
}
.vector-pink span {
  background-color: #ff21a61a;
}
.mini-pricing-details span {
  all: unset;
  color: var(--medium-grey);
  font-size: var(--fs-16);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.mini-pricing-details h4 {
  color: var(--black);
  font-size: var(--fs-22);
  font-weight: 700;
  line-height: 120%;
  text-align: end;
}
.extra-pricing {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  border-radius: 15px;
  min-height: 368px;
  position: relative;
}
.schedule-card-details {
  padding-left: 80px;
  max-width: 50%;
}
.schedule-card-details h3 {
  color: var(--white);
  font-size: var(--fs-48);
  font-weight: 700;
  line-height: 120%;
}
.schedule-card-details p {
  color: #eaecf0;
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.5px;
  margin: 12px 0 34px;
}
.schedule-card-details a {
  border-radius: 50px;
  border: 1px solid var(--white);
  background: var(--white);
  padding: 10px 24px;
  color: var(--blue);
  font-size: var(--fs-18);
  font-weight: 800;
  line-height: 150%;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.schedule-card-details a:hover {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
}

.schedule-grid {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pricing-plan-image {
  position: absolute;
  right: 0;
  bottom: 0;
}
.post-plan{
  padding-bottom: 150px;
}
.pricing-table {
  width: 100%;
  min-width: 400px;
}