:root {
  --theme-blue: #076d9e;
  --theme-blue-dark: #003078;
  --theme-orange: #eb641a;
  --theme-danger: #e94641;
  --theme-green: rgb(151, 201, 62);
  --theme-light-green: #14a443;
  --clr-primary: 151, 201, 62;
  --clr-primary-dark: #364a1d;
  --clr-success: 20, 164, 67;
  --clr-blue: 7, 109, 158;
  --clr-danger: 233, 70, 65;
  --clr-orange: 235, 100, 26;
  --font-size: clamp(0.875rem, 0.8317rem + 0.1923vw, 1rem);
  --color: #231f20;
  --font-body: "Open Sans", sans-serif;
  --font-heading: "Roboto Condensed", sans-serif;
  --step-0: clamp(0.875rem, 0.8387rem + 0.1613vw, 1rem);
  --step--2: calc(var(--step-0) - 0.4rem);
  --step--1: calc(var(--step-0) - 0.2rem);
  --step-1: calc(var(--step-0) + 0.25rem);
  --step-2: calc(var(--step-0) + 0.5rem);
  --step-3: calc(var(--step-0) + 0.75rem);
  --step-4: calc(var(--step-0) + 1rem);
  --step-5: calc(var(--step-0) + 1.25rem);
}
body,
html {
  font-size: var(--step-0);
  color: var(--color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background: #fff;
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: clip;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--theme-blue-dark);
  border-radius: 4px;
  animation-duration: 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-blue);
  animation-duration: 0.3s;
}
.fs-14 {
  font-size: 0.8rem;
}
.border-white-50 {
  border-color: rgba(255, 255, 255, 0.5) !important;
}
.border-theme-primary {
  border-color: var(--theme-primary) !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  font-family: var(--font-heading);
}
.h1,
h1 {
  font-size: var(--step-5);
}
.h2,
h2 {
  font-size: var(--step-4);
}
.h3,
h3 {
  font-size: var(--step-3);
}
.h4,
h4 {
  font-size: var(--step-2);
}
.h5,
h5 {
  font-size: var(--step-1);
}
.h6,
h6 {
  font-size: var(--step-0);
}
.small,
small {
  font-size: var(--step--1);
}
.smallest {
  font-size: var(--step--2);
}
.font-heading {
  font-family: var(--font-heading);
}
.font-body {
  font-family: var(--font-body);
}
.bg-lightgrey {
  background: rgba(0, 0%, 0%, 5%) !important;
}
.bg-primary {
  background: rgba(var(--clr-primary), 1) !important;
}
.bg-success {
  background: rgba(var(--clr-success), 1) !important;
}
.bg-blue {
  background: rgba(var(--clr-blue), 1) !important;
}
.bg-blue-dark {
  background: var(--theme-blue-dark) !important;
}
.bg-danger {
  background: rgba(var(--clr-danger), 1) !important;
}
.bg-orange {
  background: rgba(var(--clr-orange), 1) !important;
}
.bg-green {
  background: var(--theme-green) !important;
}
.bg-light-green {
  background: var(--theme-light-green) !important;
}
.bg-dark {
  background: #231f20 !important;
}
.text-orange {
  color: var(--theme-orange) !important;
}
.text-theme-danger {
  color: var(--theme-danger) !important;
}
.bg-blue {
  background: var(--theme-blue) !important;
}
.bg-danger-light {
  background: rgba(var(--clr-danger), 0.08) !important;
}
.text-green {
  color: var(--theme-green) !important;
}
.shadow-danger {
  box-shadow: 0 4px 6px rgba(var(--clr-danger), 0.3) !important;
}
.text-light-green {
  color: var(--theme-light-green) !important;
}
.bg-orange {
  background: var(--theme-orange) !important;
}
.btn-theme-outline-primary {
  background: #fff !important;
  color: inherit !important;
  border: 2px solid var(--theme-green);
  box-shadow: 0 4px 12px -7px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-tab {
  background: #fff !important;
  color: inherit !important;
  border: 2px solid var(--theme-green);
  box-shadow: 0 4px 12px -7px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-tab:hover, .btn-tab.active {
  background: rgba(var(--clr-primary), 1) !important;
  color: inherit !important;
  cursor: pointer;
  border: 2px solid var(--theme-green) !important;
  box-shadow: inset 0 3px 8px #ebf5d2,
    0 4px 12px -7px rgba(0, 0, 0, 0.6);
}
@keyframes fade-right {
  0% {
    transform: translateX(-1rem) translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0rem) translateY(-50%);
    opacity: 1;
  }
}
.btn {
  font-family: var(--font-heading);
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5em 0.8em;
  border-radius: var(--bs-border-radius-lg);
  font-size: var(--step-0);
  transition: all 0.3s;
}
.btn:active,
.readmore:active {
  outline: 0;
  border: inherit;
}
.btn-theme-outline-primary:hover,
.readmore:hover {
  padding-right: 1.7em !important;
}
.readmore {
  position: relative;
}
.btn-theme-outline-primary i,
.readmore i {
  position: absolute;
  right: 0.5em;
  line-height: 1.2;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn-theme-outline-primary:hover i,
.readmore:hover i {
  animation: fade-right 0.3s ease forwards;
}
.btn-theme-outline-primary:hover {
  background: rgba(var(--clr-primary), 1) !important;
  color: inherit !important;
  cursor: pointer;
  border: 2px solid var(--theme-green);
  box-shadow: inset 0 3px 8px #ebf5d2,
    0 4px 12px -7px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .btn-theme-outline-primary {
    font-size: 0.9em;
  }
}
.text-primary {
  color: rgba(var(--clr-primary), 1) !important;
}
.text-success {
  color: rgba(var(--clr-success), 1) !important;
}
.text-blue {
  color: rgba(var(--clr-blue), 1) !important;
}
.text-danger {
  color: rgba(var(--clr-danger), 1) !important;
}
.text-orange {
  color: rgba(var(--clr-orange), 1) !important;
}
.text-balance {
  text-wrap: balance;
}
.btn-primary {
  background: rgba(var(--clr-primary), 1) !important;
  color: inherit !important;
  box-shadow: inset 0 3px 8px #ebf5d2;
  border: 1px solid #81b32f82;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover {
  border: 1px solid #81b32f82;
  background: rgba(var(--clr-primary), 0.85) !important;
}
.btn-success {
  background: rgba(var(--clr-success), 1) !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-success:hover {
  background: rgba(var(--clr-success), 0.85) !important;
}
.btn-blue {
  background: var(--theme-blue-dark) !important;
  color: #fff !important;
  border: none;
  box-shadow: inset 0 3px 8px #009cff, 0 3px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-blue:hover {
  background: #033d94 !important;
}
.erp-btn {
  font-size: 0.9rem;
}
.btn-danger {
  background: rgba(var(--clr-danger), 1) !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-danger:hover {
  background: rgba(var(--clr-danger), 0.85) !important;
}
.btn-orange {
  background: rgba(var(--clr-orange), 1) !important;
  color: #fff !important;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-orange:hover {
  background: rgba(var(--clr-orange), 0.85) !important;
}
a {
  color: inherit;
  text-decoration: none;
}
@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideInDown {
  animation: slideInFade 0.8s ease forwards;
}
.container-sec {
  width: 95%;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.main-header .top-sec {
  font-family: var(--font-heading);
}
.sticky-header .navigation {
  justify-content: space-between;
}
.enq-btn {
  box-shadow: inset 0 3px 8px #ebf5d2, 0 3px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
}
.enq-btn:active,
.enq-btn:focus-visible {
  box-shadow: none !important;
  border: 1px solid #81b32f82 !important;
}
.top-sec .dropdown::after {
  content: "\f0d7";
  font-family: Fontawesome;
  margin-left: 0.5em;
  font-size: 0.8em;
}
.top-sec .dropdown-menu {
  font-size: 0.9em;
  overflow: hidden;
  padding: 0;
  top: 100%;
  left: 0;
  font-family: var(--font-heading);
}
.top-sec .dropdown-menu li {
  padding: 0.5em 0.8em;
  transition: all 0.2s;
}
.top-sec .dropdown-menu li:hover {
  background: rgba(var(--clr-primary), 0.1);
  color: var(--clr-primary-dark);
}
.top-sec .dropdown-menu a {
  font-weight: 500;
}
.main-header .top-sec li i {
  font-size: 0.8em;
  margin-right: 0.5em;
}
.dropdown:hover .dropdown-menu {
  display: block;
  top: 100%;
  left: 0;
}
.main-header li,
.main-header ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.scroll-to-top {
  position: fixed;
  right: 10px;
  bottom: 90px;
  width: 40px;
  height: 40px;
  font-size: 14px;
  line-height: 38px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  transition: 0.3s;
}
.scroll-to-top:hover {
  color: #fff;
  background: var(--theme-blue);
}
.gal-card:hover .gal-content {
  bottom: 100%;
  transform: translateY(100%);
}
.gal-content {
  background: #0b7c2d;
  padding: 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  transition: 1s;
}
.gal-content .act-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.gal-img {
  height: 250px;
  width: 100%;
}
.gal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes scrollDown {
  0% {
    transform: translate3d(0, -70px, 0);
  }
  50% {
    animation-timing-function: ease-in-out;
    transform: translate3d(0, 0, 0);
  }
  100% {
    animation-timing-function: ease-in-out;
    transform: translate3d(0, 65px, 0);
  }
}
.mobile-menu,
.sticky-header {
  position: fixed;
  visibility: hidden;
  top: 0;
}
.sticky-header {
  opacity: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: -1;
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
  transition: top 0.3s;
}
.fixed-header .sticky-header {
  opacity: 1;
  z-index: 99901;
  visibility: visible;
}
.mobile-menu {
  right: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 999999;
}
.mobile-menu .mCSB_scrollTools {
  right: -6px;
}
.mobile-menu .mCSB_inside > .mCSB_container {
  margin-right: 5px;
}
.mobile-menu .navbar-collapse {
  display: block !important;
}
.mobile-menu .nav-logo {
  position: relative;
  padding: 20px 25px;
  text-align: left;
  margin: 0;
  width: 100%;
  background: #fff;
}
.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: 0.9s;
  -moz-transition: 0.9s;
  -webkit-transition: 0.9s;
  -ms-transition: 0.9s;
  -o-transition: 0.9s;
  background-color: #000;
}
.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.3;
  visibility: visible;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-menu .menu-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: rgba(var(--clr-blue), 0.8);
  backdrop-filter: blur(4px);
  padding: 0;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}
.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.mobile-menu .close-btn {
  position: absolute;
  right: 5px;
  top: 10px;
  line-height: 10px;
  width: 24px;
  text-align: center;
  font-size: 20px;
  color: var(--theme-primary-dark);
  cursor: pointer;
  z-index: 10;
  font-weight: 400;
  -webkit-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}
.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}
.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgb(254 254 254 / 10%);
}
.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 7px 25px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mobile-menu .navigation li a img {
  filter: invert(1) brightness(100);
  max-width: 18px;
}
.mobile-menu .navigation li ul li > a {
  font-size: 13px;
  padding-left: 40px;
  text-transform: capitalize;
}
.mobile-menu .navigation li ul li:before {
  position: absolute;
  left: 2em;
  font-family: FontAwesome;
  font-weight: 800;
  content: "\f105";
  top: 11px;
  line-height: 15px;
  color: #fff;
}
.mobile-menu .navigation li > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.mobile-menu .navigation li.current > a:before {
  height: 100%;
}
.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 0.2em;
  width: 32px;
  height: 32px;
  text-align: center;
  transform: rotate(90deg);
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 5;
}
.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.mobile-menu .social-links {
  position: relative;
  text-align: center;
  padding: 30px 25px;
}
.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0 10px 10px;
}
.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 5px 10px;
}
.navbar {
  background-color: var(--color);
}
.navbar > div {
  padding-left: 18%;
}
.navigation {
  display: none;
  font-weight: 500;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-heading);
}
.navigation ul {
  list-style: none;
  padding: 0;
  padding-left: 0.5em;
}
.navigation ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navigation .dropdown {
  position: relative;
  padding-right: 10px;
}
.navbar .navigation ul a {
  padding: 0.6em 1em;
}
.navbar .navigation li li a:hover {
  background: rgba(var(--clr-primary), 0.1);
  color: var(--clr-primary-dark);
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
  }
  to {
    transform: none;
  }
}
.navbar .navigation .dropdown ul {
  position: absolute;
  font-size: 0.9rem;
  width: 200px;
  left: 0;
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--bs-border-radius);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 9;
  transition: all 0.3s;
  animation: slideUp 0.6s ease alternate;
}
.navbar .navigation .dropdown > ul {
  border: 1px solid rgb(var(--clr-primary));
}
.navbar .navigation > .dropdown > ul::after {
  content: "";
  position: absolute;
  top: -1em;
  left: 10px;
  border: 0.5rem solid transparent;
  border-bottom-color: rgb(var(--clr-primary));
}
.navbar .navigation .dropdown:hover > ul {
  display: block;
}
.navigation .home-icon img {
  width: 1.2em;
}
.navbar .navigation .dropdown ul .dropdown ul {
  left: 100%;
  margin: 0;
  top: 0;
}
.navbar .dropdown::after {
  content: "\f078";
  position: absolute;
  right: 0;
  top: 50%;
  color: #fff;
  translate: 0 -50%;
  font-size: 0.7em;
  font-weight: 700;
  font-family: FontAwesome;
}
.navbar .dropdown .dropdown::after {
  top: 50%;
  font-family: FontAwesome;
  content: "\f054";
  right: 5px;
}
.navbar .dropdown-btn {
  display: none;
}
.navigation li a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 0.3em 0.5em;
  transition: all 0.3s;
}
.navigation li a:not(:first-child):hover {
  color: rgb(var(--clr-primary));
}
.navigation > li > a {
  color: #fff;
}
.nav-logo {
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/logo-wave.svg)
    no-repeat bottom;
  background-size: 100%;
  position: relative;
  z-index: 99;
  width: 243px;
  text-align: center;
  margin-bottom: -2.8rem;
  padding: 0 0 0.7rem;
}
.logo-text {
  margin-left: -2rem;
  z-index: 99;
}
.mobile-menu-toggler {
  background-color: var(--bs-light);
  border: 1px solid var(--bs-border-color);
}
.scroll-to-top {
  color: var(--theme-blue);
  background: var(--bs-gray-200);
  border: 2px dashed var(--theme-primary-dark);
}
.page-title {
  position: relative;
  padding: 3rem 0 1.5rem;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center !important;
  border-top: 1px solid var(--gold-color);
  background: url("https://resources.edunexttechnologies.com/web-data/gis/images/y-internal-bg-new.png")
    no-repeat center;
}
@media (min-width: 768px) {
  .page-title {
    padding: 10rem 0 2.5rem;
  }
}
.page-title h1 {
  font-size: 1.5rem;
  color: #fff;
  line-height: 42px;
  margin-bottom: 0;
  font-weight: 700;
  z-index: 1;
  position: relative;
  text-transform: uppercase;
  display: inline-block;
}
.page-title h1::after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.2em;
  background: rgb(var(--clr-danger));
  border-radius: 5rem;
}
.inner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00000096, transparent);
  z-index: 0;
}
@media only screen and (min-width: 992px) {
  #newmodal .modal-dialog {
    max-width: 580px;
  }
}
@media only screen and (max-width: 991px) {
  .mobile-menu .navigation {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }
}
#enquirymodal,
#newmodal {
  z-index: 9999;
  background: rgb(0 0 0 / 74%);
}
#enquirymodal .modal-header {
  background: var(--blue-color);
  padding: 0.2rem 1rem;
  border-bottom: none;
}
#enquirymodal .modal-content {
  border-radius: 10px;
}
#enquirymodal .close,
.modal .close {
  position: absolute;
  font-size: 18px;
  background: #343f64;
  opacity: 1;
  color: #fff;
  text-shadow: none;
  display: inline-block;
  padding: 0 4px 8px 8px;
  border-radius: 0 0 0 42px;
  cursor: pointer;
  z-index: 22;
}
#enquirymodal h4 {
  color: #fff;
  font-size: 20px;
}
#enquirymodal .close {
  top: 16px;
  right: 16px;
}
.modal .close {
  top: 0;
  right: 0;
}
#newmodal .modal-dialog .modal-dialog-centered {
  width: 100%;
}
.whats-img {
  bottom: 45px;
  right: 10px;
  width: 40px;
  position: fixed;
  z-index: 22;
}
.owl-next,
.owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px !important;
  height: 40px !important;
}
.owl-prev {
  border: 1px solid #fff !important;
  border-radius: 130px;
}
.owl-next {
  border: 1px solid #fff !important;
  border-radius: 130px;
}
.navigation {
  display: none;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .navigation {
    display: flex;
    gap: 0.4rem;
  }
}

