/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;&display=swap');

:root {
  --primary-color: #791315;
  --secondary-color: #b28b2e;
  --third-color: #ce9466;
  --body-color: #231618;
  --light-blue: #f0f8ff;
  --light-pink: #fffafb;
  --gray: #f5f5f5;
  --linear-gradient: linear-gradient(45deg,
      var(--third-color),
      var(--primary-color));
}

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

body {
  color: var(--body-color);
  font: 400 14px "Poppins", sans-serif;
  overflow-x: hidden;
}

.bodytestColor {
  color: #231618;
}


::selection {
  background: #1e1e1e;
  color: #fff;
}

.object-cover {
  object-fit: cover;
}

ul {
  margin-bottom: 0;
}

p {
  line-height: 1.5;
}

p a {
  color: var(--secondary-color);
  text-decoration: 1px underline;
}

p a:hover {
  color: var(--body-color);
  text-decoration: 1px underline;
}

.padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

img,
video,
iframe,
svg {
  width: 100%;
  display: block;
}

img,
iframe {
  width: 100%;
  display: block;
}

.devyaniimg img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.wrapper {
  width: 100%;
}

.min-padding {
  padding: 40px 0px;
}

.mainBg {
  background: var(--primary-color);
}

.header {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border: solid var(--primary-color);
  border-width: 1px 0;
  backdrop-filter: blur(5px) brightness(2);
  background-color: rgb(255 255 255 / 95%);
  z-index: 9999;
}

.header,
.header * {
  transition: 400ms all;
}

.marqueeText {
  padding: 5px 10px;
  background-color: var(--primary-color);
  position: relative;
}

.header.fixed .marqueeText {
  height: 0;
  overflow: hidden;
  padding: 1px;
}

.marqueeText>span {
  position: absolute;
  left: 10px;
  top: 0px;
  bottom: -5px;
  padding: 13px 10px 10px;
  font-size: 13px;
  text-transform: uppercase;
  background: #fff;
  color: var(--secondary-color);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.marqueeText>span::before,
.marqueeText>span::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: 5px solid transparent;
  z-index: -1;
}

.marqueeText>span::before {
  left: -10px;
  border-right: 10px solid #191f1c;
}

.marqueeText>span::after {
  right: -10px;
  border-left: 10px solid #191f1c;
}

.marqueeText marquee {
  display: flex;
}

.marqueeText p {
  padding-top: 2px;
  margin: 0 5px;
  font-size: 13px;
  color: #fff;

}

.marqueeText p a {
  color: #fff;
}

.marqueeText p a:hover {
  text-decoration: underline;
}

.main-header {
  width: 100%;
}

.logo {
  position: relative;
  z-index: 1;
}

.logo a {
  width: auto;
  height: 100px;
  display: block;
  padding: 10px;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

/* .header.nonstick .logo ,
.header.fixed .logo {
  height: 51.5px;
} */

.header.nonstick .logo a,
.header.fixed .logo a {
  height: 90px;
  width: auto;
}

.header.fixed .logo a {
  top: -1rem;
}

.logo a::before,
.logo a::after {
  content: '';
  position: absolute;
  /* clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%); */
  z-index: -1;
}

.logo a::before {
  inset: 0;
  /* background-color: var(--primary-color); */
}

.logo a::after {
  inset: 1px;
  /* background-color: #fff; */
}

.logo img {
  /* width: auto; */
  height: 100%;
  object-fit: contain;
}

.header.fixed .logo img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.quickLinks {
  position: relative;
  display: flex;
}

.quickLinks>ul {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.quickLinks>ul>li {
  position: relative;
}

.header.fixed .quickLinks>ul>li>a {
  font-size: 12px;
  padding: 1rem;
}

.quickLinks>ul>li a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.quickLinks li a i {
  font-size: .75em;
  color: var(--primary-color);
}

.quickLinks li a {
  font-size: 14px;

  text-transform: uppercase;
  color: #000;
  padding: 1.25rem 10px;
}

.quickLinks li:hover>a {
  color: var(--primary-color);
}

.quickLinks .dropdown {
  position: absolute;
  width: 300px;
  left: 50%;
  top: 100%;
  padding-top: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  pointer-events: none;
  transition: all 300ms linear;
}

.quickLinks li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
  pointer-events: all;
}

.quickLinks .dropdown .inner {
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 15%);
}

.applynow ul li:not(:last-of-type),
.quickLinks .dropdown ul li:not(:last-of-type) {
  border-bottom: 1px solid rgb(0 0 0 / 30%);
}

