/* @font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-VariableFont_wdth\,wght.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/NotoSans-Italic-VariableFont_wdth\,wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/static/NotoSans_Condensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/static/NotoSans_Condensed-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/static/NotoSans_Condensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans', sans-serif;
  /* user-select: none; */
  /* transition: all 1s ease-in-out; */
}

/* Global Font Settings */
body,
html {
  width: 100%;
  height: 100%;
  /* display: flex;
  flex-direction: column;
  font-family: 'Noto Sans', sans-serif; */
}
button, a{
  user-select: auto !important;
}
body {
  overflow-x: hidden;
}

article {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.dialog-off-canvas-main-canvas {
  display: flex;
  flex-direction: column;
  height: 100%;

}

main {
  flex: 1;
}

.text-spaced {
  letter-spacing: 2px;
  /* Add the letter space */
  word-spacing: 5px;
  /* Add the word space */
}

/* Theme Color */
:root {
  --themecolor: #07294e;
  /* --headerbtn: #b0510f; */
  --headerbtn: #8B0C15;
  --headerbtn2: #00a336;
  --orangeBlurColor: #b0510f
}


/* Headings */
h1 {
  font-weight: 700;
  /* Bold */
  font-size: 32px;
}

h2 {
  font-weight: 600;
  /* Semi-Bold */
  font-size: 28px;

}

h3 {
  font-weight: 400;
  /* Regular */
  font-size: 24px;

}

h4 {
  font-weight: 400;
  /* Regular */
  font-size: 20px;

}

h5 {
  font-weight: 400;
  /* Regular */
  font-size: 18px;

}

h6 {
  font-weight: 400;
  /* Regular */
  font-size: 16px;

}

/* Paragraphs */
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;

}



a {
  text-decoration: none;

}

/* Strong (Bold Text) */
strong {
  font-weight: 700;

  /* Bold */
}

/* Emphasized (Italic Text) */
em {
  font-style: italic;

}



.container-box {
  width: 100%;
  /* max-width: 1600px; */
  /* Maximum width for large screens */
  margin: 0 auto;
  /* Centers the container */
  padding: 0 2rem;
  /* Adds some space on the left and right */
}

/* Links */
a {
  font-weight: 400;
  text-decoration: none;
  color: #007bff;

  /* Default link color */
}

a:hover {
  text-decoration: underline;
}

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

.borderClass {
  border: 1px solid rgba(183, 222, 223, 1);
}

/* Header Css Start */
.headerToolBar {
  background-color: var(--themecolor);
  padding: 6px 0;
}

.headerToolBar ul.toolBarList {
  list-style: none;
  margin: 0;
  padding: 5px;
}

.headerToolBar ul.toolBarList li {
  list-style: none;
  padding: 0px 10px;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;
}

.headerToolBar ul.toolBarList li a {
  color: #fff;
  font-size: 12px;
}

.headerToolBar ul.toolBarList li select.languageSelectBox {
  padding: 4px;
  font-size: 12px;
  border-radius: 5px;
}

.headerToolBar ul.toolBarList li a.switcherForThemeColor {
  font-size: 22px;
}

.headerToolBar ul.toolBarList li a.sitemap {
  font-size: 22px;
}

.headerToolBar ul.toolBarList li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #fff;
  right: 0;
  /* Ensures it appears at the right side */
}

.allindialogosSection {
  max-width: 85px;
  width: 100%;
}

.allindialogosSectionText {
  max-width: 600px;
  width: 100%;
  padding-left: 12px;
}

.allindialogosSection img {
  width: 100%;
  /* Makes the image take full width of its container */
  max-width: 100%;
  /* Limits the image size */
  height: auto;
  /* Maintains aspect ratio */
  display: block;
  /* Removes extra space below inline images */
}

.healthyFamilyLogo {
  max-width: 300px;
}

/* Banner section */
.homePageBannerSlideImage {
  min-height: 30vh;
  max-height: 70vh;
  height: 70vh;
  width: 100%;
  position: relative;

}

.homePageBannerSlideImage img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* Ensures image maintains aspect ratio */
}

.videoClicker {
  position: absolute;
  z-index: 123;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoClicker .video-area {
  height: 100%;
}

.videoClicker a.play-btn {
  display: inline-block;
  width: 70px;
  height: 70px;
  background: #07294ead;
  border-radius: 50%;
  line-height: 70px;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.videoClicker a.play-btn i {
  color: #fff;
}

.videoClicker .ripple {
  position: relative;
  text-decoration: none;
  color: #fff;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  animation: ripple 3s linear infinite;
  --ripple-color: rgba(219, 248, 245, 0.3);
  /* Default to white */
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 var(--ripple-color), 0 0 0 5px var(--ripple-color),
      0 0 0 10px var(--ripple-color);
  }

  50% {
    box-shadow: 0 0 0 15px var(--ripple-color), 0 0 0 25px var(--ripple-color),
      0 0 0 35px var(--ripple-color);
  }

  100% {
    box-shadow: 0 0 0 30px rgba(0, 0, 0, 0), 0 0 0 40px rgba(0, 0, 0, 0),
      0 0 0 50px rgba(0, 0, 0, 0);
  }
}

.nextPausePreSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -124%);
  z-index: 1;
  background-color: var(--headerbtn) !important;
}

.swiper-button-prev {
  position: relative !important;
  padding: 2px 10px !important;
  height: 100% !important;
  color: #fff !important;
  inset: unset !important;
  margin: 0 !important;
}

.swiper-button-next {
  position: relative !important;
  padding: 2px 10px !important;
  height: 100% !important;
  color: #fff !important;
  inset: unset !important;
  margin: 0 !important;
}

.swiper-button-pause {
  position: relative;
  padding: 2px 10px;
  height: 100%;
  color: #fff;
  inset: unset;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  margin: 0;
  cursor: pointer;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

/* Important Updates */
.importantUpdates {
  background-color: #f2f2f2;
  display: flex;
  /* justify-content: center; */
}

h4.importantUpdatesHeading {
  font-weight: 400;
  font-size: 16px;
  line-height: 18.75px;
}

p.NewsText {
  font-weight: 400;
  font-size: 16px;
  line-height: 18.75px;
}

.importantNews {
  position: relative;
  width: 100%;
  display: flex;
  background-color: #1a5985;
}

.newsTicker {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: .5rem 0;
}

/* Left Label with Triangle */
.newsLabel {
  background: var(--headerbtn);
  color: white;
  padding: 10px 1rem;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  min-width: 164px;
  
}

/* .newsLabel::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 15px solid var(--headerbtn);
  z-index: 123;
} */

/* Marquee Wrapper */
.marqueeWrapper {
  /* white-space: nowrap; */
  overflow: hidden;
  flex: 1;
  /* margin-left: 10px; */
  display: flex;
  position: relative;
  width: 100%;
}

.marqueeContent {
  display: flex;
  min-width: 100%;
  animation: marquee 15s linear infinite;
}

.marqueeContent a {
  flex-grow: 1;
  font-size: 13px;
  width: 100%;
  margin: 0;
  white-space: nowrap;
  color: #000;
}

.marqueeContent a:after {
  content: "|";
  padding: 0 12px;
}

.marqueeContent a:last-child::after {
  content: "";
  display: block;
  /* Ensures the pseudo-element takes up space if necessary */
  padding: 0;
  /* Removes padding */
  /* Other potential styles like border or margin */
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-80%);
  }
}

.marqueeContent:hover {
  animation-play-state: paused;
}

/* Pause Button */
.pauseBtn {
  background: var(--headerbtn);
  color: white;
  border: none;
  padding: 4px 11px;
  cursor: pointer;
  /* margin-left: 10px; */
  border-radius: 25px;
  z-index: 123;
  position: relative;
}

.pauseBtn i {
  color: #fff;
}

.pauseBtn:focus {
  outline: none;
}

/* About and Ministry section */
.aboutSection h4.homePageSubHeading {
  font-weight: 700;
  font-size: 18px;
  padding: 10px 0px;
  /* padding-bottom: 14px; */
}

.aboutSection p.homePageSubContent {
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  margin: 0;
  padding-bottom: 15px;
}

.readMoreBtn {
  padding: 8px 15px;
  font-weight: 700;
  font-size: 12px;
  background-color: var(--themecolor);
  color: #fff;
  border-radius: 25px;
}

/* About and Ministry Section */
.ministrySection {
  background-color: #e6edf2;
  padding: 10px 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.ministrySection.ministryBgSection {
  background: #f7f7f7;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.ministrySection h4.homePageSubHeading {
  font-weight: 700;
  font-size: 18px;
  line-height: 21.09px;
  margin: 0;
}

.ministrySection .headingSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ministrySection .viewAllBtn {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
}

.ministrySection .aboutImageSection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  padding: 0 8px;
  border-radius: 5px;
}

.ministrySection .aboutImageSection>div {
  flex: 0 1 calc(33.333% - 3rem);
  max-width: calc(33.333% - 3rem);
}

.ministrySection .aboutImageSection .imageWithHeadingSection .ministryHead p {
  font-weight: 400;
  font-size: 14px;
  margin: 0;
}

