/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #222222;
  --color-primary: #002147;
  --color-secondary: #ffffff;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  text-decoration: none;
  font-size: 15px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #002147;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  /*padding: 60px 0;*/
  overflow: hidden;
}

.sections-bg {
  background-color: #f6f6f6;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-header p {
  margin-bottom: 0;
  color: #6f6f6f;
}
.isbm-h1{font-size: 34px !important; text-align: left; font-weight: 700; color: #002147; }
.isbm-h2{font-size: 26px !important; text-align: left; font-weight: 700; color: #002147; }
.isbmh3{font-size: 26px; color: #333333; font-weight: 700;}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 60px 0 60px 0;
  min-height: 20vh;
  position: relative;
  background-color: var(--color-primary);
}

.breadcrumbs .page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f6f6f6;
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);
  transition: 0.3s;
}


.breadcrumbs nav ol li+li {
  padding-left: 10px;
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(248, 90, 64, 0.8);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s 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);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #187583;
  height: 85px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
  position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 55px;
  scroll-margin-top: 70px;
  position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    z-index: 997;
  background: #00000090;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 55px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  background: #681823;
}

.header .logo img {
  max-height: 140px;
  margin-right: 6px;
  margin-top: 46px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #fff;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: #f96f59;
}

/*.sticked-header-offset {
  margin-top: 70px;
}*/

section {
  
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

@media (max: 1200px) {
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 8px;
}
}

@media (min-width: 1024px) {
  .navbar {
    padding: 0;
  }

 

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
/*    padding: 10px 0 10px 18px;*/
  }
  .navbar>ul>li a{ padding: 0 9px;}

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: rgb(255, 255, 255);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none !important;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .rightalign {

   display: block;
    position: absolute;
    right: 0px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #002147;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

  .ao ul { right: 0px;}

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #8e0013;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 6px 20px;
    font-size: 14px;
    text-transform: none;    
    color: #ffffff;
  }

  .navbar .dropdown ul a:hover {color: #ffffff !important; background: #730012;}

  .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: #f1f1f1;
  }

  .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 ul small{font-size: 12px;}

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1024px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    right: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    right: -100%;
  }
}

@media (min-width: 1024px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1023px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgb(71 0 0 / 90%);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 15px;  
    color: rgb(255, 255, 255);
    white-space: nowrap;
    transition: 0.3s;
  }

  .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 .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: #420000;
    border: 1px solid #8e0000;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 33, 71, 0.39);
    z-index: 9996;
  }
   .topbar {
  z-index: 990;}
}


/*.sticked .logo img{display: none;}*/

.headerBox{height: 90px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;}

.video {
  position: relative;
  height: 100vh;
  /*min-height: 100%;*/
  width: 100%;
  overflow: hidden;
}

video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/*
.video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}*/

.video .container {
  position: relative;
  z-index: 2;
}



.video:before {
    content: "";
    background: rgba(6, 12, 34, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.imgZoom{overflow: hidden; position: relative;}
  .imgZoom  img {
      width: 100%;
      -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
      transition: all 1.5s cubic-bezier(0, 0, 0.2, 1);
  }

.imgZoom img:hover {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
  }

 .newsDate{
 position: absolute; 
 top:0px; 
 left: 0px; 
 background: #024089; 
 color: #fff; 
 padding: 10px;
font-weight: 600;} 

/*--------------------------------------------------------------
#  applynow
--------------------------------------------------------------*/
.applynow {
  color: #fff !important;
  background: #ee3c40;
  padding: 12px 25px !important;
  margin: 0 0 0 15px;
  border-radius: 50px;
  border: 2px solid #ee3c40;
  transition: all ease-in-out 0.3s;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
}

.applynow:hover {
  background: none;
  color: #fff !important;
  text-decoration: none;
}

.applynow:focus {
  color: #fff;
}

@media (max-width: 992px) {
  .applynow {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
#  Read More
--------------------------------------------------------------*/
.readmore {
  color: #002147 !important;
  background: #fff;
  padding: 10px 25px !important;
  border-radius: 50px;
  border: 2px solid #002147;
  transition: all ease-in-out 0.3s;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}

.readmore:hover {
  background: none;
  color: #fff !important;
  text-decoration: none;
  background: #002147;

}

.readmore:focus {
  color: #000;
  text-decoration: none;
}

@media (max-width: 992px) {
  .readmore {
    margin: 0 15px 0 0;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}



#hero .hero-container {
  position: absolute;

  left: 0;
  bottom: 5px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0 15px;
  z-index: 1;
}


#hero .btn-get-started {
  font-size: 26px;
  display: inline-block;
  padding: 6px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 54px;
  height: 54px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  padding-top: 8px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
  #hero .hero-container {
    bottom: 5px;
  }


  footer .footer_heading{height: 100%;}
}

/*#hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

#hero h1 span {
  color: #fff000;
}*/

 .heading-text {
        color: #fff;    
        position: absolute;
        top: 60%;
        z-index: 1;
        margin-left: 47px;
        line-height: 20px;
    }
    
    .banner_head1 {
        color: #fff;
		font-family:"PracticeRegular", serif;
        font-size: 100px;
        font-weight: 500;
    }
    
    .banner_head2 {
        color: #fff;
		font-family:"PracticeRegular", serif;
        font-size: 46px;
        font-weight: normal;/
        z-index: 1;
    }

@media (max-width: 991px) {
  #hero h1 {
    font-size: 34px;
  }
}

#hero p {
  color: #ebebeb;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 991px) {
  #hero p {
    font-size: 16px;
  }
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#fff000 50%, rgba(101, 111, 150, 0.15) 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: 2px solid rgba(163, 163, 163, 0.4);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #fff000;
  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;
}

#hero .about-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #fff000;
}