.header .quickLinks .dropdown ul a {
  padding: 10px 0;
  font-size: 12px;
}

.applynow .dropdown-menu .dropdown-item i,
.quickLinks .dropdown ul a i {
  color: var(--secondary-color);
  transition: all 300ms ease-in-out;
  font-size: .75em;
}

.applynow .dropdown-menu .dropdown-item:hover i,
.quickLinks .dropdown ul a:hover i {
  transform: scale(1.25, 1.25);
}

.applynow {
  margin-right: 10px;
}

.applynow .dropdown-menu {
  width: 250px;
  border-radius: 0;
  border: 0;
  padding: 1rem;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 15%);
}

.applynow .dropdown-menu .dropdown-item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;

  text-transform: uppercase;
  color: #000;
}

.applynow .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.menuBtn {
  width: auto;
  color: #000;
  background-color: rgb(255 255 255 / 72%);
  border-left: 1px solid var(--primary-color);
  position: relative;
  padding: 0 20px;
  gap: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menuBtn em {
  font-size: 15px;
  font-style: normal;
  display: block;
}

.menuBtn span {
  width: 25px;
  height: 3px;
  background: #000;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  position: relative;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.menuBtn span::before,
.menuBtn span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: #000;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.menuBtn span::before {
  top: -8px;
}

.menuBtn span::after {
  bottom: -8px;
}

.menuBtn.menuBtnActive span {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menuBtn.menuBtnActive span::before {
  opacity: 0;
}

.menuBtn.menuBtnActive span::after {
  -webkit-transform: rotate(-90deg) translateX(7px);
  -moz-transform: rotate(-90deg) translateX(7px);
  -ms-transform: rotate(-90deg) translateX(7px);
  -o-transform: rotate(-90deg) translateX(7px);
  transform: rotate(-90deg) translateX(7px);
}
/* mobile menu */
.menuContainer {
  position: fixed;
  inset: 0;
  padding-top: 90px;
  z-index: 996;
  background-color: rgb(0 0 0 / 75%);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .inner {
  padding: 2rem 10px;
  width: 100%;
  max-height: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: 0;
  visibility: hidden;
  overflow: auto;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, var(--primary-color), rgb(112, 0, 0));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  border-bottom: 1px solid #fff;
  transition: all 300ms ease-in-out;
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer.active {
  display: block;
}

.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu ul a{
  padding: 10px 0;
  font-weight: 300;
  font-size: 1.25rem;
  display: block;
  position: relative;
}

.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
  border-radius: var(--primary-radius);
}

.mainMenu > ul a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}

.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}

.mainMenu li.active > a i{
  transform: rotate(540deg);
}

.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--primary-radius);
  /* display: none; */
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
/* mobile menu */
/* header ends */

/* ---- */
/* header ends */

/* Left sticky */
.leftPanel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  background: rgb(255 255 255 / 64%);
  box-shadow: 0 0 10px #00000021;
  backdrop-filter: blur(5px);
  padding: 7px 7px;
  width: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.socials {
  width: 100%;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #0000002e;
}

.socials>li {
  margin: 7px 0;
  position: relative;
}

.socials>li:hover {
  opacity: 1;
}

.socials li a {
  color: var(--primary-color);
  text-shadow: 0px 0px 13px #ffffff;
  font-size: 17px;
  display: block;
}

.socials:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.socials li .leftDrop {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 10px;
  width: max-content;
  transition: all 300ms ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.socials li:hover .leftDrop {
  visibility: visible;
  opacity: 1;
}

.socials li .leftDrop li {
  margin: 2px 0;
  opacity: 1;
}

.socials li .leftDrop li a {
  display: block;
  padding: 5px 10px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 12px;
  transition: all 300ms ease-in-out;
}

.socials li .leftDrop li a:hover {
  background-color: var(--secondary-color);
}

/* Left sticky */

.relative {
  position: relative;
}

.banner {
  --header-height: 97px;
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  position: relative;
  overflow: hidden;
}

.banner img,
.banner video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.banner .banner-content {
  isolation: isolate;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  max-width: fit-content;
  width: calc(100% - 2rem);
  padding: 14px 20px 10px;
  /* background-color: rgb(0 0 0 / 33%); */
  /* backdrop-filter: blur(3px); */
  background-color: var(--primary-color);
  text-align: left;
  color: #fff;
}


.banner .banner-content h5 {
  font-size: 1.5rem;
}

.soundBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 9;
}