.navbar {
  background-color: var(--color);
  z-index: 9;
}
.navbar > div {
  padding-left: 18%;
}
.navigation .dropdown {
  position: relative;
  padding-right: 10px;
}
.navbar .navigation ul a {
  padding: 0.4em 1em;
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
  }
  to {
    transform: none;
  }
}
.navbar .navigation .dropdown ul {
  position: absolute;
  padding: 0;
  font-size: 0.9rem;
  width: 200px;
  left: 0;
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1;
  transition: all 0.3s;
  animation: slideUp 0.6s ease alternate;
}
.navbar .navigation .dropdown:hover > ul {
  display: block;
}
.navigation .home-icon img {
  width: 1.2em;
}
.navbar .navigation .dropdown ul .dropdown ul {
  left: 100%;
  margin: 0;
  top: 0;
}
.navbar .dropdown::after {
  content: "\f078";
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  font-size: 0.7em;
  font-weight: 700;
  font-family: FontAwesome;
}
.navbar .dropdown .dropdown::after {
  top: 50%;
  font-family: FontAwesome;
  content: "\f054";
  right: 5px;
}
.navbar .dropdown-btn {
  display: none;
}
.navigation > li > a {
  text-wrap: nowrap;
}
.navigation li a {
  text-decoration: none;
  display: block;
  padding: 0.3em 0.5em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.mobile-menu-toggler {
  background-color: var(--bs-light);
  border: 1px solid var(--bs-border-color);
}
#leftSideMenu {
  list-style: none;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.875rem;
}
#leftSideMenu li {
  display: block;
  cursor: pointer;
  position: relative;
  padding-block: 0.1em;
  text-transform: uppercase;
}
#leftSideMenu li.leftMenuBtn {
  padding-right: 1rem;
}
.leftMenu-Box.year-filter li .active {
  background: #fff;
  color: var(--theme-danger);
}
#leftSideMenu li a {
  display: block;
}
#leftSideMenu li > a {
  padding: 0.35em 0.5em;
  border-radius: 4px;
  transition: all 0.3s;
}
#leftSideMenu li:hover > a {
  color: #fff;
}
#leftSideMenu > li.leftMenuBtn::after {
  content: "\f054";
  font-family: FontAwesome;
  font-size: 0.9em;
  font-weight: 600;
  position: absolute;
  right: 0;
  top: 7px;
  transition: all 0.3s;
}
#leftSideMenu > li.leftMenuBtnActive::after {
  transform: rotate(90deg);
}
#leftSideMenu li:hover::after {
  color: inherit;
}
#leftSideMenu .active-leftPage {
  background-color: #fff;
  color: var(--theme-danger) !important;
}
#leftSideMenu .leftMenu-drop {
  display: none;
  padding-left: 1em;
  font-size: 0.9em;
}
@media screen and (min-width: 768px) {
  .navigation {
    display: flex;
    gap: 1em;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .sm-screen-logo {
    margin-bottom: -1.4rem;
    max-width: 250px;
  }
  .mobile-nav-toggler {
    height: 25px;
    aspect-ratio: 1;
    padding: 0.5em;
    border-radius: 0.4em;
    flex-shrink: 0;
    justify-content: center;
  }
  .main-footer {
    margin-bottom: 0;
  }
}
.fixed-bottom-bar {
  color: #fff;
  background: rgba(var(--clr-danger));
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  transform: translateY(100px);
  font-family: var(--font-heading);
  transition: all 0.5s;
}
.fixed-bottom-bar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fixed-bottom-bar li {
  width: 14.28%;
  text-align: center;
  flex-shrink: 0;
}
.fixed-bottom-bar a {
  display: inline-block;
  padding: 0.5em;
}
.fixed-bottom-bar a {
  transform: translateX(0.5rem);
  position: relative;
  z-index: 10;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.fixed-bottom-bar a:hover {
  transform: translateX(0rem);
}
.fixed-bottom-bar a i {
  font-size: 0.8em;
  opacity: 0;
}
.fixed-bottom-bar a:hover i {
  opacity: 1;
}
.fixed-bottom-bar .virtual-nav {
  position: relative;
}
.fixed-bottom-bar .virtual-nav::before {
  content: "";
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/menu-bar-wave.svg)
    no-repeat top;
  background-size: 100%;
  position: absolute;
  top: 0;
  transform: translateY(-47px) translateX(-50%);
  z-index: 9;
  left: 50%;
  width: 250px;
  height: 70px;
}
.fixed-bottom-bar .virtual-icon {
  position: absolute;
  top: -100%;
  left: 50%;
  z-index: 9;
  transform: translateX(-50%);
}
.fixed-bottom-bar .virtual-icon img {
  height: 2em;
}
.main-footer {
  font-family: var(--font-heading);
  border-top: 1.4rem solid #231f20;
  background: rgba(var(--clr-primary), 1);
}
@media (min-width: 992px) {
  .main-footer {
    margin-bottom: 35px;
  }
}
.main-footer > :first-child {
  background: #ffffff45;
}
.main-footer li {
  word-break: break-all;
}
.footer-logo-sec {
  background: #fff;
  padding: 1rem 1.5rem;
  margin-inline: auto;
  min-height: 100%;
  margin-top: calc(-1 * clamp(1.375rem, 0.0924rem + 3.7518vw, 3rem));
  padding-top: 2rem;
  border-bottom-left-radius: var(--bs-border-radius-xl);
  border-bottom-right-radius: var(--bs-border-radius-xl);
  box-shadow: var(--bs-box-shadow);
}
@media (min-width: 992px) {
  .footer-logo-sec {
    margin-bottom: -70px;
  }
}
.social-links {
  gap: 0.2rem;
  display: inline-flex;
}
.social-links a {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  font-weight: 600;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.2s;
}
.social-links a i {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  color: transparent;
  transition: all 0.2s;
}
.social-links a:hover {
  color: #fff;
}
.social-links a:hover i {
  color: #fff;
  background-clip: unset;
}
.social-links .social-insta i {
  background: #833ab4;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  background-clip: text;
}
.social-links .social-facebook i {
  background: #1877f3;
  background-clip: text;
}
.social-links .social-x i {
  background:   #000;
  background-clip: text;
}
.social-links .social-youtube i {
  background: red;
  background-clip: text;
}
.social-links .social-whatsapp i {
  background: #25d366;
  background: linear-gradient(135deg, #25d366 0, #128c7e 100%);
  background-clip: text;
}
.partner-sec {
  position: relative;
}
.main-footer .f-map {
  border: 1rem solid rgba(255, 255, 255, 0.2) !important;
}
.partner-sec::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: rgba(0, 0%, 0%, 5%);
}
.sec-title {
  position: relative;
  text-align: center;
  z-index: 1;
}
.sec-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.3);
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.sec-title > * {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  display: inline-flex;
  padding-inline: 1rem;
  background: #fff;
  flex-direction: column;
}
.sec-title > * > :first-child {
  font-size: 0.6em;
}
.facilities {
  background: rgb(242 242 242);
}
.facilities .facility-tab {
  overflow: hidden;
}
.facilities .facility-tab:hover {
  cursor: pointer;
}
.facility-img img {
  aspect-ratio: 9/5.5;
  object-fit: cover;
  object-position: top;
}
.facility-tab .facility-icon {
  position: absolute;
  top: 1.5%;
  left: 1.5%;
  transform: translate(0, 0);
  width: fit-content;
  z-index: 3;
}
.facility-tab .facility-overlay {
  height: 35%;
  width: 22.5%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition-duration: 0.5s;
}
.facility-overlay {
  width: 7rem !important;
  height: 7rem !important;
  transform: translate(
    calc((80% - 2.5rem) * -1),
    calc((80% - 2.5rem) * -1)
  ) !important;
}
.facility-tab .facility-strip {
  height: 0.3rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition-duration: 0.5s;
}
.facility-tab:hover .facility-strip {
  height: 0rem;
  transition-duration: 0.5s;
}
.facility-tab:hover .facility-overlay {
  background-color: #fff !important;
  transition-duration: 0.5s;
}
.facility-tab .facility-icon img {
  height: 2.5rem !important;
  width: 2.5rem !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition-duration: 0.5s;
}

