@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/* abril-fatface-regular - latin */
/* @font-face {
  font-display: swap;
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto_sans_cjk.ttf") format("truetype");
} */

/* root */
:root {
  --white: #fff;
  --text: #333333;
  --primary: #008b94;
  --aqua: #c4e7ea;
  --nh-blue: #00525b;
  --deep-sea: #007079;
  --red: #c12121;
  --light-red: #fceded;
  --light-white: #edf3f5;
  /* --light-red: #fceded; */
  --light-blue: #edf3f5;
  --light-gray: #666666;
  --gray: #d8d8d8;
  --light-yellow: #fcf8df;
  --dark-gray: #666666;
  --golden: #ff8a43;
  --light-white-2: #f5f5f5;
  --brown: #b67e5c;
  --deep-yellow: #c8a74a;
  --light-sky: #a9b7b9;
  --magenta: #bd5c95;
  --light-magenta: #fff6fc;
  --deep-brown: #b4884d;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Noto Sans CJK JP", sans-serif; */
  font-family: "Noto Sans JP", sans-serif;
  /* color: var(--text); */
}

a {
  cursor: pointer !important;
}
button {
  cursor: pointer !important;
}
/* a:hover,
button:hover {
  text-decoration: none !important;
} */

/** Utilities **/
.mb-40 {
  margin-bottom: 40px;
}
/** Utilities **/

/** Content and Section Title **/

.content-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--primary);
  padding: 20px 32px;
  background: var(--light-white);
  position: relative;
  border-radius: 8px;
}
.content-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 28px;
  border-radius: 4px;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
  background-color: var(--primary);
}

.section-heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  margin-bottom: 32px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--primary);
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 28px;
  border-radius: 4px;
  background-color: var(--primary);
}
/** Content and Section Title Ends **/
/* global styles */
.doctor-img-1 {
  width: 100%;
  max-width: 100%;
}
.google-top h3 {
  font-size: 19.2px;
}

.home-red-note {
  min-height: 74px;
  width: fit-content;
  background: var(--white);
  border: 1px solid var(--red);
  right: 0px;
  bottom: 160px;
  border-radius: 8px 0px 0px 8px;
}
.red-note-left {
  border-radius: 6px 0px 0px 6px;
}

.nh-container,
.woocommerce-page {
  max-width: 1500px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0px auto;
  width: 100%;
}
.nh-container-secondary {
  max-width: 1248px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0px auto;
  width: 100%;
}

.noahs-thoughts-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.nh-media-sns-wrapper {
  gap: 60px;
}
.noahs-section-wrapper {
  gap: 60px;
}

/* Main Content Area */
.noahs-thoughts-content {
  flex: 1;
  max-width: 900px;
  width: 100%;
}

html,
body {
  overflow-x: hidden;
  touch-action: pan-y;
  color: var(--text);
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

button {
  background: transparent;
  border: none;
}

button:focus {
  outline: none !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.top-40 {
  top: 40px !important;
}
.mb-80 {
  margin-bottom: 80px;
}

.z-10 {
  z-index: 10;
}
.border-b-1 {
  border-bottom: 1px solid var(--gray);
}

.overflow-hidden {
  overflow: hidden;
}
.nh-rounded-8 {
  border-radius: 8px;
}
.bg-dark-gray {
  background: var(--dark-gray);
}
/* Navigate Section */

.navigate_section {
  margin-bottom: 0;
}

.navigate_section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.navigate_section-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 16px 17px 32px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 6px;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
  color: var(--text);
  transition: all 0.3s ease;
}

.navigate_section-card.navigation-danger {
  background: var(--red-light);
  color: var(--red);
}

.navigate_section-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 139, 148, 0.1);
}

.navigate_section-card .arrow-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--text);
  transition: fill 0.3s ease;
}
.navigate_section-card img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--text);
  transition: fill 0.3s ease;
  transform: rotate(90deg);
}

.navigate_section-card:hover .arrow-icon {
  fill: var(--primary);
}
/** Navigate Section End **/

/* typography */

.nh-text-mon {
  font-family: "Montserrat", sans-serif;
}

.nh-font-bold {
  font-weight: 700;
}