#hero .about-btn:hover {
  background: #fff000;
  color: #fff;
}

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






 .swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 14px;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.final-palcement {
    position: relative;
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.final-palcement .swiper-slide{padding-top: 60px;}

.final-palcement .card {border-radius: 6px; width: 100%;}

.final-palcement  .profile {
text-align: center;
margin: -65px 0 0 0;
}

.final-palcement .card .profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-block;
    border: 4px solid #002147;
}
.student-name{color: #000; font-weight: 600; margin-top: 5px; }
.student-batch{padding: 2px 0px}
.student-hometown{padding: 2px 0px}
.student-company{padding: 2px 0px; margin-bottom: 15px;}
.lineBottom{width: 40px; height:2px; background: #ccc; margin: 5px auto; }
.line-Bottom{width: 40px; height:4px; background: #fff000; position:absolute; bottom: 0; left: 40%; }
section{padding: 50px 0px;}

.final-palcement .heading {
    color: #fff;
    font-size: 24px;
    text-align: left;
    border-left: 5px solid #fff000;
    padding: 2px 10px;
    background: #001e40ad;
    font-weight: 600;
}
.final-palcement .heading span{font-size: 14px;}
.z-index{z-index: 2;}

.final-palcement .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 15px;
    left: auto;
}

.final-palcement .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: auto;
    right: 50px;
}

.final-palcement .swiper-button-next img{width: auto !important;}
.final-palcement .swiper-button-prev img{width: auto !important;}

.final-palcement .swiper-button-next, .final-palcement .swiper-button-prev {
    position: absolute;
    top:auto;
    bottom: 0 !important;
    color: #fff; 
    /*background: #fff000; 
    padding: 20px 20px;
    border-radius: 20px*/}

   .final-palcement .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: "";
}
.final-palcement .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: "";
}


.celebrateinfo {
    background-color: #1d528f;
    color: #fff;
    padding: 40px 50px 40px 50px;
    margin-top: 50px;
    margin-right: -130px;
    z-index: 111 !important;
    position: relative;
}


.celebrate_title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    padding-left: 70px;
}
.celebrate_desc {
    font-size: 17px;
    font-weight: normal;
    line-height: 30px;
    padding-left: 70px;
}

.celebrate_video {
    /*padding-top: 45px;*/
    z-index: 0 !important;
}
.celebrate_video img{
  z-index: 0 !important;
  }

.years23{position: absolute; left: 0px;  top: 50%; transform: translate(-50%, -50%);}


