/* Fonts  */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("popup.css");
@import url("blog-detail.css");

@font-face {
  font-family: "Avenir Next";
  src: url("{{ asset('assets/frontend-assets/fonts/AvenirNext-Regular.ttf') }}")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next";
  src: url("{{ asset('assets/frontend-assets/fonts/AvenirNext-Medium.ttf') }}")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next";
  src: url("{{ asset('assets/frontend-assets/fonts/AvenirNext-DemiBold.ttf') }}")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Avenir Next";
  src: url("{{ asset('assets/frontend-assets/fonts/AvenirNext-bold.ttf') }}")
    format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Avenir Next";
  src: url("{{ asset('assets/frontend-assets/fonts/AvenirNext-Heavy.ttf') }}")
    format("truetype");
  font-weight: 900;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================
   Root Variables
   ========================== */
:root {
  /* Colors */
  --color-primary-1: #650099;
  --color-primary-2: #2f0047;
  --color-secondary-1: #bed5d3;
  --color-secondary-2: #fcecb2;
  --color-accent: #d8e15e;
  --text-dark: #000000;
  --text-dark-gray: #504f4f;
  --text-gray: #6b6b6b;
  --color-light: #ffffff;
  --second-bg: #fbf7fc;

  /* Typography */
  --font-family-base: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  --font-family-heading: "Poppins", "Segoe UI", Roboto, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-full: 50%;

  /* Shadows */
  --shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
  --shadow-sm: -1px 1px 5px rgba(0, 0, 0, 0.1);
}

/* ========================== 
   Base Styles
 ========================== */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  background-color: var(--color-light);
  color: var(--color-dark);
  margin: 0;
  padding: 0;
  position: relative;
  z-index: -9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Avenir Next", sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
}

h1 {
  font-size: 50px;
  font-weight: 700;
}

h2 {
  font-size: 42px;
  font-weight: 400;
}

h3 {
  font-size: 25px;
  font-weight: 600;
}

h4 {
  font-size: 25px;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
}

img {
  width: 100%;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

/* utilities */

.primary-text {
  color: var(--color-primary-1);
}

.primary-btn {
  display: inline-block;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  background: linear-gradient(
    to bottom,
    var(--color-primary-1) 25%,
    var(--color-primary-2) 135%
  );
  /* border: 1px solid transparent; */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-light);
  white-space: nowrap;
}

.primary-btn:hover {
  box-shadow: inset 0 0 0 1px #ffffff;
  color: var(--color-light);
}

.primary-btn:active {
  opacity: 0.7;
}

.disabled-btn {
  color: #9d9b9b;
  background: #cfcece;
}

.disabled-btn:active {
  opacity: 1;
}

.disabled-btn:hover {
  color: #9d9b9b;
  background: #cfcece;
  cursor: not-allowed;
  box-shadow: none;
}

.simple-btn {
  color: var(--color-primary-1);
  text-decoration: underline;
  font-size: 25px;
  border: none;
  background-color: transparent;
  font-weight: 600;
}

.main-title {
  font-size: 42px;
}

.section-title {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  color: var(--color-primary-1);
}

.section-title span {
  font-size: 25px;
  color: var(--color-primary-1) !important;
  font-weight: 900;
}

.section-padding {
  padding-top: 50px;
}

.last-padding {
  padding-bottom: 50px;
}

.light-bg {
  background: var(--color-light);
}

.main {
  background-color: var(--color-light);
}

.inner-page-top {
  padding-top: 0px;
}

.hide-lg {
  display: none !important;
}

.text-black {
  color: var(--text-dark);
}

.text-dark-gray {
  color: var(--text-dark-gray);
}

.text-gray {
  color: var(--text-gray);
}

.border {
  border: 1px solid #e1e1e1;
}

.radius-lg {
  border-radius: var(--radius-lg);
}

/* ========== Header Style ========== */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0px;
  z-index: 999;
  transition: all ease-in 0.3s;
}

.header.sticky {
  background-color: var(--color-light);
  padding: 8px 20px;
  box-shadow: var(--shadow);
}

.header .brand-logo {
  width: 110px;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .call-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--color-primary-1);
  white-space: nowrap;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 20px;
  border-radius: 50px;
  gap: 10px;
}

.header .call-btn a img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  width: 30px;
  border-radius: var(--radius-full);
  color: var(--color-primary-1);
  white-space: nowrap;
}

.header .call-btn a div {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: var(--text-dark);
}

.header .call-btn a div .number {
  color: var(--color-primary-1);
}