.ministrySection .aboutImageSection .imageWithHeadingSection .ministryHead h5 {
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

.ministrySection .aboutImageSection .imageWithHeadingSection {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #b7dedf; */
  /* padding: 8px 0px; */
  border: 1px solid #80808038;
  min-height: 10rem;
  border-radius: 10px;
}

.mini-desig {
  font-size: 16px;
}

.ministrySection .aboutImageSection .imageWithHeadingSection:nth-last-child(-n + 2) {
  /* border-bottom: none; */
}

.ministrySection .aboutImageSection .imageWithHeadingSection .ministryHead {
  padding-left: 12px;
}

.ministrySection .aboutImageSection .imageWithHeadingSection .ministryImage img {
  border: 1px solid #b7dedf;
  padding: 2px;
  border-radius: 10px;
  width: 175px !important;
}

/* Total Graph Section */
.totalGraphSection {
  background: #f6f6f6;
}

.iconSection {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.arrowRightUpIcon {
  width: 15px;
}

.iconTotalOpd {
  width: 25px;
}

.showGraphSection {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.minister-font {
  font-size: 16px;
}

.showGraphSection .textSection h5 {
  font-weight: 600;
  font-size: 26px;
  margin: 0;
  color: var(--headerbtn);
}

.showGraphSection .textSection p {
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
}

.graphImage img {
  mix-blend-mode: darken;
}

.graphSection {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #000;
  min-width: 280px;
  width: auto;
  max-width: 400px;
}

/* News Section */
.noticeOrdersCircularSection {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 12px 12px;
  overflow: hidden;
}

.newsSection nav .newsTabs button {
  border: 1px solid #000;
  padding: 5px 20px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 25px;
  color: #000;
  background-color: #ddd;
}

.newsSection nav .newsTabs button.active {
  background-color: var(--headerbtn);
  color: #fff;
  position: relative;
  border: 1px solid var(--headerbtn);
}

.newsSection nav .newsTabs button.active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0) rotate(-0deg);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--headerbtn);
  display: flex;
  justify-content: center;
  align-items: center;
}

.newsSection .viewAllBtn {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
}

.newsDateSection {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  background-color: rgba(247, 247, 247, 1);
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0px 1px 0px 0px #c0b8b8;
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 12px;
}

.newsMainHeading {
  padding: 0 12px;
}

.dateSection p {
  font-weight: 400;
  font-size: 11px;
  margin: 0;
  text-align: center;
}

.dateSection p.highLightedDate {
  background: var(--themecolor);
  padding: 5px 8px;
  margin-bottom: 2px;
  font-weight: 700;
  color: #fff;
}

.newsMainHeading a {
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: Auto;
  text-decoration-skip-ink: auto;
  /* color: rgba(0, 0, 0, 1); */
  color: rgb(7, 41, 78);
  ;
}

.newsTabsSectionMain {
  height: 100%;
  overflow: hidden;
  position: relative;
  overflow-y: scroll;
  padding: 10px 0;
  min-height: 300px;
  max-height: 320px;
  padding-right: 10px;
}

.marquee {
  display: flex;
  flex-direction: column;
  /* padding: 0 6px; */
  animation: verticalMarquee 15s linear infinite;
}

/* Infinite Scroll Effect */
@keyframes verticalMarquee {
  from {
    transform: translateY(40%);
  }

  to {
    transform: translateY(-100%);
  }
}

.marquee:hover {
  animation-play-state: paused;
}

/* Scrollbar */
.newsTabsSectionMain::-webkit-scrollbar {
  width: 5px;
}

.newsTabsSectionMain::-webkit-scrollbar-track {
  background: #eee;
}

.newsTabsSectionMain::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

.patientSection {
  border: 1px solid #000;
  border-radius: 6px;
  padding: 12px 12px;
}

.patientSection h4.homePageSubHeading {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.gridPatientSection {
  display: grid;
  grid-template-columns: repeat(3, 0.5fr);
  gap: 12px;
}

.gridPatientSection a.active .serviceIcon {
  /* background-color: rgba(27, 126, 224, 1); */
  background-color: var(--themecolor);
}

.gridPatientSection a p {
  color: #000;
}

.gridPatientSection .servicesSection {
  display: flex;
  flex-direction: column;
}

.gridPatientSection .servicesSection .serviceIcon {
  min-width: 95px;
  max-width: 115px;
  border: 1px solid rgb(79 86 86);
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 6px;
  min-height: 105px;
  max-height: 155px;
}

.gridPatientSection .servicesSection .serviceIcon img {
  min-width: 50px;
  width: 70px;
}

.servicesSection p.patientServicesText {
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  margin: 0;
  padding: 8px 0;
  line-height: 18px;
}

.servicesSection p.patientServicesText a {
  color: #000;
}

.ImportantAnnouncement h4.homePageSubHeading {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.noticeOrdersCircularSection .viewAllBtn {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 7px;
  background-color: #fff;
}

.importantNewsSection .newsDateSection .dateSection p.highLightedDate {
  background: var(--themecolor);
  padding: 4px 14px;
  margin-bottom: 0px;
  font-weight: 700;
  color: #fff;
}

.importantNewsSection .newsDateSection .dateSection {
  border: 1px solid var(--themecolor);
  border-radius: 4px;
}

.importantNewsSection .newsDateSection {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding: 10px 0px;
  border-radius: 0px;
  flex-shrink: 0;
  width: 100%;
  margin-bottom: 12px;
  background-color: transparent;
  box-shadow: 0px 0px 0px 0px #c0b8b8;
}

.importantNewsSection .newsMainHeading {
  padding: 0 12px;
}

.importantNewsSection {
  /* Adjust height as needed */
  overflow: hidden;
  /* Hide overflow */
  position: relative;
  height: 100%;
  overflow: hidden;
  position: relative;
  overflow-y: scroll;
  padding: 10px 0;
  min-height: 300px;
  max-height: 320px;
}

/* Scrollbar */
.importantNewsSection::-webkit-scrollbar {
  width: 5px;
}

.importantNewsSection::-webkit-scrollbar-track {
  background: #eee;
}

.importantNewsSection::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* formsAndDownloadList */
.formsAndDownloadList {

  background-image: url("/themes/custom/aiims_bilaspur/images/banner_section.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  /* Ensures text is visible */
  padding: 20px;
}

.formsAndDownloadList .formDownloadIcon {
  min-width: 100px;
  background-color: #fff;
  border-radius: 50%;
  min-height: 115px;
  max-width: 140px;
  max-height: 213px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

.gridSectionForFormDownload {
  display: grid;
  grid-template-columns: repeat(4, 2fr);
  gap: 12px;
}

.formsAndDownloadList .formDownload {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.formsAndDownloadList .formDownload p {
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  margin: 0;
  min-width: 99px;
  max-width: 115px;
  line-height: 18px;
  padding-top: 5px;
}

.formsAndDownloadList .formDownload p a {
  color: #fff;
}

.socialMediaPhotoGallerySection {
  /* border: 1px solid rgba(225, 225, 225, 1); */
  padding: 2rem .87rem 1rem .87rem !important;
}

.socialMediaPhotoGallerySection h4.homePageSubHeading {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.socialIconTabs {
  padding: 2px 8px;
  border: none;
  margin-right: 12px;
  border-radius: 6px;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  color: #000;
  background-color: rgba(217, 217, 217, 1);
}

.socialIconTabs.active {
  color: #fff;
}

.socialIconTabs.twitter.active {
  background: rgb(13, 13, 14);
  color: #fff;
}

.socialIconTabs.instagram.active {
  filter: brightness(1.2);
  background: linear-gradient(45deg,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5);
}

.socialIconTabs.youtube.active {
  background-color: red;
  /* Darker Red */
}

.socialIconTabs.facebook.active {
  background-color: #125ab6;
  /* Darker Red */
}

.socialMedia {
  border: 1px solid rgba(201, 201, 201, 1);
  border-radius: 6px;
}

/* second section social Media */
.socialMediaSecondSection {
  background: var(--themecolor);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 15px;
  border-radius: 8px;
}

.socialContentWidget {
  min-height: 250px;
  max-height: 300px;
  overflow-y: scroll;
}

.socialContentWidget::-webkit-scrollbar {
  width: 5px;
}

.socialContentWidget::-webkit-scrollbar-track {
  background: #eee;
}

.socialContentWidget::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

.socialMediaSecondSection .iconWithTextSection {
  background-color: #fff;
  min-width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* min-height: 90px;
  max-height: 140px; */
  min-height: 190px;
  max-height: 240px;
  border-radius: 8px;
}

.socialMediaSecondSection .iconWithTextSection .iconSectionSocialSecond {
  min-width: 40px;
  max-width: 70px;
}

.socialMediaSecondSection .iconWithTextSection p {
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  padding-top: 7px;
  color: #000;
}

.socialMediaSecondSection a:hover {
  transform: scale(1.03);
  /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  color: #000;
}


.photoGallerySection button.photogalleryBtn {
  font-size: 16px;
  background: transparent;
  position: relative;
  margin-right: 14px;
  border: 1px solid #ddd;
  padding: 6px 28px;
  border-radius: 25px;
  color: var(--themecolor);
}

.photoGallerySection button.photogalleryBtn.active {
  font-weight: 700;
  background: var(--headerbtn);
  color: #fff;
}

.photoGallerySection button.photogalleryBtn.active::after {
  content: "";
  position: absolute;
  width: 100%;
  /* Full-width underline */
  height: 2px;

  bottom: -2px;
  /* Position just below the text */
  left: 0;
  border-radius: 2px;
}

.viewAllPhotoGallery .viewAllBtn {
  padding: 7px 17px;
  background: rgba(251, 172, 27, 1);
  color: #000;
  font-size: 12px;
  border-radius: 4px;
}

.photoGalleryImage {
  min-height: 400px;
  max-height: 400px;
  /* min-width: 200px; */
  min-width: 100%;
  max-width: 400px;
  overflow: hidden;
}

.photoGalleryImage video {
  height: 380px;
  width: 100%;
  object-fit: cover;
}

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

.playPauseSection .active {
  background-color: #07294e;

}

.pauseBtnClient .swiperbuttonpause {
  padding: 0px 8px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}


.playPauseSection {
  background-color: var(--headerbtn);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}


.ClientSlider-Pagination .swiper-button-prev,
.ClientSlider-Pagination .swiper-button-next {
  color: #fff;

}

#clientsLogoSlider .swiper-slide {
  min-width: 190px;
  max-width: 250px;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
  aspect-ratio: 3 / 1;
  border-radius: 15px;
}

/* Importants Link */
.clientsSlider h4.homePageSubHeading {
  font-weight: 700;
  font-size: 26px;
  margin: 0;
  text-align: center;
  padding-bottom: 15px;
}

/* Footer css */
footer {
  background: var(--themecolor);
  padding-top: 20px;
  background: linear-gradient(var(--themecolor), var(--themecolor)),
    url("/themes/custom/aiims_bilaspur/images/footer.png");
  /* Add your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.customCounterSection{
    background: var(--themecolor);
  padding: 2.5rem 0;
  background: linear-gradient(var(--themecolor), var(--themecolor)),
    url("/themes/custom/aiims_bilaspur/images/footer.png");
  /* Add your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;

}
.button-reveal{
  background-color: #fff;
  padding: .8rem .5rem;
  border-radius: 5px;
  color: #000;
}
.counter.counter-small{
  font-size: 24px !important;
  font-weight: bold;
  line-height: 2;
}
.counter.counter-small + h5{
  font-size: 16px !important;
}
footer .borderClassFooter {
  border-bottom: 1px solid #fff;
}

footer .footerSubHead {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  padding-bottom: 12px;
  line-height: 25px;
}

footer .contactMap {
  height: 100%;
}

footer .contactMap iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

footer .contactDetails {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin: 0;
}

footer .contactDetails span {
  padding-right: 12px;
}

footer .otherAiims ul {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 12px;
}

footer .otherAiims ul li {
  list-style: none;
}

footer .otherAiims ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

footer .quickLinks ul {
  padding: 0;
  margin: 0;
}

footer .quickLinks ul li {
  list-style: none;
}

footer .quickLinks ul li a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

footer .homePageSubHeadingFooter {
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  color: #fff;
  padding-bottom: 10px;
}

footer .lastUpdateVisitor {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
}

footer .lastUpdateVisitor p {
  font-weight: 100;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding-top: 12px;
  padding-bottom: 10px;
  /* text-wrap: nowrap; */
}

footer .w3sSection {
  display: flex;
  justify-content: center;
}

footer .w3chtmlImage,
footer .w3ccssImage {
  max-width: 90px;
  min-width: 50px;
  min-height: 50px;
  max-height: 100px;
  margin-right: 6px;
}

footer .lastVisitorUpdate {
  display: flex;
  justify-content: center;
  column-gap: 12px;
}

footer .copyrightSection p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  margin: 0;
  padding: 15px 0;
}

footer .fontWeightFooter {
  font-weight: 700;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 0px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 0px;
}

.Logo-Container h2 {
  color: var(--themecolor);
}

.eSanjeevaniBtn {
  background-color: var(--headerbtn) !important;
}

.RosterBtn {
  background-color: var(--headerbtn) !important;
}

.RegistrationBtn {
  background-color: var(--headerbtn2) !important;
}

ul.buttonGroup li a {
  width: 80%;
  border-radius: 15px;
  font-size: 14px;
}

.list-none {
  list-style: none;
}

.toolbarSection .CallIcon {
  background-color: var(--headerbtn);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 25px;
}



.fs-14 {
  font-size: 14px;
}

.switcherForThemeColor {
  text-decoration: none !important;
}

.switcherForThemeColor i {
  border-radius: 25px !important;
}

.accessibility .lightMode,
.accessibility .darkMode,
.accessibility .greyMode {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 25px;
}

.accessibility .lightMode {
  background-color: #fff;
}

.accessibility .darkMode {
  background-color: #000;
}

.accessibility .greyMode {
  background-color: #545454;
}

.buttonGroup li a {
  text-decoration: none;
}

.LatestNews-Circle {
  background-color: var(--headerbtn);
  padding: 5px;
  border-radius: 50px;
  width: 10px;
  display: inline-block;
  height: 10px;
  margin-right: 10px;
  margin-left: 44px;
}

.ViewAllBtn {
  border: 1px solid var(--themecolor);
  color: var(--themecolor);
  font-size: 14px;
  border-radius: 25px;
  text-decoration: none !important;
  /* width: 80px;
  height: 28px; */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: .5rem;
  width: 117px;
}

.ClientSlider-Pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.ClientSlider-Pagination .swiper-button-prev,
.ClientSlider-Pagination .swiper-button-next {
  background: transparent;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 25px;
}

.noticeOrdersCircularSection .ImportantAnnouncement {
  background: #e6edf2;
}

.clientsSlider {
  background: #f6f6f6;
}

footer .contactDetails i {
  font-size: 28px;
}

.importantNewsSection {
  padding: 6px;

}

.noticeOrdersCircularSection {
  background: #f2f2f2;
}

.Logo-Container h2 {
  font-size: 1.2rem;
}

.Logo-Container span {
  font-size: 1.12rem;
}

#photoGallerySwipers .swiper-slide .borderRadiusForPhotoGallery {
  border-radius: 15px;
}

.photoGallerySetImage img {
  width: 100%;
  height: 100%;
}

#clientsLogoSlider img {
  width: 100%;
  height: 100%;
}

/* contact us start */
.contactUsPage h5.innerPagesTitle {
  margin: 0;
  position: relative;
  padding-bottom: 0px;
  margin: auto;
  margin-bottom: 12px;
  display: inline-block;
  text-align: center;
  /* left: 50%;
  top: 0%;
  transform: translate(-50%, -0%); */
}

.contactUsPage p {
  margin: 0;
  padding-bottom: 8px;
  font-size: 15px;
}

.contactUsPage ul {
  list-style: decimal;
  padding-bottom: 8px;
  margin: 0;
}

.contactUsPage ul li {
  font-size: 15px;
}

.contactUsPage p span {
  font-weight: 700;
  font-size: 16px;
}

.contactUsPage h5.innerPagesTitle span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #1a2f47f0;
}

.contactUsPage h5.innerPagesTitle span::before,
.contactUsPage h5.innerPagesTitle span::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  /* Adjust the line thickness */
  background-color: rgba(26, 47, 71, 0.94);
  /* Line color */
  margin: 0 10px;
  /* Space between lines and the * */
}