.scrollDown {
  position: absolute;
  bottom: 30px;
  cursor: pointer;
  width: 40px;
  z-index: 10;
  left: 50%;
  -webkit-animation: bounce 2s ease-in-out infinite alternate;
  animation: bounce 2s ease-in-out infinite alternate;
}

@keyframes bounce {
  0% {
    transform: translate(-50%, -10px);
  }

  100% {
    transform: translate(-50%, 10px);
  }
}

.bannerText {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: 95%;
  max-width: 700px;
  text-align: center;
  z-index: 99;
}

.bannerText .h1 {
  display: block;
  margin-bottom: 0;
  color: #fff;
  text-shadow: 1px 3px 5px #000;
}

.bannerText .readmore a {
  margin: 0 auto;
}

/* hm overview */
.hm-overview {
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hm-overview .hm-overviewBg {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  z-index: -1;
  background: url(../images/kids-with-aditi-mam.jpg) center no-repeat;
  background-size: cover;
}

.hm-overview .hm-overviewBg:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(121 19 21 / 88%);
}

.overviewImg {
  position: relative;
}

.overviewImg h5 {
  color: #fff;
  font-size: 16px;
}

.overviewImg .img-fluid img {
  height: 445px;
  object-fit: cover;
}

.overviewBox section {
  padding-left: 40px;
}

.overviewBox section h1 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

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

.line-moreBtn {
  width: 50%;
  margin-left: 20%;
  margin-top: 40px;
  display: flex;
  align-items: center;
}

.line-moreBtn:before {
  content: "";
  width: 49%;
  height: 1px;
  background: rgb(184 184 184 / 52%);
}

.line-moreBtn a {
  margin-left: 20px;
  color: var(--primary-color);

  display: flex;
  align-items: center;
  text-transform: uppercase;
  transition: all 300ms ease;
}

.line-moreBtn a i {
  padding-left: 10px;
  font-size: 90%;
  transition: all 300ms ease;
}

.line-moreBtn a:hover i {
  transform: translateX(5px);
}

/* hm overview */

/* Hm news */
.eventBox {
  margin-bottom: 30px;
}

.eventBox a {
  color: #000;
}

.eventBox a:hover {
  text-decoration: underline;
}

.eventBox a img {
  height: 238px;
  object-fit: cover;
}

.eventBox a h5 {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 22px;

}

.smallHeading {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  text-transform: uppercase;
  font-size: 12px;

}

.hm-latest-news-slider {
  padding-bottom: 40px;
}

.newsBox a {
  color: #000;
  display: flex;
  align-items: flex-start;
  padding-right: 30px;
}

.newsBox a .date {
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 15px;
  border-right: 1px solid rgb(0 0 0 / 25%);
  text-align: center;
}

.newsBox a .date span {
  display: block;
  margin-bottom: 5px;

  color: rgb(0 0 0 / 60%);
}

.newsBox a .date h2 {
  margin-bottom: 0;
  line-height: 0.5;

  color: var(--primary-color);
}

.newsBox a p {
  letter-spacing: normal;
  padding-left: 15px;
  margin-bottom: 0;
  font-size: 16px;
}

.newsBox a:hover p {
  text-decoration: underline;
}

.more-news {
  padding: 0 30px;
}

.more-news aside {
  height: 100%;
  padding: 30px 30px 70px;
  border: solid rgb(0 0 0 / 15%);
  border-width: 4px 1px 0;
  border-top-color: var(--primary-color);
}

.more-news aside hr {
  display: inline-block;
  width: 110px;
}

.more-news aside .hm-more-news-box {
  padding: 10px 0;
}

.hm-more-news-box h4,
.hm-more-news-box h6 {}

.hm-more-news-box h6 {
  font-size: 12px;
  margin-bottom: 0;
  text-transform: uppercase;
}

.hm-more-news-box ul li {
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
  padding: 10px 0;
}

.hm-more-news-box ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hm-more-news-box ul li a {
  color: #000;
  font-size: 17px;
}

.hm-more-news-box ul li a:hover {
  text-decoration: underline;
}

.more-news aside footer.hm-more-news-box.d-flex {
  justify-content: center;
}

.more-news aside footer.hm-more-news-box.d-flex a {
  display: block;
  padding: 0 10px;
  line-height: 1;
  color: var(--secondary-color);
}

.more-news aside footer.hm-more-news-box.d-flex a:first-child {
  border-right: 1px solid rgb(0 0 0 / 15%);
}

.more-news aside footer.hm-more-news-box.d-flex a:hover {
  text-decoration: underline;
  color: #000;
}

/* Hm news */

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

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-third {
  color: var(--third-color) !important;
}

