@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Malayalam:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --font-family: "Noto Sans", sans-serif;
  --primary-color: #ffb20f;
  --secondary-color: #2ecc71;
  --red-color: #f65058;
  --blue-color: #1e56a0;
  --blue-light-color: #90b8e9;
  --background-color: #ecf0f1;
  --text-color: #292929;
  --content-text-color: #656565;
  --white-color: #ffffff;
  --circumference: 55; /* 2π·8.75 ≈ 55 */
}

body {
  font-family: var(--font-family) !important;
  background-color: var(--white-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-color);
}

a {
  text-decoration: none;
}

.header-spacer {
  height: 38px;
}

img {
  max-width: 100%;
}

.loader-ring {
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: var(--circumference);
  animation: circleDraw 2s ease-in-out infinite;
}

@keyframes circleDraw {
  0% {
    stroke-dashoffset: var(--circumference);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.underline-hover {
  position: relative;
}
.underline-hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background-color: var(--text-color);
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
  transform-origin: left;
}
.underline-hover-primary::after {
  background-color: var(--primary-color);
}
.underline-hover:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* HEADER START */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
}
.header-top {
  background-color: var(--blue-color);
  color: var(--white-color);
  padding-block: 0.625rem;
}
.header-top-mobile {
  display: none;
}
.header-top__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top__content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-top__content .icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: var(--white-color);
}
.header-top__content .text {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
}
.header-top__content .dropdown .btn {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header-top__content .dropdown .btn::after {
  content: none;
}
.header-top__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .navbar {
  background-color: hsla(0, 0%, 0%, 0.3);
  padding-block: 1rem;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-block: 0.5px solid hsla(0, 0%, 100%, 0.5);
}
.header .navbar-nav {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.header .navbar-nav .nav-link {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 14px;
}
.header .navbar-nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}
.header .navbar-brand.nav-link {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  position: relative;
  width: 50px;
  height: 50px;
}
.header .navbar-brand {
  margin-right: 0;
}
.header .navbar-brand-logo {
  position: absolute;
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  inset: 0;
  transform: translateX(-25%);
}
.header .navbar-brand-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .navbar-brand-mobile {
  display: none;
}
.header .navbar-toggler {
  border: none;
}
.header .navbar-toggler:focus {
  border: 0;
  box-shadow: none;
}
.header .navbar-toggler-icon {
  background: none;
  display: block;
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: var(--white-color);
  transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.header .navbar-toggler[aria-expanded=true] span:first-of-type {
  transform: rotate(45deg) translate(6px, 6px);
}
.header .navbar-toggler[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
.header .navbar-toggler[aria-expanded=true] span:last-of-type {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header .navbar-toggler[aria-expanded=false] span {
  transform: none;
  opacity: 1;
}

/* HEADER END */
/* FOOTER START */
footer {
  padding: 20px;
}
footer .footer {
  background-color: var(--blue-color);
  border-radius: 1.25rem;
  color: var(--blue-light-color);
}
footer .footer-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer a {
  text-decoration: none;
  transition: color 0.3s;
  color: inherit;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
footer .footer a:hover {
  color: var(--primary-color);
}
footer .footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #f2f6fd;
}
footer .footer .link-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
footer .footer-main {
  padding-block: 3rem 2rem;
}
footer .footer-main .address {
  margin-top: 2rem;
}
footer .footer-copyright {
  position: relative;
  background-color: var(--white-color);
  max-width: 80%;
  margin-inline: auto;
  padding: 1rem 2rem;
  border-radius: 1.25rem 1.25rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--blue-color);
}
footer .footer-copyright::before, footer .footer-copyright::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 20px;
}
footer .footer-copyright::before {
  left: -20px;
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px var(--white-color);
}
footer .footer-copyright::after {
  right: -20px;
  border-bottom-left-radius: 20px;
  box-shadow: -5px 5px var(--white-color);
}
footer .footer-copyright .social-media {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
}
footer .footer-copyright .copy-right-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
footer .footer-copyright .copy-right-text span.highlight {
  color: var(--blue-light-color);
}

/* FOOTER END */
/*
===============
HOME PAGE START
===============
*/
/* HERO SECTION START */
.hero-banner {
  background-image: url("../images/banner-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100svh;
  text-align: center;
  align-content: end;
  padding-block: 2rem;
}
.hero-banner .container {
  max-width: 920px;
}
.hero-banner__heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--red-color);
  margin-bottom: 1rem;
}
.hero-banner__sub-heading {
  color: var(--white-color);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.hero-banner__cta {
  background-color: var(--white-color);
  padding: 16px 32px;
  border-radius: 30px;
  color: var(--red-color);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.hero-banner__cta svg path,
.hero-banner__cta svg circle {
  transition: stroke 0.3s ease-in-out;
}
.hero-banner__cta:hover {
  background-color: var(--red-color);
  color: var(--white-color);
  text-decoration: none;
}
.hero-banner__cta:hover svg path {
  stroke: var(--white-color);
}
.hero-banner__cta:hover svg circle {
  stroke: var(--white-color);
}

/* HERO SECTION END */
/* RAMACHANDRAN COLUMN START */
.ramachandran-column {
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.ramachandran-column .container {
  position: relative;
  z-index: 1;
}
.ramachandran-column__heading {
  color: var(--primary-color);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.ramachandran-column__sub-heading {
  color: var(--text-color);
  line-height: 1.5;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  margin-bottom: 2rem;
}
.ramachandran-column__cta {
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 600;
}
.ramachandran-column__content {
  -moz-column-count: 2;
       column-count: 2;
  text-align: justify;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.ramachandran-column__img {
  position: absolute;
}
.ramachandran-column__img-left {
  position: relative;
}
.ramachandran-column__img-left img {
  max-width: 360px;
}
.ramachandran-column__img-right {
  right: 0;
  bottom: 0;
  top: 20%;
}
.ramachandran-column__img-right img {
  height: 100%;
}

/* RAMACHANDRAN COLUMN END */
/* ABOUT MUSEUM START*/
.about-museum {
  background-color: var(--primary-color);
  padding-block: 4rem;
}
.about-museum__heading {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 2rem;
}
.about-museum__content {
  margin-bottom: 3rem;
}
.about-museum__content > * {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  text-align: justify;
}
.about-museum__cta {
  margin-top: 3rem;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 600;
}
.about-museum__img img {
  height: 655px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ABOUT MUSEUM END*/
/* NEWS AND EVENTS START */
.news-and-events {
  padding-block: 4rem 2rem;
}
.news-and-events__heading {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}
.news-and-events__heading-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 0.5px solid #bdbdbd;
  padding-bottom: 1rem;
}
.news-and-events__cta {
  text-transform: uppercase;
  color: var(--text-color);
  font-weight: 600;
}
.news-and-events__cta-wrap {
  text-align: center;
}
.news-and-events .dropdown .btn {
  border: 1px solid #bdbdbd;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-and-events .dropdown .btn::after {
  content: none;
}
.news-and-events .dropdown .btn:focus {
  border: 1px solid var(--primary-color);
}
.news-and-events__card {
  border-radius: 20px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  aspect-ratio: 4/3;
  position: relative;
  margin-bottom: 2rem;
}
.news-and-events__card:hover .news-and-events__card-content {
  height: 100%;
  opacity: 1;
}
.news-and-events__card:hover .news-and-events__card-cta {
  display: block;
}
.news-and-events__card-img img {
  width: 100%;
}
.news-and-events__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  color: var(--white-color);
}
.news-and-events__card-body .progressive-blur-container {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-event: none;
}
.news-and-events__card-body .progressive-blur-container > .blur-filter {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(1) {
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0) 10%, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0) 10%, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%);
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(2) {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 50%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 50%);
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(3) {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%);
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(4) {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(5) {
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 90%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 90%);
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(6) {
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 80%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 80%);
}
.news-and-events__card-body .progressive-blur-container > .blur-filter:nth-child(7) {
  z-index: 10;
  background-filter: blur(64px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%);
}
.news-and-events__card-body .progressive-blur-container > .gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, hsla(0, 0%, 0%, 0.5));
}
.news-and-events__card-date {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--white-color);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.news-and-events__card-title {
  color: var(--white-color);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.news-and-events__card-content {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  z-index: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  position: relative;
  height: 0;
  opacity: 0;
  margin-bottom: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.news-and-events__card-cta {
  display: none;
  position: relative;
  z-index: 11;
  cursor: pointer;
  margin-top: 1rem;
}

/* NEWS AND EVENTS END */
/* VISITOR INFO START */
.visitor-info {
  padding: 1.25rem;
  display: flex;
  gap: 1.25rem;
  overflow: hidden;
}
.visitor-info__img {
  margin-bottom: 0;
  flex: 0 0 auto;
  width: 50%;
}
.visitor-info__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}
.visitor-info__container {
  background-color: var(--primary-color);
  width: 100%;
  padding: 2rem;
  border-radius: 1.25rem;
}
.visitor-info__heading {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 2rem;
}
.visitor-info__table {
  margin-bottom: 2rem;
}
.visitor-info__table .title {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.5px solid var(--text-color);
}
.visitor-info__table .column {
  padding-right: 0.5rem;
}
.visitor-info__table .column-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.visitor-info__table .column:first-child {
  border-right: 0.5px solid var(--text-color);
}
.visitor-info__table .column p:last-child {
  margin-bottom: 0;
}
.visitor-info__table .column p {
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.visitor-info__cta {
  display: block;
  color: var(--text-color);
  text-transform: uppercase;
  font-weight: 600;
}

/* VISITOR INFO END */
/*
=============
HOME PAGE END
=============
*/
/*
======================
COLLECTIONS PAGE START
======================
*/
/* COMMON BANNER START */
.common-banner {
  position: relative;
  background-image: url("/assets/images/home/1.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  color: var(--white-color);
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 2rem;
}
.common-banner .container {
  z-index: 1;
  position: relative;
}
.common-banner::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 50%;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(41, 41, 41) 75%, rgb(41, 41, 41) 100%);
}
.common-banner .breadcrumb-item {
  display: flex;
  align-items: center;
}
.common-banner .breadcrumb-item:not(:first-child)::before {
  content: "";
  margin: 0 0.5rem;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.776 1.55301C6.89455 1.49361 7.03184 1.48373 7.15768 1.52555C7.28351 1.56737 7.38758 1.65746 7.447 1.77601L10.447 7.77601C10.4818 7.84554 10.5 7.92224 10.5 8.00001C10.5 8.07778 10.4818 8.15448 10.447 8.22401L7.447 14.224C7.41789 14.2832 7.37735 14.3361 7.32771 14.3796C7.27808 14.4231 7.22032 14.4563 7.15779 14.4773C7.09525 14.4984 7.02916 14.5069 6.96334 14.5023C6.89751 14.4976 6.83325 14.48 6.77425 14.4505C6.71526 14.4209 6.6627 14.38 6.61961 14.33C6.57651 14.28 6.54374 14.222 6.52317 14.1593C6.5026 14.0966 6.49465 14.0305 6.49977 13.9647C6.50489 13.8989 6.52298 13.8348 6.553 13.776L9.44 8.00001L6.553 2.22401C6.49359 2.10546 6.48371 1.96816 6.52553 1.84233C6.56735 1.71649 6.65745 1.61242 6.776 1.55301Z' fill='white'/%3E%3C/svg%3E%0A");
}
.common-banner .breadcrumb-item a {
  color: #dcdcdc;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.common-banner .breadcrumb-item.active {
  color: var(--white-color);
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.common-banner__heading {
  color: var(--white-color);
}

/* COMMON BANNER END */
/* COLLECTIONS LIST START */
.collections {
  padding-block: 3rem;
}
.collections__heading {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  color: var(--primary-color);
}
.collections__heading-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 0.5px solid #bdbdbd;
  padding-bottom: 1rem;
}
.collections__refine {
  display: flex;
  gap: 0.5rem;
}
.collections__refine svg {
  width: 16px;
  height: 16px;
}
.collections__refine .dropdown-item:active {
  color: var(--background-color);
  text-decoration: none;
  background-color: var(--content-text-color);
}
.collections__refine .dropdown-year .select2-container--default .select2-selection--single {
  height: unset;
  padding: 4px;
}
.collections__refine .dropdown-year .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 6px;
  right: 4px;
}
.collections__refine .btn {
  border: 1px solid #bdbdbd;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.collections__refine .btn::after {
  content: none;
}
.collections__refine .btn:focus {
  border: 1px solid var(--primary-color);
}
.collections__refine .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.collections .nav-pills {
  margin-bottom: 2rem;
  justify-content: center;
  gap: 1rem;
}
.collections .nav-link {
  color: var(--text-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 50px;
  min-width: 100px;
  border: 1px solid var(--primary-color);
}
.collections .nav-link.active {
  background-color: var(--primary-color);
}
.collections-list {
  -moz-columns: 280px;
       columns: 280px;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.collections-list .btn-modal {
  padding: 0;
  border-radius: 0;
  text-align: left;
}
.collections-item {
  margin-bottom: 2rem;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  transition: box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collections-item:hover {
  box-shadow: 0 4px 9px rgba(0, 0, 0, 0.1607843137);
}
.collections-item:hover .collections-item__img img {
  scale: 1.05;
}
.collections-item__img {
  overflow: hidden;
  margin-bottom: 0;
}
@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
.collections-item__img img {
  transition: scale 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  animation: skeleton-loading 1s linear infinite alternate;
}
.collections-item__content {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid rgba(226, 226, 226, 0.5411764706);
  border-top: none;
  padding: 1rem;
}
.collections-item__title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-color);
  margin-bottom: 0;
  position: relative;
}
.collections-item__title .year {
  color: var(--content-text-color);
}
.collections-item__sub-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #636060;
  margin-bottom: 0.5rem;
}
.collections .modal-header .modal-title {
  color: var(--primary-color);
}
.collections .modal-body .collections-item {
  margin-bottom: 0;
  box-shadow: none;
}
.collections .modal-body .collections-item__modal-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.collections .modal-body .collections-item__modal-icons .division {
  width: 0.5px;
  height: 20px;
  flex-shrink: 0;
  background-color: #989898;
}
.collections .modal-body .collections-item__modal-icons p {
  margin-bottom: 0;
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  color: var(--content-text-color);
}
.collections .modal-body .collections-item__modal-icons svg {
  margin-right: 0.25rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary-color) !important;
  color: var(--white-color);
}

/* COLLECTIONS LIST END */
/*
====================
COLLECTIONS PAGE END
====================
*/
/*
=================================
NEWS AND EVENTS DETAIL PAGE START
=================================
*/
/* NEWS AND EVENTS DETAIL START */
.news-and-events-detail {
  padding-block: 4rem 2rem;
  color: var(--text-color);
}
.news-and-events-detail > * {
  text-align: justify;
}
.news-and-events-detail h1,
.news-and-events-detail h2,
.news-and-events-detail h3,
.news-and-events-detail h4,
.news-and-events-detail h5,
.news-and-events-detail h6 {
  font-weight: 600;
}
.news-and-events-detail strong {
  font-weight: 700;
}
.news-and-events-detail img {
  border-radius: 1.25rem;
}
.news-and-events-detail__social-media-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.news-and-events-detail__social-media-link {
  display: block;
  width: 100px;
  text-align: left;
}
.news-and-events-detail__social-media-link:hover .user-name {
  color: var(--primary-color);
}
.news-and-events-detail__social-media-link:hover svg path {
  stroke: var(--primary-color);
}
.news-and-events-detail__social-media-link .social-media {
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  margin-bottom: 0.25rem;
  color: #989898;
}
.news-and-events-detail__social-media-link .user-name {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
  margin-bottom: 0.25rem;
}
.news-and-events-detail__social-media-link svg path {
  transition: stroke 0.3s ease;
}

/* NEWS AND EVENTS DETAIL END */
/*
===============================
NEWS AND EVENTS DETAIL PAGE END
===============================
*/
/*
==================
CONTENT PAGE START
==================
*/
/* HIGHLIGHTER START */
.highlighter {
  padding-block: 4rem 0;
}
.highlighter__content {
  max-width: 920px;
  text-align: justify;
  margin-inline: auto;
}
.highlighter__content > * {
  font-size: clamp(1.25rem, 1.5vw, 2rem);
  line-height: 1.5;
  font-weight: 600;
  color: var(--content-text-color);
}
.highlighter__content > * strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* HIGHLIGHTER END */
/* CONTENT SECTION BANNER V1 START */
.content-section-banner-v1 {
  padding-block: 4rem 0;
}
.content-section-banner-v1__content {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 1.5rem;
}
.content-section-banner-v1__heading {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.content-section-banner-v1__text {
  color: var(--content-text-color);
}

/* CONTENT SECTION BANNER V1 END */
/* CONTENT SECTION BANNER V2 START */
.content-section-banner-v2 {
  padding-block: 4rem 0;
}
.content-section-banner-v2__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.content-section-banner-v2__heading {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.content-section-banner-v2__text {
  color: var(--content-text-color);
}

/* CONTENT SECTION BANNER V2 END */
/* MAIN CONTENT SECTION START */
.main-content-section > * {
  text-align: justify;
}
.main-content-section__content h1,
.main-content-section__content h2,
.main-content-section__content h3,
.main-content-section__content h4,
.main-content-section__content h5,
.main-content-section__content h6 {
  color: var(--text-color);
}
.main-content-section__content p {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}
.main-content-section__heading {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}
.main-content-section__image {
  margin-bottom: 0;
  overflow: hidden;
}
.main-content-section__image-grid-v1 {
  display: grid;
  grid-template-columns: 1fr; /* Two columns for bottom row */
  grid-template-rows: auto auto; /* Two rows: top big, bottom small */
  gap: 1rem;
}
.main-content-section__image-grid-v1.image-grid-v1__3 {
  grid-template-columns: 1fr 1fr;
}
.main-content-section__image-grid-v1 figure:nth-child(1) {
  grid-column: 1/-1; /* Full width for the first image */
  grid-row: 1; /* First row */
}
.main-content-section__image-grid-v2 {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Left wider, right narrower */
  grid-template-rows: 1fr 1fr; /* Two equal-height rows */
  gap: 1rem; /* Space between images */
}
.main-content-section__image-grid-v2 figure:nth-child(1) {
  grid-column: 1; /* First column */
  grid-row: 1/span 2; /* Full height for the first image */
}
.main-content-section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.main-content-section__image img:hover {
  transform: scale(1.05);
}
.main-content-section__cta {
  display: block;
  margin-top: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-color);
}

/* MAIN CONTENT SECTION END */
/* CONTENT SECTION LEFT IMAGE V1 START */
.content-section-left-image-v1 {
  padding-block: 4rem 0;
}

/* CONTENT SECTION LEFT IMAGE V1 END */
/* CONTENT SECTION RIGHT IMAGE V1 START */
.content-section-right-image-v1 {
  padding-block: 4rem 0;
}

/* CONTENT SECTION RIGHT IMAGE V1 END */
/* CONTENT SECTION LEFT IMAGE V2 START */
.content-section-left-image-v2 {
  padding-block: 4rem 0;
}

/* CONTENT SECTION LEFT IMAGE V2 END */
/* CONTENT SECTION RIGHT IMAGE V2 START */
.content-section-right-image-v2 {
  padding-block: 4rem 0;
}

/* CONTENT SECTION RIGHT IMAGE V1 END */
/* CONTENT TAB SECTION START */
.content-tab-section {
  padding-block: 4rem 0;
}
.content-tab-section__heading {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 2rem;
}
.content-tab-section__tabs .nav-link {
  color: var(--text-color);
  font-weight: 600;
  font-size: 14px;
  text-align: left;
  min-width: 250px;
}
.content-tab-section__tabs .nav-link.active {
  border: 1px solid var(--primary-color);
  background-color: hsla(41, 100%, 53%, 0.1);
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.content-tab-section__content {
  padding-left: 2rem;
}
.content-tab-section__content-title {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.content-tab-section__content-details {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: 1.25rem;
}
.content-tab-section__image {
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
}
.content-tab-section__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.content-tab-section__image img:hover {
  transform: scale(1.05);
}

/* CONTENT TAB SECTION END */
/* PHOTO GALLERY START */
.photo-gallery {
  padding-block: 4rem 0;
}
.photo-gallery__heading {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 2rem;
}
.photo-gallery__image {
  margin-bottom: 0;
  height: 100%;
}
.photo-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.photo-gallery__image img:hover {
  transform: scale(1.05);
}
.photo-gallery__slider-item .slider-item {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-inline: 1rem;
  display: block;
  aspect-ratio: 4/3;
}
.photo-gallery__slider-item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 2rem;
  height: 0;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.photo-gallery__slider-item .content .progressive-blur-container {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  pointer-event: none;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(1) {
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0) 10%, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%);
          mask: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0) 10%, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0) 40%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(2) {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 50%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 50%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(3) {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 60%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(4) {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgba(0, 0, 0, 0) 70%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(5) {
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 90%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgb(0, 0, 0) 60%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 90%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(6) {
  -webkit-backdrop-filter: blur(32px);
          backdrop-filter: blur(32px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 80%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgb(0, 0, 0) 80%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .blur-filter:nth-child(7) {
  z-index: 10;
  background-filter: blur(64px);
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%);
          mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgb(0, 0, 0) 100%);
}
.photo-gallery__slider-item .content .progressive-blur-container > .gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, hsla(0, 0%, 0%, 0.5));
}
.photo-gallery__slider-item .content .title {
  position: relative;
  z-index: 10;
  color: var(--white-color);
}
.photo-gallery__slider-item:hover .content {
  height: auto;
  opacity: 1;
}
.photo-gallery__slider-item:hover .content .progressive-blur-container {
  height: 100%;
  opacity: 1;
}
.photo-gallery .slick-slider .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.photo-gallery .slick-slider .slick-dots li button {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  background-color: #dcdcdc;
  opacity: 0.5;
}
.photo-gallery .slick-slider .slick-dots li button:before {
  content: "";
  display: none;
}
.photo-gallery .slick-slider .slick-dots li:hover button, .photo-gallery .slick-slider .slick-dots li.slick-active button {
  opacity: 1;
  background-color: var(--primary-color);
}
.photo-gallery .slick-slider .slick-dots li.slick-active {
  width: 24px;
}

/* PHOTO GALLERY END */
/* SPACER START */
.spacer {
  padding-top: var(--spacer);
}

/* SPACER END */
/*
================
CONTENT PAGE END
================
*/
/*
================
CONTACT US START
================
*/
/* CONTACT US START */
.contact-us {
  padding-block: 2rem;
}
.contact-us__heading {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
}
.contact-us__text {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: 2rem;
}
.contact-us__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.contact-us__content-item .heading {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: clamp(1.125rem, 2vw, 1.75rem);
}
.contact-us__content-item .text {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: 1.25rem;
  margin-bottom: 0;
}
.contact-us__content-item .text a {
  color: inherit;
}
.contact-us__content-item .social-media {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 1rem;
}
.contact-us__map {
  min-height: 300px;
  height: 100%;
}
.contact-us__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 1.25rem;
}

/* CONTACT US END */
/* FAQS START */
.faqs {
  padding-block: 2rem;
}
.faqs__heading {
  max-width: 17ch;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
}
.faqs .accordion-item {
  border-bottom: 1px solid #dcdcdc !important;
  padding-block: 1rem;
}
.faqs .accordion-button {
  font-size: clamp(1.25rem, 1.5vw, 2rem);
  font-weight: 500;
}
.faqs .accordion-button:focus {
  box-shadow: none;
  background-color: var(--white-color);
}
.faqs .accordion-button::after {
  width: 1.75rem;
  height: 1.75rem;
  background-size: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='33' viewBox='0 0 32 33' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_291_1154)'%3E%3Ccircle cx='16' cy='16' r='15.5' transform='matrix(1 0 0 -1 0 32.5)' stroke='%23FFB20F'/%3E%3Cpath d='M12.3536 11.6611C12.1583 11.4658 11.8417 11.4658 11.6464 11.6611C11.4512 11.8564 11.4512 12.1729 11.6464 12.3682L12.3536 11.6611ZM20.4853 20.9999C20.7614 20.9999 20.9853 20.7761 20.9853 20.4999L20.9853 15.9999C20.9853 15.7238 20.7614 15.4999 20.4853 15.4999C20.2091 15.4999 19.9853 15.7238 19.9853 15.9999L19.9853 19.9999L15.9853 19.9999C15.7091 19.9999 15.4853 20.2238 15.4853 20.4999C15.4853 20.7761 15.7091 20.9999 15.9853 20.9999L20.4853 20.9999ZM12 12.0146L11.6464 12.3682L20.1317 20.8535L20.4853 20.4999L20.8388 20.1464L12.3536 11.6611L12 12.0146Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_291_1154'%3E%3Crect width='32' height='32' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.faqs .accordion-button:not(.collapsed) {
  background-color: unset;
  box-shadow: none;
  color: var(--primary-color);
  padding-bottom: 0;
}
.faqs .accordion-button:not(.collapsed)::after {
  transform: rotate(-90deg);
}
.faqs .accordion-header {
  color: var(--text-color);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}
.faqs .accordion-body {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* FAQS END */
/*
==============
CONTACT US END
==============
*/
/*
========================
AWARDS AND HONOURS START
========================
*/
/* AWARDS AND HONOURS START */
.awards-and-honours {
  padding-block: 4rem;
}
.awards-and-honours__heading {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}
.awards-and-honours__heading-wrap {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.awards-and-honours .dropdown svg {
  width: 16px;
  height: 16px;
}
.awards-and-honours .dropdown-item:active {
  color: var(--background-color);
  text-decoration: none;
  background-color: var(--content-text-color);
}
.awards-and-honours .btn {
  border: 1px solid #bdbdbd;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.awards-and-honours .btn::after {
  content: none;
}
.awards-and-honours .btn:focus {
  border: 1px solid var(--primary-color);
}
.awards-and-honours .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.awards-and-honours__card-wrapper {
  gap: 1.5rem;
}
.awards-and-honours__card {
  border-radius: 12px;
  padding: 1.25rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease-in-out;
}
.awards-and-honours__card .year-top {
  font-weight: 700;
  color: var(--red-color);
  display: block;
  transition: background-color 0.3s ease-in-out;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.awards-and-honours__card svg path {
  transition: fill 0.3s ease-in-out;
}
.awards-and-honours__card:hover {
  background-color: hsla(357, 90%, 64%, 0.1);
}
.awards-and-honours__img {
  display: none;
  aspect-ratio: 2/1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin-bottom: 0;
}
.awards-and-honours__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.awards-and-honours__heading {
  justify-content: center;
}
.awards-and-honours__heading .heading {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  transition: color 0.3s ease-in-out;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}
.awards-and-honours__details {
  color: var(--content-text-color);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}
.awards-and-honours__details p {
  margin-bottom: 0;
}

/* AWARDS AND HONOURS END */
/*
======================
AWARDS AND HONOURS END
======================
*/
/*
==============
404 PAGE START
==============
*/
.section-404 {
  min-height: 100dvh;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
@keyframes rotateBackground {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.section-404::before {
  content: "";
  position: absolute;
  inset: -100vh;
  background: conic-gradient(from 90deg at 50% 50%, rgb(253, 108, 115) 0%, rgb(30, 9, 9) 100%);
  z-index: -1;
  animation: rotateBackground 20s linear infinite;
}
.section-404__content {
  align-content: center;
  text-align: center;
  height: calc(100vh - 8rem);
  color: var(--white-color);
}
.section-404__heading {
  font-weight: 900;
  font-size: clamp(1.5rem, 10vw, 7.5rem);
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--primary-color);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: var(--primary-color);
  letter-spacing: 10px;
  filter: drop-shadow(0px 4px 4px hsla(0, 0%, 0%, 0.25));
  margin-bottom: 0;
}
.section-404__sub-heading {
  color: var(--primary-color);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-404__text {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  margin-bottom: 3rem;
  color: var(--white-color);
  max-width: 720px;
  margin-inline: auto;
}
.section-404__cta {
  background-color: var(--white-color);
  padding: 16px 32px;
  border-radius: 30px;
  color: var(--red-color);
  font-weight: 600;
  text-transform: uppercase;
}

/*
============
404 PAGE END
============
*/
/*
======================
CAREER MILESTONE START
======================
*/
/* CAREER MILESTONES START */
.career-milestones {
  overflow: hidden;
}
.career-milestones__section {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  padding-top: 3.5rem;
}
.career-milestones__section::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: rgba(0, 73, 144, 0.1215686275);
  left: 50%;
  bottom: 0;
}
.career-milestones__section:hover .dot {
  box-shadow: 0px 0px 0px 4px rgba(0, 73, 144, 0.12);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 1.25rem;
  transform: translate(-40%, 25%);
}
.career-milestones__section:last-child {
  padding-bottom: 3.5rem;
}
.career-milestones__section:last-child::after {
  height: 3.5rem;
  bottom: unset;
  top: 0;
}
.career-milestones__section:first-child::after {
  height: calc(100% - 3.5rem);
}
.career-milestones__section .dot {
  position: absolute;
  left: 50%;
  top: 3rem;
  z-index: 1;
  transform: translate(-40%, 50%);
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 0.875rem;
  border: 1px solid var(--blue-color);
  background: var(--white-color);
  box-shadow: 0px 0px 8px 0px rgba(30, 86, 160, 0.5);
  transition: all 0.2s ease-in-out;
}
.career-milestones__left, .career-milestones__right {
  width: 50%;
}
.career-milestones__left-content, .career-milestones__right-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
}
.career-milestones__left .year, .career-milestones__right .year {
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--primary-color);
}
.career-milestones__left .heading, .career-milestones__right .heading {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--primary-color);
  text-transform: capitalize;
  font-weight: 700;
}
.career-milestones__left .detail, .career-milestones__right .detail {
  color: var(--content-text-color);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  display: -webkit-box;
  -webkit-line-clamp: 6; /* Show only 6 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.career-milestones__left .detail.expanded, .career-milestones__right .detail.expanded {
  -webkit-line-clamp: unset; /* Remove line limit */
  max-height: 1000px; /* enough space */
}
.career-milestones__left .btn-read-more, .career-milestones__right .btn-read-more {
  padding-inline: 0;
  text-transform: uppercase;
  border: unset;
}
.career-milestones__left .btn-read-more span, .career-milestones__right .btn-read-more span {
  color: var(--content-text-color);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}
.career-milestones__left-img, .career-milestones__right-img {
  max-width: 370px;
}
.career-milestones__left {
  padding-inline: 1rem 2rem;
}
.career-milestones__left-content {
  text-align: right;
  align-items: flex-end;
  margin-left: auto;
}
.career-milestones__left-img {
  margin-left: auto;
}
.career-milestones__right {
  padding-inline: 2rem 1rem;
}
.career-milestones__right-content {
  text-align: left;
  align-items: flex-start;
}

/* CAREER MILESTONES END */
/*
====================
CAREER MILESTONE END
====================
*/
/* Large Screens (LG) */
@media (max-width: 1199.98px) {
  /* HEADER START */
  .header .navbar-brand.nav-link {
    width: 100px;
  }
  .header .navbar-brand-logo {
    transform: translateX(0%);
  }
  /* HEADER END */
	/* RAMACHANDRAN COLUMN START */
	.ramachandran-column__img-left img {
  max-width: 420px;
}
/* 	RAMACHANDRAN COLUMN END */

/* 	ABOUT MUSEUM START */
	.about-museum__img img {
		width: 100%;
		height: 590px;
  }
/* 	ABOUT MUSEUM END */
}
/* Medium Screens (MD) - Tablets */
@media (max-width: 991.98px) {
  /* HEADER START */
  .header-top {
    display: none;
  }
  .header-top-mobile {
    display: block;
    margin-top: 1rem;
    padding-top: 1.25rem;
  }
  .header-top__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .header-top__right {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.5rem;
  }
  .header-top__right .dropdown .btn {
    padding-left: 0;
  }
  .header-top__right .dropdown .btn.show {
    padding-left: 12px;
  }
  .header .navbar {
    background-color: hsla(0, 0%, 0%, 0.5);
    padding-block: 0.5rem;
    border-top: none;
  }
  .header .navbar-nav {
    align-items: flex-start;
    margin-top: 2rem;
  }
  .header .navbar-brand.nav-link {
    display: none;
  }
  .header .navbar-brand {
    margin-right: 0;
  }
  .header .navbar-brand-logo {
    position: relative;
  }
  .header .navbar-brand-mobile {
    display: block;
  }
  .header .navbar-brand-mobile .navbar-brand-logo {
    width: 75px;
  }
  /* HEADER END */
  /* RAMACHANDRAN COLUMN START */
  .ramachandran-column__content {
    -moz-column-count: 1;
         column-count: 1;
  }
.ramachandran-column__img-left img {
  max-width: 330px;
}
  /* RAMACHANDRAN COLUMN END */
/* 	ABOUT MUSEUM START */
	.about-museum__img img {
		height: 810px;
		width: 100%;
		-o-object-fit: fill;
		   object-fit: fill;
  }
/* 	ABOUT MUSEUM END */
  /* NEWS AND EVENTS DETAIL START */
  .news-and-events-detail__social-media-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .news-and-events-detail__social-media-link {
    width: unset;
  }
  .news-and-events-detail__social-media-link .user-name {
    margin-bottom: 0;
  }
  /* NEWS AND EVENTS DETAIL END */
  /* CONTACT US START */
  .contact-us__content-grid {
    margin-bottom: 4rem;
  }
  /* CONTACT US END */
  /* AWARDS AND HONOURS START */
  .awards-and-honours__card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  /* AWARDS AND HONOURS END */
  /* NEWS AND EVENTS START */
  .news-and-events__card-title {
    -webkit-line-clamp: 1;
  }
  .news-and-events__card-content {
    -webkit-line-clamp: 2;
  }
  /* NEWS AND EVENTS END */
}
/* Small Screens (SM) - Large Phones */
@media (max-width: 767.98px) {
  /* HEADER START */
  .header-top__container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .header-top__right {
    justify-content: space-between;
    width: 100%;
  }
  /* HEADER END */
  /* RAMACHANDRAN COLUMN START */
  .ramachandran-column__cta {
    display: block;
    margin-bottom: 3rem;
  }
  .ramachandran-column__img {
    display: none;
  }
  /* RAMACHANDRAN COLUMN END */
  /* ABOUT MUSEUM START*/
  .about-museum__cta {
    display: inline-block;
    margin-bottom: 2rem;
  }
  /* ABOUT MUSEUM END*/
  /* VISITOR INFO START */
  .visitor-info {
    display: block;
  }
  .visitor-info__img {
    margin-bottom: 2rem;
    width: 100%;
  }
  /* VISITOR INFO END */
  /* CONTACT US START */
  .contact-us__content-grid {
    gap: 1rem;
  }
  /* CONTACT US END */
  /* CONTENT SECTION LEFT IMAGE V1 START */
  .content-section-left-image-v1__image-grid {
    margin-bottom: 2rem;
  }
  /* CONTENT SECTION LEFT IMAGE V1 END */
  /* CONTENT SECTION LEFT IMAGE V2 START */
  .content-section-left-image-v2__image-grid {
    margin-bottom: 2rem;
  }
  /* CONTENT SECTION LEFT IMAGE V2 END */
  /* CONTENT SECTION RIGHT IMAGE V2 START */
  .content-section-right-image-v2__image-grid {
    margin-top: 2rem;
  }
  /* CONTENT SECTION RIGHT IMAGE V2 END */
  /* CONTENT SECTION RIGHT IMAGE V1 START */
  .content-section-right-image-v1__image-grid {
    margin-top: 2rem;
  }
  /* CONTENT SECTION RIGHT IMAGE V1 END */
  /* CONTENT SECTION BANNER V2 START */
  .content-section-banner-v2__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
  /* CONTENT SECTION BANNER V2 END */
  /* CONTENT TAB SECTION START */
  .content-tab-section__tabs {
    flex-direction: column;
  }
  .content-tab-section__tabs .nav {
    flex-direction: row !important;
    margin-bottom: 2rem;
  }
  .content-tab-section__tabs .nav-link {
    min-width: unset;
  }
  .content-tab-section__tabs .nav-link svg {
    display: none;
  }
  .content-tab-section__content {
    padding-left: 0;
  }
  /* CONTENT TAB SECTION END */
  /* CAREER MILESTONES START */
  .career-milestones {
    overflow: hidden;
  }
  .career-milestones__section {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    padding-top: 3.5rem;
  }
  .career-milestones__section::after {
    display: none;
  }
  .career-milestones__section .dot {
    display: none;
  }
  .career-milestones__left, .career-milestones__right {
    width: 100%;
    padding-inline: 1rem;
  }
  .career-milestones__left-img, .career-milestones__right-img {
    max-width: 100%;
  }
  .career-milestones__left-content {
    margin-bottom: 1rem;
  }
  /* CAREER MILESTONES END */
}
/* Extra Small Screens (XS) - Mobile Phones */
@media (max-width: 575.98px) {
  /* FOOTER START */
  footer .footer .link-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  footer .footer-main {
    padding-block: 2rem;
    padding-inline: 5vw;
  }
  footer .footer-main .address {
    margin-top: 2rem;
  }
  footer .footer-copyright {
    justify-content: center;
    gap: 1rem;
  }
  footer .footer-copyright .copy-right-text {
    text-align: center;
  }
  footer .footer-copyright .social-media-link {
    scale: 0.8;
  }
  /* FOOTER END */
  /* AWARDS AND HONOURS START */
  .awards-and-honours {
    padding-block: 2rem;
  }
  .awards-and-honours__card-wrapper {
    grid-template-columns: 1fr;
  }
  /* AWARDS AND HONOURS END */
  /* CONTACT US START */
  .contact-us__content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-us__content-item .heading {
    margin-bottom: 0.5rem;
  }
  /* CONTACT US END */
}