.contactUsPage .contactUsMap {
  width: 100%;
  height: 100%;
}

.contactUsPage .contactUsMap iframe {
  box-shadow: 0px 0px 4px 0px #000;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* contact us end */
/* Sitemap start */

.sitemap-item ul li a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.sitemap-item ul li {
  margin-bottom: 12px;
}

.sitemap-item ul li a {
  font-size: 16px;
  font-weight: 800;
}

.sitemap-item ul li,
.sitemap-item ul li ul li ul li {
  list-style: circle;

}

.sitemap-item ul li ul li,
.sitemap-item ul li ul li ul li ul li {
  list-style: square;
  margin-bottom: 0px;

}

.sitemap-item ul li a .externalLinksIcon {
  display: none;
}

.sitemap-item ul li ul li a,
.sitemap-item ul li ul li ul li ul li a {
  list-style: square;
  font-size: 14px;
  font-weight: 500;
}

/* about us start */
.innerPagesBannerWithBreadCrumb {
  position: relative;
  background: #162f6a; 
  overflow: hidden;
  color: #fff;
}

.innerPagesBannerWithBreadCrumb .banner-img {
  width: 100%;
  height: auto;
  min-height: 60px; 
  display: block;
}

.innerPagesBannerWithBreadCrumb .bannerOverlay {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgb(22, 47, 106) 20%, transparent 70%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.innerPagesBannerWithBreadCrumb .innerbox {
  position: absolute;
  bottom: 25%;
  width: 85%;
  z-index: 2; 
  color: #fff;
}

@media (max-width: 474.5px) {
  .innerPagesBannerWithBreadCrumb .innerbox {
    bottom: 8px;
  }
}

@media (max-width: 767.5px) {
  .innerPagesBannerWithBreadCrumb .innerbox {
    left: 20px;
  }
}

/* Breadcrumb styling */
.innerPagesBannerWithBreadCrumb .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.innerPagesBannerWithBreadCrumb .breadcrumb li {
  position: relative;
  margin-right: 8px;
  color: #fff;
}

.innerPagesBannerWithBreadCrumb .breadcrumb li a,
.innerPagesBannerWithBreadCrumb .breadcrumb li span {
  color: #fff;
  text-decoration: none;
}

.innerPagesBannerWithBreadCrumb .breadcrumb li.active a,
.innerPagesBannerWithBreadCrumb .breadcrumb li.active span {
  font-weight: bold;
  text-decoration: underline;
}

.innerPagesBannerWithBreadCrumb .breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: #fff;
}

.InnerpagesContent h5.innerPagesTitle {
  position: relative;
  padding-bottom: 0px;
  margin: auto;
  margin-bottom: 12px;
  display: inline-block;
  text-align: center;
  font-size: 25px;
}

h5.innerPagesTitle span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  color: #1a2f47f0;
}

h5.innerPagesTitle span::before,
h5.innerPagesTitle span::after {
  content: "";
  flex-grow: 1;
  height: 2px;
  /* Adjust the line thickness */
  background-color: rgba(26, 47, 71, 0.94);
  /* Line color */
  margin: 0 10px;
  /* Space between lines and the * */
}

.InnerpagesContent p.innerPagesContent {
  font-size: 14px;
  margin: 0;
  padding-bottom: 12px;
  font-weight: 500;
  line-height: 18px;
  text-align: justify;
}