.nh-heading-1 {
  font-size: 40px;
  line-height: 58px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.nh-heading-2 {
  font-size: 32px;
  line-height: 46px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.nh-heading-3 {
  font-size: 52px;
  line-height: 120%;
}
.nh-heading-4 {
  font-size: 72px;
  line-height: 120%;
}
.nh-heading-5 {
  font-size: 56px;
  line-height: 120%;
}
.nh-font-500 {
  font-weight: 500;
}
.nh-font-600 {
  font-weight: 600;
}
.nh-font-300 {
  font-weight: 300;
}
.nh-text-lg {
  font-size: 24px;
  line-height: 35px;
}
.nh-lh-32 {
  line-height: 32px;
}
.nh-text-md {
  font-size: 19.7px;
  line-height: 30.72px;
}
.nh-text-sm {
  font-size: 13.7px;
  line-height: 20px;
}
.nh-text-xs {
  font-size: 12px;
}
.nh-text-center {
  text-align: center;
}

.text-white {
  color: white;
}
.nh-text-primary {
  color: var(--primary) !important;
}
.nh-text-deep-brown {
  color: var(--deep-brown);
}
.nh-text-golden {
  color: var(--golden);
}
.lh-150 {
  line-height: 150%;
}
.nh-text-red {
  color: var(--red);
}
.nh-text-d-gray {
  color: var(--dark-gray);
}
.nh-text-gray {
  color: var(--gray);
}
.nh-text-deep-sea {
  color: var(--deep-sea);
}
.text-underline {
  text-decoration: underline;
}
/** display switching classes **/
.nh-d-flex {
  display: flex;
}
/* spacing classes */
.gap-1 {
  gap: 4px;
}
.gap-2 {
  gap: 8px;
}
.gap-3 {
  gap: 16px;
}
.gap-4 {
  gap: 24px;
}
.gap-5 {
  gap: 48px;
}

.nh-gap-48 {
  gap: 48px;
}
.nh-gap-60 {
  gap: 60px;
}
.nh-gap-90 {
  gap: 90px;
}
.nh-gap-56 {
  gap: 56px;
}
.nh-gap-40 {
  gap: 40px;
}
.nh-gap-20 {
  gap: 20px;
}
.nh-gap-28 {
  gap: 28px;
}
.nh-gap-80 {
  gap: 80px;
}
.nh-gap-43 {
  gap: 43px;
}
.nh-gap-32 {
  gap: 32px;
}
.nh-gap-36 {
  gap: 36px;
}
.nh-gap-16 {
  gap: 16px;
}
.nh-gap-11 {
  gap: 11px;
}
.nh-gap-10 {
  gap: 10px;
}
.nh-gap-12 {
  gap: 12px;
}
.nh-golden-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 9px;
  background: var(--golden);
  flex-shrink: 0;
}
.text-center {
  text-align: center;
}

.pb-80 {
  padding-bottom: 80px;
}
.mb-40 {
  margin-bottom: 40px;
}
/** align relateds **/
.nh-align-center {
  align-items: center;
}
/* common component classes */

/* top button */
.hospital-ul li {
  position: relative;
  padding-left: 20px;
}
.hospital-ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--golden);
  flex-shrink: 0;
  display: block;
}
.top-button-container {
  width: fit-content;
  position: fixed;
  bottom: 5px;
  right: 30px;
  z-index: 100;
  cursor: pointer;
}
.top-image-section {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  border: 1px solid var(--aqua);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-image-container {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  background: var(--white);
  z-index: 10;
}
.top-text {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.top-button-arrow {
  transform: translateY(-6px);
}

.top-image {
  position: relative;
}
.top-inner {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 73px;
  height: 73px;
  border-radius: 50%;
  border: 1px solid var(--aqua);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* single product */
.qty-input {
  width: 38px;
  height: 40px;
  border: 2px solid var(--aqua);
  color: var(--text);

  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

.add-to-cart-btn {
  padding: 6px 24px;
  background: var(--light-white);
  height: 40px;
  color: var(--nh-blue);
  border-radius: 8px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.7px;
}
.add-to-cart-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.single-product-top {
  gap: 110px;
  padding-top: 300px;
}

.single-product-image {
  width: 467px;
  height: 467px;
  object-fit: cover;
}
.single-product-image-container {
  border: 1px solid var(--gray);
  border-radius: 8px;
  padding: 20px;
}
/* all post */
.column-slide-img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}
.all-post-column {
  display: grid;
  gap: 40px 32px;
  grid-template-columns: repeat(2, 1fr);
}
.event-slide-logo {
  bottom: 0;
  right: 0;
}
.profile-photo {
  width: 57px;
  height: 57px;
  border-radius: 100%;
  object-fit: cover;
}
.view-btn-icon {
  width: 12px !important;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.fw-400 {
  font-weight: 400 !important;
}
/*  */

.button-pdf {
  color: var(--white);
  width: 100%;
  max-width: 312px;
  min-width: 312px;
  background: var(--text);
  border-radius: 41px;
  bottom: 2px solid var(--text);
  padding: 24px 32px 24px 40px;
}

.health-checkup {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
}
/* method */
/* steps */

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: -34px;
  width: 2px;
  background: var(--golden);
}
.step-item.step-item-magenta:not(:last-child)::after {
  background: var(--magenta);
}
.step-item.step-item-primary:not(:last-child)::after {
  background: var(--primary);
}
.nh-text-magenta {
  color: var(--magenta);
}
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lgiht-blue);
  border: 2px solid var(--golden);
  color: var(--golden);
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19.2px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 19px;
  line-height: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 16px;
  line-height: 28px;
  color: var(--text);
  margin-bottom: 16px;
}

/* Buttons */
.btn-yellow {
  background: var(--light-yellow);
  border-radius: 4px;
  padding: 25px 40px;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 41px;
  display: flex;
  justify-content: space-between;
  gap: 92px;
}

.method-img {
  width: 240px;
  height: 164px;
  object-fit: cover;
  border-radius: 8px;
}

.btn-yellow:hover {
  background: var(--golden);
  color: var(--white);
}

.step-num-magenta {
  color: var(--magenta);
  border: 2px solid var(--magenta);
}
.step-num-primary {
  color: var(--primary);
  border: 2px solid var(--primary);
}

.step-block-text {
  display: inline-block;
  width: 100%;
  max-width: 296px;
}
/* method ends */
.hospital-box {
  border: 5px solid var(--light-white);
  padding: 32px 40px;
  border-radius: 8px;
}
.nh-media-sns-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--golden);
  flex-shrink: 0;
  display: block;
}