.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-primary {
  background-color: var(--primary-color) !important;
  color: #fff;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
  color: #fff;
}

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

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

/* custom swiper controls */
div[class^='swiper-button'] {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: #fff;
  transition: all 300ms ease-in-out;
}

div[class^='swiper-button'].bg-primary,
div[class^='swiper-button']:hover {
  background-color: var(--primary-color);
  color: #fff;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 10%);
}

div[class^='swiper-button'].bg-primary:hover {
  background-color: var(--body-color) !important;
}

div[class^='swiper-button']:after {
  color: inherit;
  font-size: 13px;
}

div[class^='swiper-button'].lg {
  width: 60px;
  height: 60px;
  margin-top: -30px;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 20%);
}

div[class^='swiper-button'].lg:hover {
  backdrop-filter: blur(5px) brightness(2);
  border-color: transparent;
}

div[class^='swiper-button'].lg:after {
  font-size: 1rem;
  font-weight: 100;
  color: #fff;
}

.swiper-controls {
  position: relative;
  margin: 2rem auto 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.swiper-controls div[class^="swiper-button"] {
  position: static;
  margin-top: 0;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}

/* custom swiper controls */

/* Hm admission */
.hm-admissionBox section {
  padding: 3rem;
  background-color: #fff;
}

.hm-admissionBox section h5 {
  font-size: 26px;

  margin-bottom: 40px;
}

.education-logos {
  gap: 20px;
  width: 90%;
  margin-bottom: 3rem;
}

.education-logos li {
  flex: 1 0 0;
}

.education-logos li img {
  border-radius: 50%;
}

/* Hm admission */

/* hm infra section */
.infra-content section {
  padding-right: 15px;
  display: none;
}

.infra-content section.show {
  display: block;
}

.viewmore a {
  color: var(--secondary-color);

}

.viewmore a:hover {
  color: var(--primary-color);
}

.infra-img {
  overflow: hidden;
}

.infra-img img {
  height: 100%;
  object-fit: cover;
  animation: breathe 10s alternate infinite;
}

@keyframes breathe {
  to {
    transform: scale(1.2);
  }
}

.infraBtnBox ul li {
  padding-left: 10px;
}

.infraBtn {
  width: 100%;
  border-radius: 0;
  padding: 10px 10px 7px;
  text-align: left;
  background: #fff;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 10%);

  font-size: 14px;
  transition: all 300ms ease-in-out;
  position: relative;
  z-index: 1;
}

.infraBtnBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.infraBtn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: calc(100% + 22px);
  background-color: var(--primary-color);
  box-shadow: 0 10px 20px rgb(0 0 0 / 55%);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 7% 100%, 0 50%);
  transform: scale(1.1);
  transition: all 300ms ease-in-out;
  opacity: 0;
  z-index: -1;
}

.infraBtn:hover {
  background: var(--secondary-color);
  color: #fff;
}

.infraBtn.active {
  background: var(--primary-color);
  box-shadow: 0 10px 20px rgb(0 0 0 / 30%);
  color: #fff;
  z-index: 2;
}

.infraBtn.active::before {
  opacity: 1;
}

.infraBtn span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-transform: uppercase;
  font-size: 12px;
}

/* hm infra section */

/* stats */
.stats {
  text-align: center;
}

.stats h2 {
  font-size: 4.5rem;

  line-height: 1;
  margin-bottom: 25px;
}

.stats h6 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 0.5;
}

/* stats */

/* beyond */
.icons-container>.iconBox {
  max-width: 200px;
}

.iconBox {
  text-align: center;
}

.iconBox[class*="-4"] {
  border: solid rgb(0 0 0 / 10%);
  border-width: 0 1px 1px 0;
}

.iconBox[class*="-4"]:last-child,
.iconBox[class*="-4"]:nth-child(4n) {
  border-right: none;
}

.iconBox[class*="-4"]:nth-last-child(1),
.iconBox[class*="-4"]:nth-last-child(2),
.iconBox[class*="-4"]:nth-last-child(3) {
  border-bottom: none;
}

.iconBox .img-fluid {
  max-width: 80px;
  margin: 0 auto 10px;
}

.iconBox .inner {
  display: block;
  padding: 15px;
  color: var(--body-color);
  text-transform: uppercase;

  font-size: 12px;
}

.iconBox .inner:hover {
  color: var(--primary-color);
}

/* beyond */

