@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* font-family: "Merriweather", serif; */
/* font-family: "Open Sans", sans-serif; */
*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --opensansFont: "Open Sans", sans-serif;
  --titleFont: "Merriweather", serif;
  --bodyColor: #212121;
  --headingColor: #b80924;
  --primaryColor: #b80924;
  --hoverColor: #691320;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: var(--opensansFont);
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--bodyColor);
}

section {
  padding: 80px 0;
}

.container {
  max-width: 1330px;
  margin: 0 auto;
}

.container-fluid {
  max-width: 100%;
  padding: 0px 80px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 400;
  font-style: normal;
  font-family: var(--titleFont);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* ===================== common css start ====================== */

/* ================== mobile menu section start================= */
.mobileMenuSection {
  display: none;
}

.mobileMenuButton {
  display: none;
  text-decoration: none;
  width: 25px;
  position: absolute;
  top: 35px;
  right: 15px;
}

.mobileMenuButton span {
  width: 25px;
  height: 2px;
  border-radius: 4px;
  background: var(--bodyColor);
  display: block;
  opacity: 1;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.mobileMenuButton span:not(:last-child) {
  margin-bottom: 5px;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(2) {
  opacity: 0;
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.mm-wrapper.mm-wrapper--opened .mobileMenuButton span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -6px);
}

.mm-navbar {
  z-index: 123;
  background: #fff;
  border-bottom: transparent;
  min-height: 20px;
}

.mm-navbar__title > span {
  color: #fff;
}

.mm-listitem:after {
  left: 0;
}

/* code for fixing the conflict of mmenu and bs modal */
.mm-page {
  position: initial;
}

.mm-btn--next:after,
.mm-btn--prev:before {
  border-color: var(--bodyColor);
}

.mm-listitem.active {
  background: #878787;
}

.mm-menu input:focus,
.mm-menu input:focus-visible,
.mm-menu select:focus,
.mm-menu select:focus-visible,
.mm-menu textarea:focus,
.mm-menu textarea:focus-visible {
  outline: transparent;
  outline-offset: inherit;
  border-color: transparent;
  box-shadow: none;
}

/* ==================== mobile menu section end =================== */

/* custom mobile menu block */
/* custom mobile menu block */
.custom-mobile-top {
  border-bottom: none !important;
}
.custom-mobile-top .mm-listitem__text {
  padding: 0 !important;
  white-space: normal;
  background: transparent !important;
}
.mobile-top-block {
  background: #f4f4f4;
  border-radius: 8px;
  padding: 20px 15px;
  margin: 0 15px 15px;
}
.mobile-top-links {
  margin: 0;
}
.mobile-top-links li {
  padding: 0 !important;
  border: none !important;
  margin-bottom: 15px;
}
.mobile-top-links li:last-child {
  margin-bottom: 0;
}
.mobile-top-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #212121;
  font-family: var(--titleFont);
  font-size: 15px;
  font-weight: 600;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
.mobile-top-links li a:hover {
  color: var(--primaryColor);
}
.mobile-top-links li a img {
  width: 20px;
}
.mobile-top-links li a i.bi-link-45deg {
  font-size: 20px;
  line-height: 1;
}
.mobile-top-links li a .arw {
  margin-left: auto;
  font-size: 12px;
  font-weight: bold;
}
.mobile-search-box {
  margin-top: 15px;
}
.mobile-search-box form {
  display: flex;
  position: relative;
  width: 100%;
}
.mobile-search-box input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: none;
  border-radius: 4px 0 0 4px;
}
.mobile-search-box button {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  width: 50px;
  height: 45px;
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* custom mobile menu block End */

/*========================== header start ==========================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  background: #fff;
}

.top_bar {
  overflow: hidden;
  max-height: 200px;
  transform: translateY(0);
  opacity: 1;

  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
}

.site-header.sticky .top_bar {
  max-height: 0;
  transform: translateY(-25px);
  opacity: 0;
}

.site-header.sticky .hdr_btm {
  box-shadow: 0px 12px 10px -9px rgba(0, 0, 0, 0.5);
  transition:
    0.3s,
    border 0.3s,
    border-radius 0.3s,
    box-shadow 0.3s;
}

.site-header.sticky .main_menu {
  /* padding: 19px 0; */
  transition: padding 0.3s ease;
}

.top_hdr {
  background: #f4f4f4;
  padding: 13px 0;
  font-size: 15px;
}

.top_hdr .container {
  display: flex;
  justify-content: space-between;
}

.top_left ul {
  display: flex;
  gap: 35px;
}

.top_left ul li a,
.top_right ul li a {
  color: #535353;
  display: flex;
  align-items: center;
  gap: 10px;
}

.top_left ul li a:hover,
.top_right ul li a:hover {
  color: var(--primaryColor);
}

.top_left ul li a span,
.top_right ul li a span {
  font-family: var(--titleFont);
  font-weight: 800;
}

.top_right ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.top_right ul li ul.list {
  display: block;
}

.top_right ul li .nice-select {
  background: transparent;
  border: transparent;
  padding-left: 0;
  padding-bottom: 0;
  height: auto;
  line-height: inherit;
  min-width: 145px;
}

.top_right ul li .nice-select span,
.top_right ul li ul.list li {
  font-family: var(--titleFont);
  font-weight: 800;
  color: #535353;
}

.top_right ul li .nice-select .option {
  line-height: 34px;
  min-height: 9px;
}
.nice-select .option.disabled {
  display: none;
}

.top_right ul li .nice-select:after {
  border-bottom: 2px solid #212121;
  border-right: 2px solid #212121;
  height: 9px;
  margin-top: -6px;
  top: 50%;
  width: 9px;
}

.search_link {
  cursor: pointer;
}

.serch-wrapper {
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  z-index: 999;

  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.3s ease;
}

.serch-wrapper.show-search {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.serch-wrapper form {
  position: relative;
  width: calc(100% - 50px);
  display: inline-block;
  align-items: center;
}

.serch-wrapper form input {
  height: 45px;
  width: 100%;
  padding: 0 20px;
  box-shadow: none !important;
  border-radius: 4px 0 0 4px;
}

.serch-wrapper.show-search,
.serch-wrapper {
  transition: all 0.3s;
}

.serch-wrapper.show-search {
  transform: translateY(0);
}

.serch-wrapper .d-flex {
  position: absolute;
  right: 275px;
  width: 500px;
}

a.search-close {
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  text-decoration: none;
  background: var(--primaryColor);
  font-size: 20px;
  border-radius: 0 4px 4px 0;
  position: relative;
  right: 37px;
}

.search-close img {
  filter: invert(1);
}

.serch-wrapper input::placeholder {
  font-size: 14px;
  font-family: var(--titleFont);
}

/* Optional vendor support */
.serch-wrapper input::-webkit-input-placeholder {
  font-size: 14px;
  font-family: var(--titleFont);
}

.serch-wrapper input::-moz-placeholder {
  font-size: 14px;
  font-family: var(--titleFont);
}

.serch-wrapper input:-ms-input-placeholder {
  font-size: 14px;
  font-family: var(--titleFont);
}

.logo {
  padding: 19px 0 0;
  text-align: center;
}

.logo .container {
  /* border-bottom: 1px solid #e5e5e5;*/
  padding-bottom: 19px;
  position: relative;
}

.logo .container:after {
  position: absolute;
  content: "";
  background: #e5e5e5;
  width: 113%;
  height: 1px;
  left: -78px;
  bottom: 0;
  right: 0;
}
/***************************************MEGAMENU CSS******************************************/

.menusec #mega-menu-wrap-primary_navigation {
  background: transparent;
}

.main_menu {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.main_menu li {
  padding: 5px 0;
}

.main_menu ul li a {
  color: #535353;
  font-size: 15px;
  font-weight: 600;
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-item
  > a.mega-menu-link {
  color: #535353;
  font-weight: 800;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
  font-family: var(--titleFont);
  font-size: 16px;
  height: auto;
  line-height: inherit;
  padding: 21px 10px;
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  li.mega-menu-item-has-children
  > a.mega-menu-link
  > span.mega-indicator {
  margin: 0;
}

.main_menu li a:hover {
  color: var(--primaryColor);
}

.main_menu li a i {
  font-size: 13px;
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-item
  > a.mega-menu-link:hover,
.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-item
  > a.mega-menu-link:focus {
  background-color: transparent;
  color: var(--headingColor);
  border-color: transparent;
  font-weight: 800;
}

/*========================== banner start ==========================*/

.site-main {
  padding-top: 223px;
}

.video_inner {
  position: relative;
  width: 100%;
  height: calc(100vh - 40px);
  overflow: hidden;
}

.video_inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest_news {
  background: #f4f4f4;
  height: 45px;
  display: flex;
  align-items: center;
}

.latest_news span {
  background: #212121;
  color: #fff;
  padding: 10px 15px 9px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  width: 163px;
  min-width: 163px;
  margin-right: 20px;
}

.latest_news .news_slider .swiper-slide a {
  color: var(--primaryColor);
  margin-right: 0;
  font-size: 13px;
  width: auto;
  min-width: auto;
}

.latest_news .news_slider .swiper-slide a:hover {
  color: var(--hoverColor);
}

.news_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.news_slider .swiper-slide {
  width: auto;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
}

/*========================== About start ==========================*/
.main_hd {
  margin-bottom: 30px;
}

.main_hd h1 {
  font-family: var(--titleFont);
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--headingColor);
}

.cmn_btn {
  text-align: center;
  margin-top: 30px;
  color: rgb(255, 255, 255);
  display: inline-flex;
  z-index: 1;
  position: relative;
  background: var(--primaryColor);
  border-radius: 35px;
  padding: 7px 27px;
  gap: 5px;
  overflow: hidden;
  transition: 0.5s;
  align-items: center;
}

.cmn_btn:after {
  position: absolute;
  content: "";
  background: var(--bodyColor);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 35px;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.5s ease;
  z-index: -1;
}

.cmn_btn:hover:after {
  transform: scale(1);
}

.cmn_btn span {
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
  background: var(--primaryColor);
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  display: inline-block;
}

.cmn_btn:hover span {
  transform: translate(20px, 0);
  background: var(--primaryColor);
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
}

/*========================== Notification start ==========================*/

.circular_sec .sub_hd {
  background: #691320;
  padding: 19px 30px;
  border-radius: 5px 5px 0 0;
  margin-bottom: 0;
}

.circular_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.circular_sec .sub_hd h2 {
  color: #fff;
  font-size: 30px;
  line-height: 38px;
}

.circular_list {
  background: var(--primaryColor);
  padding: 19px 30px 70px;
  height: 443px;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  color: #fff;
}

.circular_slider {
  height: 100%;
}

.circular_slider .swiper-wrapper {
  height: 100%;
}

.circular_slider .swiper-slide {
  height: auto;
  position: relative;
  padding-left: 15px;
}

.circular_slider .swiper-slide p {
  margin-bottom: 20px;
}

.circular_slider .swiper-slide:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  top: 9px;
}

a.dwnld {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

a.dwnld i {
  padding-left: 3px;
}

.view_all {
  margin-top: 12px;
  background: #fff;
  width: 100%;
  text-align: center;
  padding: 7px 0;
  border-radius: 35px;
  color: var(--bodyColor);
  display: block;
}

.circular_list .view_all span {
  background: #fff;
}

.circular_list .view_all span i {
  color: var(--bodyColor);
}

.circular_list .view_all:hover span {
  transform: translate(128px, 0);
}

.circular_list .view_all:hover {
  color: #fff;
}

.circular_bg {
  background: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
}

.white_bg {
  width: 53px;
  min-width: 53px;
  height: 53px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circular_icon_list {
  padding: 20px 0 20px 20px;
  display: inline-grid;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.circular_icon_txt {
  position: relative;
  padding-bottom: 8px;
  min-height: 48px;
  display: flex;
  align-items: center;
  width: 100%;
}

.circular_icon_txt:after {
  position: absolute;
  content: "";
  background: #e5e5e5;
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
}

.circular_icon_list span {
  font-family: var(--opensansFont);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

.circular_icon_list a {
  color: var(--bodyColor);
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.arrow_icon {
  background: #fff;
  width: 29px;
  min-width: 29px;
  height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
}

.notification_img figure,
.notification_img,
.notification_img figure img {
  height: 100%;
  object-fit: cover;
}

.circular_icon_list a:last-child .circular_icon_txt:after {
  display: none;
}

.circular_icon_list a:last-child .circular_icon_txt {
  padding-bottom: 0;
}

.arrow_icon:after {
  content: "";
  position: absolute;
  background: var(--primaryColor);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 0;
  width: 29px;
  min-width: 29px;
  height: 29px;
  margin-left: auto;
}

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

.circular_icon_list a:hover .arrow_icon:after {
  transform: scale(1);
}

.circular_icon_list a:hover .arrow_icon img {
  filter: brightness(0) invert(1);
}

.circular_icon_list a:hover .arrow_icon {
  transform: rotate(45deg);
}

/*========================== VC Message ==========================*/

.vc_msg {
  background: linear-gradient(90deg, #e5e5e5 0%, #ffffff 100%);
}

.sub_sec_hd {
  margin-bottom: 20px;
}

.sub_sec_hd h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
  color: var(--headingColor);
}

.msg_box {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-direction: row;
  height: 100%;
}

.vc_msg .row {
  display: flex;
}

.vc_msg .col-lg-6 {
  display: flex;
}

.msg_box figure {
  flex: 0 0 335px;
  height: 100%;
}

.msg_box figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.msg_box_cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vc_name {
  font-family: var(--titleFont);
  font-size: 13px;
  position: relative;
  border-left: 2px solid var(--primaryColor);
  padding: 0 0 0 10px;
}

.vc_name p {
  margin-bottom: 0;
}

.vc_name h4 {
  font-weight: 600;
  font-size: 17px;
  line-height: 100%;
  padding-bottom: 5px;
}

.msg_box_cont .cmn_btn {
  /* display: inline-flex; */
  width: auto;
  align-self: flex-start;
  margin-top: auto;
}

/*========================== Testimonial ==========================*/
.testimonial_slider {
  text-align: center;
}

.testi_cont {
  font-family: var(--titleFont);
  font-weight: 300;
  font-style: Italic;
  font-size: 30px;
  line-height: 50px;
}

.testi_slide figure {
  margin-bottom: 25px;
}

.testi_author {
  font-family: var(--opensansFont);
  font-weight: 600;
  font-size: 19px;
  line-height: 28px;
  font-style: normal;
  color: #6d6d6d;
}

.testimonial_slider {
  padding-bottom: 75px;
}

.swiper-pagination-bullet-active {
  background: var(--primaryColor);
}

.testiSwiper_btn_hldr {
  position: absolute;
  width: 222px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 50%;
  bottom: 3px;
  transform: translate(-50%, 0);
  z-index: 1;
}

.testiSwiper_btn_hldr > div {
  padding: 7px 20px;
  border: 1.5px solid #d2d2d2;
  border-radius: 7px;
  line-height: 0;
  transition: all 0.5s ease-in-out;
}

.testiSwiper_btn_hldr > div:hover {
  background: var(--hoverColor);
  border: 1.5px solid var(--hoverColor);
}

.testiSwiper_btn_hldr > div:hover img {
  filter: invert(1);
}

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

/*========================== Admission Portal ==========================*/

.portal_area {
  display: flex;
  gap: 2px;
}

.admission_txt figure {
  margin: 0;
}

.admission_txt_hd {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px 0;
}

.admission_txt h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 19px;
  color: #fff;
  text-align: center;
}

.admission_txt {
  flex: 1;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.admission_txt::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 9, 36, 0.9);
  transform: translateY(100%);
  transition: 0.4s ease;
  z-index: 1;
}

.admission_txt:hover::before {
  transform: translateY(0);
}

.admission_txt_hd {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  transition: 0.3s;
}

.admission_txt:hover .admission_txt_hd {
  opacity: 1;
  z-index: 3;
  background: transparent;
  top: 50%;
  bottom: inherit;
  padding: 0;
}

.admission_txt:hover .admission_txt_hd h4 {
  font-size: 30px;
  line-height: 40px;
}

.admission_txt:hover .admission_txt_hd span.arrow {
  display: block;
}

.admission_txt_hd span.arrow {
  font-size: 32px;
  color: #fff;
  text-align: center;
  display: none;
}

.admission_txt.visible {
  opacity: 1;
  transform: translateY(0);
}

.admission_portal_slider {
  display: none;
}

/*========================== Our Event ==========================*/
.eventsec {
  background: linear-gradient(180deg, #f6f4ee 0%, #f6f4ee 100%);
}

.event_slider {
  padding-bottom: 75px;
}

.event_bg:hover .cmn_btn:after {
  transform: scale(1);
}

.event_bg:hover .cmn_btn span {
  transform: translate(115px, 0);
}

/* .event_bg .cmn_btn:hover:after,
.event_bg .cmn_btn:hover span {
  transform: inherit;
} */

.sub_hd h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 30px;
  color: var(--headingColor);
}

.sub_hd {
  margin-bottom: 40px;
}

.event_bg {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
  display: block;
  position: relative;
  overflow: hidden;
}

.event_img figure {
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px #e6dbdd;
  height: 278px;
}

.event_img img {
  box-shadow: 0px 0px 20px 0px #e6dbdd;
  border: 1px solid #fff;
  transition: all 0.4s ease-in-out;
  height: 100%;
  object-fit: cover;
}

a:hover.event_bg figure img {
  transform: scale(1.05);
}

.event_date {
  background: var(--bodyColor);
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  font-size: 13px;
}

.event_hd {
  margin: 20px 0 30px;
  min-height: 104px;
}

.event_hd h4 {
  font-family: var(--opensansFont);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--bodyColor);
  height: 105px;
  overflow-y: auto;
  padding: 0 10px 0 0;
}

.know_more {
  border: transparent;
}

/*========================== Highlights ==========================*/

.university_highlights {
  padding-top: 80px;
}

.nav-tabs {
  border-bottom: transparent;
  justify-content: center;
  gap: 15px;
  margin: 50px 0;
}

.nav-tabs .nav-link {
  border: transparent;
  box-shadow: 0px 0px 15px 0px #0e15431a;
  background: #fff;
  border-radius: 8px;
  padding: 7px 15px 8px;
  font-family: var(--opensansFont);
  font-weight: 600;
  line-height: 18px;
  color: var(--bodyColor);
}

.nav-tabs .nav-link.active {
  background: var(--bodyColor);
  color: #fff;
}

.tab_img {
  position: relative;
}

.tab_img figure {
  height: 480px;
}

.tab_img figure img {
  height: 100%;
  object-fit: cover;
}

.tab_cont {
  background: var(--primaryColor);
  width: 520px;
  padding: 30px 30px 15px 30px;
  color: #fff;
  position: absolute;
  top: 30px;
  left: 30px;
  height: 420px;
}

.tab_img figure {
  margin: 0;
}

.tab_cont h4 {
  font-family: var(--opensansFont);
  font-weight: 700;
  font-size: 25px;
  line-height: 28px;
  padding-bottom: 20px;
}

.student_tab figure,
.campus_tab figure {
  position: relative;
  transition: 0.4s all ease-in-out;
  overflow: hidden;
}

.student_tab figure img,
.campus_tab figure img {
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.student_tab .glry_zoom,
.campus_tab .glry_zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  z-index: 1;
}

.student_tab figure:hover .glry_zoom,
.campus_tab figure:hover .glry_zoom {
  opacity: 1;
}

.student_tab figure:hover:before,
.campus_tab figure:hover:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 45%);
  content: "";
  z-index: 1;
  transition: 0.4s all ease-in-out;
}

.student_tab figure:hover img,
.campus_tab figure:hover img {
  scale: 1.2;
}

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

.second_tab figure {
  flex: 0 0 50%;
  max-width: 50%;
  height: 240px;
}

.second_tab figure img {
  height: 100%;
  object-fit: cover;
}

.student_tab .tab_cont {
  width: 91%;
  height: 88%;
  z-index: 2;
}

.campus_tab .tab_cont {
  z-index: 2;
  width: 90%;
  height: 88%;
}

/*========================== University Facilities ==========================*/
.university_facility {
  background: url(../images/facility_bg.jpg) no-repeat center/cover;
}

.university_facility .sub_hd h2 {
  color: #fff;
  line-height: 40px;
}

.facility_slide figure,
.university_facility .sub_hd {
  margin-bottom: 0;
}

.facility_slide figure {
  height: 413px;
  overflow: hidden;
}

.facility_slide figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.facility_hd {
  margin-bottom: 40px;
}

.facility_cont {
  background: var(--bodyColor);
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: 18px;
}

.university_facility .testiSwiper_btn_hldr {
  position: inherit;
  width: 110px;
  transform: inherit;
}

.university_facility .testiSwiper_btn_hldr > div img {
  filter: invert(1);
}

.university_facility .testiSwiper_btn_hldr > div:hover {
  background: #fff;
  border: 1.5px solid #fff;
}

.university_facility .testiSwiper_btn_hldr > div:hover img {
  filter: inherit;
}

.facility_bg {
  background: #fff;
  border-radius: 5px;
  padding: 35px;
}

.ac_counter {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #e5e5e5;
  align-items: center;
  padding-bottom: 21px;
  margin-bottom: 21px;
}

.counter_hldr h3 {
  font-family: var(--opensansFont);
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
}

.counter_hldr p {
  color: #6d6d6d;
  margin-bottom: 0;
}

.ac_counter:last-of-type {
  border-bottom: transparent;
  margin: 0;
  padding: 0;
}

.count-wrapp {
  display: flex;
  align-items: center;
  gap: 5px;
}

.count-wrapp span {
  font-family: var(--opensansFont);
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
}

/*========================== Important Links ==========================*/

.link_bg {
  background: #f4f4f4;
  padding: 50px;
  border-radius: 5px;
}

.icon_bg {
  background: #fff;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_bg img {
  width: 30px;
  aspect-ratio: 1;
}

/* .icon_bg {
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.6s ease;
}

.icon_bg.show {
  transform: scale(1);
  opacity: 1;
} */

.icon {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
}

.icon_txt {
  font-weight: 400;
  color: var(--bodyColor);
}

.link_bg ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.link_bg ul li {
  width: calc((100% - 100px) / 5);
}

/*========================== Gallery ==========================*/
.gallery {
  position: relative;
  z-index: 2;
}

.galleryWrapper .sub_hd {
  margin-bottom: 0;
}

.galleryWrapper .sub_hd h2 {
  color: #fff;
}

.galleryWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gal_right ul {
  align-items: flex-end;
}

.gal_left,
.gal_right {
  flex: 1;
}

.gal_left ul,
.gal_right ul {
  display: flex;
  gap: 20px;
}

.gal_left ul li a,
.gal_right ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.gal_left .d-flex {
  justify-content: space-between;
  align-items: center;
  background: var(--primaryColor);
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}

.gal_left .cmn_btn {
  margin-top: 0;
  background: #fff;
  color: var(--bodyColor);
}

.gal_left .cmn_btn span {
  background: #fff;
}

.gal_left .cmn_btn:hover {
  color: #fff;
}

.gal_left .cmn_btn:hover span {
  color: var(--bodyColor);
}

.gal_left ul li:first-child .gal01,
.gal_right ul li:first-child .gal06 {
  height: 345px;
  object-fit: cover;
  border-radius: 5px;
}

.galleryWrapper ul li img {
  height: 245px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.galleryWrapper ul li {
  flex: 1;
}

.galleryWrapper figure {
  position: relative;
  transition: 0.4s all ease-in-out;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 20px;
}

.galleryWrapper .glry_zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  z-index: 1;
}

.galleryWrapper figure:hover:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 45%);
  content: "";
  z-index: 1;
  transition: 0.4s all ease-in-out;
}

.galleryWrapper figure:hover .glry_zoom {
  opacity: 1;
}

.galleryWrapper figure:hover img {
  scale: 1.2;
}

.galleryWrapper li {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.galleryWrapper li.visible {
  opacity: 1;
  transform: translateY(0);
}

/*========================== Statutory Information ==========================*/
.statutory_info {
  position: relative;
  z-index: 2;
}

.info_box {
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 2px;
  color: #fff;
}

.info_box ul {
  padding: 0 0 0 20px;
}

.info_box ul li {
  list-style-type: disc;
  padding: 0 0 2px 0;
  font-weight: 600;
}

.info_box ul li a {
  color: #fff;
}

.info_box span {
  font-weight: 600;
}

.info_box .d-flex {
  gap: 10px;
  justify-content: center;
}

.statutory_info h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 20px;
}

.sky_blue {
  background: #81a4c8;
}

.green {
  background: #73ba90;
}

.purple {
  background: #bc98b1;
}

.brown {
  background: #c0b07c;
}

.statutory_info .row {
  display: flex;
  flex-wrap: wrap;
}

.statutory_info .col-lg-3 {
  display: flex;
  flex-direction: column;
}

.info_box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/*========================== Important website ==========================*/
.important_website {
  margin-top: -1075px;
  position: relative;
  z-index: 1;
}

.important_website:after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 18.09%,
    #ffffff 79.9%
  );
  position: absolute;
  content: "";
  bottom: -47px;
  height: 200px;
  width: 100%;
  left: 0;
}