.hospitals-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}

.image-zoom-in {
  transition: transform 0.4s ease-in;
  transform: scale(1);
}
.image-zoom-in:hover {
  transform: scale(1.08);
}

.service-button {
  padding: 25px 24px 25px 42px;
  gap: 55px;
  background: var(--light-yellow);
  border-radius: 41px;
  min-width: 312px;
  letter-spacing: 0px;
  justify-content: space-between;
}

/* .home-red-note {
  height: 74px;
  width: fit-content;
  background: var(--white);
  border: 1px solid var(--red);
  right: 0px;
  bottom: 160px;
} */
.red-note-left {
  width: 57px;
  background: var(--red);
}
.red-note-right {
  padding: 16px 64px 16px 32px;
}

.red-note {
  color: var(--red);
  max-width: 290px;
}

/* pet card */
.pet-card {
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}
.pet-svg {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.pet-left {
  padding: 24px 48px 24px 56px;
}
.pet-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
/* pet card ends */

/* dashed border */
.google-top {
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--primary);
}
/* method steps */
/* Step Items */

/* steps end */
/* nav css */

.nh-header {
  padding: 14px 32px;
  background: var(--white);

  border-radius: 40px;
}
.nh-parent {
  background: var(--white);
  border-radius: 40px;
  margin: 0px 48px;
}
.nh-logo {
  width: 231px;
  height: auto;
}
.nav-item {
  color: var(--text);
}
.nh-nav-button {
  background: var(--primary);
  padding: 9.5px 24px;
  border: 2px solid var(--aqua);
  gap: 12.5px;
  border-radius: 23px;
}
.nh-nav-divider {
  width: 1px;
  height: 27px;
  background: var(--white);
}
.nh-nav-button-svg {
  width: auto;
}

.nav-subpages > li {
  position: relative;
  padding: 13px 0;
}

.nav-subpages > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  min-width: 150px;
  border: 1px solid var(--gray);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0);
  transition: 0.25s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
}

.nav-subpages > li:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-subpages > li > ul li a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  border-bottom: 1px solid var(--gray);
}

.nav-subpages > li > ul li:last-child a {
  border-bottom: none;
}
.nav-subpages > li > ul li img {
  transition: 0.2s;
}
.nav-subpages > li > ul li:hover img {
  transform: translateX(3px);
}

/* Mobile nav container */
.side-buttons {
  z-index: 100 !important;
}
.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: var(--white);
  width: 100%;
  z-index: 99;
  transform: translateY(-100%);
  transition: 0.5s all;
  padding: 176px 74px 130px;
  overflow-y: auto !important;
  overflow-x: hidden;
}
.text-deco-none {
  text-decoration: none;
}
.mega-inner-ul {
  padding-left: 72px;
}

.mega-red-text {
  margin-top: 32px;
  margin-bottom: 98px;
}
.mega-social-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  border: 1px solid var(--aqua);
  border-radius: 50%;
  background-color: var(--white);
}
.mega-inner-ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.mega-li.mega-ul-active .mega-inner-ul {
  max-height: 500px;
}

.mega-li > a {
  cursor: pointer;
  user-select: none;
}
.mega-ul a {
  display: block;
}

.mega-li {
  padding: 31px 0px;
  border-bottom: 1px solid var(--gray);
}

.mega-li:first-child {
  border-top: 1px solid var(--gray);
}
.mega-menu.mega-active {
  transform: translateY(00%);
}
.mega-orange {
  padding: 16px;
  background: var(--golden);
  border-radius: 47px;
  width: 100%;
}
.mega-red {
  padding: 21px;
  background: var(--red);
  border-radius: 41px;
  width: 100%;
  margin-bottom: 72px;
}
.mega-orange-image {
  position: absolute;
  left: 32px;
  top: 25px;
}
.mega-red-image {
  position: absolute;
  left: 32px;
  top: 14px;
}
.mega-bottom-link-container {
  padding-top: 32px !important;
  margin: 0px !important;
}
.nh-nav-button {
  z-index: 100;
}

.mobile-nav {
  width: 100%;

  border-radius: 0 0 20px 20px;
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.35s ease;
}

.nav-button-container {
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-inner {
  padding: 0px 24px 16px;
}

.mobile-nav.active {
  max-height: 450px;
  opacity: 1;
}

/* Mobile nav items */
.mobile-nav ul li a {
  color: var(--text);
  display: block;
  padding: 10px 0;
}

/* Toggle icons */
#close-nav {
  cursor: pointer;
}

#open-nav {
  cursor: pointer;
}

/** common hero section **/

.nh-hero {
  height: auto;
}

.nh-hero-inner.homepage-hero {
  height: 100vh;
  height: 100dvh;
}

.nh-hero-inner {
  position: relative;
  overflow: hidden;
  height: 508px;
  background-size: cover;
  background-position: center;
  clip-path: path("M0 0H100%V85% C75% 105% 25% 105% 0 85% Z");
  padding-bottom: 133px;
  position: relative;
}
.hero-section-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
}

