@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Cardo:wght@400;700&display=swap');

:root {
  --primary-color: #c70806;
  --primary-dark-color: #740200;
  --secondary-color: #c29b40;
  --secondary-light-color: #f9f6f3;
  --body-color: #27262e;
  --gray: #666;
  --lightgray: #999;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: "Cormorant Garamond", serif;
  --serif-num: "Cardo", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font: 400 1rem "Inter", sans-serif;
  overflow-x: hidden;
}

p {
  line-height: 1.5;
}

p>a {
  color: inherit;
}

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

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

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

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

svg:not([fill]) {
  fill: currentColor;
}

.position-sticky {
  top: 60px;
}

.gap-row {
  row-gap: 30px;
}

.gap-form-row {
  row-gap: 10px;
}

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

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

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

.filter-white {
  -webkit--filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -webkit--filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

.filter-invert {
  -webkit--filter: invert(1);
  filter: invert(1);
}

.icon-circular {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 1rem;
  transition: all 300ms ease-in-out;
}

.icon-circular.reverse,
.icon-circular:hover {
  color: #fff;
  background-color: var(--body-color);
}

.icon-circular.reverse:hover {
  background-color: var(--secondary-color);
}

.icon-circular.sm {
  width: 30px;
  height: 30px;
  font-size: .75rem;
}

.icon-circular.bordered {
  background-color: transparent;
  border: 1px solid rgb(0 0 0 / 25%);
  color: var(--secondary-color);
}

.icon-circular.bordered.white {
  border: 1px solid rgb(255 255 255 / 15%);
}

.icon-circular.fa-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 0 0 8px rgba(61, 251, 105, 0.45), 0 0 0 15px rgba(33, 164, 40, 0.63), 1rem 1rem 2rem rgb(0 0 0 / 25%);
  animation: enq 2s cubic-bezier(0.55, 0.76, 0.27, 1.29) infinite;
  position: relative;
  z-index: 1;
}

@keyframes enq {
  50% {
    box-shadow: 0 0 0 1px rgba(61, 127, 251, 0.45),
      0 0 0 0px rgb(11 107 235 / 63%), 1rem 1rem 2rem rgb(0 0 0 / 25%);
  }
}

i svg {
  width: 16px;
}

/* .whatsapp-btn {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 9;
} */

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 5px 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 3rem;
}

.logo {
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo a {
  font: 300 1.75rem var(--serif);
  text-transform: uppercase;
  color: var(--secondary-color);
  /* padding-right: 15px; */
  border-right: 1px solid var(--body-color);
}

.logo img {
  width: 180px;
  transition: all 300ms ease-in-out;
}

.header.fixed .logo img {
  width: 150px;
}

.navigation {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.navigation .main-menu {
  display: flex;
  align-items: center;
}

.navigation .main-menu a {
  color: var(--body-color);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  letter-spacing: 1.4px;
  line-height: 16px;
  display: flex;
  gap: 5px;
  padding: 10px 1.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.navigation .main-menu a:hover {
  color: var(--secondary-color);
}

.navigation ul.main-menu li {
  display: flex;
}

.navigation ul.main-menu li:nth-child(2) i {
  /* padding: 10px; */
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}




/*header*/

/* menu btn */
.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);
}

.menuBtn.closeMenuBtn span {
  background-color: #fff;
}

.menuBtn.closeMenuBtn span::before {
  top: 0px;
  transform: rotate(45deg);
}

.menuBtn.closeMenuBtn span::after {
  bottom: 0px;
  transform: rotate(318deg);
}


/* mobile menu */
.menuContainer {
  position: fixed;
  inset: 0;
  padding-top: 55px;
  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%);
  transition: all 300ms ease-in-out;
}

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

.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 li {
  text-align-last: start;
}

.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);
}

.mainMenu ul ul li:last-child a {
  border-bottom: 0;
}

/* mobile menu */

/* banner */
.banner {
  height: calc(100vh - 69px);
  margin-top: 69px;
  position: relative;
  background-color: #000;
  background-image: linear-gradient(180deg, var(--primary-color), transparent), url(../images/wave-bg.svg);
  background-position: 0px 0px, 50% 100%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-attachment: scroll, scroll;
  z-index: 1;
}

.banner-form {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 60%;
  right: 1%;
  transform: translateY(-50%);
  z-index: 9;
}

.banner-form .inner {
  max-width: 470px;
  padding: 1.5rem;
  background-color: #fff;
}

.banner-form .inner .heading {
  display: table;
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 0;
  z-index: 1;
}