.under-construction-main {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.oops-text {
  font-size: 100px;
  text-align: center;
  font-weight: bold;
  /* color: #b0510f; */
  color: var(--headerbtn);
}

.not-found {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  color: #01244a;
}

.error-msg {
  text-align: center;
}

.back-home {
  margin-bottom: 50px;
}

.back-home {
  background-image: linear-gradient(to right,
      #01244a 0%,
      #a2a3fc 51%,
      #1026ad 100%);
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  display: block;
}

.back-home {
  background-color: #e11b1b;
  border-radius: 24px;
  color: #fff !important;
  padding: 10px 25px;
  margin-top: 20px;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*  accessible code start */
body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.container {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #003366;
  text-align: center;
}

p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.contact {
  font-weight: bold;
  color: #0056b3;
  text-decoration: none;
}

.contact:hover {
  text-decoration: underline;
}

/*  accessible code end */

/*  visitor css  */

.visitor-section {
  width: 20%;
  /* Ensures it takes 20% of the footer */
  text-align: right;
}

.item-visitor {
  background: #3c606e;
  color: #222;
  padding: 0px 10px;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
}

.visitor-digit {
  padding: 0 3px;
  font-size: 18px;
  font-weight: bold;
  color: white;
}

@media (max-width: 768px) {
  .visitor-section {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }
}




/* General Form Layout & Containers (already streamlined) */

.thank-you-container {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
}

.thank-you-icon {
  /* Set dimensions for the div to hold the background image */
  width: 72px;
  /* Matching the SVG's width */
  height: 72px;
  /* Matching the SVG's height */
  margin: 0 auto 15px auto;
  /* Center the icon, add margin-bottom for mb-3 */
  /* background-color: #f0f0f0; /* Optional: for debugging / visibility */

  /* Add the SVG as a background image */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' fill='%2328a745' class='bi bi-check-circle' viewBox='0 0 16 16'%3e%3cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM6.97 10.03a.75.75 0 0 0 1.07 0l3.992-3.992a.75.75 0 1 0-1.06-1.06L7.5 8.439 5.53 6.47a.75.75 0 0 0-1.06 1.06l2.5 2.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  /* Center the SVG within the div */
  background-size: contain;
  /* Ensure the SVG scales within the div */
}


.thank-you-container h2 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.thank-you-container p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Form Elements (Labels, Inputs, Select, Textarea) */

/* General Form Layout & Containers (already streamlined) */
.card-body.complaintForm {
  padding: 0;
}

/* Introduction Text Styles */
.compliantFormText p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  margin-bottom: 10px;
}

.compliantFormText p.noteText {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
}

/* Form Section Styling */
.formSection {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd6d6;
  border-radius: 8px;
  background-color: #f8f9fa;
}

.formSection p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Form Elements (Labels, Inputs, Select, Textarea) */

/* Apply Bootstrap-like column spacing */
.formSection .js-form-item {
  margin-bottom: 15px;
}

.formSection .js-form-item.col-md-6 {
  width: 50%;
  float: left;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.formSection .row.g-3 {
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
}

/* Clearfix for rows */
.formSection .row.g-3::after {
  content: "";
  display: table;
  clear: both;
}

/* Labels */
.complaintForm .formSection label,
legend.captcha__title {
  font-weight: 800;
  font-size: 14px;

  display: block;
  margin-bottom: 5px;
  max-width: 150px;
  width: 100%;
}

#edit-captcha-response--description {
  display: none;
}

fieldset.captcha {
  display: flex;
  justify-content: space-between;
}

fieldset .captcha__element {
  width: 100%;
}

.form-item.js-form-type-textfield.form-item-captcha-response label {
  display: none;
}

.captcha__image-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.formSection .js-form-item {
  display: flex;
}

.formSectio label.js-form-required {
  display: inline-block;
  padding-right: 15px;
  max-width: 150px;
}

.captcha__image-wrapper img {
  display: block;
  max-width: 80%;
  border: none;
  padding: 0;
  margin-bottom: 0;
  max-height: 50px;
}


/* Consolidated Input, Select, Textarea Styles */
.form-text,
.form-email,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-select {
  height: calc(1.5em + .75rem + 2px);
}

/* Consolidated Placeholder Styles */
.form-text::placeholder,
.form-email::placeholder,
.form-textarea::placeholder {
  color: #6c757d;
  opacity: 1;
}

/* Consolidated Focus Styles */
.form-text:focus,
.form-email:focus,
.form-select:focus,
.form-textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25);
}

/* Small text below message field */
.form-text.text-muted {
  font-size: 0.875em;
  color: #6c757d !important;
  margin-top: 5px;
  display: block;
}

/* Flex Utilities (already streamlined) */
.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
}

.gap-2>* {
  margin-right: 0.5rem;
}

.gap-2>*:last-child {
  margin-right: 0;
}

/* Submission Button */
.webform-button--submit.form-submit {
  background-color: #072954;
  font-size: 17px;
  padding: 8px 30px;
  color: #fff;
  border: none;
  border-radius: .25rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}



.webform-button--submit.form-submit:hover {
  background-color: #051c36;
}

/* Move CAPTCHA error message inside form */
div[data-drupal-messages] {
  position: relative !important;
  top: auto !important;
  margin: 15px 0 !important;
}

/* If message is outside form, hide it and show inside */
.formSection+div[data-drupal-messages],
div[data-drupal-messages]+.formSection {
  display: none;
}

/* Show message inside formSection */
.formSection div[data-drupal-messages] {
  display: block !important;
  margin: 0 0 15px 0;
  padding: 10px 15px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
}

.formSection div[role="alert"] {
  color: #721c24;
  font-size: 14px;
}

/* Error Messages */
.formError {
  font-size: 16px;
  color: red;
  margin: 0;
  padding-top: 5px;
}

/* Drupal's default error class for form elements */
.form-item--error-message {
  color: red;
  font-size: 0.875em;
  margin-top: 5px;
}

/* REQUIRED FIELD ASTERISK - CORRECTED FOR AFTER THE WORD */
.js-form-required,
.form-required {
  display: inline-flex;
  /* Use flexbox to align text and asterisk */
  align-items: center;
  /* Vertically center them */
}

.js-form-required:before,
.form-required:before {
  content: none !important;
  /* Ensure the BEFORE asterisk is hidden */
}

.js-form-required:after,
.form-required:after {
  content: '*';
  /* Add the asterisk AFTER the label text */
  color: #dc3545;
  font-weight: bold;
  margin-left: 3px;
  /* Space between label text and asterisk */
  vertical-align: middle;
  /* Align vertically */
}

/*  login page css  */

/* General Form Styling */
.user-login-form {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Form Labels */
.user-login-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

div[data-drupal-messages] a[href*="user/password"] {
  display: none !important;
}

/* Move error messages inside login form */
.user-login-form+div[data-drupal-messages],
div[data-drupal-messages]+.user-login-form {
  display: none;
}

/* Show messages inside form */
.user-login-form div[data-drupal-messages] {
  margin: 0 0 15px 0;
  padding: 10px 15px;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
}

.user-login-form div[role="alert"] {
  color: #721c24;
  font-size: 14px;
}

.user-login-form div[role="alert"] ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Input Fields */
.user-login-form input[type="text"],
.user-login-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.3s ease-in-out;
}

/* Input Field Focus Effect */
.user-login-form input:focus {
  border-color: #007bff;
  outline: none;
}

/* Submit Button */
.user-login-form input[type="submit"] {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
  width: 100%;
  margin-top: 10px;
}

.user-login-form input[type="submit"]:hover {
  background: #0056b3;
}

/* Form Wrapper */
.form-actions {
  text-align: center;
  margin-top: 15px;
}


/*  last updated css */

.backToHomePage {
  padding: 5px 10px;
  background-color: #07294e;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
}

.lastUpdated {
  margin: 0;
  font-size: 16px;
}

.lastUpdated .fontWeightFooter {
  font-weight: 600;
  padding: 0 12px;
}

/* Making sure the wrapper centers the text in the middle of the page */
.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  /* Full height */
}

/*  notice table  */
.notice-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  font-family: Arial, sans-serif;
}

.notice-table thead th {
  background-color: #004080;
  color: #fff;
  text-align: left;
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 8px 8px 0 0;
}

.notice-table tbody tr {
  background: #f9f9f9;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.notice-table tbody tr:hover {
  background: #e6f0ff;
  transform: scale(1.01);
}

.notice-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.notice-table a {
  color: #004080;
  text-decoration: none;
  font-weight: 600;
}

.notice-table a:hover {
  text-decoration: underline;
}

.notice-table time {
  color: #555;
  font-size: 13px;
}

.table th {
  text-align: left;
}

/*  view by page node   */
ul.links.inline {
  background-color: #2f334a;
  /* Blue background */
  color: white;
  /* White text */
  padding: 5px 10px;
  /* Add some padding for better appearance */
  border-radius: 5px;
  /* Optional: Rounded corners */
  display: inline-block;
  /* Ensures it wraps content properly */
  margin-left: 15px;
  margin-top: 12px;
}

ul.links.inline li {
  display: inline;
  /* Keep list items in one line */
  font-weight: bold;
  /* Make text a bit more readable */
}

/*  security policy */

.fontWeightSecurityPolicy {
  font-weight: 600;
}

.securityPolicyContent {
  font-size: 14px;
  line-height: 18px;
}

.documentDetails {
  display: flex;
  flex-wrap: wrap;
}

.documentDetails p {
  font-size: 14px;
  padding-right: 12px;
  margin: 0;
}

.documentDetails svg {
  width: 20px;
  margin-right: 10px;
}

.dateSection .highLightMentionDate {
  background-color: #fff;
  padding: 2px 8px;
}

.photoGallerySwiper p.photosGalleryTitle a {
  text-decoration: underline;
  color: #000;
  font-size: 16px;
  margin: 0;
  padding: 12px 10px;
}