.latest-news{background: #f5f5f5;}

.latest-news_box h2 {
    padding-top:10px;
    font-size: 18px;
    margin-bottom: 10px;
}

.latest-news_text_box {
    color: #292F39;
    font-size: 14px;
    text-align: left;
    background: #fff; 
    padding: 10px 15px;

}

.latest-news_text {
    color: #292F39;
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
}

.isbmHeading {
    color: #000;
    font-size: 24px;
    text-align: left;
    border-left: 5px solid #1a2648;
    padding: 2px 10px;
    font-weight: 600;
    margin-bottom: 20px;
}

.events_box {
    color: #292F39;
    font-size: 14px;
    text-align: left;
    background: #fff; 
    padding: 8px 10px;
    /*margin-bottom:10px ;*/
}


.celebrating  {
    position: relative;
    background-image: url(../images/bg_35.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.celebrating-box{width: 100%; background: #8e0013a1; padding: 20px 30px; height: 350px;}
.celebrating-box h3{color: #fff;    font-size: 26px;  padding-bottom: 10px;}
.celebrating-box p{color: #fff;  }
.video-border{border: 6px solid #fff; z-index: 1111;}


.latest-news .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: "";
}
.latest-news .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: "";
}


.latest-news .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 15px;
    left: auto;
}

.latest-news .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: auto;
    right: 50px;
}

.latest-news .swiper-button-next, .latest-news .swiper-button-prev {
    position: absolute;
    top:auto;
    bottom: -0px !important;
    color: #fff; 
  /*  background: #fff000; 
    padding: 15px 15px;
    border-radius: 2px*/}






.leadersSpeak-highlights .swiper-button-next::after, .swiper-rtl .swiper-button-prev::after {
  content: "";
}
.leadersSpeak-highlights .swiper-button-prev::after, .swiper-rtl .swiper-button-next::after {
  content: "";
}


.leadersSpeak-highlights .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 15px;
    left: auto;
}

.leadersSpeak-highlights .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: auto;
    right: 50px;
}

.leadersSpeak-highlights .swiper-button-next, .leadersSpeak-highlights .swiper-button-prev {
    position: absolute;
    top:auto;
    bottom: -0px !important;
    color: #fff; 
  /*  background: #fff000; 
    padding: 15px 15px;
    border-radius: 2px*/}

.LeadersSpeak h4{font-size: 16px;}

    .highlightsList {background: #f5f5f5; padding: 10px 15px; margin-bottom: 10px; font-size: 14px;}
    .highlightsList img{height: 30px}


    .leaders .card{ background: #f5f5f5; border:0px; margin-bottom: 20px;}
    .leaders .card img{ 
      background: #f5f5f5; 
      border:1px solid #f5f5f5;
      -webkit-filter: grayscale(0%);
      filter: grayscale(0%);
      filter: none;

    }

    .leaders .card img:hover {
    cursor: pointer;
    -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        filter: gray;
      }

    .leaders .leaders-name{font-weight: 700; margin-top: 10px; padding-left: 10px; padding-right: 10px}
    .leaders .leaders-designation{ margin-top: 10px;  padding-left: 10px; padding-right: 10px;}
    .leaders .leaders-desi{ margin-top: 5px;font-weight: 700;  margin-bottom: 15px; padding-left: 10px; padding-right: 10px;}

    /*.leaders .swiper-button-next, .leaders .swiper-button-prev {background: #006be7; padding: 20px; border-radius: 50px; color: #fff;}*/

.leaders-text {
    text-align: center;
    color: #ee3c40;
    font-size: 20px;
}

.leaders-text a {
    background: 0 0;
    border: 1px solid #002147;
    color: #002147;
    display: inline;
    height: inherit;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 40px;
}

.leaders-text a:hover {
    color: #fff;
    background: #002147;
    text-decoration: none;
}

footer {
    background-color: #222222 ;
    padding: 0px 0 0px 0;
    font-size: 14px;
}


.footer_box {
    padding-bottom: 10px;
    padding-top: 10px;
    color: #ccc;
}


footer .footer_heading {
    height: auto;
}

footer .footer_heading a{color: #ffffff;}
footer .footer_heading a:hover {color: #a5a5a5;}

.footer_box a:hover {
    color: #a5a5a5;
    text-decoration: none;
}

footer .footer_heading {
    color: #f1f1f1;
    font-weight: 700;
    font-size: 20px;
    height: 30px;
    line-height: normal;
    margin: 0 0 4px 0;
}

footer ul li {
    list-style: none;
    padding: 3px 0 3px 0;
}

footer .footer_box li a{color: #d3d3d3;}
footer .footer_box li a: hover{color: #002147;}

footer .footer_social_icon {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 10px;
}

.copyright{width: 100%; padding: 10px 20px; margin-top: 20px; background: #333333; color: #f5f5f5; text-align: center;}


.footer_social_icon li a i {
    color: #444;
    margin-right: 12px;
    border: 2px solid #444;
    border-radius: 100%;
    height: 40px;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_social_icon li a i:hover {
    color: #fff;
    border: 2px solid #38529a;
    background: #38529a;
}



.col-3 ul {
    margin-bottom: 15px
}

.col-3 h6 {
    font-size: 22px;
    color: #444;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Franklin Gothic'
}

.col-3 a {
    font-size: 18px;
    color: #444;
    font-family: 'Franklin Gothic Book', arial;
    font-weight: 500;
    padding-right: 16px
}

.col-3 a:hover {
    opacity: 1;
}

.col-3 .one_column li {
    margin-bottom: 14px
}

.footer_social_icon {
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 10px
}

.footer_social_icon  li {
    display: inline-block;
}

.footer_social_icon li a {
    padding-right: 0;text-decoration: none;
}

.footer_social_icon li a i {
    color: #858585;
    margin-right: 12px;
    border: 2px solid #858585;
    border-radius: 100%;
	  font-size:20px;
    height: 40px;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer_social_icon li a i:hover {
    color: #fff;
    border: 2px solid #38529a;
    background: #38529a
}

.footer_social_icon li a i.fa-linkedin:hover,
.footer_social_icon li.social_icon1 a i:hover {
    border: 2px solid #0092cc;
    background: #0092cc
}

.footer_social_icon li a i.fa-twitter:hover,
.footer_social_icon li.social_icon2 a i:hover {
    border: 2px solid #4da6e9;
    background: #4da6e9
}

.footer_social_icon li a i.fa-youtube:hover,
.footer_social_icon li.social_icon3 a i:hover {
    border: 2px solid #c81211;
    background: #c81211
}


.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 3rem);
    padding-left: var(--bs-gutter-x, 3rem);
    margin-right: auto;
    margin-left: auto;
}

.cal-event-tile {
    background: #fdc800;
    color: #002248;
    text-align: center;
    width: 6em;
    height: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.1em 0.2em;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

.cal-event-tile-year {
    background: #002248;
    color: #fff;
    text-align: center;
    width: 6em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0.2em;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
}

 .cal-event-tile .cal-event-tile-date {
    font-size: 1.5em;
}

 .cal-event-tile .cal-event-tile-date,  .cal-event-tile .cal-event-tile-month {
    width: 100%;
    line-height: 1em;
    margin: 0;
    padding: 0;
}

.cal-event-tile .cal-event-tile-month {
    font-size: 1.1em;
    text-transform: uppercase;
}

.instituteleaders  h2{font-size: 26px; font-weight: 600;}


.innerpagetopbar{background:#003470b3;}

.topInnerpage{height: 100px; background: #002147;}


/* The outermost element*/
.header-wrapper {
  overflow: hidden;
  width:100%;
  height:340px;
  position: relative;
  text-align:center;
  z-index: 1;
}

.zoominheader {
  width:100%;
  height:340px;
  background-size: auto;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-animation: zoomin 15s ease-in infinite;
  animation: zoomin 15s ease-in infinite;
  transition: all .9s ease-in-out;
  overflow: hidden;
  text-align:center;
  z-index: 1;
}

/* The innermost element*/
.zoomoutheader {
  width:100%;
  height:340px;
  background: none;
  -webkit-animation: zoomout 15s ease-in infinite;
  animation: zoomout 15s ease-in infinite;
  transition: all .9s ease-in-out;
  overflow: hidden;
  text-align:center;
  z-index: 1;
}

.zoominheader::before {
    background: rgba(17,17,17,.5);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}


/* The outermost element*/
.header-wrapper1 {
  overflow: hidden;
  width:100%;
  height:300px;
  position: relative;
  text-align:center;
  z-index: 1;
}

.zoominheader1::before {
    background: rgba(17,17,17,.5);
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}


.zoominheader1 {
  width:100%;
  height:300px;
  background-size: auto;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-animation: zoomin 15s ease-in infinite;
  animation: zoomin 15s ease-in infinite;
  transition: all .9s ease-in-out;
  overflow: hidden;
  text-align:center;
  z-index: 1;
}

/* The innermost element*/
.zoomoutheader1 {
  width:100%;
  height:300px;
  background: none;
  -webkit-animation: zoomout 15s ease-in infinite;
  animation: zoomout 15s ease-in infinite;
  transition: all .9s ease-in-out;
  overflow: hidden;
  text-align:center;
  z-index: 1;
}



/* Zoom in Keyframes */
@-webkit-keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.5);}
  100% {transform: scale(1);}
} /*End of Zoom in Keyframes */

/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {transform: scale(1);}
  50% {transform: scale(0.67);}
  100% {transform: scale(1);}
}
@keyframes zoomout {
    0% {transform: scale(1);}
  50% {transform: scale(0.67);}
  100% {transform: scale(1);}
}



/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #002147;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 33, 71, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  z-index: 2;
}

.about .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 rgb(0 33 71 / 40%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);

}

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

}

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

}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
  z-index: 3;
}

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

.rounded-4 {
    border-radius:  1rem;
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: #485664;
  box-shadow: 5px 5px 25px rgba(72, 86, 100, 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
  background: #fff;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 0 0;
  color: #485664;
  text-align: center;
}

.features .nav-link:hover {
  background: #87051a ;
  border-color: #0ea2bd;
   color: #fff;
}

.features .nav-link.active {
  transition: 0.3s;
  background: #87051a;
  border-color: #0ea2bd;
}
.features .nav-link:hover h4 {
  color: #fff;
}

.features .nav-link.active h4 {
  color: #fff;
}

.features .nav-link.active i {
  color: #fff !important;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: #485664;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.bx-shadow{-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);}

.milestone h4{font-size: 18px; color: #333;}


/*--------------------------------------------------------------
# Faculty Member Section
--------------------------------------------------------------*/
.faculty-member .nav-tabs {
  border: 0;
}

.faculty-member .nav-link {
  border: 0;
  padding: 10px 10px;
  color: #fff;
  box-shadow: 5px 5px 25px rgba(72, 86, 100, 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  text-decoration: none;
  background: #961224;
}

.faculty-member .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.faculty-member .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #fff;
  text-align: center;
}

.faculty-member .nav-link:hover {
  background: #5a000c;
  border-color: #5a000c;
   color: #fff;
}

.faculty-member .nav-link.active {
  transition: 0.3s;
  background: #5a000c;
  border-color: #5a000c;
}
.faculty-member .nav-link:hover h4 {
  color: #fff;
}

.faculty-member .nav-link.active h4 {
  color: #fff;
}

.faculty-member .nav-link.active i {
  color: #fff !important;
}

.faculty-member .nav-tabs .nav-item{padding: 0px 1px; margin: 2px 0px ;}

.faculty-member .tab-content {
  margin-top: 30px;
}

.faculty-member .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.faculty-member .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: #485664;
}

.faculty-member .tab-pane ul {
  list-style: none;
  padding: 0;
}

.faculty-member .tab-pane ul li {
  padding-bottom: 10px;
}

.faculty-member .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.faculty-member .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*.bx-shadow{-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.11);}

.milestone h4{font-size: 18px; color: #333;}*/



/*--------------------------------------------------------------
# Faculty Member
--------------------------------------------------------------*/
.facultymember .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);
}

.facultymember .member .member-img {
  position: relative;
  overflow: hidden;
}

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

.facultymember .member .social a {
  transition: color 0.3s;
  color: #555555;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.facultymember .member .social a i {
  line-height: 0;
}

.facultymember .member .social a:hover {
  color: #3fbbc0;
}

.facultymember .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.facultymember .member .member-info {
  padding: 25px 15px;
}

.facultymember .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555555;
}

.facultymember .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #818181;
}