.bannerText {
  position: absolute;
  left: 5rem;
  top: 5rem;
  color: #fff;
  z-index: 1;
}

.scrollDown {
  position: absolute;
  left: calc(50% - 20px);
  bottom: 20px;
  width: 40px;
  opacity: 1;
  cursor: pointer;
  z-index: 9;
  transition: opacity 200ms ease-in-out;
}

.scrollDown:hover {
  opacity: 1;
}

/* banner-form-modal */
.modal-content-modal {
  border-radius: 0 !important;
  padding: 0 !important;
  background-color: #cc0000;
}

.modal-body1 {
  border: 0 !important;
}

/* banner */

/* Director msg */
.director-img .img-fluid {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.director-img .img-fluid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 14px 14px 0 var(--secondary-color);
  object-position: top;
}

/* Director msg */

/*Footer*/
.footer-area {
  /* background-color: var(--primary-dark-color); */
  background-color: rgb(87 87 87 / 14%);
  position: relative;
  font-size: 14px;
  z-index: 1;
  border-top: 1px solid rgb(87 87 87 / 14%);
}

.footer-area a {
  color: var(--lightgray);
}

.footer-area a:hover {
  color: var(--secondary-color);
}

.footer-area .bottom {
  padding: 2rem 0;
  background-color: #fff;
  color: initial;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  letter-spacing: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.footer-area .bottom p:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgb(87 87 87 / 14%);
}

.footer-area .bottom p img {
  width: 20px;
}

.button-top {
  background: rgb(70 70 70 / 32%);
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 90;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background: var(--secondary-color);
}

/*Footer*/

.headingContainer {
  margin-bottom: 2rem;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  z-index: 1;
}

.heading :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  line-height: 1.3;
  color: green;
  font-weight: 300;
}

.heading :is(h1, h2, .h1, .h2) {
  color: var(--primary-color);
}

.heading :is(h6, .h6) {
  color: var(--secondary-color);
}

.btm-center-bar {
  width: 3.25em;
  height: .25em;
  background-color: var(--secondary-color);
  clear: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.btm-center-bar.left {
  left: 0;
  transform: none;
}

.smallHeading {
  font-weight: 700;
}

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

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

.text-secondary {
  color: green !important;
}

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

.text-serif {
  font-family: var(--serif);
}

.text-serif-num {
  font-family: var(--serif-num);
}

.text-sans {
  font-family: "Inter", sans-serif !important;
}

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

.bg-primary-dark {
  background-color: var(--primary-dark-color) !important;
  color: var(--lightgray);
}

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

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

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

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

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

.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 75%);
  z-index: -1;
}

.scroller {
  overflow: auto;
}

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

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.readmore {
  width: 100%;
  margin-top: 2.5rem;
}

.readmore.d-flex {
  gap: 10px;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 1.25rem;
  min-width: 120px;
  width: max-content;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 16px;
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.readmore .button:hover {
  background-color: var(--secondary-color);
}

.readmore .button img {
  filter: invert(1);
}

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

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

.readmore .button.reverse {
  background-color: var(--secondary-color);
  color: #fff;
}

.readmore .button.reverse:hover {
  background-color: var(--primary-color);
  color: #fff;
}


.viewmore {
  margin-top: 1.5rem;
}

.viewmore .button {
  max-width: max-content;
  text-transform: uppercase;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  line-height: 16px;
  background-color: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.viewmore .button:hover {
  color: var(--secondary-color);
}

.readmore .button img,
.viewmore .button img {
  width: 20px;
  transition: all 200ms ease-in-out;
}

.readmore .button:hover img,
.viewmore .button:hover img {
  transform: translateX(10px);
}

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

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

div[class^="swiper-button"]:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: transparent;
}


div[class^="swiper-button"].lg {
  width: 70px;
  height: 70px;
  margin-top: -50px;
}

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

div[class^="swiper-button"].lg:after {
  font-size: 1.5rem;
  font-weight: 100;
}

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

.bottomControls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.bottomControls.position-absolute {
  bottom: 2rem;
  width: 100%;
}

.bottomControls div[class^="swiper-button"] {
  position: static;
  margin: 0 !important;
}

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

/* custom swiper controls */
.form-group {
  margin-bottom: 5px;
}

.form-group:nth-child(9) {
  margin-bottom: 0;
}

.form-group>label {
  font-size: 13px;
  font-weight: 500;
}


label {
  cursor: pointer;
}

.form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background-color: #f9f9f9;
  outline: none;
  /* padding: 10px; */
}

.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;
}