.nh-hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(56, 70, 63, 0.18) 0%,
    rgba(56, 70, 63, 0) 50%,
    rgba(56, 70, 63, 0.4) 75%,
    rgba(56, 70, 63, 0.25) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.nh-hero-heading {
  color: var(--white);
  /* text-decoration: underline; */
  font-size: 48px;
  line-height: 150%;
}
.hero-section-img-bg::before {
  background: linear-gradient( to bottom, rgba(56, 70, 63, 0.18) 0%, rgba(56, 70, 63, 0.3) 50%, rgba(56, 70, 63, 0.5) 75%, rgba(56, 70, 63, 0.25) 100% ) !important;
}

/** hero section ends  */

/* Related and Popular Pages Sections */
.related-pages,
.popular-pages {
  margin-bottom: 60px;
}

.popular-pages {
  margin-bottom: 0;
}

.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.popular-pages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-page-card,
.popular-page-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  color: var(--text);
  transition: all 0.3s ease;
  gap: 15px;
}

.related-page-card:hover,
.popular-page-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 139, 148, 0.1);
}

.related-page-card .arrow-icon,
.popular-page-card .arrow-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--text);
  transition: fill 0.3s ease;
}

.related-page-card:hover .arrow-icon,
.popular-page-card:hover .arrow-icon {
  fill: var(--primary);
}
/** Popular and Related Pages Section Ends **/
/** Basic Section CSS for Sidebar and Right Contents **/
/* Noah's Thoughts Section */
.noahs-section {
  padding: 80px 0;
  background: var(--white);
}

.noahs-section-wrapper {
  display: flex;
  gap: 90px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Main Content Area */
.noahs-section-content {
  flex: 1;
  max-width: 900px;
}

/** Basic Section CSS for Sidebar and Right Contents Ends **/
/**footer enquiry**/
.nh-footer-enquiry {
  background: var(--light-white);
  padding-block: 140px 160px;
}

.footer-enquiry-container {
  --container-size: 984px;
  max-inline-size: var(--container-size);
  margin-inline: auto;
}
.single-enquiry-card .enquiry-cover-image {
  height: 211px;
}
.single-enquiry-card {
  overflow: hidden;
}
.footer-enquiry-header {
  font-size: 40px;
  font-weight: bold;
  line-height: 53px;
  text-align: center;
}
.footer-enquiry-heading-extra {
  font-size: 14px;
  line-height: 24px;
  color: var(--light-gray);
  text-align: left;
  background: var(--white);
  margin-inline: auto;
  margin-block: 43px 41px;
  padding: 25px 32px 25px 32px;
  width: fit-content;
}

.nh-footer-enquiry .images-holder {
  position: relative;
}

.nh-footer-enquiry .images-holder .enquiry-profile-image {
  position: absolute;
  width: 112px;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
}

.nh-footer-enquiry .images-holder {
  width: fit-content;
}

.nh-footer-enquiry .single-enquiry-card {
  width: 484px;
  display: flex;
  flex-direction: column;
  gap: 46px;
  text-align: center;
}

.nh-footer-enquiry .hospital-name {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}

.nh-footer-enquiry .enquiry-cards {
  display: flex;
  flex-flow: row wrap;
  gap: 21px 16px;
  justify-content: center;
}

.nh-footer-enquiry .single-enquiry-card {
  background: var(--white);
  padding-bottom: 41px;
  border-radius: 8px;
}

.nh-footer-enquiry .enquiry-contents {
  padding-inline: 41px;
}

.nh-footer-enquiry .hospital-phone-number {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary);
  line-height: 32px;
}

.nh-footer-enquiry .hospital-phone-number span {
  font-size: 40px;
  line-height: 53px;
}

.nh-footer-enquiry .location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.nh-footer-enquiry .location p {
  font-size: 14px;
  line-height: 24px;
  color: var(--light-gray);
  font-weight: 400;
}

.nh-footer-enquiry .hospital-hours {
  font-size: 13.7px;
  line-height: 24px;
  color: var(--light-gray);
}

.nh-footer-enquiry .hospital-phone-number {
  margin-top: 4px;
  text-decoration: underline;
}

.nh-footer-enquiry .location {
  margin-block: 25px 27px;
}

.nh-footer-enquiry .view-hospital-info {
  width: 348px;
  background: var(--text);
  font-size: 16px;
  line-height: 21px;
  color: var(--white);
  padding-block: 10px;
  margin-bottom: 26px;
  margin-inline: auto;
  border-radius: 4px;
  display: block;
}
.footer-enquiry-section-btn {
  display: flex;
  align-items: center;
  background: var(--light-yellow);
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 4px solid var(--white);
  margin-top: 70px;
}

.footer-enquiry-section-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.footer-enquiry-section-btn .rocket-icon {
  width: 50px;
  height: 50px;
  /* background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3); */
}

.footer-enquiry-section-btn .rocket-icon img {
  width: 24px;
  height: 24px;
  fill: white;
}

.footer-enquiry-section-btn .button-text {
  flex: 1;
  text-align: center;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 32px;
  margin: 0 20px;
}

.footer-enquiry-section-btn .arrow {
  width: 24px;
  height: 24px;
  color: #ff6b35;
  flex-shrink: 0;
}
/* footer  */
.nh-footer {
  background: var(--light-white);
}