.facultymember .member .member-info p {
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}



.departments a{
    padding: 10px 20px;
    color: #ffffff;
    border-radius: 0;
    cursor: pointer;
    background: #002147;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600px;
    margin-left: 40px;
    border-radius: 4px;
}

.departments a:hover{background: #003572; }


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../images/counts-bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

.counts::before {
  content: "";
  position: absolute;
  background: rgb(0 33 71 / 80%);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.counts .title {
  position: relative;
  color: #fff;
  margin-bottom: 40px;
}

.counts .title h3 {
  font-size: 36px;
  font-weight: 700;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  font-weight: 700;
  color: #fff000;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #fff;
}

@media (min-width: 1200px) {
  .counts {
    background-attachment: fixed;
  }
}


/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #dddddd;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #002147;
}

.why-us .box h4 {
  font-size: 18px;
  font-weight: 500;
  padding: 0;
  margin: 20px 0;
  color: #191919;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #002147;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}


/*--------------------------------------------------------------
# CORPORATE CONNECT
--------------------------------------------------------------*/

.corporate-connect .box {
  padding: 50px 30px;
/*  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
  transition: all ease-in-out 0.3s;
  background: #f1f1f1;
}

.corporate-connect .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #002147;
}

.corporate-connect .box h4 {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 15px 0px 15px 0px;
  padding: 0px;
  color: #191919;
}

.corporate-connect .box h5 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 10px 0;
  color: #191919;
}
.corporate-connect .box h6 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin: 10px 0;
  color: #191919;
}

.corporate-connect .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.corporate-connect .box:hover {
  background: #941022;
  padding: 30px 30px 70px 30px;
/*  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);*/
}

.corporate-connect .box:hover span,
.corporate-connect .box:hover h4,
.corporate-connect .box:hover h5,
.corporate-connect .box:hover h6,
.corporate-connect .box:hover p {
  color: #fff;
}

.corporate-connect .box h6 {font-weight: 700; margin-bottom: 0px}
.corporate-connect .box p {
  font-size: 14px;
  padding: 0;
  color: #191919;
}

.administartionIMG {
    margin-right: 10px;
    height: 100px;
}


.insight_core_breadcrumb {

    position: absolute;
    top: 60px;
    left: 50px;
    z-index: 9999;
}

.insight_core_breadcrumb li {
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
}
.insight_core_breadcrumb li a{color: #f1f1f1; font-weight: normal;} 
.insight_core_breadcrumb li a:hover{color: #fff000; font-weight: normal;} 

.insight_core_breadcrumb li {
    display: inline-block;
    margin: 0 5px 0 0;
}

.insight_core_breadcrumb li + li:before {
    color: #ababab;
}

.insight_core_breadcrumb li.current:before {
    color: inherit !important;
}

.insight_core_breadcrumb li + li:before {
    content: '/';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.insight_core_breadcrumb li span{margin-left: 10px;}

.breadcrumbPage{
position: absolute; 
 z-index: 9999;
 top: 50%; 
 left: 50%;  
 transform: translate(-50%, -50%);  
 color: #fff;
font-size: 36px;
font-weight: 700;
}


.breadcrumbPage:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 66px;
    height: 3px;
    background: #1481ff;
}

 .unicamp-box {
    background: #fff;
    padding: 20px 15px;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
}

.contact-box-title {
    position: relative;
    padding: 0 0 7px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 10px 18px;
}

 .contact-box-title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 42px;
    height: 2px;
    background: #0055b7;
}

 .contact-box-info {
    padding-left: 10px;
    padding-right: 10px;
}

 .phone-number .meta-value {
    font-weight: 500;
}
.contact-box-info-item .meta-value {
    word-break: break-all;
    display: block;
    font-size: 14px;
    line-height: 26px;
    color: #111;
}

 .phone-number .meta-value {
    font-weight: 500;
}
.contact-box-info-item .meta-label {
    display: block;
    font-size: 13px;
    line-height: 26px;
    font-weight: 500;
    color: #9b9b9b;
    margin: 0 0 2px;
}

 .contact-box-info-item + .contact-box-info-item {
    margin-top: 14px;
}


.address .meta-value {
    font-weight: 500;
}


/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 15px 20px ;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

.blog .posts-list a{color: #002147;}
.blog .posts-list a:hover {
    color: #000e1e;
    text-decoration: none;
}

.post-img  img{transition: 0.3s;}
.post-img  img:hover{  transform: scale(1.1);}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

.blog-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}




.blog_admin_post li:first-child {
    border-left: none;
    box-shadow: none;
    background: none;
    padding-left: 0;
}

.blog_admin_post li {
    width: auto;
    display: inline-block;
    font-size: 15px;
    color: #000;
    border-left: 1px solid #545454;
    padding: 0 10px;
    font-weight: 700;
    margin-bottom: 10px;
}


/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgb(11 47 88);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 1px;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}



/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 2px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 58, 131, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 58, 131, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: #002147;
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: #093364;
}


.swiper-slide-box {
    position: relative;
    height: 350px;
    margin-bottom: 60px;
  }


  .swiper-slide-box .swiper {
    width: 100%;
    height: 100%;

  }


  .swiper-slide-box .swiper-slide  {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.swiper-slide-box .swiper-button-next, .swiper-slide-box .swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: 0px !important;
    color: #fff;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px 10px 0px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  padding: 8px;
  border-radius: 4px;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: #fff;
  background: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  background-color: #fff;
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}


.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}
.portfolio .portfolio-wrap:hover img:before {
  transform: scale(1.1);
  background: #ccc;
}