.viewAllPhotoGallery p.videosGalleryTitle {
  margin: 0;
}

.viewAllPhotoGallery p.videosGalleryTitle a {
  text-decoration: underline;
  color: #000;
  font-size: 16px;
  margin: 0;
  padding: 8px;
}

.externalLinksSize {
  font-size: 16px;
}

a.external-link-icon::before {
  content: '';
}

.externalLinksIcon {
  color: #ff0000ab;
  font-size: 11px;
  padding: 0 8px;
}

.backToHomePage:hover {
  color: #fff;
  text-decoration: underline;
}





/* about us  */

.borderRadius {
  border-radius: 50px;
}

.innerPagesHeading {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.innerPagesHeading h2 {
  font-size: 2rem;
  color: #07294e;
  margin: 0;
  text-align: center;
  position: relative;
  display: inline-block;
  margin: auto;
  padding-bottom: 12px;
  word-wrap: break-word;
  width: 100%;
}

.card-heading h2 {
  font-size: 25px;
  color: #070708e1;
  margin: 0;
  text-align: center !important;
  position: relative;
  margin: auto;
  padding-bottom: 6px;
}

.innerPagesHeading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 5%;
  height: 4px;
  /* background-color: #b0510f; */
  background-color: var(--headerbtn);
  border-radius: 12px;
}

.innerPagesContent {
  font-weight: 500;
}

/* table css */
table.table,
table.table tr,
table.table td,
table.table th {
  border: 1px solid #BCBEC0;
  font-size: 14px;
  padding: 4px;
  vertical-align: middle;
}

table.table thead {
  background-color: #07294e;
}

table.table thead th {
  color: #fff;
  border-color: #fff;
  padding-left: 15px;
  font-size: 16px;

}

table.table tbody td {
  padding-left: 15px;
}


/* Missin vision css */
.subSubHead {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}

.missoinSectionHindi,
.missoinSectionEnglish {
  padding-top: 20px;
}

.missoinSectionHindi p,
.missoinSectionEnglish p {
  margin: 0;
  font-size: 18px;

}

.VisionList {
  margin: 0;
}

.VisionList li {
  padding-bottom: 12px;
  font-size: 18px;
}

.misionVisionCards {
  background-color: #fff;
  padding: 30px;
}

.misionVisionCards .card {
  height: 100%;
  background-color: #F4F4F4;
  border: none;
}



/* Timline */
.historyBackgroundSection ul.timeline {
  position: relative;
  list-style-type: none;
  padding-left: 180px;
}

.historyBackgroundSection ul.timeline:before {
  position: absolute;
  display: block;
  left: 142px;
  width: 4px;
  height: 100%;
  border-radius: 4px;
  background-color: #0046FF78;
  content: ' ';
}

.historyBackgroundSection ul.timeline .event {
  position: relative;
  padding: 16px;
  background: white;
  border-radius: 2px;
  /* box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12); */
  padding: 16px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.historyBackgroundSection ul.timeline .event:before {
  display: block;
  position: absolute;
  top: 30px;
  left: -47px;
  width: 20px;
  height: 20px;
  /* border: 0px solid #0f51b200; */
  border-radius: 50%;
  background-color: #0f51b2;
  box-shadow: 0px 0px 5px 3px rgb(15 81 178 / 64%);
  content: ' ';
}

.historyBackgroundSection ul.timeline h3 {
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.historyBackgroundSection ul.timeline .time {
  position: absolute;
  display: block;
  width: 120px;
  top: 26px;
  left: -190px;
  text-align: center;
}

.historyBackgroundSection ul.timeline .time>.glyphicon-time {
  top: 2px;
}


.historyBackgroundSection .time p {
  background-color: #F4F4F4;
  font-size: 14px;
  font-weight: 500;
  border-radius: 14px;
  margin: 0;
  border: 1px solid #000;
  text-transform: capitalize;
  padding: 2px 15px;
}

.historyBackgroundSection .description p {
  font-size: 16px;
  font-weight: 500;
  padding: 0px 15px;
}

.historyBackgroundSection .contentSection {
  background-color: #F4F4F4;
  display: flex;
  padding: 12px;
  margin-bottom: 25px;
  align-items: center;
}

.historyBackgroundSection .contentSection p {
  padding-left: 20px;
  line-height: 28px;
  font-size: 20px;
}

.historyBackgroundSection .contentSection p span.invertComma {

  font-size: 38px;
}

.historyBackgroundSection .contentSection img.his-back-img {
  border: 10px solid #fff;
}


.pdfViewIframe {

  min-height: 500px;

  max-height: 650px;

  height: 100%;

  width: 100%;

}

.pdfViewIframe iframe {

  height: 550px;

  width: 100%;

}

.pdfViewIframe p {

  font-size: 19px;

  padding: 12px 0;

  font-weight: 700;

}



.helplineNumber .card-content {

  padding-left: 12px;

}

.helplineNumber .card-content p {

  margin: 0;

  font-size: 16px;

}

.helplineNumber .card-content p:first-child {

  font-weight: 700;

}

.helplineNumber .card-body {

  display: flex;

  align-items: center;

}

.helplineNumber .card-icon {

  width: 50px;

  height: 50px;

  display: flex;

  justify-content: center;

  align-items: center;

  background-color: #07294e;

  border-radius: 50%;

}

.helplineNumber .cardBgColor {

  background-color: #D7D7D7;

}



.detailsOdCommitteeCards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detailsOdCommitteeCards .card {
  background-color: #F4F4F4;
  max-height: 200px;
  min-height: 180px;
  border: none;
}

.detailsOdCommitteeCards .card h6 {
  font-size: 16px;
  font-weight: 900;
  margin: 0;
  padding-bottom: 6px;
}

.committeeTabContent h3 {
  margin: 0;
  font-size: 20px;
  padding-bottom: 15px;
  font-weight: 700;
}

.committeeTabContent .nav-pills .nav-link.active,
.committeeTabContent .nav-pills .show>.nav-link {
  color: #fff;
  background: #07294F;

}

.standingCommitteeRow .nav-item .nav-link {
  padding: 12px 20px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  color: #fff;
  background: #07294F;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
  word-wrap: break-word;
}

.standingCommitteeRow .nav-item .nav-link.active {
  background-color: #8b2c33;
  color: white;
  position: relative;

}

.standingCommitteeRow .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #8b2c33;
}

.committeeMainCard {
  border-top: 4px solid #07294F;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0px 8px 6px 0px rgba(0, 0, 0, 0.2);
}

.noAvailable {
  text-align: center;
  font-weight: 900;
  font-size: 22px;
}


/* profile card

 */

.profileCardSection {

  position: absolute;

  top: 65px;

  left: -170px;

  border: 17px solid #f4f4f4;

  border-radius: 50%;

  z-index: 3;

  transform: translate(0px, 0px);

}

.profileCardSection img {

  border-radius: 50%;

  min-width: 190px;

  max-width: 200px;

  padding: 6px;

  min-height: 190px;

  max-height: 200px;

  width: 100%;

  height: 100%;

}

.profileCardSection::before {

  content: "";

  position: relative;

}

.profileCardSection::after {

  content: "";

  position: absolute;

  left: 0%;

  top: 0%;

  width: 100%;

  height: 100%;

  border: 4px solid #fff;

  z-index: 2;

  border-radius: 50%;

  filter: drop-shadow(0px 0px 15px #afaeae);

}

.profileCards .card {

  min-height: 700px;

  padding-left: 55px;

  border-radius: 5px;

  padding-top: 40px;

}

.profileCards .card .mainCardHead {

  font-size: 20px;

  font-weight: bold;

  margin: 0;

}

.profileCards .card .cardAddress {

  font-size: 16px;

  margin: 0;

  font-weight: 600;

  padding: 8px 0;

}

.profileCards .card .aboutCard {

  font-size: 16px;

  font-weight: 500;

  padding-top: 12px;
  text-align: justify;


}

/* deatisl card */

.detailsGridCards .card {

  background-color: #F4F4F4;

  max-height: 400px;

  min-height: 180px;

  border: none;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.detailsGridCards .card:hover {
  transform: scale(1.02);
}

.detailsGridCards {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;

}

.detailsGridCards .card h6.cardTitle {

  font-weight: bold;

  font-size: 18px;

  margin: 0;

  padding-bottom: 20px;

}

.detailsGridCards .card p {

  font-size: 16px;

}

.detailsCardMainHeading h3 {

  margin: 0;

  font-size: 20px;

  padding-bottom: 15px;

  font-weight: 700;

}

.w_25_sr {

  width: 100px;

}

.detailsGridCards .cardimage {

  min-width: 50px;

  max-width: 80px;

  width: 100%;

}

.detailsGridCards .cardimage img {

  border-radius: 4px;

}

.detailsGridCards .card h6 {

  font-weight: bold;

  font-size: 16px;

}

.heightSet .card {

  background-color: #F4F4F4;

  max-height: 200px;

  min-height: 158px;

  border: none;

}

.w_16 {
  width: 16px;
}

.standingCommitteeRow table.table,
.standingCommitteeRow table.table tr,
.standingCommitteeRow table.table td,
.standingCommitteeRow table.table th {
  border: 1px solid #BCBEC0;
  font-size: 14px;
  padding: 4px;
  vertical-align: middle;
  line-height: 18px;
  font-weight: 500;
}

.applicationFormLink {
  font-size: 16px;
  font-weight: 600;
  color: #0F51B2;
  display: block;
  text-decoration: underline;
}

.fontWeight {
  font-weight: bold;
}


.w_400 {
  width: 340px;
}

.w_500 {
  width: 450px;
}

.w_260 {
  width: 260px;
}

.w_240 {
  width: 240px;
}


.w_300 {
  width: 150px;
}


.viewFormLink a {
  display: block;
  color: #0F51B2;
  font-size: 18px;
}

.sizeOfFormat {
  font-size: 12px;
}

.viewFormLink {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.externalLink {
  color: #0F51B2;
  text-decoration: underline;
}

.w-60 {
  width: 60px;
}

.w-90 {
  width: 90px;
}

.w-120 {
  width: 120px;
}

.w_75 {
  width: 75px;
}


.headAndArchivebtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
}

.ViewArchive {
  background-color: #07294e;
  color: #fff;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
}

.ViewArchive:hover {
  background-color: #07294e;
  color: #fff;
  font-size: 15px;
  padding: 4px 12px;
  border-radius: 4px;
}



/*  pagination css */
.main-content nav.pager {
  text-align: center;
  margin-top: 20px;
}

.main-content .pager__items {
  display: inline-flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-radius: 0.25rem;
  overflow: hidden;
}

.main-content .pager__item a {
  display: block;
  padding: 2px 10px;
  margin: 0 2px;
  text-decoration: none;
  background-color: #07294e;
  border: 1px solid #07294e;
  color: #fff;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 14px;
}

.main-content .pager__item a:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid #07294e;
}

.main-content .pager__item.is-active a,
.main-content .pager__item.is-active a:hover {
  background-color: #135cace0;
  color: white;
  font-weight: bold;
  pointer-events: none;
  font-size: 14px;
}

.main-content .pager__item--next a,
.main-content .pager__item--last a {
  font-weight: bold;
}

.paginationWrapper {
  display: flex;
  justify-content: end;
}

.dataTables_paginate {
  margin-top: 15px;
  text-align: center;
  display: flex;
  justify-content: end;
}

.dataTables_paginate .paginate_button {
  background-color: #fff;
  color: #000000a8 !important;
  border-radius: 50%;
  padding: 2px 8px;
  max-width: 30px;
  max-height: 30px;
  height: 30px;
  width: 30px;
  display: inline-block;
  margin: 0 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border: 1px solid #d7d7d7;
}

#cpppTable_filter input {
  border: 1px solid #d7d7d7;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

#cpppTable_filter {
  display: inline-block;
}

#edit-submit-procument-archive {
  display: none;
}