.form-control::placeholder {
  font-size: 13px;
  color: var(--body-color);
}


.custom-control {
  position: relative;
}

.form-select {
  font-size: 13px;
  font-weight: 500;
  padding: 9px;
}

.custom-control-label {
  width: 100%;
  height: 100%;
  min-width: 80px;
  padding: 10px 10px 7px 34px;
  background-color: #f9f9f9;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.school-control-input {
  position: absolute;
  top: 34%;
  left: 20px;
}

.custom-control-input {
  position: absolute;
  top: 26%;
  left: 20px;
  bottom: 5px;
  font-size: 13px;
  font-weight: 500;
}

.custom-control-input.active {
  background-color: var(--primary-color);
}

.custom-calendar {
  margin-top: 15px;
}

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(5px);
}

.modal-content {
  border-radius: 0;
  padding: 1rem;
  background-color: #fff;
}

.modal-body {
  padding: 1rem;
  border: 4px double rgb(0 0 0 / 50%);
}

.modal-logo {
  width: 180px;
  margin: 0 auto 2rem;
}

button.close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
  height: 30px;
  line-height: 1;
  border: 0;
}

button.close:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.modal-title {
  margin-bottom: 1.5rem;
  padding-bottom: 10px;
  font-weight: 300;
  font-size: 2rem;
  text-align: center;
  border-bottom: 1px dashed rgb(0 0 0 / 30%);
}

/* customize modal */

.list {
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

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

/*================================================
infraSwiper Area CSS
=================================================*/
.infraSwiper-item {
  text-align: center;
  align-content: center;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}

.infraSwiper-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #1f1f1fc0;
  z-index: 9;
  transition: 1s ease-in-out;
}

.infraSwiper-item::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid #fff;
  z-index: 9;
  transition: 0.5s ease-in-out;
}

.infraSwiper-item:hover::after {
  inset: 0px;
}

.infraSwiper-item:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border: none;
  background: none;
}

.infraSwiper-item .infraSwiper-info {
  position: relative;
}

.infraSwiper-item .infraSwiper-info .image {
  width: 100%;
}

.infraSwiper-item .infraSwiper-info .image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  transition: 0.3s ease-in-out;
}

.infraSwiper-item .infraSwiper-info .image img:hover {
  transform: scale(1.1);
}

.infraSwiper-item .infraSwiper-info h4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 300;
  width: 100%;
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1.1px;
  color: #fff;
  z-index: 999;
  padding: 0 20px;
}

.infraSwiper-item:hover .infraSwiper-info h4 {
  position: absolute;
  top: 95%;
  transition: 0.5s ease-in-out;
}

.infraSwiper-item .infraOverlay {
  background-image: linear-gradient(#ffffff00, #000);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 99;
  display: none;
}

.infraSwiper-item:hover .infraOverlay {
  display: block;
  transition: 0.3s ease-in-out;
}


.infra-next-btn {
  transform: translateX(-20px);
}

.infra-prev-btn {
  transform: translateX(20px);
}

.infraSwiper:hover .infra-prev-btn {
  transform: translateX(0px);
}

.infraSwiper:hover .infra-next-btn {
  transform: translateX(0px);
}

/* testimonialBox */
.swiper-slide.testi-item {
  width: 65%;
}

/* testimonialBox */
.playBtn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: 0;
  background-color: #fff;
  color: var(--body-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.playBtn:hover {
  transform: translate(-50%, -50%) scale(.95, .95);
}

.testi-item-info:hover .playBtn {
  background-color: #e6e6e6;
  box-shadow: 0 10px 2rem rgb(0 0 0 / 33%);
}

/* admissionSection */
.admissionSection {
  position: relative;
  z-index: 1;
  background-color: #000;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admissionSection video {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.admissionSection .heading {
  margin-bottom: 2.5rem;
  padding-bottom: 0rem;
}

/* Next Steps */
.next-box .inner {
  background-color: var(--primary-color);
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.next-box .inner .image {
  width: 25px;
  height: 30px;
}

.next-box .inner img {
  width: 100%;
}

.next-box .inner span {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
}

/*  .footer-enquiryBtn */
.footer-enquiryBtn {
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  display: flex;
  justify-content: space-between;
  z-index: 99;
  background: var(--primary-dark-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-align: center;
}

.footer-enquiryBtn a {
  color: #fff;
  text-align: center;
  display: block;
  width: calc(100% / 2);
  padding: 8px 5px;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}

.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg, #0db634, #015c16);
  border: 0;
}

.footer-enquiryBtn a i {
  margin-right: 2px;
}