:root {
  --primary-color: #444444;
  --secondary-color: #5D9EC6; /* #3fbbc0; #fdb10f;*/
  --secondary-active-color: #4fb4f3; /* #65c9cd; #fdb10f;*/
  --menu-bg-color: #9d2235;
  --border-color: #d0e8e9;
  --light-color:#f3f3f3;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Oxygen", sans-serif;
  color: var(--primary-color);
  background: #fdf7f8;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-active-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Roboto", sans-serif;*/
  font-family: "New Amsterdam", system-ui;
  font-weight: 400 !important;
  font-style: normal;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--secondary-color);
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--secondary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-active-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--secondary-color);
  color: #fff;
  height: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

#topbar ul {
  display: flex;
}

#topbar ul li {
  list-style: none;
}

#topbar:has(.top-menu) a {
  color: white;
  text-decoration: none;
  padding-inline: 10px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background:var(--menu-bg-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  #header {
    padding: 0px;
  }
}
#header.header-scrolled {
  top: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}
.navbar {
  padding: 3px 0px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.5);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 5px 10px;
  text-transform: capitalize;
  margin: 5px;
  color: var(--menu-bg-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--secondary-color);
  border-left: 5px solid var(--secondary-color);
  transition: 0.5s;
}


.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  right: 0;
  padding: 10px;
  display: flex;
  align-items: flex-start;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: var(--menu-bg-color);
  background: none;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: var(--secondary-color);
}

.navbar .megamenu ul li span {
  color: var(--secondary-color);
  padding: 8px;
  display: block;
  font-weight: 700;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: #111;
  }

}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--secondary-color);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--secondary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Social Media
--------------------------------------------------------------*/
.social-media {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 999;
  transform: translate(-250px, 0);
}

.social-media a {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin: 2px;
  padding: 10px;
  width: 300px;
  text-align: right;
  border-radius: 50px;
  transition: 1s;
  transition-duration: transform;
  border: 1px solid #2196F3;
}

.social-media a span {
  padding-bottom: 2px;
}

.social-media a:hover {
  transform: translate(140px, 0);
}

.social-media i {
  margin-left: 10px;
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.social-media a i {
  margin-top: 3px;
}

.social-media a:nth-child(1) i {
  color: #1DA0F0;
}

.social-media a:nth-child(2) i {
  color: #F80000;
}

.social-media a:nth-child(3) i {
  color: transparent;
  background-image: linear-gradient(45deg, #FFDF9E, #E56969, #8A49A1);
  background-clip: unset;
  -webkit-background-clip: text;
  font-weight: 600;
}

.social-media a:nth-child(4) i {
  color: #ff9800;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: calc(100vh - 170px); /*202px*/
  background-color: rgba(60, 60, 60, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

#hero .container {
  text-align: center;
  /*background: rgba(255, 255, 255, 0.9); 
  padding-top: 30px;
  padding-bottom: 30px;*/
  margin-bottom: 100px;
  /*border-top: 4px solid var(--secondary-color);*/
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

#hero h2 {
  color: #ff0404;
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0 0 3px #fbfffb, 0 0 15px #03fb5e;
}

#hero h2 span {

  display: block;
}

#hero p {
  margin: 0 auto 30px auto;
  color: #555555;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(63, 187, 192, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--secondary-color);
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: var(--secondary-color);
}

#hero .btn-get-started:hover {
  background: #65c9cd;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .container {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 160vh;
  }
}

/*--------------------------------------------------------------
# Latest News
--------------------------------------------------------------*/
.latest-news {
  /*padding: 10px;*/
  text-transform: capitalize;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
}
.latest-news h2, 
.latest-news .scroll-text {
  padding: 10px;
}
.latest-news h2 {
  color: var(--light-color);
  font-size: 120%;
  margin:0px;
  text-align: center;
  /*background:var(--secondary-color);*/
}
.latest-news .scroll-text {
  background:white;
}
/* Brand logo slider */
.brands {
  position: relative;
  overflow: hidden;
  height: 1.5rem;
}

.brands:hover .brands__wrapper,
.brands:hover .brands__preWrapper {
  animation-play-state: paused;
}

.brands__preWrapper {
  position: relative;
  width: 100%;
  height: 1.5rem;
  transform: translateX(0%);
  animation: scroll1 10s linear infinite;
  animation-delay: 4s;
  animation-direction: normal;
  will-change: transform;
}

.brands__wrapper {
  position: absolute;
  white-space: nowrap;
  transform: translateX(0%) translateZ(0);
  animation: scroll2 10s linear infinite;
  animation-delay: 4s;
  animation-direction: alternate;

  will-change: transform;
}

.brands__wrapper>a {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
  vertical-align: middle;
}