/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-size: 16px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #9c9c9c;
  font-size: 12px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: #009d8b;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: white;
  height: 100%;
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #009d8b;
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}




/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/*.gallery {
  margin-top: 40px;
}*/

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #fff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #002147;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Gallery Single Section
--------------------------------------------------------------*/
.gallery-single .portfolio-details-slider img {
  width: 100%;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery-single .swiper-button-prev,
.gallery-single .swiper-button-next {
  width: 48px;
  height: 48px;
}

.gallery-single .swiper-button-prev:after,
.gallery-single .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.gallery-single .swiper-button-prev:hover:after,
.gallery-single .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .gallery-single .swiper-button-prev,
  .gallery-single .swiper-button-next {
    display: none;
  }
}

.gallery-single .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--font-secondary);
}

.gallery-single .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.gallery-single .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-single .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.gallery-single .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #6b7075;
  font-size: 14px;
}

.gallery-single .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.gallery-single .portfolio-info .btn-visit:hover {
  background: #2cbc85;
}

.gallery-single .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-family: var(--font-secondary);
}

.gallery-single .portfolio-description p {
  padding: 0;
}

.gallery-single .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: var(--color-secondary);
  height: 100%;
  margin-bottom: 50px;
}

.gallery-single .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #2e3133;
  float: left;
  margin: 0 10px 0 0;
}

.gallery-single .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.gallery-single .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left,
.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  color: #5bd9a9;
  font-size: 26px;
  line-height: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-single .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

.btn-theme {
    color: #fff;
    background-color: #002e62;
    border-color: #002e62;
}

.btn-theme:hover {
    color: #fff;
    background-color: #002147;
    border-color: #002147;
}
.btn-theme:focus {
    color: #fff;
    background-color: #002147;
    border-color: #002147;
    box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
}

.btn-theme1 {
    color: #fff;
    background-color: #1456a3;
    border-color: #1456a3;
}

.btn-theme1:hover {
    color: #fff;
    background-color: #002e62;
    border-color: #002e62;
}
.btn-theme1:focus {
    color: #fff;
    background-color: #002e62;
    border-color: #002e62;
    box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
}


.footer_box ul{margin: 0px; padding: 0px;}




.cardBox {
  margin-bottom: 20px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
  width: 100%;
  padding: 15px 20px;
}

.faculty-details h4{margin-bottom: 0px;}
.faculty-details h5{margin: 10px 0px; font-size: 16px; font-weight: normal; }
.faculty-details p{margin-bottom: 5px !important; }

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

.faculty-details img{float: left; margin: 0px 35px 20px 0px;}

.rankingText p{font-weight: 500 !important;  font-size: 16px; margin-bottom: 0px !important;}

.ranking{background-color: #f1f1f1 !important; padding: 20px; margin-bottom: 20px; border-radius: 10px;}
.ranking img{width: 100%; padding: 25px;}


/*--------------------------------------------------------------
# awards-accreditations
--------------------------------------------------------------*/
.awards-accreditations .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
border-bottom: 4px solid #961224;
  width: 100%;
}

.awards-accreditations .member .member-img {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfdfdf;
}

.awards-accreditations .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.awards-accreditations .member .social a {
  transition: color 0.3s;
  color: #124265;
  margin: 0 10px;
  display: inline-block;
}

.awards-accreditations .member .social a:hover {
  color: #2487ce;
}

.awards-accreditations .member .social i {
  font-size: 18px;
  margin: 0 2px;
  line-height: 0;
}