.facility-tab:hover .facility-icon img {
  filter: none;
}

.facilities .name-plate {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.76) 0,
    rgba(255, 255, 255, 0) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  padding: 15px 25px;
  margin: 0;
  transition-duration: 0.5s;
}
.facilities .facility-tab:hover .name-plate {
  padding: 0 25px;
  bottom: -100%;
  transition-duration: 0.5s;
}
.facilities .facility-tab .facility-hover {
  position: absolute;
  bottom: -100%;
  left: 0;
  transform: translate(0, 0);
  padding: 0 25px;
  height: 0%;
  width: 100%;
  transition-duration: 0.5s;
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: column;
  height: 100%;
}
.facilities .facility-tab:hover .facility-hover {
  padding: 4rem 25px 15px;
  bottom: 0;
  transition-duration: 0.5s;
}
.facility-hover span::after {
  content: "";
  width: 100%;
  height: 0.15rem;
  background-color: #fff;
  position: absolute;
  bottom: -7.5%;
  left: 0;
  transform: translate(0, 0);
}
.facilities .sec-title h2 {
  background: #f2f2f2;
}
.facility-hover > p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: calc(1.5em * 5);
  margin: 0;
}
.facilities .facility-tab:hover .facility-hover1,
.facilities .facility-tab:hover .facility-hover5 {
  background: rgba(var(--clr-orange), 0.8);
}
.facilities .facility-tab:hover .facility-hover2,
.facilities .facility-tab:hover .facility-hover6 {
  background: rgba(var(--clr-success), 0.8);
}
.facilities .facility-tab:hover .facility-hover3,
.facilities .facility-tab:hover .facility-hover7 {
  background: rgba(var(--clr-blue), 0.8);
}
.facilities .facility-tab:hover .facility-hover4,
.facilities .facility-tab:hover .facility-hover8 {
  background: rgba(var(--clr-danger), 0.8);
}
.page-section {
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/gr-gaurs-bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.gal-card {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-sm);
  overflow: hidden;
  color: var(--theme-orange);
  background: rgba(var(--clr-blue), 0.2);
  will-change: transform;
  transition: all 0.2s;
}
.gal-card:hover {
  transform: scale(1.01);
  box-shadow: var(--bs-box-shadow);
}
.readmore {
  color: var(--theme-green);
  font-weight: 600;
  font-size: 1em;
  padding: 0;
  text-decoration: none;
  transition: all 0.2s;
}
.readmore:hover {
  color: var(--theme-green);
}
.event-slider .content {
  text-overflow: ellipsis;
  -webkit-line-clamp: clamp;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}