.nh-footer-top {
  background: var(--primary);
  gap: 97.5px;
  padding: 80px 112px;
  border-radius: 16px 16px 0px 0px;
}
.nh-logo-footer {
  width: 320px;
  height: auto;
}
.footer-links-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer_column_group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}
.link-box-bottom {
  padding-left: 20px;
}
.link-box-top {
  padding: 0px 3px 12.5px;
  border-bottom: 1px dashed var(--white);
}
.link-box-top:hover {
  text-decoration: none;
}

.nh-footer-bottom {
  padding: 36px 112px;
  background-color: var(--deep-sea);
  gap: 115px;
}

/* sidebar */

.side-buttons {
  right: 0px !important;
  top: 177px !important;
  z-index: 11;
  left: unset !important;
  width: fit-content !important;
  display: none !important;
}

.side-bar {
  background: var(--white);
  border-radius: 41px 0px 0px 41px;
  width: fit-content;
  min-height: 52px;
  padding: 10px 40px 12px 24px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05);
}
.side-bar-top {
  min-height: 74px;
}
.side-bar-top {
  padding: 14px 40px 14px 32px;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  z-index: 1;
  width: 100%;
}
.hero-wave img {
  width: 100%;
}
.hero-wave svg {
  width: 100%;
}
/* .side-bar p {
  line-height: 22.4px;
} */

/** common sidebar **/
/* Sidebar Styles */
.noahs-common-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.noahs-common-sidebar .sidebar-nav-list {
  display: flex;
  flex-direction: column;
}

.noahs-common-sidebar .sidebar-nav-item {
  border-bottom: 1px dashed var(--gray);
}

/* .noahs-common-sidebar .sidebar-nav-item:first-child {
  border-bottom-color: 1px solid var(--gray);
} */

.noahs-common-sidebar .sidebar-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0px 16px 24px;
  font-size: 16px;
  text-decoration: underline;
  line-height: 24px;
  color: var(--text);
  transition: background 0.3s ease;
}

.noahs-common-sidebar .sidebar-nav-link:hover {
  background: var(--light-white);
}

/* .sidebar-nav-item.active .sidebar-nav-link {
  color: var(--primary);
  font-weight: 700;
  border-left: 4px solid var(--primary);
} */
.noahs-common-sidebar .sidebar-nav-item.active .sidebar-nav-link {
  color: var(--primary);
  font-weight: 700;
  /*! border-left: 4px solid var(--primary); */
  padding-left: 30px;
  position: relative;
}
.noahs-common-sidebar .sidebar-nav-item.active {
  border-bottom: 1px solid var(--primary);
}
.noahs-common-sidebar .sidebar-nav-item.active .sidebar-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 28px;
  background-color: var(--primary);
  border-radius: 4px;
}

.noahs-common-sidebar .sidebar-nav-link .arrow-icon {
  width: 16px;
  height: 16px;
  fill: var(--text);
}

.noahs-common-sidebar .sidebar-nav-item.active .arrow-icon {
  fill: var(--primary);
}

/* Sidebar Highlight Section */
.noahs-common-sidebar .sidebar-highlight {
  background: var(--light-yellow);
  border-radius: 8px;
  padding: 14px 30px 14px 24px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.noahs-common-sidebar .highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.noahs-common-sidebar .highlight-icon img {
  width: 48px;
  height: 48px;
}

.noahs-common-sidebar .highlight-text {
  color: var(--text);
  font-size: 16px;
  line-height: 22px;
}

.noahs-common-sidebar .highlight-title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  text-decoration: underline;
  letter-spacing: -0.04em;
}

.noahs-common-sidebar .highlight-link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: underline;
  letter-spacing: -0.04em;
}

/* Sidebar Additional Navigation */
.noahs-common-sidebar .sidebar-additional-nav {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.noahs-common-sidebar .sidebar-additional-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  background: var(--light-white);
  /* border: 1px solid var(--gray); */
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-decoration: underline;
  color: var(--text);
  transition: all 0.3s ease;
  justify-content: space-between;
}

.noahs-common-sidebar .sidebar-additional-link:hover {
  background: var(--light-white);
  border-color: var(--primary);
}

.noahs-common-sidebar .sidebar-additional-link .search-icon,
.noahs-common-sidebar .sidebar-additional-link .check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.noahs-common-sidebar .sidebar-additional-link .arrow-icon {
  width: 14px;
  height: 14px;
  margin-left: auto;
}

/* faq */
/* Accordion Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-accordion-item {
  background: var(--white);
}

.faq-divider {
  height: 28px;
  width: 1px;
  background: #c4e7ea;
}

.faq-accordion-header {
  display: flex;
  /* align-items: center; */
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--primary);
  cursor: pointer;
  transition: background 0.3s ease;
  gap: 20px;
}

.faq-accordion-header:hover {
  background: var(--deep-sea);
}

.faq-question-wrapper {
  display: flex;
  /* align-items: center; */
  gap: 16px;
  flex: 1;
}

.faq-q-label {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
}

.faq-question {
  font-size: 19.2px;
  line-height: 28px;
  color: var(--white);
  font-weight: 700;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 16px;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-accordion-item.faq-active .faq-accordion-content {
  max-height: 500px;
}

.faq-answer-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 32px 32px 32px;
  background: var(--white);
  border: 1px solid var(--gray);
}