/* Pro Vice Chairperson */
.toggleHeader {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.toggleBtn {
  border: 0;
  flex: 1 0 0;
  padding: 1rem;
  background-color: transparent;
  border-top: 4px solid transparent;
  font: 600 1.25rem / 1 var(--font-bold);
  color: var(--body-color);
}

.toggleBtn.active {
  background-color: #fff;
  border-top-color: var(--primary-color);
  color: var(--primary-color);
}

.toggleWrapper {
  min-height: 407px;
  padding: 2rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.management-img img {
  object-position: -230px top;
}

/* Pro Vice Chairperson */

/* Testimonails */
.testimonials .swiper-controls {
  margin: 1.5rem auto 2px;
}

.testimonials .swiper-controls .swiper-button-next {}

.testim-slide {
  padding-top: 60px;
  height: auto;
}

.testim-slide .inner {
  height: 100%;
  padding: 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
}

.testim-slide:nth-child(2n+2) .inner {
  background-color: var(--secondary-color);
}

.testim-slide .inner .testim-img {
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: -80px auto 20px;
  box-shadow: 0 0 0 5px #fff, 0 0 13px rgb(0 0 0 / 25%);
}

.testim-slide .inner p {
  font-size: 13px;
}

.testim-slide .inner p a {
  color: #fff;
  text-decoration: underline;
  font-style: italic;
}

.testim-slide .inner .testimFooter {
  margin-top: 30px;
}

.testim-slide .inner .testimFooter h6 {}

.scroller {
  padding-right: 15px;
}

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

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #CFCFCF;
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

.carousel-control-next.banner-next,
.carousel-control-prev.banner-prev {
  top: 50%;
  width: 40px;
  height: 40px;
  background-color: rgb(0 0 0 / 40%);
  border-radius: 50px;
  opacity: 1;
  z-index: 9;
}

.carousel-control-next.banner-next.event-next,
.carousel-control-prev.banner-prev.event-prev {
  top: 30%;
}

.carousel-control-next.banner-next {
  right: 10px;
}

.carousel-control-prev.banner-prev {
  left: 10px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-size: 60%;
}

.carousel-control-next.banner-next:hover,
.carousel-control-prev.banner-prev:hover {
  background-color: var(--primary-color);
}

.carousel-control-next.test-next,
.carousel-control-prev.test-prev {
  top: auto;
  bottom: 10px;
}

.carousel-control-prev.test-prev {
  left: calc(50% - 50px);
}

.carousel-control-next.test-next {
  right: calc(50% - 50px);
}

/* Testimonails */

/* .arrow {
  position: relative;
  display: table;
  margin-top: 30px;
}

.arrow span {
  float: left;
  position: relative;
  width: 30px;
  height: 2px;
  background: #a8a8a8;
  transition: all 300ms ease-in-out;
}

.arrow span::before,
.arrow span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #a8a8a8;
  right: -4px;
}

.arrow span::before {
  bottom: 100%;
  transform: rotate(45deg);
  transform-origin: 75% 0%;
}

.arrow span::after {
  top: 100%;
  transform: rotate(-45deg);
  transform-origin: 69% 65%;
}

.arrow:hover span {
  width: 70px;
  background: #fff;
}

.arrow:hover span::before,
.arrow:hover span::after {
  background: #fff;
} */

.readmore {
  width: 100%;
  margin-top: 30px;
}

.readmore a {
  position: relative;
  display: block;
  width: 170px;
  height: 40px;
  text-align: center;
  perspective: 300px;
  font-size: 14px;
  z-index: 1;
}

.readmore a .cube {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 0.333s;
  -moz-transition: all 0.333s;
  -ms-transition: all 0.333s;
  transition: all 0.333s;
  -webkit-transform: translateZ(-18px);
  -moz-transform: translateZ(-18px);
  -ms-transform: translateZ(-18px);
  transform: translateZ(-18px);
}

.readmore a .front,
.readmore a .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 42px;
  color: #fff;
  background: var(--primary-color);
  -webkit-transition: background 0.333s;
  -moz-transition: background 0.333s;
  -ms-transition: background 0.333s;
  transition: background 0.333s;
}

.readmore a .front {
  -webkit-transform: rotateX(0deg) translateZ(18px);
  -moz-transform: rotateX(0deg) translateZ(18px);
  -ms-transform: rotateX(0deg) translateZ(18px);
  transform: rotateX(0deg) translateZ(18px);
}

.readmore a .back {
  -webkit-transform: rotateX(-90deg) translateZ(18px);
  -moz-transform: rotateX(-90deg) translateZ(18px);
  -ms-transform: rotateX(-90deg) translateZ(18px);
  transform: rotateX(-90deg) translateZ(18px);
  font-size: 22px;
  background: var(--secondary-color);
}

.readmore a:hover .cube {
  -webkit-transform: translateZ(-18px) rotateX(90deg);
  -moz-transform: translateZ(-18px) rotateX(90deg);
  -ms-transform: translateZ(-18px) rotateX(90deg);
  -o-transform: translateZ(-18px) rotateX(90deg);
  transform: translateZ(-18px) rotateX(90deg);
}

.readmore a:hover .front {
  -webkit-transform: translateZ(18px) rotateX(0deg);
  -moz-transform: translateZ(18px) rotateX(0deg);
  -ms-transform: translateZ(18px) rotateX(0deg);
  -o-transform: translateZ(18px) rotateX(0deg);
  transform: translateZ(18px) rotateX(0deg);
}

.readmore a:hover .back {
  -webkit-transform: rotateX(-90deg) translateZ(18px);
  -moz-transform: rotateX(-90deg) translateZ(18px);
  -ms-transform: rotateX(-90deg) translateZ(18px);
  -o-transform: rotateX(-90deg) translateZ(18px);
  transform: rotateX(-90deg) translateZ(18px);
}

.readmore.white a .front {
  background: #fff;
  color: #191f1c;
}

.readmore.white a .back {
  background: #848484;
  color: #191f1c;
}

.heading {
  display: table;
  clear: both;
  position: relative;
  padding-bottom: 5px;
  margin: 0 auto 40px;
  text-transform: uppercase;
}

.loca-heading {
  margin-bottom: 20px;
}


.heading:before {
  content: "";
  position: absolute;
  left: calc(50% - 35px);
  bottom: 0;
  width: 70px;
  height: 2px;
  background: var(--primary-color);
  background: -webkit-linear-gradient(90deg, var(--secondary-color) 50%, var(--primary-color) 50%);
  background: linear-gradient(90deg, var(--secondary-color) 50%, var(--primary-color) 50%);
}

.heading .h1 {
  position: relative;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.heading h4 {
  text-transform: uppercase;
}

.heading.lightHeading:before {
  background: #fff;
}

.heading.lightHeading .h1,
.heading.lightHeading h4 {
  color: #fff;
}

.heading.leftHeading {
  margin-left: 0;
}

.heading.leftHeading:before {
  left: 0;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  border-top: 10px solid #fff;
  position: relative;
  z-index: 1;
}

.second-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  width: 120px;
  position: absolute;
  left: calc(50% - 60px);
  top: -50px;
  filter: drop-shadow(2px 4px 8px rgb(0 0 0 / 55%));
}

.footer a {
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  letter-spacing: 1px;
  padding-top: 3px;
  display: block;
  line-height: 1.5;
}

.footer a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-menu.footer-links ul li {
  width: 100%;
}

.footer-title {
  margin-bottom: 1.25rem;
}

.main-footer {
  margin: 3rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.pl-phone li:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #fff;
}

.foot-social {
  gap: 10px;
  margin-top: 25px;
}

.foot-social li a i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 70%);
  transition: all 300ms ease-in-out;
}