.form_select_cat {
  display: inline-block;
  border: 1px solid #ced4da;
  padding: 6px 8px;
  font-size: 14px;
  background: transparent;
  font-weight: 400;
  color: #495057;
  max-width: 268px;
  width: 100%;
  border-radius: 3px;
}

a.no-external-icon-nojs .externalLinksIcon {
  display: none !important;
}

.executive-director-card {
  position: relative;
  /* relative container for absolute link */
}

.executive-director-card .executive-director-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  /* above the content */
  text-decoration: none;
}


.dataTables_paginate .paginate_button.current {
  background-color: #09509d;
  font-weight: 700;
  color: #fff !important;
}

.dataTables_paginate .paginate_button:hover:not(.current) {
  background-color: #004085;
  color: #fff !important;
}


/* Welfare student */

.section-subheading {

  font-size: 20px;

  font-weight: 600;

  margin-bottom: 10px;

  margin: 0;

  padding-bottom: 10px;

}

.section-paragraph {

  font-size: 18px;

  margin-bottom: 0;

  text-align: justify;

}

/* / */

.sportsSection .mySwiper2 .swiper-slide {

  height: 400px;
  /* Main Swiper height */

}

.sportsSection .mySwiper .swiper-slide {

  height: 100px;
  /* Thumbnail Swiper height */

}

.sportsSection .mySwiper .swiper-slide {

  opacity: 0.4;

}

.sportsSection .mySwiper .swiper-slide-thumb-active {

  opacity: 1;

}

.sportsSection .swiper-slide img {

  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;

  border-radius: 8px;

}


/* front */
.formsAndDownloadList .circleColor {
  background-color: #022944;
}

.formsAndDownloadList .circleColor img {
  position: relative;
  z-index: 1;
  width: 100px;
}

.slider-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.formsAndDownloadList .formDownloadIcon {
  min-width: 220px;
  border-radius: 50%;
  min-height: 220px;
  max-width: 270px;
  max-height: 239px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

.animationSection {
  padding-top: 28px;
  transition: transform 0.3s ease-in-out;
}

.animationSection:hover {
  transform: scale(1.05);
}

.animationSection a:hover .slider-thumb::before {
  background: rgba(37, 111, 173, 1);
}

.linksTabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.linksTabs p {
  font-size: 20px;
  color: #fff;
  position: relative;
}

.animationSection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.linksTabs a {
  font-size: 20px;
  color: #fff;
  position: relative;
}

.animationSection a:hover {
  text-decoration: none;
}

.linksTabs a::after {
  content: none;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0%);
  transition: width 0.3s ease, left 0.3s ease;
}

.slider-thumb::before {
  position: absolute;
  content: "";
  left: 50%;
  /* ✅ Needed for horizontal centering */
  top: 50%;
  /* ✅ Needed for vertical centering */
  width: 165px;
  height: 200px;
  background: rgb(157 204 243 / 52%);
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  animation: sliderShape 5s linear infinite;
  -webkit-animation: sliderShape 5s linear infinite;
  display: block;
  z-index: 1;
  transform: translate(-50%, -50%) !important;
}

@keyframes sliderShape {

  0%,
  100% {
    border-radius: 40% 58% 76% 30% / 48% 45% 55% 55%;
    transform: translate(-50%, -50%) rotateZ(0.01deg);
  }

  34% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: translate(-50%, calc(-50% + 5px)) rotateZ(0.01deg);
  }

  50% {
    transform: translate(-50%, -50%) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: translate(-50%, calc(-50% - 3px)) rotateZ(0.01deg);
  }
}

.table-responsive .dataTables_length,
.table-responsive .dataTables_filter {
  display: inline-block;
}

.table-responsive .dataTables_length label {
  display: flex;
  gap: 5px;
  align-items: center;
}

.table-responsive .dataTables_length label select {
  display: inline-block;
  border: 1px solid #ced4da;
  padding: 2px 8px;
  font-size: 18px;
  background: transparent;
  font-weight: 400;
  color: #495057;
  max-width: 268px;
  width: 100%;
  border-radius: 3px;
}

.table-responsive .dataTables_filter {
  float: right;
}

.table-responsive input {
  border: 1px solid #d7d7d7;
  padding: 2px 12px;
  border-radius: 2px;
}

.table-responsive table.table {
  padding-top: 12px;
  margin-top: 1rem !important;
}

/* men */
/* men */
.has-mega {
  position: relative;
}

.navBagColor {
  position: relative;
}

.mega-dropdown {
  /* display: none; */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  background-color: #07294e;
  border-top: 1px solid #ddd;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mega-dropdown .mega-column {
  /* min-width: 200px; */
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.mega-dropdown .mega-column:last-child {
  border-right: none;
}

.mega-dropdown .mega-link,
.mega-dropdown h6 {
  font-weight: 900;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 18px;
  color: #fff;
  text-align: left;
  font-family: 'Noto Sans', sans-serif;
}

.mega-dropdown h6 {
  font-weight: 800;
}

.mega-dropdown p {
  font-weight: 900;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 16px;
  color: #fff;
  text-align: left;
  font-family: 'Noto Sans', sans-serif;
}

.mega-dropdown .mega-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.mega-dropdown ul {
  padding-left: 0;
}

.mega-dropdown ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  /* padding: 10px; */
  font-size: 16px;
  font-weight: 400;
}

.mega-dropdown ul li a:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.grid_template {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* align-items: center; */
  /* justify-items: center; */
  /* gap: 1rem; */
}

.grid_template>*:only-child {
  grid-column: 1 / -1;
  /* span all columns */
  width: 100%;
  justify-self: center;
  /* centers inside the grid */
  align-items: center;
}



@media (max-width: 600px) {
  .grid_template {
    grid-template-columns: 1fr;
  }
}

/*  hostel css paragraph  */

.hostel-aboutCard {
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
}

.event_w_110 {
  width: 110px;
}

.event_w_220 {
  width: 220px;
}

.w_200px {
  width: 200px;
}

.w_500px {
  width: 200px !important;
}

.table_subheading {
  font-size: 18px;
  font-weight: 600px;
}

.studentlistw_50px {
  width: 50px;

}

.studentlistw_200px {
  width: 200px;
}


#youtube-feed {
  height: 800px;
}

.youtubeIframe {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  border-bottom: 2px solid #07294e;
  flex-direction: column;
}

.youtubeIframe iframe {
  width: 100%;
  height: 100%;
}

.youtubeIframe a {
  display: block;
  width: 100%;
}

.youtubeIframe a img {
  width: 100%;
  height: 100%;
}

.youtubeIframe p {
  font-size: 17px;
  padding: 12px 0;
  font-weight: 600;
  margin: 0;
}

.facebookWidegt {
  width: 100%;
  height: 1000px;
  overflow-y: scroll;
}

#socialMediaPhotoGallerySection-facebook .socialContentWidget {
  overflow: hidden;
}

.socialContentWidget {
  min-height: 362px;
  max-height: 380px;
  overflow-y: scroll;
  height: 100%;
}

.clickCardsSection>div:first-child {
  height: 100%;
}


.footerClientLogo .swiper .swiper-slide {
  width: 20%;
  /* or 25%, or whatever suits */
  text-align: center;
  margin: auto 0;
}

.footerClientLogo .swiper-wrapper {
  transition-timing-function: linear;
  /* justify-content: center; */

}

.footerClientLogo .swiper .swiper-slide img {
  width: unset;
  /* or 25%, or whatever suits */
  text-align: center;
}