.faq-a-label {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  color: var(--golden);
  font-family: "Montserrat", sans-serif;
  flex-shrink: 0;
}

.lab-img {
  width: 100%;
  border-radius: 8px;
}
.text-nowrap {
  white-space: nowrap;
}

.service-card {
  position: relative;
}

.hospital-card-button-arrow {
  position: absolute;
  right: 0px !important;
  bottom: 0px !important;
}
.telephone-box {
  border: 1px solid var(--gray);
}

.telephone-box-left {
  min-width: 197px;
  background: var(--light-white-2);
}

/* sidebar */
.telephone-box-right {
  padding: 32px 40px;
}
.birthday-filter {
  padding: 24px;
  background: #f5f5f5;
  margin-top: 26px;
}
.birthday-filter-inner {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray);
  padding: 20px 20px 24px 20px;
}
.birthday-filter-button {
  background: var(--primary);
  border-radius: 8px;
  padding: 5px 16px;
  color: var(--white);
  font-weight: 700;
}
.birthday-select-wrapper {
  position: relative;
  width: 100%;
}

.birthday-select {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
}

.birthday-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}
#mobile-nav-toggle {
  cursor: pointer;
}

.pl-32 {
  margin-left: 32px;
}

.preventive-medicine .section-image img {
  object-fit: cover;
}

@media (max-width: 400px) {
  .footer_column_group {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 600px) {
  .pl-32 {
    margin-left: 0px;
  }
  .noahs-section-content,
  .noahs-section-wrapper,
  .noahs-section,
  .noahs-thoughts-wrapper {
    width: 100%;
  }
  .pet-left {
    padding: 32px 16px;
  }
  .hospital-box {
    padding: 32px 16px;
  }
  .hospital-strip-left,
  .hospital-strip-right {
    padding: 32px 16px;
  }
  .btn-yellow {
    gap: 16px;
  }
  .noahs-thoughts-page-contents {
    width: 100%;
  }
  .noahs-policy-section {
    width: 100%;
    margin: 0px 0px 80px 0px;
    padding: 24px 16px;
    max-inline-size: 100%;
  }
  .noahs-policy-section a {
    font-size: 16px;
  }
  .telephone-box-left {
    min-width: 100%;
  }
  .footer-enquiry-heading-extra {
    padding: 25px;
    margin: 41px 16px;
    text-align: center;
    margin-inline: unset;
  }
  .footer-enquiry-heading-parent {
    padding: 0px 16px;
  }
  .footer-enquiry-section-btn {
    margin: 70px 16px 0px;
  }
  .images-holder {
    width: 100% !important;
  }
  .top-sm-16 {
    top: 16px !important;
  }
  .nh-parent {
    margin: 0px 16px;
  }
  .faq-question-wrapper {
    gap: 8px;
  }
  .faq-question-wrapper,
  .faq-answer-wrapper {
    gap: 16px !important;
  }
  .faq-accordion-header,
  .faq-answer-wrapper {
    gap: 16px !important;
    padding: 24px 16px;
  }
  .top-image-section {
    width: 77px;
    height: 77px;
  }

  .top-image-container {
    width: 77px;
    height: 77px;
  }
  .top-inner {
    width: 44px;
    height: 44px;
  }
  .top-image {
    width: 44px;
    height: 44px;
  }
  .top-text {
    font-size: 10px;
  }
  /* global-ends */
  .single-product-top {
    gap: 110px;
    padding-top: 120px;
  }
  .single-product-image {
    width: 100%;
  }

  .all-post-column {
    display: grid;
    gap: 32px 40px;
    grid-template-columns: repeat(1, 1fr);
  }
  .hospitals-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 80px;
  }
  .gap-sm-16 {
    gap: 16px;
  }
  .gap-sm-32 {
    gap: 32px;
  }

  .nh-heading-1 {
    font-size: 28px;
    line-height: 58px;
    font-weight: 700;
  }
  .nh-heading-2 {
    font-size: 24px;
    line-height: 46px;
    font-weight: 700;
  }
  .nh-heading-5 {
    font-size: 36px;
    line-height: 120%;
  }
  .text-sm-center {
    text-align: center;
  }
  /* global ends */
  .nh-container,
  .nh-container-secondary,
  .woocommerce-page .nh-container-secondary {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0px auto;
  }

  .nh-logo {
    width: 150px;
    height: auto;
  }
  .nh-header {
    padding: 8px 16px;
  }
  .nh-nav-button {
    background: var(--primary);
    padding: 6.5px 16px;
  }
  .nh-hero-inner.homepage-hero .hero-wave {
    bottom: -1px;
  }
  /* .footer-links-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  } */
  .nh-footer-bottom,
  .nh-footer-top {
    padding: 60px 20px;
  }
  .nh-footer-bottom,
  .nh-footer-top {
    gap: 60px;
  }
  .nh-logo-footer {
    width: 260px;
    height: auto;
  }
  /**
   * Footer Enquiry Section
   **/
  .nh-footer-enquiry .single-enquiry-card {
    width: 360px;
  }
  .nh-footer-enquiry .single-enquiry-card img,
  .nh-footer-enquiry .single-enquiry-card a {
    width: 100%;
    margin: auto;
  }
  .footer_column_group {
    grid-template-columns: repeat(2, 1fr);
  }
  /** content and section title**/
  .content-title {
    font-size: 20px;
    line-height: 30px;
    padding-block: 12px;
  }
  /** Sidebar **/
  .noahs-common-sidebar {
    width: 100%;
  }

  /**Header Navigate to Section**/
  .navigate_section-grid {
    grid-template-columns: 1fr;
  }
  .pet-img {
    width: 100%;
  }
  /** Header Navigate to Section Ends **/
  .px-16 {
    padding: 0px 16px;
  }
  .lab-img {
    width: 100%;
    border-radius: 8px;
  }
  .clinical-service-card {
    padding: 0;
  }
  .padding-sm-0 {
    padding: 0;
  }
  .clinical-service-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .align-items-center.hospital-strip-left {
    align-items: start !important;
    justify-content: start !important;
    padding: 32px 16px !important;
  }
  .hospital-strip-left {
    align-items: start !important;
  }
  .mega-menu {
    padding: 100px 16px 50px;
  }
  .mega-orange p,
  .mega-red p {
    font-size: 18px;
  }
  .mega-orange-image,
  .mega-red-image {
    left: 16px;
  }
  .mega-red-image {
    left: 16px;
    top: 9px;
  }
  .mega-orange,
  .mega-red {
    padding: 14px;
  }
  .mega-red {
    margin-bottom: 40px;
  }
  .mega-li {
    padding: 16px 0px;
  }
  .mega-li a {
    font-size: 16px;
  }
  .mega-inner-ul a {
    font-size: 14px;
  }
  .mega-inner-ul {
    padding-left: 32px;
  }
  .gap-sm-10 {
    gap: 10px;
  }
  .mega-red-text {
    font-size: 19.2px;
    margin-top: 16px;
    margin-bottom: 48px;
  }
  .mega-social-container {
    height: 48px;
    width: 48px;
  }
  .feature-slide-right {
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
  }
  .feature-slide-img {
    border-radius: 0px 0px 0px 0px;
  }
  .care-bottom-img-left {
    width: 100%;
  }
  .mega-social-container img {
    height: 25px;
    width: 25px;
  }
  .mega-bottom-link {
    font-size: 16px;
  }
  .mega-bottom-link-container {
    padding: 0px !important;
    margin: 0px !important;
  }
  .noahs-section-content {
    width: 100%;
  }
  .related-pages-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .popular-pages-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .related-page-card,
  .popular-page-card {
    gap: 15px;
  }
  .hospital-strip-right {
    width: 100%;
  }
  .preventive-medicine .section-image img {
    width: 100%;
  }
}