.back-btn-wrapper .call-btn a {
  background-color: var(--color-light);
  color: var(--color-primary-1);
  width: 45px;
  height: 45px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ========== Hero Section Style ========== */

.hero-section {
  padding: 100px 0;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  min-height: 650px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-content .gradient-btn {
  width: fit-content;
}

.hero-content .highlight {
  padding: 10px 12px;
  background-color: var(--color-light);
  color: var(--text-dark-gray);
  width: fit-content;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 10px;
}

.gradient-txt {
  background: linear-gradient(
    90deg,
    var(--color-primary-1),
    var(--color-primary-2)
  ); /* your colors */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
  text-transform: uppercase;
}

.hero-section .main-title {
  color: var(--color-light);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-section .main-title span {
  font-weight: 300;
}

.hero-section p {
  color: var(--color-light);
  margin-bottom: 15px;
  font-size: 20px;
}

.hero-section::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: -1;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 150px 0;
    background-position: right !important;
    min-height: unset;
  }
}

@media (max-width: 500px) {
  .hero-section {
    padding: 130px 0 50px 0;
    background-position: -155px !important;
  }
}

@media (max-width: 420px) {
  .hero-section {
    padding: 130px 0 50px 0;
    background-position: -250px !important;
  }
}

@media (max-width: 370px) {
  .hero-section {
    background-position: -390px !important;
  }
}

/* ========== Calculate BMI Section Style ========== */

input[type="checkbox"] {
  accent-color: #620194;
}

.form {
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 50px;
}

.form select,
.form input {
  box-shadow: var(--shadow-sm);
}

.form .form-control {
  padding: 10px 15px;
  /* width: 100%; */
  border-color: #e1e1e1;
  border-radius: 10px;
}

.form .form-control:focus {
  box-shadow: var(--shadow-sm);
  border-color: #ebebeb;
}

.form-select {
  padding: 10px 50px 10px 15px;
  width: 100%;
}

input,
textarea,
.choices__inner {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-dark);
  /* -webkit-appearance: none; */
  /* -moz-appearance: none; */
  /* appearance: none;  */
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form .choices__input {
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: none;
  vertical-align: middle;
}

.form .select2-selection--multiple {
  padding: 10px 15px;
  min-width: auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e1e1e1;
  border-radius: 10px;
}

.form .select2-selection--multiple .select2-selection__rendered {
  display: block;
}

.form
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 3px 6px;
}

.form .select2-selection--multiple .select2-search__field {
  margin: 0;
}

.form
  .select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 1px solid #e1e1e1;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: var(--color-primary-1);
}

/* ========== Explore Section Style ========== */

.explore-card {
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: end;
  z-index: 1;
  width: 100%;
  padding: 20px;
}

.explore-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 1));
}

.explore-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.explore-card .card-title {
  text-align: left;
  font-weight: 600 !important;
  font-size: 24px;
  overflow: hidden;
  color: var(--color-light);
}

/* small tweak so the slide content fits nicely */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.swiper-slide > .card {
  width: 100%;
}

.last-card {
  background: linear-gradient(180deg, #2f0047 0%, #620194 90%, #2f0047 105%);
  color: #fff;
  border: none;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 300px;
  width: 100%;
}

.last-card a {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  align-items: center;
  font-size: 32px;
}

.last-card a .chevron-right {
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: var(--color-primary-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  border-radius: var(--radius-full);
}

/* ========== Success Stories Style ========== */
.success-stories {
  overflow: hidden;
}

.success-stories .swiper {
  overflow: unset;
}

/* Card Style */
.story-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 570px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Tag Top */
.story-tag {
  position: absolute;
  background: var(--color-secondary-1);
  padding: 5px 15px;
  border-bottom-right-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

/* ========== Footer Style ========== */

.footer {
  background-color: var(--second-bg);
  padding-top: 30px;
}

.footer .brand-logo {
  width: 140px;
  margin: auto;
  margin-bottom: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0px;
  padding: 20px 0;
  border-top: 1px solid #ccccccee;
}

.footer-navlink-wrapper {
  padding: 30px 40px;
  border-top: 1px solid #ccccccee;
  border-bottom: 1px solid #ccccccee;
  margin: unset;
}

.footer-navlink-wrapper h6 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-link li > div {
  color: #525252;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  gap: 10px;
  text-wrap: nowrap;
  align-items: center;
}

.footer-link li > div a {
  color: #525252;
}

.footer-link li .text-sm {
  font-size: 18px;
  font-weight: 400;
}

.footer-link li .icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-full);
  border: 2px solid #525252;
  background-color: transparent;
  color: #525252;
  padding: 7px;
}

.footer-link li .icon i {
  font-size: 35px;
}

.footer-navlink {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  grid-template-rows: repeat(2, auto); /* 2 rows */
  column-gap: 10px;
  row-gap: 15px;
}

.footer-navlink li a {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 18px;
}

.copyrigt {
  font-size: 12px;
  color: #999;
  padding: 25px 0;
}

.fr-2 {
  grid-template-columns: repeat(2, 1fr); /* 3 columns */
}

/* ============================
   BMI Score Page Style Start
============================     */

.back-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-btn i {
  font-weight: 400;
}

.back-btn-wrapper {
  background: linear-gradient(
    to right,
    var(--color-primary-1),
    var(--color-primary-2)
  );
  padding: 30px 0 50px;
  position: sticky;
  top: 0;
  z-index: -1;
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
  .back-btn {
    margin-top: 100px;
  }

  .back-btn-wrapper {
    background: transparent;
    position: unset;
  }
  .back-btn .call-btn {
    display: none;
    padding: 0;
  }

  .back-btn a {
    color: var(--color-primary-1) !important;
  }

  .no-back {
    padding-top: 150px;
  }

  .f-divider {
    position: relative;
  }

  .f-divider::before {
    content: "";
    height: 60%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 56%;
    width: 1px;
    background-color: #999999;
  }
}

.back-btn a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-light);
}