.important_website .sub_hd {
  position: relative;
  overflow: hidden;
  background: #f9f8f8;
  width: 612px;
  height: 306px;
  border-radius: 300px 300px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  z-index: 1;
}

.important_website .sub_hd h2 {
  font-size: 30px;
  line-height: 41px;
}

.website_slide {
  background: #fff;
  box-shadow: 0px 0px 30px 0px #0e154314;
  width: 119px;
  height: 119px;
  line-height: 112px;
  border-radius: 50%;
  padding: 5px;
  margin: 10px auto 1rem;
  position: relative;
}

.website_slide img {
  width: 95px;
}

.wrapper {
  position: relative;
  height: 1260px;
  top: 460px;
}

.item {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  border-radius: 100%;
  z-index: 1;
  cursor: pointer;
}

.wrapper svg {
  height: 800px;
  overflow: visible;
  width: 800px;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.wrapper .st0 {
  fill: none;
  stroke: #000000;
  stroke-width: 2;
  stroke-miterlimit: 1;
}

.start {
  position: absolute;
  top: 50%;
  right: -30px;
}

.wrapperOuter {
  width: 1000px;
  height: auto;
  overflow: hidden;
  margin: 0px auto;
  position: relative;
  top: 460px;
}

.link_bg li {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.link_bg li.visible {
  opacity: 1;
  transform: translateY(0);
}

/*========================== Footer ==========================*/

.footer_top {
  background: var(--bodyColor);
  position: relative;
  z-index: 5;
  border-top: 3px solid var(--headingColor);
}

.foot_info {
  display: flex;
}

.foot_info .foot_links {
  flex: 0 0 18%;
  max-width: 18%;
}

.foot_links h4 {
  font-family: var(--opensansFont);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-bottom: 30px;
}

.foot_links ul li a {
  color: #bcbcbc;
  padding-bottom: 3px;
  transition: all 0.4s ease-in-out;
}

.foot_links ul li a:hover {
  color: #fff;
}

.newsletter .form-control {
  background: transparent;
  border: 1px solid #404040;
  height: 40px;
  color: #fff;
}

.newsletter input::placeholder {
  color: #bcbcbc;
}

.newsletter input::-webkit-input-placeholder {
  color: #bcbcbc;
}

.newsletter input::-moz-placeholder {
  color: #bcbcbc;
}

.newsletter input:-ms-input-placeholder {
  color: #bcbcbc;
}

.newsletter form {
  position: relative;
  margin-bottom: 50px;
}

.newsletter .submit_btn {
  position: absolute;
  border: transparent;
  right: 0;
  bottom: 0;
  background: var(--primaryColor);
  color: #fff;
  height: 40px;
  padding: 0 17px;
  border-radius: 0 5px 5px 0;
  transition: all 0.4s ease-in-out;
}

.newsletter .submit_btn:hover {
  background: var(--hoverColor);
}

.newsletter {
  min-width: 370px;
}

.submit_btn i {
  margin-left: 5px;
}

.newsletter h5 {
  font-family: var(--opensansFont);
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-bottom: 20px;
}

.foot_contact_info {
  margin-top: 50px;
}

.foot_contact_info li span {
  color: #bcbcbc;
  position: relative;
  top: -2px;
}

.foot_contact_info li i {
  margin-right: 6px;
}

.footer_bottom {
  background: #000;
  padding: 17px 0;
}

.footer_bottom .d-flex {
  align-items: center;
  gap: 80px;
}

.footer_bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_bottom ul {
  display: flex;
  gap: 15px;
}

.footer_bottom ul li a,
.copyright {
  color: #bcbcbc;
}

.copyright a {
  color: #fff;
}

.footer_bottom ul li a:hover {
  color: #fff;
}

.copyright a:hover {
  color: var(--hoverColor);
}

.copyright p {
  margin: 0;
}

.foot_left ul li a {
  position: relative;
}

.foot_left ul li a:after {
  position: absolute;
  content: "";
  background: #bcbcbc;
  height: 15px;
  width: 1px;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.foot_left ul li:last-child a:after {
  display: none;
}

.social_icons li a:hover img {
  transform: rotate(360deg);
  transition: 0.5s;
}

/*========================== Animation CSS ==========================*/

.slide-in {
  opacity: 0;
  transition: all 0.8s ease;
}

.from-left {
  transform: translateX(-50px);
}

.from-right {
  transform: translateX(50px);
}

.from-top {
  transform: translateY(-50px);
}

.from-bottom {
  transform: translateY(50px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Zoom In Image Animation */
.zoom-in-on-scroll {
  transform: scale(1.1);
  opacity: 0;
  transition:
    transform 1s ease,
    opacity 1s ease;
}

.zoom-in-on-scroll.show {
  transform: scale(1);
  opacity: 1;
}

/* Fade In Image */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-in-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Text Reveal Animation */
.reveal-on-scroll {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 1s ease,
    opacity 1s ease;
}

.reveal-on-scroll.show {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.important_website_slider {
  display: none;
}

/*========================== Mgamenu CSS ==========================*/

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-megamenu
  > ul.mega-sub-menu {
  /* max-width: 1280px;
  margin: auto; */
  background: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 0px 10px 0px #00000026;
  max-height: 60vh;
  overflow-y: auto;
  /* padding-right: 10px; */
  overflow-x: hidden;
  scrollbar-width: none;
  border-top: 3px solid var(--headingColor);
}

.main_menu .inner_menu ul li {
  position: relative;
  padding-left: 15px;
}

.main_menu .inner_menu ul li:before {
  position: absolute;
  content: "";
  background: var(--headingColor);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0;
  top: 15px;
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-megamenu
  > ul.mega-sub-menu
  li.mega-menu-column-standard
  h4.mega-block-title {
  display: none;
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  a.mega-menu-link {
  font-size: 16px;
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-megamenu
  > ul.mega-sub-menu
  li.mega-menu-column-standard {
  padding: 20px;
}
.main_menu .inner_menu .col ul {
  /* padding: 0 0 0 20px; */
}

.main_menu .inner_menu .col ul li .sub_megamenu ul {
  padding: 0;
}

.inner_menu::-webkit-scrollbar {
  width: 6px;
}

.inner_menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: transparent;
  width: 100%;
  box-shadow: none;
  z-index: 999;
  gap: 40px;
  flex-wrap: wrap;
  border-radius: 8px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  pointer-events: none;
  max-height: 60vh; /* 👈 limits full height to screen */
  overflow: hidden;
}

.has-megamenu .megamenu:hover,
.has-megamenu:hover .megamenu {
  display: flex;
}

.has-megamenu:hover .megamenu {
  display: flex;
  display: block;
}

.has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.has-megamenu:hover .megamenu-col {
  opacity: 1;
  transform: translateY(0);
}

.inner_menu .col-md-4,
.megamenu-col.first {
  height: 100%;
}

.first {
  position: relative;
  padding-right: 1px;
}

.megamenu-col li a span {
  width: 100%;
}

.megamenu-col li a .bi-chevron-right::before {
  font-weight: bold !important;
}

.megamenu-col {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  visibility: hidden;
}

.mega-sub-menu .col h4 {
  font-weight: 600;
  color: #fff;
  background: var(--primaryColor);
  padding: 5px 0;
  text-align: center;
  font-size: 16px;
  font-family: var(--opensansFont);
  margin-bottom: 10px;
}

.mega-sub-menu .col.last h4 {
  background: #fff;
  font-size: 0;
  height: 29px;
}

.megamenu-col ul li a {
  font-weight: 600;
  color: var(--bodyColor);
  padding-bottom: 15px;
}

.megamenu-col ul li a span {
  font-family: var(--opensansFont);
}

.megamenu-col ul li:last-child a {
  padding-bottom: 0;
}

.megamenu-col ul li {
  padding: 0;
}

.has-megasubmenu {
  position: relative;
}

.sub_megamenu,
.sub_megamenu_child {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  background: #fff;
  border: 1px solid #f4f4f4;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #00000026;
}

/* ACTIVE */
.has-megasubmenu.active > .sub_megamenu {
  max-height: 250px;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}

.has-megasubmenu-subchild.active > .sub_megamenu_child {
  max-height: 150px;
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}

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

.sub_megamenu::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}

.sub_megamenu ul li a {
  display: block;
  padding: 3px 20px;
  color: #333;
  font-size: 15px;
  transition: 0.3s;
}

.sub_megamenu ul li a:hover {
  background: #f5f7fb;
  color: var(--headingColor);
  padding-left: 25px;
}

.has-megasubmenu.active > .sub_megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  margin-bottom: 15px;
}

.megamenu li.has-megasubmenu.active i {
  transform: rotate(180deg);
}

.megamenu li.has-megasubmenu.active > a {
  color: var(--headingColor);
}

.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-item.mega-current-menu-item
  > a.mega-menu-link,
.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-item.mega-current-menu-ancestor
  > a.mega-menu-link,
.main_menu
  #mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation
  > li.mega-menu-item.mega-current-page-ancestor
  > a.mega-menu-link {
  background-color: transparent;
  color: var(--headingColor);
  border-color: transparent;
  font-weight: 800;
}

.main_menu .inner_menu ul li.mega-current-menu-item a {
  background-color: transparent;
  color: var(--headingColor);
  border-color: transparent;
}

.main_menu .inner_menu ul li .sub_megamenu ul li {
  padding-left: 0;
}

#mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation[data-effect="fade_up"]
  li.mega-menu-item.mega-menu-megamenu
  > ul.mega-sub-menu,
#mega-menu-wrap-primary_navigation
  #mega-menu-primary_navigation[data-effect="fade_up"]
  li.mega-menu-item.mega-menu-flyout
  ul.mega-sub-menu {
  visibility: hidden;
}