@media (min-width: 601px) and (max-width: 767px) {
  .preventive-medicine .section-image img {
    width: 100%;
  }
  .noahs-section-content,
  .noahs-section-wrapper,
  .noahs-section,
  .noahs-thoughts-wrapper {
    width: 100%;
  }
  .pet-left {
    padding: 32px 16px;
  }
  .hospital-box {
    padding: 32px 16px;
  }
  .hospital-strip-left,
  .hospital-strip-right {
    padding: 32px 16px;
  }
  .hospital-strip-right {
    width: 100%;
  }
  .popular-pages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .related-pages-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .related-page-card,
  .popular-page-card {
    gap: 15px;
  }
  .telephone-box-left {
    min-width: 100%;
  }
  .noahs-section-content {
    width: 100%;
  }
  .align-items-center.hospital-strip-left {
    align-items: start !important;
    justify-content: start !important;
    padding: 32px 16px !important;
  }
  .footer-enquiry-heading-extra {
    padding: 25px;
    margin: 41px 16px;
    text-align: center;
    margin-inline: unset;
  }
  .footer-enquiry-heading-parent {
    padding: 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-enquiry-section-btn {
    margin: 70px 16px 0px;
  }
  .images-holder {
    width: 100% !important;
  }
  .top-sm-16 {
    top: 16px !important;
  }
  .nh-parent {
    margin: 0px 16px;
  }
  .faq-question-wrapper {
    gap: 8px;
  }
  .faq-question-wrapper,
  .faq-answer-wrapper {
    gap: 16px !important;
  }
  .faq-accordion-header,
  .faq-answer-wrapper {
    gap: 16px !important;
    padding: 24px 16px;
  }
  .px-16 {
    padding: 0px 16px;
  }
  .top-image-section {
    width: 77px;
    height: 77px;
  }
  .care-bottom-img-left {
    width: 100%;
  }

  .top-image-container {
    width: 77px;
    height: 77px;
  }
  .top-inner {
    width: 44px;
    height: 44px;
  }
  .top-image {
    width: 44px;
    height: 44px;
  }
  .top-text {
    font-size: 10px;
  }
  .single-product-top {
    gap: 110px;
    padding-top: 150px;
  }
  .single-product-image {
    width: 100%;
  }
  .lab-img {
    width: 100%;
    border-radius: 8px;
  }
  /* global-starts */
  .all-post-column {
    display: grid;
    gap: 32px 40px;
    grid-template-columns: repeat(1, 1fr);
  }
  .hospitals-section-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-bottom: 80px;
  }
  /* global-ends */
  .gap-sm-16 {
    gap: 16px;
  }
  .gap-sm-32 {
    gap: 32px;
  }

  .nh-heading-1 {
    font-size: 28px;
    line-height: 58px;
    font-weight: 700;
  }
  .nh-heading-2 {
    font-size: 24px;
    line-height: 46px;
    font-weight: 700;
  }
  .nh-heading-5 {
    font-size: 36px;
    line-height: 120%;
  }
  .text-sm-center {
    text-align: center;
  }
  /* global ends */
  .nh-container,
  .woocommerce-page,
  .nh-container-secondary {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0px auto;
  }
  .footer-links-container {
    /* display: grid;
    grid-template-columns: repeat(1, 1fr); */
    gap: 40px;
  }
  .nh-footer-bottom,
  .nh-footer-top {
    padding: 60px 20px;
  }
  .nh-footer-bottom,
  .nh-footer-top {
    gap: 60px;
  }
  .nh-logo-footer {
    width: 260px;
    height: auto;
  }
  /**basic sidebar and right content **/
  .noahs-section {
    padding: 60px 0;
  }
  /* basic sidebar and right content ends */
  /**content and section title**/

  .content-title {
    font-size: 18px;
    line-height: 36px;
    padding: 16px 20px;
  }
  .feature-slide-right {
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
  }
  .feature-slide-img {
    border-radius: 0px 0px 0px 0px;
  }

  .section-heading {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .pet-img {
    width: 100%;
  }
  .clinical-service-card {
    padding: 0;
  }
  .padding-sm-0 {
    padding: 0;
  }
  .clinical-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .noahs-section-wrapper {
    flex-direction: column;
  }
  .noahs-common-sidebar {
    width: 100%;
  }
  /**content and section title ends**/
}
@media screen and (max-width: 768px) {
  .preventive-medicine .section-image,
  .preventive-medicine .text-contents {
    width: 100%;
  }
  .preventive-medicine .section-image img {
    width: 100%;
  }
  .noahs-section-content {
    width: 100%;
  }
  .top-image-section {
    width: 77px;
    height: 77px;
  }

  .top-image-container {
    width: 77px;
    height: 77px;
  }
  .top-inner {
    width: 44px;
    height: 44px;
  }
  .top-image {
    width: 44px;
    height: 44px;
  }
  .top-text {
    font-size: 10px;
  }
  .single-product-image {
    width: 100%;
  }
  .single-product-top {
    gap: 110px;
    padding-top: 120px;
  }
  .footer-enquiry-section-btn {
    padding: 12px 16px;
    border-radius: 30px;
  }
  .footer-enquiry-section-btn .button-text {
    font-size: 10px;
    line-height: 1.5;
    margin: 0 8px;
    padding: 8px 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .pl-32 {
    margin-left: 0px;
  }
  .footer-enquiry-heading-extra {
    padding: 25px;
    margin: 41px 16px;
    text-align: center;
    margin-inline: unset;
  }
  .footer-enquiry-heading-parent {
    padding: 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-enquiry-section-btn {
    margin: 70px 16px 0px;
  }
  .top-sm-16 {
    top: 16px !important;
  }
  .nh-parent {
    margin: 0px 16px;
  }
  .all-post-column {
    display: grid;
    gap: 32px 40px;
    grid-template-columns: repeat(2, 1fr);
  }
  .gap-sm-16 {
    gap: 16px;
  }
  .gap-sm-32 {
    gap: 32px;
  }
  .nh-container,
  .woocommerce-page,
  .nh-container-secondary {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0px auto;
  }
  .footer-links-container {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    gap: 40px;
  }
  .nh-footer-bottom,
  .nh-footer-top {
    padding: 60px 40px;
  }
  /** Sidebar **/
  .noahs-common-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .noahs-common-sidebar {
    width: 100%;
  }
  .care-card-container {
    row-gap: 24px;
  }
  .care-bottom-right {
    margin-left: 0px;
  }
  .pet-img {
    width: 100%;
  }

  .footer_column_group {
    grid-template-columns: repeat(3, 1fr);
  }
  .lab-img {
    width: 100%;
    border-radius: 8px;
  }
  .clinical-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .mega-menu {
    padding: 136px 32px 100px;
  }
  .feature-slide-right {
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
  }
  .feature-slide-img {
    border-radius: 0px 0px 0px 0px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nh-parent {
    margin: 0px 20px;
  }

  .nh-footer-bottom,
  .nh-footer-top {
    padding: 60px 80px;
  }

  .service-img {
    object-fit: cover;
    width: 460px;
    height: 459px;
  }
  .service-spacer {
    width: 460px;
    height: 459px;
  }
  .care-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .feature-slider .swiper-slide {
    padding: 24px 32px;
  }
  .feature-slide-img {
    border-radius: 0px 0px 0px 0px;
  }
  .feature-slide-left {
    width: 60%;
    padding: 0;
    padding-right: 32px;
    padding-left: 32px;
  }
  .column-section {
    padding-bottom: 80px;
    gap: 87px;
  }
  .pet-img {
    width: 100%;
  }
  .clinical-service-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1200px) and (max-width: 1420px) {
  .nav-item {
    color: var(--text);
    font-size: 14px;
  }
  .desktop-nav ul {
    gap: 16px;
  }
}

@media (min-width: 1200px) and (max-width: 1595px) {
  .nh-parent {
    margin: 0px 20px;
  }
}