.bmi-scale {
  position: relative;
  margin: 30px 0;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.bmi-scale > div {
  width: 100%;
  max-width: 700px;
  margin: auto;
}

.bmi-bar {
  display: flex;

  height: 12px;
  border-radius: 6px;
}

.underweight {
  background: #2196f3;
  width: 25%;
  /* flex: 18.5; */
}

.normal {
  background: #22c55d;
  width: 25%;

  /* flex: 6.5; */
}

.overweight {
  background: #ebb305;
  width: 25%;

  /* flex: 5; */
}

.obese {
  background: #ef4444;
  width: 25%;

  /* flex: 10; */
}

.bmi-marker {
  position: absolute;
  top: -8px;
  width: 6px;
  height: 32px;
  background: #2c003e;
  border-radius: 10px;
  transform: translateX(-50%);
  z-index: 2;
}
.range {
  position: absolute;
  top: 20px;
  right: -12px;
  font-size: 14px;
  color: var(--text-gray);
}

.bmi-bar > div:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.bmi-bar > div:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.bmi-bar > div:last-child span {
  display: none;
}

.bmi-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 600;
}

.bmi-labels span {
  flex: 1;
  text-align: center;
}

.bmi-labels .under {
  color: #2196f3;
}

.bmi-labels .norm {
  color: #4caf50;
}

.bmi-labels .over {
  color: #ff9800;
}

.bmi-labels .obese-label {
  color: #ef4444;
}

.bmi-score {
  font-size: 50px;
  font-weight: 700;
  color: #ef4444;
}

.bmi-range-bar {
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  margin: 15px 0;
}

.bmi-range-bar div {
  height: 100%;
  float: left;
}

.score-label {
  padding: 10px 20px;
  width: fit-content;
  background-color: #f8dfdf;
  border-radius: 50px;
  margin: auto;
  color: #ef4444;
}