.awards-accreditations .member .member-info {
  padding: 25px 15px;
}

.awards-accreditations .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #124265;
}

.awards-accreditations .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #444;
}

.awards-accreditations .member .member-info p {
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.awards-accreditations .member:hover .social {
  opacity: 1;
}

.awards-accreditations .member img{width:100%;}


/** Property box start **/
.core-box {
    position: relative;
    margin-bottom: 30px;
    border-bottom: 4px solid #40b3ac;
}

.core-thumbnail {
    position: relative;
}

 .core-thumbnail img {transition: transform .5s ease;}
 .core-thumbnail img:hover { filter: drop-shadow(0 0 10px rgba(0,0,0,.3));}

.core-thumbnail:before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 8;
    background: linear-gradient(to top,rgba(0, 0, 0, 0.7) 0%,rgba(0, 0, 0, 0.5) 35%,rgba(0, 0, 0, 0.4) 60%,rgba(0,0,0,0.2) 100%);
  
}

.core-text-box h4{font-size: 16px;}

.core-text-box {
    color: #fff;
    font-size: 15px;
    position: absolute;
    bottom: 10px;
    left: 15px;
    /*right: 20px;*/
    z-index: 20;

}
.core-thumbnail img{transition: 0.3s;}
.core-thumbnail img:hover{  transform: scale(1.1);}


.tab-box p{
    margin-bottom: 0;
}


/** Tag start**/
.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 20;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgb(255, 255, 255);
    padding: 7px 14px 5px;
    font-weight: 500;
    border-radius: 3px 3px 3px 0;
}

.tag::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-top: 0;
    border-bottom: 10px solid transparent;
    bottom: -10px;
    left: 0;
}


.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 15px;
    right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: auto;
    left: 45px;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
     top: auto; 
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.listCard {
    margin-bottom: 20px;
    border-radius: 4px;
    background: #375474;
    /* -webkit-box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%); */
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    /* box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%); */
    width: 100%;
    padding: 15px 20px;
    color: #fff;
}




.template-card {
    box-shadow: 0 0 22px rgb(2 59 109 / 10%);
    transition: .3s ease-in-out;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.template-card:hover {
    box-shadow: 0 0 30px rgb(2 59 109 / 20%);
}

@media (min-width: 1200px)
.template-card picture {
    width: 380px;
}

.template-card img {
    width: 300px;
    border-right: 1px solid #f2f2f2;
}

.template-card .details {
    padding: 15px 20px;
}

.template-card h2 {
    margin: 0;
    padding: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    font-family: Poppins,sans-serif;
}

.template-card h2 a::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
}

.template-card p {
    color: #555;
    margin: 0;
    overflow: hidden;
}



/*--------------------------------------------------------------
# image-content
--------------------------------------------------------------*/

.section-blue-bg {
    background-color: #f3f5fa;
}

.image-content .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.image-content .member .pic {
  overflow: hidden;
  width: 100px;
}

.image-content .member .pic img {
  transition: ease-in-out 0.2s;
}

.image-content .member:hover {
  transform: translateY(-10px);
}

.image-content .member .member-info {
  padding-left: 20px;
}

.image-content .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #37517e;
  text-align: left;
}

.image-content .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.image-content .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.image-content .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}


.accordion-item{margin-bottom: 10px; border-bottom: 0px;}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
    font-weight: 600;
}

.accordion-button {
    color: #000000;
    background-color: #c9c9c9;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
    font-weight: 700;
   
    
}