.foot-social li a:hover i {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.footer-menu ul {
  flex-wrap: wrap;
}

.footer-menu ul li {
  width: 50%;
  padding: 5px 0;
  text-transform: uppercase;
}

.bottom-links {
  gap: 10px;
}

.bottom-links li {
  flex-grow: 1;
}

.bottom-links li a {
  display: block;
  padding: 15px 20px 12px;
  border-radius: 40px;
  text-align: center;
  background-color: var(--secondary-color);
  font-size: 14px;
  transition: all 300ms ease-in-out;
}

.bottom-links li a:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

.second-footer p {
  letter-spacing: normal;
}

.ecis p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ecis img {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: middle;
}

.ecis p {
  margin-bottom: 0;
}

.button-top {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  cursor: pointer;
  right: 20px;
  bottom: 100px;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 13px;
  color: #ffffff;
  font-size: 20px;
  border: 1px solid #fff;
  z-index: 9999;
  transition: padding 300ms;
}

.button-top i {
  margin-right: 0;
}

.button-top:hover {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 13px;
}

/* Inside pages start from here */
.page-banner {
  height: 26vw;
  margin-top: 101px;
  position: relative;
  z-index: 1;
}

.page-banner.emptyBox {
  background-color: var(--secondary-color);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.page-banner.emptyBox::before {
  display: none;
}

.page-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.page-banner.emptyBox .page-heading {
  position: static;
  transform: none;
  text-align: center;
}

.page-heading .h1 {
  text-transform: uppercase;

  letter-spacing: 1px;
}

.bread_crumb {
  padding-top: 20px;
}

.bread_crumb ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bread_crumb ul li {
  text-align: center;
}

.bread_crumb ul li span {
  position: relative;
  width: 60px;
  z-index: 1;
}

.bread_crumb ul li span:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  background: #ffffff;
  border: 2px solid #920024;
  border-radius: 50%;
}

.bread_crumb ul li a {
  background: #920024;
  font-size: 14px;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: #fff;
  border-radius: 50%;
}

.bread_crumb ul li a:hover {
  background: #353535;
}

.bread_crumb ul li a i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

.bread_crumb ul li p {
  width: 100%;
  display: inline;
  padding: 5px 10px;
  border: 1px solid #920024;
  font-size: 12px;
}

/*inside navigation and quick links*/
.position-sticky {
  position: sticky;
  top: 120px;
}

.inside_menu_title {
  width: 100%;

  font-size: 1.25rem;
  text-transform: uppercase;
  border: 0;
  border-top: 3px solid #df4237;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
}

.inside_menu_title i {
  color: var(--primary-color);
}

/*inside navigation and quick links*/

.para-box {
  text-align: justify;
}

.para-box>section:not(:last-child) {
  margin-bottom: 3rem;
}

.para-box .pagetitle {
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--third-color);
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: start;
}