@keyframes scroll1 {
  0% {
    transform: translateX(-0%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(0%) translateZ(0);
  }

  100% {
    transform: translateX(-100%) translateZ(0);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  /* font-weight: bold;*/
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}
.about-img {
  position: relative;
  transition: 0.5s;
}
.about-img img {
  max-width: 100%;
  border: 4px solid rgba(4, 196, 255, 0.664);
  position: relative;
}
.about-img::before {
  position: absolute;
  left: 25px;
  top: 15px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: 0.5s;
}

.about-img::after {
  position: absolute;
  right: 25px;
  bottom: 20px; /*35px;*/
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: 0.5s;
}

.about-img:hover {
  transform: scale(1.03);
  transition: 0.5s;
}

.about-img:hover::before {
  left: 0px;
  top: -10px;
}

.about-img:hover::after {
  right: 0px;
  bottom: -10px;
  border-right: 5px solid #f19a04;
  border-bottom: 5px solid #f19a04;
}
/*--------------------------------------------------------------
# Admission Enquiry
--------------------------------------------------------------*/
.admission {
  background: var(--secondary-color);
  color: #fff;
  background-size: cover;
  padding: 60px 0;
}

.admission h3 {
  font-size: 28px;
  font-weight: 700;
}

.admission .admission-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.admission .admission-btn:hover {
  background: #fff;
  color: var(--secondary-color)
}

/*--------------------------------------------------------------
# Key Persons
--------------------------------------------------------------*/
.key-persons .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.key-persons .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.key-persons .member .pic img {
  transition: ease-in-out 0.3s;
}

.key-persons .member:hover {
  transform: translateY(-10px);
}

.key-persons .member .member-info {
  padding-left: 30px;
}

.key-persons .member h4 {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--primary-color);
}

.key-persons .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.key-persons .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.key-persons .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.key-persons .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.key-persons .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.key-persons .member .social a i {
  color: var(--secondary-color);
  font-size: 16px;
  margin: 0 2px;
}

.key-persons .member .social a:hover {
  background: var(--secondary-color);
}

.key-persons .member .social a:hover i {
  color: #fff;
}

.key-persons .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Programs
--------------------------------------------------------------*/
.programs { 
  background: url("../img/programs-bg.jpg") center center;
  background-size: cover;
  position: relative;
  color:white;
}
.programs::before{
  content: "";
    /* background: rgba(0, 0, 0, 0.8);*/
    background: rgba(93, 158, 198, 0.9);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.programs .icon-box {
  margin-bottom: 20px;
  text-align: center;
}

.programs .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.5s;
  color: var(--secondary-color);
  overflow: hidden;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.programs .icon i {
  font-size: 36px;
  line-height: 0;
}

.programs .icon-box {
  padding: 30px;
  border: 2px solid transparent;
}

.programs .icon-box:hover {
  /* background: #c6c7c791; /*#fcffff;*/
  border: 2px solid #c6d2d8;
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
  border-radius: 5px;
}

.programs .icon-box:hover .icon {
  box-shadow: 0px 0 25px rgba(63, 187, 192, 0.3);
}

.programs .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px;
}

.programs .title a {
  /*color: var(--primary-color);*/
  color: var(--light-color);
  transition: 0.3s;
}

/*.programs .title a:hover {
  color: var(--secondary-color);
}*/

.programs .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--light-color);
  bottom: 0;
  left: calc(50% - 25px);
}

.programs .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 10px; /*20px*/
  color: var(--primary-color);
  border-radius: 0;
  border-left: 5px solid #fff;
  cursor: pointer;
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0;
}

.departments .nav-link:hover h4 {
  color: var(--secondary-color);
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: var(--secondary-color);
}

.departments .nav-link.active h4 {
  color: var(--secondary-color);
}

.departments .tab-pane.active {
  -webkit-animation: slide-down 0.5s ease-out;
  animation: slide-down 0.5s ease-out;
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0;
}

@media (max-width: 768px) {
  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px 0;
    max-width: 100%;
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.departments .tab-pane p {
  color: var(--primary-color);
}

.departments .tab-pane p:last-child {
  margin-bottom: 0;
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slide-down {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# hods
--------------------------------------------------------------*/
.hods .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(63, 187, 192, 0.1);
}

.hods .member .member-img {
  position: relative;
  overflow: hidden;
}

.hods .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hods .member .social a {
  transition: color 0.3s;
  color: var(--primary-color);
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hods .member .social a i {
  line-height: 0;
}

.hods .member .social a:hover {
  color: var(--secondary-color);
}

.hods .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.hods .member .member-info {
  padding: 25px 15px;
}

.hods .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--primary-color);
}

.hods .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.hods .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--primary-color);
}

.hods .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.event-section {
  padding: 5px;
  box-shadow: 0 0 15px 0 rgba(68, 88, 144, 0.1);
  margin-top: 20px;
  background:white;
}

.date-section {
  float: left;
  height:120px;
}
.event-dt{
  height:125px;
}
.event-day {
  font-size: 350%;
  color: var(--menu-bg-color);  
  font-weight: 200;
}

.event-month {
  text-transform: uppercase;
  margin-top: -10px;
  letter-spacing: 5px;
  font-size: 130%;
  font-weight: bolder;
}