.accordion-button:hover {
    color: #ffffff;
    background-color: #6e0c0c;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #6e0c0c;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}

.css h3{font-size: 25px; font-weight: 700; margin-bottom: 10px;}
.css h4{font-size: 18px; font-weight: 700; margin-bottom: 5px;}
.css p{font-size: 14px; margin-bottom: 10px !important;}

.president h2{font-size: 24px; font-weight: 700;}

.president h3{ margin: 10px 0;
    text-transform: uppercase;
    text-align: left;
    color: #000;
    font-size: 20px;
  }

.arrow {
  z-index: 9;  
  position: absolute;  
  font-size: 40px;
  color: #fff !important;
  left: 50%;
  top: auto;
  bottom: 5%;
  -ms-transform: translate(-5%, -50%);
  transform: translate(-5%, -50%);
}
.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.presidentBox{background:#ae152d; color: #fff; padding: 34px 0px; margin-top: 56px;}
.presidentBox h3{color: #fff; font-size: 24px; font-weight: 700;}
.presidentBox p{color: #fff; font-size: 18px; font-weight: 600; margin-top: 35px;}

.wrapper-video {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}

.overlayBg:before {
    content: "";
    background: rgba(6, 12, 34, 0.4);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    border-radius: 1rem;
}

.video-main a:hover{color: #002147}
            
.video-main {
  position: relative;
  display: inline-block;
}

.videoBtn {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #ee3c40;
  display: inline-block;
  background: #ffffff;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.bi-play-fill:before {
  content: "\F4F4";
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255, 0.3);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
   -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
        
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.about .bi-play-fill{font-size: 24px;}

.fee-structure .title-medium{ font-size: 16px; padding-bottom: 0px; }
.fee-structure h3{ font-size: 20px; padding-bottom: 10px; font-weight:700; margin-top: 0px; margin-bottom: 0px;}


.recruiters .success {
    background-color: #dff0d8;
}
.recruiters .info {
    background-color: #d9edf7;
}
.recruiters .warning {
    background-color: #fcf8e3;
}
.recruiters .danger {
    background-color: #f2dede;
}
.recruiters .active {
    background-color: #f5f5f5;
}

.recruiters h4{font-weight: 700;
    line-height: 1.42857143;
    color: #333;
    font-size: 18px;}

.linkedintd {
    background-image: url(../images/linkedin.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0 80px;
}

.presedentlist>li {
    line-height: 25px;
    margin: 8px 0;
    text-align: justify;
}

.presedentlist a{font-weight: 600;}

.applyOnly{
  background: #ee3c40; 
  padding: 6px 10px!important;
border-radius: 4px;}

.applyOnly:hover;{background: #d93337; }
.placement-office li{padding: 10px;}
.navIcon{background: #002147;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    color: #fff;
    margin-right: 5px;}

 .arrowStyle{font-size: 40px; color: #002147;}
 .arrowStyle:hover{ color: #2d5481;}

.courses h2{ font-size: 22px; font-weight: 700; margin-bottom: 10px; margin-top: 10px; padding: 0px;}
.courses h3{ font-size: 20px; font-weight: 700; margin-bottom: 10px; margin-top: 10px; padding: 0px;}
.courses h4{ font-size: 16px; font-weight: 700; margin-bottom: 10px; margin-top: 10px; padding: 0px;}
.courses .section-header h2 {    font-size: 32px;}

.logo_div{padding-left :10px; border-left:1px solid #ccc; margin-left:20px }

.logo_div h1{
    color: #fff;
    font-family: "PracticeRegular", serif;
    font-size: 30px;
    font-weight: 500;
    padding: 0px;
    margin: 0px;
}

.logo_div h6{color: #fff; font-family: "PracticeRegular", serif;}

#notice {
    background-image: url(../images/sub-page-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    display: inline;
    float: left;
    width: 100%;
    padding-bottom: 0px;
    padding: 15px 0px;
}



#notice   h4 {
    margin: 0px;
    padding: 0px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

#notice .bi-chevron-right{ 
  font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-top: -3px}

.list-inline {
    padding-left: 0;
    list-style: none;
    padding: 0px;
    margin: 0;
}

#notice   ul li {
    font-size: 18px;
    color: #fff;
}

.list-inline>li:first-child {
    padding-left: 0;
}

.list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}


#middlesec {
    display: inline;
    float: left;
    width: 100%;
    margin-bottom: 0px;
}

#middlesec .middlesec-area {
    display: inline;
    float: left;
    width: 100%;
}

.mymiddle2 {
    background: rgba(202, 26, 45,0.9);
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 40px 0px;
}

.midddle11 {
    padding: 0px;
}

#middlesec .middlesec-area .mymiddleimg {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.mymiddle2 h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.mymiddle {
    background: #3f649e;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 40px 0px;
}

.mymiddle h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.mymiddle3 {
    background: #f59b29;
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 40px 0px;
}

.mymiddle3 h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.why-isbm-list {
    list-style: none;
    font-size: 16px;
    line-height: 30px;
    padding: 0px;
}
.why-isbm-list li{display: flex; margin-bottom: 5px;}
.why-isbm-list li i{margin-right: 10px;}


/*--------------------------------------------------------------
# PRESIDENT'S MESSAGE
--------------------------------------------------------------*/
.president-msg .content {
  background-color: #f6f9ff;
  padding: 40px;
}

.president-msg h3 {
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  text-transform: uppercase;
}

.president-msg h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.president-msg p {
  margin: 15px 0 30px 0;
  line-height: 24px;
}

.president-msg .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ae152d;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.president-msg .btn-read-more span {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.president-msg .btn-read-more i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.president-msg .btn-read-more:hover i {
  transform: translateX(5px);
}




/*--------------------------------------------------------------
# courses Section
--------------------------------------------------------------*/
.courses .img {
/*  border-radius: 8px;*/
  overflow: hidden;
}

.courses .img img {
  transition: 0.6s;
}

.courses .details {
  padding: 8px 16px;
  transition: all ease-in-out 0.3s;
  position: relative;
  background: #ccc;
  text-align: center;
  color: #1a1f24;
}


.courses .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #0ea2bd;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid #fff;
}

.courses .details h3 {

  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 20px;
  transition: ease-in-out 0.3s;
}

.courses .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.courses .courses-item:hover .details h3 {
  color: #fff;
}

.courses .courses-item:hover .details{background: #bb001e; }


.courses .courses-item:hover .details .icon {
  background: #fff;
  border: 2px solid #0ea2bd;
}

.courses .courses-item:hover .details .icon i {
  color:#0ea2bd;
}

.courses .courses-item:hover .img img {
  transform: scale(1.2);
}



/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../images/testimonials.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 29, 52, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.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: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 90%;
  }
}

.sliderTop{margin-top: 70px}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: #fff;
  background: #0ea2bd;
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: #1ec3e0;
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 20px 15px;
  text-align: left;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  margin: -50px 15px 0 15px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #485664;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #6c757d;
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #6c757d;
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Enrolled Section
--------------------------------------------------------------*/
.enrolled {
  padding: 40px 0;
/*  background: url("../images/need-bg.jpg") no-repeat;*/
  background: rgba(202, 26, 45,0.9);
  background-position: center center;
  background-size: cover;
  position: relative;
  color: #fff;
}

.academy-btn {
    min-width: 110px;
    padding: 0 20px;
    height: 42px;
    line-height: 38px;
    border: 2px solid #fff;
    font-size: 16px;
    color: #fff;
    border-radius: 30px;
}

.academy-btn:hover{border: 2px solid #cccccc; color: #cccccc;}
.text-theme  {
    color: #BB001E;
}

.breadcum {
    position: relative;
    background-image: url(../images/sub-page-bg.jpg);
    background-size: cover;
    background-position: center bottom;
    margin-top: 70px;
    color: #fff;
}
.breadcum_txt h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 20px;
}
.breadcum_txt span {
    font-weight: 400;
    text-transform: capitalize;
}
.breadcum_txt{display: block; width: 100%; text-align: center;}

.plainlist{list-style: none; padding-left: 0px; margin-left: 0px;}
.plainlist li{ margin-bottom:5px; }

.thColor{color:#fff !important; background:#dc3545; }

.hBold h1, .hBold h2, .hBold h3, .hBold h4, .hBold h5, .hBold h6{font-weight: bold;}

.list-icon a{background: #f1f1f1; padding: 4px; display: block; margin-bottom: 4px;}
.list-icon a:hover{background: #b2bbc5; }
.list-icon li{font-size:16px; font-weight:500; }
.list-icon li i{font-size:20px;  }
.list-icon{list-style: none; padding-left: 0px;}

.success {
    background-color: #dff0d8;
}
.pl-30 {
    padding-left: 30px!important;
}
.pb-10 {
    padding-bottom: 10px!important;
}

.danger {
    background-color: #f2dede;
}
.info {
    background-color: #d9edf7;
}
.warning {
    background-color: #fcf8e3;
}

.admission-procedure .line-bottom {
    margin-bottom: 11px;
    position: relative;
    padding-bottom: 10px;
}

.admission-procedure  .line-bottom:after {
    background: #bb001e!important;
    bottom: -1px;
    height: 2px;
    position: absolute;
    width: 50px;
}

.admission-procedure .line-bottom:after {
    content: "";
    left: 0;
}

.availcourse {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 20px 15px;
}

.avail_finance {
    background-image: url(../images/c_finance.png);
}

.avail_market {
    background-image: url(../images/c_marketing.png);
}

.avail_hrm {
    background-image: url(../images/c_hrm.png);
}


.courselist, .coursespage .courselist {
    list-style-image: url(../images/course-icon-1.png);
    padding-left: 30px;
}

.students-buzz .buzz  {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 20%);
   
}

.students-buzz .buzz  .buzz-img {
    position: relative;
    overflow: hidden;
    padding: 0px;
}



.students-buzz .buzz  .buzz-info {
    padding: 25px 15px;
}


/*--------------------------------------------------------------
# Recent Blog Posts
--------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

.bg-deep {
    background-color: #f6f6f6 !important;
}
.border-right-left {
    border-right: 1px solid #dcdcdc !important;
    border-left: 1px solid #dcdcdc !important;
}

.text-theme-colored {
    color: #2a80b9!important;
}

.iconcol{color:#961224; 
  font-size: 24px; 
  margin-bottom: 20px; 
  display: block;
  border: 1px dotted;
  width: 50px;
  padding: 10px;    ;
  height: 50px;
  border-radius: 50%;
  line-height: 30px;
  text-align: center;
background: #fff;}

.dropdown-menu-dark{background: #8e0013; color: #fff;}

.btn-yellow {
    color: #333;
    background-color: #fff000;
    border-color: #fff000;
}

.btn-yellow:hover {
    color: #000;
    background-color: #efe100;
    border-color: #efe100;
}




















@media (max-width: 1024px) {
.header .logo img {  max-height: 70px;  margin-top: 0px;}
  footer .footer_heading {font-size: 15px !important;}
  .milestone  .section-title{margin-top: 20px;}

  .presidentBox{padding: 21px 0px; margin-top: 47px;}
}

@media (max-width: 991px) {

  .leaders-text {  font-size: 16px;}
  .departments a{margin-left: 0px;}
  .presidentBox{padding: 20px 30px; margin-top: 0px;}

  .ao .dropdown-menu ul { right: 0px !important;}


}

@media (max-width: 767px) {

    .final-palcement .card {  margin-bottom: 20px !important;}
    .leaders-text {  font-size: 14px;}
    .leaders-text a {  display: block;}
    .heading-text {margin-left: 47px;}
    #hero h1 {  font-size: 50px; margin-bottom: 0;}
    .banner_head2 {  font-size: 40px;}
    .header .logo img {  height: 115px;}
    .xs50{margin-top: 50px; margin-bottom: 50px;}

    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1rem);
    padding-left: var(--bs-gutter-x, 1rem);
    margin-right: auto;
    margin-left: auto;}

    .section-header h2{font-size: 22px;}
    .counts .counters span{font-size: 34px;}
    .contact-box-title{font-size: 16px;}

    .zoomoutheader{height: 200px;}
    .zoominheader{height: 200px;}
    .header-wrapper{height: 200px;}
    .insight_core_breadcrumb {  top: 10px;  left: 15px;}
    .rankingText{margin-top: 20px;}

    video { max-width: 100%; height: auto;}
    .video:before {content: ""; background: transparent; height: auto;}
    #hero { width: 100%; height: 60vh;}
    #hero .btn-get-started{display: none;}

     /*.section--outcomes .featured-person .featured-person__media {
      max-height: 25vh !important;
      overflow: hidden;}*/

       .featured-person__media{display: flex; justify-content: center;} 

  .section--outcomes .featured-person .featured-person__media {
  overflow: hidden;
    height: 200px;
    }

    .topbar {height: 40px;}
    .header{top:40px}
    .sliderTop{margin-top: 90px}


}

@media (max-width: 600px) {
  .header{background: #6c0011;}
  .heading-text {margin-left: 47px;}
  .header .logo img {  height: 40px;}
  .banner_head2 {  font-size: 30px;}
  .final-palcement .heading{font-size: 20px;}
  .breadcrumbPage{font-size: 28px;}
  .heading-text{display: none;}

  #hero {width: 100%; height: 32vh;}

  .pt0{padding-top:20px}

  .textCenter{text-align: center;}

  .d-flex-xs-center {display: flex; justify-content: center;}

  .arrow { 
    font-size: 30px;  
    top: auto;
  left: 50%;
  bottom: 10%;
  -ms-transform: translate(-10%, -50%);
  transform: translate(-10%, -50%);}

  .featured-person__media{display: flex; justify-content: center;} 

  .section--outcomes .featured-person .featured-person__media {
  overflow: hidden;
    height: 200px;
    }

    .border-right-left {
    border-right: 0px solid #dcdcdc !important;
    border-left: 0px solid #dcdcdc !important;
    border-bottom: 1px solid #dcdcdc !important;
    border-top: 1px solid #dcdcdc !important;
}




  
  }
.error{
    
    color:#bb001e;
}
#submite2{
	display:none;
}
#submitc2{
	display:none;
}
#submitb2{
	display:none;
}