.para-box .inside-slider-wrapper {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgb(0 0 0 / 15%);
}

.slide-show {
  width: 100%;
  height: 190px;
}

.slide-show img {
  width: 75%;
  margin: 0 auto;
  right: 0;
  bottom: 0;
}

/* our school */
.motto-head {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  text-align: center;
}

.motto-logo {
  max-width: 300px;
  margin: 0 auto 2rem;
}

/* our school */

/* FAQs */
.section-faq__wrap {
  counter-reset: wrapper;
}

.section-faq__row {
  background-color: #f9f9f9;
}

.section-faq__row.active {
  background-color: var(--primary-color);
  color: #fff;
  transition: all 300ms ease-in-out;
}

.section-faq__row+.section-faq__row {
  margin-top: 20px;
}

.section-faq__title {
  margin-bottom: 0;
  padding: 1.75rem 3.75rem 1.75rem 2rem;
  color: var(--body-color);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.section-faq__title:hover {
  color: var(--primary-color);
}

.section-faq__row.active .section-faq__title {
  color: #fff;
}

.section-faq__title::before {
  counter-increment: wrapper;
  content: 'Q' counter(wrapper) '. ';
  /* content: counter(wrapper, decimal-leading-zero); */
}

.section-faq__title::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "+";
  position: absolute;
  width: 14px;
  height: 14px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  color: var(--primary-color);
  font-size: 16px;
  line-height: 1;
}

.section-faq__row.active .section-faq__title::after {
  content: "\f068";
  color: var(--secondary-color);
}

@media (max-width: 991px) {
  .section-faq__title::after {
    right: 20px;
  }
}

@media (max-width: 991px) {
  .section-faq__title {
    padding: 16px 20px;
    padding-right: 50px;
  }
}

.section-faq__content {
  display: none;
  padding: 0 30px 18px 35px;
}

@media (max-width: 991px) {
  .section-faq__content {
    padding: 0 20px 18px 20px;
  }
}

.section-faq__content p:last-child {
  margin-bottom: 0;
}

.section-faq__list {
  margin-bottom: 16px;
}

.section-faq__list li {
  position: relative;
  padding-left: 14px;
}

.section-faq__list li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 4px;
  left: 0;
  z-index: 1;
  background-color: var(--secondary-color);
}

@media (max-width: 991px) {
  .section-faq__list li {
    font-size: 16px;
    line-height: 26px;
  }
}

.section-faq__list li+li {
  margin-top: 11px;
}

/* FAQs */

.inside-slider .swiper-slide.inside-slide {
  height: auto;
}

/* Inside pages start from here */

.list {
  padding-left: 20px;
}

.list li:not(:last-child) {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgb(0 0 0 / 15%);
}

.list li::marker {
  color: var(--primary-color);
}

/* Animation classes */
.scaleTranslate {
  -webkit-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  opacity: 0;
  -webkit-transition: all 600ms;
  -o-transition: all 600ms;
  -ms-transition: all 600ms;
  -moz-transition: all 600ms;
  transition: all 600ms;
}