.scroll-to-top {
  position: fixed;
  bottom: 20%;
  right: 2%;
  width: 45px;
  height: 45px;
  z-index: 109;
}

.scroll-button {
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
  transition: background-color .3s ease;
  width: 100%;
  height: 100%;
  font-size: 26px;
  background-color: #07294e;
}

.scroll-button svg {
  transform: rotate(90deg);
  width: 38px;
}

.height-25 {
  height: 200px;
  padding-bottom: 22px;
}


/*  research section introduction  */

.msgclass {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  border: none;
  display: flex;
  justify-content: center;
  align-content: center;
  min-width: 100px;
  max-width: 190px;
  margin: auto;
  border-radius: 0;
}

.msgclass img {
  border-radius: 0;
  min-width: unset;
  max-width: unset;
  padding: 20px;
  min-height: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
}

.msgclass::after {
  filter: drop-shadow(0px 0px 4px #afaeae);
  border-radius: 0;
}

.profileCards h4.mainCardHead {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.profileCards p.cardAddress {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  padding: 8px 0;
}

.profileCards p.aboutCard {
  font-size: 16px;
  font-weight: 500;
  padding-top: 12px;
  text-align: justify;
}

.col-md-12 p.aboutCard {
  font-size: 16px;
  font-weight: 500;
  padding-top: 12px;
  text-align: justify;
}



/*  chart css for publications */

#publication-chart {

  width: 100%;

  height: 400px;

}

.info-box {

  background: #f6f6f6;

  padding: 10px 16px;

  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);

}

.info-box p {

  font-weight: bold;

  font-size: 16px;

  margin: 0;

  padding-bottom: 10px;

}

.graphHead {

  text-align: center;

  font-size: 20px;

  font-weight: 900;

}

.footerClientLogo .swiper-slide {
  background-color: #fff;
  border: 1px solid #ddd;
  min-height: 80px;
  height: 100%;
  max-height: 116px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}

.links.inline {
  display: none;
}




.photosViewAll img {

  width: 45px;

  height: 45px;

}

.trainingTable .w_160px {

  width: 160px;

}

.trainingTable .w_440px {

  width: 440px;

}

.trainingTable .w_190px {

  width: 160px;

}

.trainingTable .w_300px {

  width: 300px;

}

.sr_w_60 {
  width: 60px !important;
}

ul.links.inline {
  display: none;
}

.sitemap-item--menu-footer {
  display: none;
}

.headerToolBar ul.toolBarList li p {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

.headerToolBar ul.toolBarList li button {
  background: transparent;
  border: 0px;
  color: rgb(255, 255, 255);

}

.mega-dropdown .mega-column h6 {
  word-wrap: break-word;
}

.reload-captcha-wrapper {
  background-color: #fff;
}

.reload-captcha {
  font-size: 0 !important;
  /* Text chhupa dega */
}

.reload-captcha::before {
  /* Unicode refresh icon */
  font-size: 16px;
  /* Icon size */
  display: inline-block;
}


.grey-mode thead th {
  color: yellow !important;
}

/* menu code by nitika */
.custom-dropdown {
  min-width: 16rem !important;
  top: 100%;
}

.custom-toggle-button {
  padding: .25rem !important;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.custom-toggle-button:focus {
  box-shadow: unset;
}

.navbar-toggler i {
  pointer-events: none;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  ul.buttonGroup li a {
    width: unset;
    margin-top: .5rem;
  }

  p {
    font-size: 14px;
  }

  .ministrySection .aboutImageSection {
    display: block;
  }

  .gridSectionForFormDownload {
    display: grid;
    grid-template-columns: repeat(1, 2fr);
  }

  .socialMediaSecondSection {
    display: block;

  }

  .container-box {
    padding: 0 1.2rem;
  }

  .socialMediaSecondSection .iconWithTextSection {
    margin-top: 1rem;
  }
}

.photoGallerySetImage img {
  max-height: 400px !important;

}

.footerClientLogo {
  margin: 1rem 0 3rem !important;
  border-top: 1px solid #3333336b;
  padding-top: 3rem !important;
}


.opd-reg-body {
  display: flex;
  justify-content: center;
}

.photoGallerySetImage img {
  max-height: 400px !important;

}

.footerClientLogo {
  margin: 6rem 0 3rem !important;
  border-top: 1px solid #3333336b;
  padding-top: 3rem !important;
}

.flowchart-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  /* max-width: 950px; */
}

.flowchart-wrapper::-webkit-scrollbar {
  height: 8px;
}

.flowchart-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.flowchart-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.flowchart-wrapper ol,
.flowchart-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flowchart-wrapper ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  flex-wrap: nowrap;
  min-width: max-content;
}

.flowchart-wrapper ul li {
  flex: 1 0 auto;
  border-radius: 1.5rem;
  padding: .5rem;
  text-align: center;
  position: relative;
  font-size: .875rem;
  line-height: 1.5;
  min-height: 193px;
  max-width: 220px;

}

.custom-fc-wrapper ul {
  gap: 7rem !important;

}

.custom-fc-wrapper ul li {
  min-height: 213px !important;
  max-width: 320px !important;
  display: flex;
  align-items: center;
}

.flowchart-wrapper ul li strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.flow-li-second-rowone img {
  height: auto;
  width: 430px;
}

.flow-li-second-rowone {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  max-width: 350px !important;
}

.flowchart-wrapper ul.third-row-ul::after {
  display: none;
}

.flow-li-first-rowone,
.flow-li-third-rowone,
.flow-li-first-rowtwo {
  position: relative;
}

.flow-li-first-rowone {
  border: 1px solid #DA4CFA;
  border-top-width: .5rem;
}

.flow-li-third-rowone {
  border: 1px solid #7B3DC6;
  border-top-width: .5rem;
}

.flow-li-first-rowtwo {
  border: 1px solid #39B6F0;
  border-top-width: .5rem;
}

.flow-li-second-rowtwo {
  border: 1px solid #FFAD01;
  border-top-width: .5rem;
}

.flow-li-third-rowtwo {
  border: 1px solid #95BF39;
  border-top-width: .5rem;
}

.flow-li-first-rowthree {
  border: 1px solid #D1B258;
  border-top-width: .5rem;
}

.flow-li-second-rowthree {
  border: 1px solid #7B3DC6;
  border-top-width: .5rem;
}

.flow-li-third-rowthree {
  border: 1px solid #95BF39;
  border-top-width: .5rem;
}

.flow-li-first-rowone::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 8rem;
  background: url("../images/light-purple.png") no-repeat center;
  background-size: contain;

}

.flow-li-third-rowone::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 9rem;
  background: url("../images/purple-arrow.png") no-repeat center;
  background-size: contain;
}

.flow-li-first-rowtwo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 6rem;
  height: 2rem;
  background: url("../images/light-blue.png") no-repeat center;
  background-size: contain;
  margin: 0 .5rem;
}

.flow-li-second-rowtwo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 6rem;
  height: 2rem;
  background: url("../images/sky-blue.png") no-repeat center;
  background-size: contain;
  margin: 0 .5rem;

}

.flow-li-third-rowtwo::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2.5rem;
  height: 6rem;
  background: url("../images/green-arrow.png") no-repeat center;
  background-size: contain;
  margin: 0 .5rem;

}

.flow-li-first-rowthree::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 6rem;
  height: 2rem;
  background: url("../images/purple-2.png") no-repeat center;
  background-size: contain;
  margin: 0 .5rem;

}

.flow-li-second-rowthree::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 6rem;
  height: 2rem;
  background: url("../images/blue.png") no-repeat center;
  background-size: contain;
  margin: 0 .5rem;
}

/* Buttons */
.reg-button {
  background-color: #00558d;
  outline: unset;
  border: 1px solid #00558d;
  /* border-radius: 10px; */
}

/* Heading arrows */
.heading-li {
  position: relative;
}

.heading-li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translateX(-50%);
  width: 15rem;
  height: 9rem;
  background: url("../images/topmost-arrow.png") no-repeat center;
  background-size: contain;
}

.heading-li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateX(-50%);
  width: 15rem;
  height: 9rem;
  background: url("../images/light-purple-arrow-top.png") no-repeat center;
  background-size: contain;
}

.patient-box ol,
.patient-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.patient-box ol li,
.patient-box ul li {
  background-color: #7EAFD8;
  padding: 1.25rem;
  text-align: center;
  border: .1rem solid #00558d;
  border-radius: 10px;
}

/* Main vertical item with arrow */
.patient-main-title,
.custompatient-main-title {
  position: relative;
  margin-bottom: 2rem;
  border: .1rem solid #ddd;
  padding: 1.25rem;
}

.custompatient-main-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 2.5rem;
  background-color: #00558d;
}

.patient-main-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 5rem;
  background-color: #00558d;
}

.patient-main-title-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 2.4rem;
  background-color: #00558d;
}

.margin-cs {
  margin-bottom: 3rem;
}

.custompatient-main-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 2.5rem);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #00558d;
}

.patient-main-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4.5rem);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #00558d;
}

.patient-main-title-custom::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 2.5rem);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #00558d;
}

.patient-main-title-ul-second {
  position: relative;
  margin-bottom: 2rem;
  border: .1rem solid #ddd;
  padding: 1.25rem;
}

.patient-main-title-ul-second::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 3.5rem;
  background-color: #00558d;
}

.patient-main-title-ul-second::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 3.2rem);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #00558d;
}

/* Title with vertical connector */
.title-vertical {
  position: relative;
  margin-bottom: 2rem;
  border: .1rem solid #ddd;
}

.title-vertical::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 4rem;
  background-color: #00558d;
}

/* Container holding both lists */
.custom-list-li {
  position: relative;
  background-color: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  border: 0 !important;
}