.contact-card {
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  background: #fbf7fc;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.contact-card i {
  font-size: 50px;
  color: var(--color-primary-1);
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-card p {
  color: var(--text-dark-gray);
}

.contact-card .stroke-btn {
  width: 100%;
}

.bmi-result h5 {
  margin-bottom: 0px;
  font-size: 22px;
  font-weight: 600;
}

.broken-heart {
  width: 65px;
  height: 55px;
}

.stroke-btn {
  padding: 12px 18px;
  background: transparent;
  border: 1px solid var(--color-primary-1);
  color: var(--color-primary-1);
  border-radius: 50px;
  background-color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 5px;
  transition: all 0.3s;
  text-wrap: nowrap;
}

.stroke-btn i {
  font-size: 22px;
  line-height: 1;
}

.stroke-btn:hover {
  color: var(--color-light);
  background-color: var(--color-primary-1);
}

.stroke-btn:hover i {
  color: var(--color-light);
}

.gradient-btn {
  padding: 15px 30px;
  background: linear-gradient(
    to bottom,
    var(--color-primary-1) 25%,
    var(--color-primary-2) 135%
  );
  color: var(--color-light) !important;
  border-radius: 50px;
  border: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.gradient-btn:hover {
  box-shadow: inset 0 0 0 1px #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff;
  color: var(--color-light);
}

.gradient-btn:active {
  opacity: 0.7;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #999;
  margin: 20px 0;
  width: 80%;
  margin: 15px auto;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
  margin-right: 0.75em;
}

.divider:not(:empty)::after {
  margin-left: 0.75em;
}

.cc-btn a {
  color: var(--color-light);
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: var(--color-primary-1);
  width: 100%;
  margin: auto;
}

.cc-btn a i {
  font-size: 22px;
  margin: 0;
  color: var(--color-light);
}

.cstm-popup i {
  color: var(--color-primary-1);
  font-size: 32px;
  display: inline-block;
  margin-bottom: 20px;
}

/* ============================
   BMI Score Page Style End
============================     */

/* ========================================================
   Find doctors near you and doctor list Page Style Start
===========================================================     */

.or-text {
  margin: 0 12px;
  font-weight: 500;
  color: #666;
  width: fit-content;
}

.doctor-list-near-u {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box .gradient-btn {
  margin-left: -30px;
}

.doctor-card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.status-closed {
  font-weight: 600;
  color: red;
}

.status-open {
  font-weight: 600;
  color: green;
}

.open-time {
  color: #555;
  font-size: 0.9rem;
}

.phone {
  color: #800080;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

/* ========================================================
   Find doctors near you and doctor list Page Style End
===========================================================     */

/* ============================
   Hub content Page Style start
============================     */

.hub-content h1 {
  font-size: 30px;
  font-weight: 600;
}

.breadcrumb-container {
  border-bottom: 1px solid #c4d6d4;
  border-top: 1px solid #c4d6d4;
  padding-bottom: 15px;
  padding-top: 15px;
  margin-top: 100px;
}

.breadcrumb {
  background: none;
  margin-bottom: 0;
  padding: 0;
}

.breadcrumb-item {
  font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #6c757d;
}

.breadcrumb-item a {
  color: var(--color-primary-1);
  font-weight: 600;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* ========= Responsive ========= */

@media (max-width: 1024px) {
  .footer-navlink {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .story-card {
    height: 500px;
  }

  .f-divider::before {
    left: 50%;
  }
}

@media (max-width: 768px) {
  .hide-sm {
    display: none !important;
  }

  .hide-lg {
    display: flex !important;
  }
  .main-title {
    font-size: 32px;
  }

  .simple-btn {
    font-size: 18px;
  }

  .contact-card .stroke-btn {
    width: 80%;
    margin: auto;
  }

  .cc-btn a {
    width: 80%;
  }

  /* =====Header===== */
  .header {
    padding: 10px 0px;
  }

  .header .brand-logo {
    width: 72px;
  }

  .header.sticky {
    padding: 6px 0px;
  }

  .header .call-btn a {
    padding: 13px 13px;
  }

  .header .call-btn a div {
    display: none;
  }

  /* Hero section */
  .hero-section .hide-lg {
    display: block !important;
  }

  .hero-section p {
    font-size: 16px;
  }

  /*=== Explore Section Style   ===*/

  .section-title {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }

  /* .section-title span {
    font-size: 20px;
    color: var(--color-primary-2);
    font-weight: 900;
  } */

  .hero-section .main-title span {
    font-weight: 700;
    color: #fcfc1a;
  }

  .secondary-title {
    font-size: 36px;
    color: var(--text-dark);
  }

  /* Check BMI Section */
  .form {
    padding: 30px 20px;
  }

  /* =====Footer===== */
  .footer {
    padding-top: 30px;
  }
  .footer-navlink-wrapper {
    padding: 40px 0;
    border-top: 1px solid #ccccccee;
    border-bottom: 1px solid #ccccccee;
  }

  .copyrigt {
    padding: 20px 0;
  }

  .footer-navlink {
    grid-template-columns: repeat(1, 1fr);
  }

  /* BMI result Page */
  .inner-page-top {
    padding-top: 30px;
  }
  .bmi-scale {
    padding: 0px;
    border-radius: unset;
    box-shadow: none;
    text-align: center;
  }

  .bmi-result h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .sm-dvc-card {
    box-shadow: var(--shadow);
    padding: 16px;
    border-radius: 10px;
  }

  /* Hub content Page Style start */

  .hub-content h1 {
    font-size: 22px;
    font-weight: 700;
  }

  .breadcrumb-container {
    margin-top: 80px;
    border: none;
  }

  /* Hub content Page Style start */

  .hub-content .explore-card {
    height: 200px;
  }

  .hub-content .explore-card .card-title {
    font-size: 20px;
    font-weight: 700;
  }
}

@media (max-width: 600px) {
  .header .brand-logo {
    padding: 7px;
  }

  .section-padding {
    padding: 30px 0;
  }

  .contact-card .stroke-btn {
    width: 100%;
    margin: auto;
  }

  .cc-btn a {
    width: 100%;
  }
  /*=== Explore Section Style   ===*/

  .section-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
  }

  /* .section-title span {
    font-size: 24px;
    color: var(--color-primary-2);
    font-weight: 900;
  } */

  .story-card {
    height: 400px;
  }
}