.doneScaleTranslate {
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  -o-transform: translate(-200px, 0);
  -moz-transform: translate(-200px, 0);
  -ms-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 600ms;
  -o-transition: all 600ms;
  -ms-transition: all 600ms;
  -moz-transition: all 600ms;
  transition: all 600ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  -o-transform: translate(200px, 0);
  -moz-transform: translate(200px, 0);
  -ms-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 600ms;
  -o-transition: all 600ms;
  -ms-transition: all 600ms;
  -moz-transition: all 600ms;
  transition: all 600ms;
}

.topTranslate {
  -webkit-transform: translate(0, -100px);
  -o-transform: translate(0, -100px);
  -moz-transform: translate(0, -100px);
  -ms-transform: translate(0, -100px);
  transform: translate(0, -100px);
  opacity: 0;
  -webkit-transition: all 600ms;
  -o-transition: all 600ms;
  -ms-transition: all 600ms;
  -moz-transition: all 600ms;
  transition: all 600ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  -o-transform: translate(0, 200px);
  -moz-transform: translate(0, 200px);
  -ms-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  -o-transition: all 1000ms;
  -ms-transition: all 1000ms;
  -moz-transition: all 1000ms;
  transition: all 1000ms;
}

.doTranslate {
  -webkit-transform: translate(0, 200px);
  -o-transform: translate(0, 200px);
  -moz-transform: translate(0, 200px);
  -ms-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  -ms-transition: all 500ms;
  -moz-transition: all 500ms;
  transition: all 500ms;
}

.skewTransform {
  -webkit-transition: all 700ms;
  transition: all 700ms;
  -webkit-transform: skewX(-50deg) translate(-140px, -140px);
  transform: skewX(-50deg) translate(-140px, -140px);
  opacity: 0;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

/* Animation classes */

.enquiry-form label {
  margin-bottom: 6px;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  padding: 1rem 1.5rem;
  min-width: 150px;
  color: var(--body-color);
  background-color: transparent;
  border: 1px solid var(--secondary-color);
  font-size: 13px;
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.readmore button {
  width: max-content;
  background: none;
}

.readmore .button.sm {
  padding: .75rem 1rem;
  min-width: 120px;
}

.readmore .button.text-white {
  border-color: var(--secondary-color);
}

.readmore .button.text-white:hover {
  background-color: var(--secondary-color);
  border-color: transparent;
}

.readmore .button.solid.white:hover,
.readmore .button.solid {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.readmore .button.solid.white,
.readmore .button.solid:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
}

.table {
  border-color: #791315;
}

.table>thead {
  background-color: #b9912f;
  color: white;
}

.table tr th {
  background-color: #b9912f;
  color: white;
  font-weight: 500;
}

.table tr th,
.table tr td {
  padding: 11px 12px;
}

.pagetitle {
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--third-color);
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
}

/* Contact Page */
.address-card .inner {
  height: 100%;
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.5rem;
}

.address-card:nth-child(even) .inner {
  background-color: var(--gray);
  color: var(--body-color);

}

.address-card .inner ul li {
  border-bottom-color: rgb(255 255 255 / 25%);
}

.address-card .inner ul li::marker {
  color: var(--secondary-color);
}

.address-card:nth-child(even) .inner ul li {
  border-bottom-color: rgb(0 0 0 / 15%);
}

.address-card .heading::before {
  display: none;
}

.address-card .inner ul {
  line-height: 1.6;
}

/* Contact Page */
.lowerPost {
  font-size: 0.813rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group>label {
  margin-bottom: 0;
  font-size: 13px;
}

label {
  cursor: pointer;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background-color: transparent;
  outline: none;
  padding-left: 0;
  padding-top: 0;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark {
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark {
  background-color: var(--primary-color);
}

.form-control.form-control-dark::placeholder {
  color: #8f8f8f;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}

.desktop-banner {
  display: block;
}
.mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .desktop-banner {
      display: none;
  }
  .mobile-banner {
      display: block;
  }
}

.custom-box {
  border: 2px solid black;
  padding: 10px 20px;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  display: inline-block;
  background-color: white;
}

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

.sitemap-description {
  text-align: center;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.sitemap-section {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #3498db;
}

.section-title {
  color: #2980b9;
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.section-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-links li {
  margin-bottom: 8px;
}

.section-links a {
  color: #34495e;
  text-decoration: none;
  transition: color 0.3s;
}

.section-links a:hover {
  color: #3498db;
  text-decoration: underline;
}

.sitemap-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #7f8c8d;
}

.sitemap-footer a {
  color: #3498db;
  text-decoration: none;
}

.sitemap-footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .sitemap-grid {
      grid-template-columns: 1fr;
  }
}