.custom-list-li ul li {
  min-height: 7rem;
  min-width: 97%;

}

.custom-list-li-admision {
  position: relative;
  background-color: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  border: 0 !important;
}

.custom-list-li-admision ul li {
  min-height: 7rem;
  min-width: 97%;

}

/* Horizontal line between two lists */
.custom-list-li::before {
  content: "";
  position: absolute;
  top: 2%;
  left: calc(25% + .05rem);
  right: calc(25% + 0.6rem);
  height: 0.125rem;
  background-color: #00558d;
  width: 50%;
}

.custom-list-li::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 25%;
  width: 0.125rem;
  height: 2.6rem;
  background-color: #00558d;
  transform: translate(-50%, -50%);
}

.custom-list-li-admision::before {
  content: "";
  position: absolute;
  top: 2%;
  left: calc(14% + .05rem);
  right: calc(25% + 0.6rem);
  height: 0.125rem;
  background-color: #00558d;
  width: 72%;
}

.custom-list-li-admision::after {
  content: "";
  position: absolute;
  top: 6%;
  left: 14%;
  width: 0.125rem;
  height: 2.6rem;
  background-color: #00558d;
  transform: translate(-50%, -50%);
}

/* Right vertical line */
.custom-list-li .right-after {
  position: absolute;
  top: 7%;
  right: 25%;
  width: 0.125rem;
  height: 2.7rem;
  background-color: #00558d;
  transform: translate(50%, -50%);
}

.custom-list-li-admision .right-after {
  position: absolute;
  top: 6%;
  right: 14%;
  width: 0.125rem;
  height: 2.7rem;
  background-color: #00558d;
  transform: translate(50%, -50%);
}

.title-vertical-first {
  position: relative;
  margin-bottom: 2rem;
  border: .1rem solid #ddd;
}

.title-vertical-first::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 5.1rem;
  background-color: #00558d;
}

.patient-main-title-ul-first {
  position: relative;
  margin-bottom: 2rem;
  border: .1rem solid #ddd;
  padding: 1.25rem;
}

.patient-main-title-ul-first::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 15.5rem;
  background-color: #00558d;
}

.patient-main-title-ul-first::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 15.5rem);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid #00558d;
}

.custom-width-cl {
  width: 60%;

}

.custom-width-cl-last {
  width: 100%;
}

@media (min-width:1024px) and (max-width: 1200px) {
  .patient-main-title-ul-first::before {
    top: calc(100% + 14rem);
  }

  .patient-main-title-ul-first::after {
    height: 14rem;
  }
}

@media (max-width: 1200px) {
  .custom-list-li::before {
    top: 3%;
  }

  .custom-list-li::after {
    height: 2.1rem;
    top: 6.5%;
  }

  .custom-list-li-admision.right-after {
    height: 3rem;
  }

  .custom-list-li-admision::before {
    top: 2%;
  }

  .custom-list-li-admision::after {
    height: 2.4rem;
    top: 5.5%;
  }

  .custom-list-li-admision .right-after {
    height: 3rem;
  }

}

@media (min-width:768px) and (max-width: 1024px) {
  .patient-main-title-ul-first::before {
    top: calc(100% + 12rem);
  }

  .patient-main-title-ul-first::after {
    height: 12rem;
  }
}

@media (max-width: 767px) {
  .patient-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }


  .custom-list-li::before {
    top: 3%;
  }

  .custom-list-li::after {
    height: 2.3rem;
    top: 7.5%;
  }

  .custom-list-li .right-after {
    height: 2.5rem;
  }

  .custom-list-li-admision::before {
    top: 3%;
  }

  .custom-list-li-admision::after {
    height: 2.1rem;
    top: 5.5%;
  }

  .custom-list-li-admision .right-after {
    height: 2.5rem;
  }

  .patient-main-title-ul-first::after {
    height: 7rem;
  }

  .patient-main-title-ul-first::before {
    top: calc(100% + 7rem);

  }

  .patient-main-title-ul-second::after {
    height: 2rem;

  }

  .patient-main-title-ul-second::before {
    top: calc(100% + 2rem);

  }

  #admission-procedure {
    overflow-x: scroll;
  }

  .patient-box {
    overflow-x: scroll;
  }

  .patient-box ol {

    max-width: 900px;
  }

}

/* ✅ CORRECT ORDER: Low specificity selectors first, then higher specificity */

.minister-link {
  text-decoration: none;
  color: inherit;
}

.minister-link:hover {
  text-decoration: none;
  color: inherit;
}

.video-card {
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: transform 0.2s;
}

.video-thumb {
  position: relative;
  overflow: hidden;
}

/* LOW SPECIFICITY: Basic img selector */
.video-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background 0.2s ease-in-out;
  z-index: 2;
}

.video-play .fa-play {
  font-size: 1.5rem;
  color: #fff;
  background: #212529;
  padding: 0.7rem;
  border-radius: 50%;
}

.video-card .video-content {
  padding: 0.75rem 1rem;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.video-desc {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.video-card .stretched-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-card .stretched-trigger:focus {
  outline: 1px solid rgba(128, 128, 128, 0.5);
  outline-offset: -2px;
}

/* HIGHER SPECIFICITY: Custom list selectors */
.custom-list-li::before {
  /* Add your styles here */
}

.custom-list-li::after {
  /* Add your styles here */
}

.custom-list-li .right-after {
  /* Add your styles here */
}

.custom-list-li-admision::before {
  /* Add your styles here */
}

.custom-list-li-admision::after {
  /* Add your styles here */
}

.custom-list-li-admision.right-after {
  /* Add your styles here */
}

/* HIGHEST SPECIFICITY: Ministry section img (if this exists) */
.ministrySection .aboutImageSection .imageWithHeadingSection .ministryImage img {
  /* This will override .video-thumb img when applicable */
  /* Add your specific ministry image styles here */
}

/* MEDIA QUERIES: Should come at the end */
@media (max-width: 588px) {
  .custom-list-li::before {
    top: 3%;
  }

  .custom-list-li::after {
    height: 2rem;
    top: 6.2%;
  }

  .custom-list-li .right-after {
    height: 2.9rem;
  }

  .custom-list-li-admision::before {
    top: 3%;
  }

  .custom-list-li-admision::after {
    height: 2rem;
    top: 6.2%;
  }

  .custom-list-li-admision.right-after {
    height: 2.9rem;
  }
}

@media (min-width: 992px) {
  .video-thumb img {
    height: 200px;
  }
}


.photo-card {
  border: 1px solid #ddd;
  overflow: hidden;
  transition: transform 0.2s ease;
  background: #fff;
  height: 100%;
}

.photo-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.15); */
}

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.photo-card .card-body {
  padding: 0.75rem 1rem;
}

.photo-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.photo-item {
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.photo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}


.swiper-photo {
  width: 100%;
  height: 80vh;
}

.swiper-photo .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-controls {
  position: absolute;
  bottom: 6px;
  right: 14px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
  position: static !important;
  width: 35px !important;
  height: 35px !important;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}

.swiper-photo .swiper-pagination {
  bottom: 15px !important;
  left: 15px !important;
  text-align: left !important;
}

.custom-image-btn {
  float: right;
  position: absolute;
  right: 1%;
  top: 2%;
  z-index: 10;
}

.swiper-controls .swiper-button-prev::after {
  content: '‹' !important;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.swiper-controls .swiper-button-next::after {
  content: '›' !important;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}


.custom-right {
  background-color: black;
  color: #fff;
  padding: 4px;
}

.photoGallerySetImage img {
  max-height: 400px !important;

}

.footerClientLogo {
  margin: 1rem 0 !important;
  border-top: 1px solid #3333336b;
  padding-top: 3rem !important;
}

.patient-admision-wrapper {
  display: flex;
  justify-content: center;
}
.custom-marquee-view{
  display: flex;
  padding-right: 3rem;
  justify-content: end;
  /* padding-right: 3rem; */
  flex-wrap: nowrap;
  width: 200px;
  gap: .5rem;
}
.d-flex.custom-abcdg{
  width: 75%;
}
.socialIconTabs i{
  font-size: 1.4rem !important;
  padding: .3rem;
}
.w3sSection img{
  max-width: 90px;
  height: 32px;
  width: 100%;
  
}
.photoGallerySwiper .swiper-wrapper .swiper-slide .views-field.views-field-title{
  margin-top: 1rem;
}
.nextPausePreSection .swiper-button-prev,.nextPausePreSection .swiper-button-next, .nextPausePreSection .swiper-button-pause{
  cursor: pointer;
}
.custom-menu-main:focus-within{
  outline-offset: 1px;outline: -webkit-focus-ring-color auto 1px;border-radius: 0px;
}.custom-menu-main:focus-within a{
  outline: none;
  border: none;
}
.navbar-nav .nav-item.dropdown:focus-within .custom-dropdown{
display: block;
} 
.navbar-nav .dropdown-submenu:focus-within .submenu.dropdown-menu{
display: block;
} 
.footer-main-logo{
  width: 150px;
}
div#trainingTable_wrapper {
    width: 100%;
    display: block;
}
div#trainingTable_length {
    float: left;
}
div#trainingTable_filter {
    float: right;
      margin-bottom: 1rem !important;

}
.socialMedia #nav-tab{
  row-gap: .5rem;
}
.customCounterSection .clearfix h5{
  text-align: center;
}
.webform-confirmation__back a{
  padding-left: 3rem ;
}
table tr th, table tr td{
  text-decoration: none;
}


#noDataMessage {
  text-align: center;
  padding: 11px 20px;
}

#noDataMessage p {
  font-size: 20px !important;   /* force override */
  font-weight: 600;
  color: #444;
  margin: 0;
  line-height: 1.4;
}