.event-year {
  writing-mode: vertical-lr;
  display: inline-block;
  margin: 5px;
  text-orientation: mixed;
  padding: 25px 5px;
  font-weight: bold;
  font-size: 120%;
  background: var(--secondary-color);
  color: white;
  height:96%;
}

.event-desc h1 {
  font-weight: 500;
  font-size: 23px;
}
.event-desc p {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
  background-color: var(--secondary-color);
  text-align: center;
}

.event-btn:hover {
  background-color: #ffffff;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}


/*--------------------------------------------------------------
#Circular Sections
---------------------------------------------------------------*/

.section-text {
  height: 300px !important;
  overflow-x: no-display !important;
  overflow-y: scroll !important;
  scrollbar-color: var(--secondary-color) var(--border-color);
  scrollbar-width:thin;
}
.section-text .circular,
.section-text .notification,
.section-text .placement{
  padding: 10px 0px 10px 10px;
}
.section-text .circular .date, 
.section-text .notification .date,
.section-text .placement .date{
  color:var(--menu-bg-color);
  font-size: 90%;
}
.section-text .circular a,
.section-text .notification a,
.section-text .placement a{
  display: block;
  color:var(--primary-color);
  padding:5px;
  margin-left:15px;
  background: var(--light-color);
}

.section-text .circular a:hover,
.section-text .notification a:hover,
.section-text .placement a:hover {
  background: var(--menu-bg-color);
  color:var(--border-color);
}
.section-text .circular img,
.section-text .notification img,
.section-text .placement img{
  width:50px;
}

/*--------------------------------------------------------------
# recruiters
--------------------------------------------------------------*/

.recruiters .recruiters-wrap {
  border-top: 1px solid #f1eeed;
  border-left: 1px solid #f1eeed;
}

.recruiters .recruiters-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--border-color); /*#f1eeed;*/
  border-bottom: 1px solid var(--border-color); /*#f1eeed;*/
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.recruiters .recruiters-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  filter: grayscale(100%);
}

.recruiters .recruiters-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4154f1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4154f1;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: var(--primary-color);
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
  background: white;
  border: var(--light-color);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--secondary-color);
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted var(--border-color);
}

.contact .info-box h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  text-align: center;
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--secondary-color);
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: var(--secondary-color);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary-active-color);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #ecf8f9;
  min-height: 40px;
  /*margin-top: 200px;*/
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

.inner-page {
  padding: 30px 0;
    overflow: hidden;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eeeeee;
  padding: 0 0 30px 0;
  color: var(--primary-color);
  font-size: 14px;
}

#footer .footer-top {
  border-top: 1px solid var(--border-color);
  background: #f6f6f6;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--secondary-color);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--secondary-active-color);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--primary-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--secondary-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--secondary-color);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: var(--secondary-active-color);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
}

.submenu-title {
  color: var(--light-color);
  background: var(--secondary-color);
  padding: 10px;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.my-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s;
}

.my-nav li {
  padding: 8px;
}

.my-nav li a {
  padding: 5px 10px;
  text-transform: capitalize;
  margin: 5px;
  color: var(--menu-bg-color);
  border-left: 5px solid #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  transition: 0.5s;
}

.my-nav li a:hover {
  color: var(--secondary-color);
  border-left: 5px solid var(--secondary-color); 
}

p {
  text-align: justify;
}
.para-heading {
  font-weight: 600;
  padding: 5px 0px; 
}
caption{
  color: var(--menu-bg-color);
  text-align: center;
  font-size: 120%;
  font-weight: 800;
}
.tab-content>.active {
  display: block;
  padding: 15px;
  /* border: 1px solid var(--bs-border-color);
  border-top: none;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
  min-height: 400px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color:var(--secondary-color);
  font-weight: 600;
}

.usr-list {
  list-style: none; 
  padding-left: 10px;
  margin: 0px;
}

.usr-list li a {
  border: 1px solid #fff;
  padding: 5px;
  display: block;
  margin:5px;
  color: var(--primary-color);
  border-left: 5px solid var(--secondary-color);
  transition: 0.5s;
}
.usr-list li a:hover {
  border: 1px solid var(--bs-border-color);
  border-left: 5px solid var(--menu-bg-color);
  color: var(--menu-bg-color);
}
.naac-tabsechead{
  color: white;
    font-size: 110%;
    background: #9C27B0;
    display: block;
    margin: -8px;
    padding: 5px;
    font-weight: 900;
    text-align: center;
}
.usr-table {
  border: 1px solid gray;
  background-color:white;
}
.usr-table caption {
  background: yellow;
  margin-bottom:10px;
  border-radius: 30px;
}
.usr-table thead {
  background-color:#2196f3;
}
.usr-table thead th {
  vertical-align:middle;
}
.usr-table td{
  vertical-align: middle;
}

.usr-table td a {
  color:var(--menu-bg-color);
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#fdb10f 50%, rgba(205, 164, 94, 0.4) 52%);
  /*background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);*/
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(253,177, 15, 0.7); /*rgba(205, 164, 94, 0.7);*/
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #fdb10f; /*#cda45e;*/
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}