.event-slider .slider-img {
  border: 3px solid var(--theme-danger);
  padding: 0.3em;
  box-shadow: 0 2px 7px 3px rgba(var(--clr-danger), 0.3);
}
.event-slider .slider-img img {
  aspect-ratio: 9/6;
  object-fit: cover;
}
.custom-owl-next,
.custom-owl-prev {
  background: 0 0;
  border: none;
}
.custom-dots {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
.custom-dots button {
  border: 1px solid var(--color);
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  display: inline-block;
  transition: all 0.2s;
}
.custom-dots button.active {
  background: var(--theme-danger);
  border-color: var(--theme-danger) !important;
}
.sec-title-bg-danger-light > * {
  background: #fdf0f0;
}
.testimonial-sec {
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/test-bg-new.png)
    no-repeat center;
  background-size: cover;
  position: relative;
}
.testi-img-wrapper::after {
  content: "\f10e";
  font-family: FontAwesome;
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  top: 1rem;
  right: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2em;
  background: var(--theme-danger);
  color: #fff;
}
.testi-slider .owl-next,
.testi-slider .owl-prev {
  border: 0 !important;
  font-size: 1.4rem !important;
}
.testi-slider .owl-prev {
  left: -100px !important;
}
.testi-slider .owl-next {
  right: -100px !important;
}
.testi-img {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 100%;
  max-width: 150px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: auto;
  border: 2px solid var(--theme-danger);
  padding: 0.4em;
}
.testi-img-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
  margin-right: 0.4em;
  cursor: pointer;
  transition: all 0.3s;
}
.testi-kid {
  width: 230px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 576px) {
  .testi-img-thumb:first-of-type {
    margin-left: 170px;
  }
}
.testi-img-thumb.active,
.testi-img-thumb:hover {
  filter: grayscale(0);
}
.about-content {
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/about-content-bg.png)
    no-repeat center;
  background-size: cover;
}
.post {
  box-shadow: #d3d3d3 0 0 10px;
}
.post-child1 {
  position: absolute;
  left: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.post-child1 {
  clip-path: polygon(0 0, 68% 0, 84% 45%, 100% 100%, 0 100%);
width: 8rem;
}
.post-child2 {
  background-color: #f1f1f1;
  border-color: #e84741 !important;
  justify-content: center;
 text-align: center;
}
.leftMenu-Box {
  background: var(--theme-danger)
    url(https://resources.edunexttechnologies.com/web-data/gis/images/watermark.png)
    no-repeat center;
  background-size: 60%;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  padding: 1.5rem 1rem;
  border-radius: var(--bs-border-radius-xl);
  margin-top: -5rem;
  box-shadow: var(--bs-box-shadow);
}
.info-card {
  background: #f6f6f6;
  border: 1px solid var(--theme-danger);
  margin-top: 1.5em;
  font-weight: 500;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  padding: 1.5rem 1rem;
  border-radius: var(--bs-border-radius-xl);
}
.info-card a {
  color: var(--color);
  word-break: break-all;
  transition: all 0.2s;
}
.info-card a:hover {
  color: var(--theme-blue-dark);
}
.table-theme-blue-dark {
  --bs-table-color: white;
  --bs-table-bg: var(--theme-blue-dark);
  border-color: var(--theme-blue-dark);
}
.table-theme-blue {
  --bs-table-color: white;
  --bs-table-bg: var(--theme-blue);
  border-color: var(--theme-blue);
}
.table-theme-danger {
  --bs-table-color: white;
  --bs-table-bg: var(--theme-danger);
  border-color: var(--theme-danger);
}
.principal-mess {
  border-top-left-radius: 40%;
  /* overflow: hidden; */
  position: relative;
  border-bottom-right-radius: 3.5rem;
  border-bottom-left-radius: 3.5rem;
}
.principal-mess > img {
  border-top-left-radius: 40%;
}
.post {
  position: absolute !important;
  bottom: 0;
  left: 0;
  transform: translate(0, 6px);
  background: #fff;
}
.page-section + footer {
  margin-bottom: 0;
}
.page-section li {
  margin-bottom: 0.5rem;
}
.page-section .content ul:not(.list-bullet, .list-unstyled) > li {
  list-style: none;
  position: relative;
}
.heading-top {
  position: relative;
  padding: 10px !important;
  margin-bottom: 1rem !important;
  color: var(--theme-blue) !important;
  background: #fff linear-gradient(to left, rgb(252 156 59 / 9%), transparent);
  clip-path: polygon(0 0, 97.5% 0, 100% 50%, 97.5% 100%, 0 100%);
  border-left: 4px solid var(--theme-orange);
}
.page-section .content ul:not(.list-bullet, .list-unstyled) > li::before {
  content: "\27A4";
  position: absolute;
  font-size: 0.9em;
  top: 0.1em;
  left: -1.5em;
  color: var(--theme-blue-dark);
}
.birthday-slider {
  width: 530px !important;
  max-width: 100%;
  margin-inline: auto;
}
.birthday-card,
.cal-card,
.circular-card {
  box-shadow: 0 0 7px 5px rgba(0, 0, 0, 0.2),
    inset 0 0 3px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0.2rem;
  border: 4px solid #fff;
}
.birthday-card {
  background: rgba(var(--clr-orange), 0.1)
    url(https://resources.edunexttechnologies.com/web-data/gis/images/birthday-bg-2.png)
    no-repeat center;
  background-size: cover;
}
.birthday-card .profile-img {
  object-fit: cover;
  aspect-ratio: 7/9;
  width: 100%;
  max-width: 150px;
  border: 3px solid var(--theme-danger);
  box-shadow: var(--bs-box-shadow-sm);
  background: #fff;
}
.birthday-card .date {
  font-weight: 700;
  font-family: var(--font-heading);
}
.birthday-card .date span {
  color: var(--theme-danger);
  font-size: 2.5em;
}
.birthday-slider .owl-nav {
  top: 30px;
  right: 0;
  position: absolute;
  display: flex;
  gap: 0.2em;
}
.birthday-slider .owl-nav > * {
  position: static;
  border-color: var(--theme-danger) !important;
  color: var(--theme-danger) !important;
  width: 30px !important;
  height: 30px !important;
  transition: all 0.2s;
}
.birthday-slider .owl-nav > :hover {
  background: var(--theme-danger) !important;
  color: #fff !important;
}
.left-balloon,
.right-balloon {
  width: 32% !important;
  z-index: 1;
}
.left-balloon {
  margin-inline: -4rem -1rem;
}
.right-balloon {
  margin-inline: -1rem -4rem;
}
.left-spark,
.right-spark {
  width: 20% !important;
  z-index: 2;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
.left-spark {
  left: 0;
  transform: scaleX(-1);
}
.right-spark {
  right: 0;
}
.circular-card {
  background: rgba(var(--clr-blue), 0.1);
  padding: 0 0.2em 0 2.5rem;
  position: relative;
  min-height: 9rem;
}
.circular-heading {
  writing-mode: sideways-lr;
  background: var(--theme-light-green);
  color: #fff;
  text-align: center;
  padding: 1em 0.2em;
  letter-spacing: 1px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.circular-slider .item {
  background: #fff;
  padding: 1em;
}
.circular-slider .item .date {
  font-weight: 700;
  padding: 0.1em 0;
  font-size: 1rem;
  line-height: 1.2;
  border-bottom: 3px solid var(--bs-border-color);
  font-family: var(--font-heading);
  margin-bottom: 0.5em;
  margin-right: 1em;
  display: flex;
  align-items: center;
  column-gap: 0.5em;
}
@media (min-width: 576px) {
  .circular-slider .item .date {
    border-right: 3px solid var(--bs-border-color);
    padding: 0.5em 1.5em;
    border-bottom: 0;
    margin-bottom: 0;
    display: block;
  }
}
.circular-slider .item .date > span {
  display: block;
  text-align: center;
}
.circular-slider .item .date > span:first-child {
  font-size: 1.7em;
}
.circular-slider .item .date > span:last-child {
  font-size: 1.3em;
}
.circular-paragraph {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9em;
  line-height: 1.3rem;
}
.circular-paragraph + .readmore {
  font-size: 0.9em;
}
.text-shadow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.page-section .content  {
  text-align: justify;
}
::marker {
  font-weight: 700;
  margin-right: 5px;
}
.life-sec .sec-title > * {
  background: #f6f6f6;
}
.life-sec {
  background: #f6f6f6;
  position: relative;
  overflow: hidden;
}
.life-sec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  height: 100%;
  justify-content: space-evenly;
}
.life-sec ul li {
  display: flex;
  gap: 0.8em;
}
@media (min-width: 768px) {
  .life-sec ul.life-left-list li:first-child,
  .life-sec ul.life-left-list li:last-child {
    transform: translateX(1.8rem);
  }
  .life-sec ul.life-right-list li:first-child,
  .life-sec ul.life-right-list li:last-child {
    transform: translateX(-1.8rem);
  }
}
.life-sec a.btn {
  background: #fff;
  box-shadow: var(--bs-box-shadow-sm);
  border-radius: 10rem;
  font-weight: 600;
  border: 0;
  justify-content: center;
  flex-grow: 1;
}
.life-sec a.btn.active,
.life-sec a.btn:hover {
  border: 0;
  background: rgba(var(--clr-danger), 0.1);
  color: var(--theme-danger);
}
.life-sec ul li img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  padding: 0.3em;
  border-radius: 50%;
  background: var(--theme-danger);
  box-shadow: var(--bs-box-shadow-sm);
}
.life-sec .left-door,
.life-sec .right-door {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  transition: all 0.8s;
  overflow: hidden;
  z-index: 3;
}
.life-sec .left-door::before,
.life-sec .right-door::before {
  content: "";
  position: absolute;
  width: 425px;
  height: 100%;
  background-repeat: none;
  top: 0;
  z-index: 3;
  background-size: 100% !important;
}
.life-sec.open .left-door {
  transform: translateX(-75%);
}
.life-sec.open .right-door {
  transform: translateX(75%);
}
.life-sec .left-door {
  left: 0;
  background: radial-gradient(
    circle at right,
    rgba(7, 109, 158, 1) 0,
    rgba(4, 55, 79, 1) 100%
  );
}
.life-sec .right-door {
  right: 0;
  background: radial-gradient(
    circle at left,
    rgba(7, 109, 158, 1) 0,
    rgba(4, 55, 79, 1) 100%
  );
}
.life-sec .left-door::before {
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/watermark.png)
    no-repeat center;
  right: 0;
  transform: translateX(50%);
}
.life-sec .right-door::before {
  background: url(https://resources.edunexttechnologies.com/web-data/gis/images/watermark.png)
    no-repeat center;
  left: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .life-sec-logo {
    width: min(240px, 100%);
    margin: 1.5rem auto;
    display: block;
  }
  .life-sec .life-left-list li {
    flex-direction: row-reverse;
  }
}
.input-wrapper {
  position: relative;
}
.input-wrapper > * {
  box-shadow: none !important;
  border-radius: 0.375rem;
  font-size: 0.9em;
}
.input-wrapper > label {
  position: absolute;
  z-index: 1;
  left: 0.8em;
  top: 50%;
  opacity: 75%;
  background: #fff;
  padding-inline: 0.2em;
  pointer-events: none;
  font-weight: 500;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.input-wrapper > :not(label):focus + label {
  top: 0;
  opacity: 1;
}
.w-fit {
  width: fit-content;
}
.achievement-slider img {
  aspect-ratio: 1/1.02;
  object-fit: cover;
  object-position: top;
}
.achievement-slider .title {
  background: #fff;
  padding: 0.4em 1em;
  font-weight: 500;
  color: var(--theme-orange);
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  margin: 0.3em 1em;
  width: calc(100% - 2rem);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: var(--bs-box-shadow-sm);
}
.sound-btn {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgb(255 255 255 / 13%);
  border-radius: 50%;
  border: 1px solid #fff;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--bs-box-shadow-sm);
  transition: all 0.2s;
}
.sound-btn {
  outline: 0;
  background: rgba(255, 255, 255, 0.281);
}
.award-wrapper > * {
  margin-bottom: 1rem;
  padding: 1rem 0.75rem;
  background: #00000008;
}
.award-wrapper .img-wrapper,
.media-wrapper .img-wrapper {
  text-align: center;
  background-size: cover;
  border-radius: var(--bs-border-radius);
  box-shadow: var(--bs-box-shadow-sm);
}
.award-wrapper .img-wrapper {
  border-top: 8px solid #fff;
  border-left: 8px solid var(--theme-danger);
  border-bottom: 8px solid #fff;
  border-right: 8px solid var(--theme-green);
}
.award-wrapper .img-wrapper img,
.media-wrapper .img-wrapper img {
  width: 100%;
  aspect-ratio: 9/7;
  object-fit: contain;
  background: rgba(255, 255%, 255%, 50%);
  backdrop-filter: blur(4px);
}
.page-section .testi-card {
  padding: 1.4rem 0;
  background: #fff;
  border-radius: var(--bs-border-radius-xl);
  box-shadow: var(--bs-box-shadow-sm);
}
.page-section .testi-content {
  text-align: justify;
}
.page-section .testi-img {
  width: 110px !important;
  display: block;
  aspect-ratio: 1/1;
  margin: -1.5rem 0 -1.5rem auto;
  border-radius: var(--bs-border-radius-lg);
  object-fit: cover;
  object-position: top;
  background: #ffffffbd;
  backdrop-filter: blur(2px);
}
@media (max-width: 576px) {
  .page-section .testi-img {
    margin: -4rem auto 1rem;
  }
  .page-section .testi-card {
    padding: 4rem 0 1.1rem;
  }
}
.page-section .testi-link:hover {
  color: var(--theme);
}
.mobile-fix-links {
  position: fixed;
  bottom: 9.9rem;
  right: 1rem;
  z-index: 99;
  display: none;
}
@media (max-width: 992px) {
  .mobile-fix-links {
    display: block;
  }
}
@keyframes slideFix {
  0% {
    opacity: 0;
    transform: 2rem;
  }
  100% {
    opacity: 1;
    transform: 0;
  }
}
.mobile-fix-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  animation: slideFix 0.5s ease alternate;
}
.mobile-fix-links a {
  background: var(--theme-danger);
  color: #fff;
  padding: 0.2em 0.5em;
  display: block;
  border-radius: var(--bs-border-radius-sm);
  box-shadow: var(--bs-box-shadow-sm);
}
.mobile-fix-links .toggle-btn {
  display: inline-flex;
  color: #fff;
  background: var(--theme-danger);
  border-radius: var(--bs-border-radius-sm);
  box-shadow: var(--bs-box-shadow-sm);
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  aspect-ratio: 1;
  float: right;
  font-size: 1.1rem;
  cursor: pointer;
}
.main-title {
  font-size: clamp(1.225rem, 1.0358rem + 0.8409vw, 1.6875rem);
  font-family: var(--font-heading);
}
.icon {
  aspect-ratio: 1;
  width: 3rem;
  text-align: center;
  background: var(--theme-blue);
  flex-shrink: 0;
  line-height: 3;
  border-radius: var(--bs-border-radius-sm);
}
.hover-text-blue {
  transition: all 0.2s;
}
.hover-text-blue:hover {
  color: var(--theme-blue);
}
.hover-text-orange {
  transition: all 0.2s;
}
.hover-text-orange:hover {
  color: var(--theme-orange);
}
.year-filter {
  max-width: 300px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .year-filter {
    margin-top: 0;
  }
}
.by-academics-menu li {
  margin-bottom: 0;
}
.by-academics-menu .active {
  background: #fff;
  color: var(--theme-danger);
}
.by-academics-menu ul {
  max-height: 80vh;
  overflow-y: auto;
}
.by-academics-menu ul::-webkit-scrollbar {
  width: 3px;
  height: 2px;
  background: #fff !important;
}
.by-academics-menu ul::-webkit-scrollbar-track {
  background: 0 0 !important;
}
.by-academics-menu ul::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.514);
  border-radius: 999px;
  border: 0;
}
.by-academics-menu ul:focus::-webkit-scrollbar-thumb,
.by-academics-menu ul:hover::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
}
@media (min-width: 992px) and (max-width: 1341px) {
  .top-sec .nav-logo {
    transform: none;
    margin-top: 0.4rem;
    margin-inline: -4.5rem -2rem;
    margin-bottom: 0;
    width: 190px;
  }
  .top-sec .nav-logo img {
    width: 80px;
  }
  .navbar > div {
    padding-left: inherit;
  }
  .navigation {
    justify-content: center;
  }
}
.gal-single-image img {
  width: 100%;
  aspect-ratio: 9/6;
  object-fit: cover;
}
.datepicker {
  background-image: url(https://resources.edunexttechnologies.com/default-form/img/calendar-icon.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-position: right 7px center;
  background-size: 12px;
}
.forBlogNavigation a {
  display: block;
  width: 100%;
}
.blog-btn {
  border: 2px solid rgba(var(--clr-primary), 1);
  color: inherit;
  display: block;
  width: fit-content;
  transition: all 0.3s;
  font-weight: 600;
}
.blog-btn:hover {
  background-color: rgba(var(--clr-primary), 1);
  color: inherit;
  border-color: rgba(var(--clr-primary), 1);
  box-shadow: none !important;
}
.blog-link {
  color: #0094d4;
  transition: all 0.3s;
}
.blog-link:hover {
  color: #212529;
}
.blog-years-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-years-filter span {
  width: calc(50% - 0.5rem);
  text-align: center;
  display: flex;
  justify-content: center;
}
.blog-content h4 {
  color: #0094d4;
  margin: 1rem 0;
}
.blog-slider .blog-title {
  color: #0094d4b7;
}
.blog-home .btn,
.blog-slider .btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  background: #fea;
}
.blog-home .btn:hover,
.blog-slider .btn:hover {
  color: #fff;
  background: rgba(var(--clr-primary), 1);
}
.years-filter select,
.years-filter span {
  border: 2px solid var(--color);
  color: inherit;
  border-radius: 0.375rem;
  transition: all 0.3s;
  cursor: pointer;
}
.years-filter span.active,
.years-filter span:hover {
  background: rgba(var(--clr-primary), 1);
  color: inherit;
  border: 2px solid var(--theme-green);
}
.years-filter select {
  transition: all 0.3s;
}
.years-filter select:hover {
  background: #bfffba;
}
.dropdown-custom {
  position: relative;
  border-radius: 0.25rem;
  cursor: pointer;
  background: rgba(var(--clr-primary), 1);
}
.dropdown-custom ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--theme-danger);
  border: 2px solid var(--theme-danger);
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  overflow: hidden;
  z-index: 9999;
}
.dropdown-custom label,
.dropdown-custom ul li {
  padding: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  background: var(--theme-danger);
  color: #fff;
}
.dropdown-custom label {
  border-radius: 5px !important;
}
.dropdown-custom ul li {
  background-color: inherit;
  color: var(--theme-primary);
  transition: all 0.2s;
}
.dropdown-custom ul li:hover {
  background-color: var(--theme-primary);
  color: #fff;
}
.dropdown-custom::after {
  content: "\f078";
  font-family: Fontawesome;
  color: #fff;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}
.blogmonth {
  width: 120px;
  text-align: left;
  font-weight: 600;
}
.blog-content img {
  width: 100%;
}
.searchDiv {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  animation: slide 0.3s forwards;
}
.searchDiv ul {
  cursor: pointer;
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 1px;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
.searchDiv ul li {
  padding: 0.5rem 2rem 0.5rem 1rem;
  cursor: pointer;
  margin-bottom: 0;
  font-weight: 600;
  border: 2px solid var(--theme-green);
}
.searchDiv ul li a {
  color: inherit !important;
}
.searchDiv ul li:hover {
  background-color: var(--theme-green);
}
.searchDiv ul li:hover a {
  color: inherit !important;
}
input:focus,
select:focus {
  box-shadow: none !important;
  outline: 0 !important;
}
.me-1 {
  margin-right: 0.5rem !important;
}
.searchText span {
  color: var(--theme-primary);
  font-weight: 600;
}
.card-img-blog {
  height: 22rem;
  border-radius: 20px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.recentBlogSide img {
  width: 120px;
  height: 120px;
  border-radius: 15px;
  object-fit: cover;
  aspect-ratio: 14/15;
}
.recentBlogSide,
.recentContent a {
  border: none;
}
.recentBlogSide {
  color: var(--theme-primary) !important;
  padding: 10px;
  background: #fff linear-gradient(to left, rgb(252 156 59 / 9%), transparent);
  border-left: 4px solid var(--theme-danger);
}
.recentContent a {
  padding: 0;
  color: var(--theme-danger);
  font-weight: 600;
}
.recentContent a:hover {
  color: rgba(var(--clr-primary), 1) C;
}
.recentContent {
  padding: 0 1rem;
}
.recentBlogSide span {
  border: none;
  padding: 0;
}
.blogSideHead {
  color: var(--theme-primary);
}
.searchToggleBlog {
  background-color: rgba(var(--clr-primary), 1) !important;
  color: #fff !important;
  border: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.searchToggleBlog:hover {
  background-color: rgba(var(--clr-primary), 1) !important;
  box-shadow: none !important;
}
.searchToggleBlog .btn:focus {
  border: none;
  outline: 0;
}
article h3 {
  font-weight: 600 !important;
}
.border-right-none {
  border-right: none !important;
}
.dateTime {
  font-size: 13px;
  font-weight: 600;
}
.recentContent .forButton {
  font-size: 12px;
  padding: 5px 13px;
  border: 2px solid var(--theme-green);
  color: inherit;
}
.blogFont-12 {
  font-size: 0.9em !important;
}
.searchToggleBlog::after {
  content: "" !important;
}
.searchToggleBlog::before {
  content: "" !important;
}
.searchToggleBlog:hover::after,
.searchToggleBlog:hover::before {
  opacity: 0 !important;
}
.pageHead {
  font-size: 24px;
  color: #212121;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}
.searchInput2:focus {
  border-color: rgba(var(--clr-primary), 1) !important;
  outline: 0;
}
.eventNone {
  pointer-events: none !important;
}
.publication-card {
  background: #f1f1f1;
  background: linear-gradient(
    162deg,
    rgba(var(--clr-blue), 0.2) 0,
    #fbe8e8 70% 60%
  );
  display: block;
  color: var(--theme-primary);
  padding: 10px;
  text-align: center;
  box-shadow: var(--bs-box-shadow-sm);
  will-change: transform;
  transition: all 0.3s ease;
}
.publication-card .img-wrapper img {
  aspect-ratio: 3/4;
  object-fit: cover;
}

.publication-card:hover {
  transform: scale(1.02);
}
.publication-card .title {
  color: var(--theme-blue-dark);
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0.5rem 0;
  font-family: var(--font-body);
}
.object-top {
  object-position: top;
}
.blurBg-single-image img {
  width: 100%;
  aspect-ratio: 9/6;
  object-fit: contain;
  backdrop-filter: blur(6px) grayscale(0.3);
}
.profile-card {
  position: relative;
  max-width: 400px;
  margin-inline: auto
}

.profile-card .profile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  gap: .2em;
  line-height: 1.1;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: .5rem .8rem;
  background: rgba(var(--clr-danger), .85);
  color: #fff
}

.profile-card .profile-text>* {
  margin-bottom: 0
}

.profile-card .profile-text>:last-child {
  font-size: .9em
}

.profile-card .profile-text .profile-desig {
  position: relative;
  font-weight: 600;
  font-size: .9em;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 3px
}

.profile-card .profile-text .profile-desig::after,
.profile-card .profile-text .profile-desig::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 2px;
  border-radius: 5rem;
  background: #fff
}
.home-page-slider img {
  aspect-ratio: 9/3.8;
  object-fit: cover;
}
.home-page-slider .owl-nav > * {
  background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(3px);
    color: white !important;
    transition: all .3s;
}
.home-page-slider .owl-nav > *:hover {
  background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(3px);
    color: white !important;
}

.home-page-slider .owl-next {
  right: 5%;

}
.home-page-slider .owl-prev {
  left: 5%;
}