/********** Template CSS **********/
:root {
    --primary: #0066FF;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 99999;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

body {
	overflow: auto;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
	border-radius:50px;
}

.bannertext {
	font-size:3.5rem;
	color: #FFED2F;
	letter-spacing: 0.12rem;
	line-height: 1.2em;
	text-shadow: 1px 1px 2px #f3f57f;
}

.bannerinfo {
	width:68%;
	font-size: 1rem;
	text-shadow: 2px 2px 4px #4a4902;
}

.bannerinfo .bannerinfo-left {
	width:50%; 
	display:inline-block; 
	float:left;
}

.bannerinfo .bannerinfo-right {
	width:50%; 
	display:inline-block; 
	float:right;
}

.bannersubtext {
	line-height: 30px;
	letter-spacing: 1.8px;
}

.noprivate {
	border-top-left-radius: 20px; 
	border-bottom-right-radius: 20px; 
	text-transform:uppercase; 
	font-weight:600; 
	color: #0C2B4B; 
	width:35%; 
	background-color: #ffc107; 
	display: inline-block; 
	text-align: center; 
	vertical-align: middle; 
	user-select: none; 
	font-size: 1rem;
}
.heading-text {
	font-size:1.5rem;
}

.heading-secod-text {
	font-size:1rem;
	text-align:justify;
	letter-spacing: 1.3px;
	line-height:30px;
}

.procdisg {
	display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.procdisg li {
	text-align: justify;
	margin: 0 0 10px 0;
	line-height: 25px;
	color: var(--dark);
}

/*** Sections General ***/

section {
  padding: 40px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #fdf7ff;
}

.section-bg1 {
  background-color: #f5f5ff;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	padding-top: 0rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(6,24,74,.65);
    z-index: 1;
}

.carousel-caption p {
	text-align:justify; 
	line-height: 28px; 
	letter-spacing: 1.1px;
	font-size: 1rem;
}
#header-carousel .carousel-item img {
	max-height:700px;
	object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 1399px) {
	.bannerinfo {
		width:78%;
	}
	.bannertext {
	    font-size:3rem;
	}
}

@media (max-width: 1360px) {
	.noprivate {
		width:45%;
		font-size: 1rem; 
	}
}

@media (max-width: 1199px) {
	.bannerinfo {
		width:93%;
	}
	.bannertext {
	    font-size:2.5rem;
	}
}

@media (max-width: 991px) {
	.bannertext {
	    font-size:2rem;
	}
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        width: 100%;
		height: 600px;
        object-fit: cover;
    }
	.carousel-caption h1 {
	font-size: 1.5rem;
	}

	.carousel-caption p {
	line-height: 22px; 
	font-size: 0.8rem;
	}
	.bannerinfo {
		width:55%;
		font-size: 0.8rem;
	}
	.bannersubtext  {
        line-height: 22px;
		letter-spacing: 1.1px;
    }
	.noprivate {
		width:50%; 
		font-size: 0.8rem;
	}
}

@media (max-width: 767px) {
	.bannerinfo {
		width:71%;
		font-size: 0.7rem;
	}
}

@media (max-width: 575px) {
	.bannerinfo {
		width:68%;
		font-size: 0.7rem;
	}
	.carousel-caption h1 {
	font-size: 1.2rem;
	}
}

@media (max-width: 514px) {
	.bannerinfo {
		width:75%;
	}
}


@media (max-width: 480px) {
	.bannerinfo {
		width:90%;
	}
	.noprivate {
		width:60%; 
	}
}

@media (max-width: 442px) {
	.carousel-caption h1 {
	font-size: 1.05rem;
	}
}

@media (max-width: 399px) {
	.carousel-caption h1 {
	font-size: 1.3rem;
	}
}

.page-header {
    background: linear-gradient(rgba(6,24,74,.75), rgba(6,24,74,.75)), url(../img/page-header.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.achvres {
	border-top-left-radius: 20px; 
	border-top-right-radius: 20px; 
	font-weight:600; 
	color: #0C2B4B; 
	width:80%; 
	background-color: #ffc107; 
	display: inline-block; 
	text-align: center; 
	vertical-align: middle; 
	user-select: none; 
}
.achvres .top-head {
	line-height:28px;
	font-size:30px;
	border-bottom:1px solid;
	color: #0066FF;
	letter-spacing:2px;
	font-weight:700;
}
.achvres .bottom-head {
	line-height:28px;
	font-size:26px;
}

@media (max-width: 1399px) {
	.achvres .top-head {
		font-size:24px;
	}
}

@media (max-width: 1199px) {
	.achvres .top-head {
		font-size:20px;
	}
	.achvres .bottom-head {
		font-size:20px;
	}
}
@media (max-width: 767px) {
	.achvres .top-head {
		font-size:18px;
	}
	.achvres .bottom-head {
		font-size:18px;
	}
}
@media (max-width: 575px) {
	.achvres .top-head {
		font-size:30px;
	}
	.achvres .bottom-head {
		font-size:26px;
	}
}
@media (max-width: 432px) {
	.achvres .top-head {
		font-size:24px;
	}
	.achvres .bottom-head {
		font-size:22px;
	}
}

@media (max-width: 362px) {
	.achvres .top-head {
		font-size:18px;
	}
	.achvres .bottom-head {
		font-size:18px;
	}
}

/*** Video ***/

.recent-posts article {
  background-color: var(--color-box-background);
  box-shadow: 0 4px 16px rgba(var(--color-default-rgb), 0.1);
  height: 100%;
  overflow: hidden;
}

.recent-posts article .fb-container {
	padding: 30px;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
  font-size: 16px;
  color: rgba(var(--color-default-rgb), 0.5);
  margin-bottom: 10px;
}

.recent-posts .title-container {
   padding:10px; 
   margin-top:-40px;
}

.recent-posts .title {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
}

.recent-posts .title a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--color-primary);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: rgba(var(--color-default-rgb), 0.5);
  margin-bottom: 0;
}


/*** Foundation ***/
.foundation {
    background: var(--light);
    transition: .5s;
}

.foundation:hover {
    background: var(--primary);
}

.foundation * {
    transition: .5s;
}

.foundation:hover * {
    color: var(--light) !important;
}


/*** Courses ***/
.courses {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: 0.5rem;
	min-height:180px;
}

.faculty-area {
    width: 23%;
	display:inline-block;
}

.faculty-area-inner {
    background:#ffefd6; 
	width:90%;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
	width:91%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}

.faculty-img {
    max-height:180px;
	width:65%;
	border-radius:50%;
}

.faculty-details {
    width:90%;
}
@media (max-width: 1800px) {
	.faculty-area {
    width: 25%;
	}
	.faculty-img {
    height:180px; 
	width:65%;
	}
}
@media (max-width: 1600px) {
	.faculty-area {
    width: 25%;
	}
	.faculty-img {
    height:200px; 
	width:65%;
	}
}
@media (max-width: 1360px) {
	.faculty-area {
    width: 30%;
	}
	.faculty-img {
    height:220px; 
	width:55%;
	}
}

@media (max-width: 1178px) {
	.faculty-area {
    width: 40%;
	}
}

@media (max-width: 991px) {
	.faculty-area {
    width: 45%;
	}
}

@media (max-width: 768px) {
    .faculty-area {
    width: 50%;
	}
}

@media (max-width: 757px) {
    .faculty-area {
    width: 60%;
	}
}

@media (max-width: 480px) {
	.faculty-area {
    width: 80%;
	}
}

/*** Services ***/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
  box-shadow: 0 15px 15px 0 rgb(0 0 0 / 20%);
}

.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: #0066FF;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #ef7f4d;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}

/*--------------------------------------------------------------
# Strength
--------------------------------------------------------------*/
.strengths .strength-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 60px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.strengths .strength-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.strengths .strength-box h3 {
  color: #444444;
  font-weight: 700;
}

.strengths .strength-box .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 20px;
}

.strengths .strength-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.strengths .strength-box.blue {
  border-bottom: 3px solid #2db6fa;
}

.strengths .strength-box.blue:hover {
  background: #2db6fa;
}

.strengths .strength-box.orange {
  border-bottom: 3px solid #f68c09;
}

.strengths .strength-box.orange:hover {
  background: #f68c09;
}

.strengths .strength-box.green {
  border-bottom: 3px solid #08da4e;
}

.strengths .strength-box.green:hover {
  background: #08da4e;
}

.strengths .strength-box.red {
  border-bottom: 3px solid #e9222c;
}

.strengths .strength-box.red:hover {
  background: #e9222c;
}

.strengths .strength-box.purple {
  border-bottom: 3px solid #b50edf;
}

.strengths .strength-box.purple:hover {
  background: #b50edf;
}

.strengths .strength-box.pink {
  border-bottom: 3px solid #f51f9c;
}

.strengths .strength-box.pink:hover {
  background: #f51f9c;
}

.strengths .strength-box.brown {
  border-bottom: 3px solid #b55e1b;
}

.strengths .strength-box.brown:hover {
  background: #b55e1b;
}

.strengths .strength-box.primary {
  border-bottom: 3px solid #0066FF;
}

.strengths .strength-box.primary:hover {
  background: #0066FF;
}

.strengths .strength-box:hover h3,
.strengths .strength-box:hover p,
.strengths .strength-box:hover .read-more {
  color: #fff;
}

.strengths .strength-box:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.fee .fee-list {
  padding: 0;
  color:#0C2B4B;
}

.fee .fee-list ul {
  padding: 0;
  list-style: none;
}

.fee .fee-list li+li {
  margin-top: 15px;
}

.fee .fee-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.fee .fee-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.fee .fee-list .icon-show,
.fee .fee-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.fee .fee-list p {
  margin-bottom: 0;
  padding: 10px 0 0 30px;
  line-height:26px;
  font-size: 15px;
}

.fee .fee-list .icon-show {
  display: none;
}

.fee .fee-list a.collapsed {
  color: #343a40;
}

.fee .fee-list a.collapsed:hover {
  color: #0066FF;
}

.fee .fee-list a.collapsed .icon-show {
  display: inline-block;
}

.fee .fee-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .fee .fee-list {
    padding: 0;
  }
}

#section-counter {
  position: relative;
  z-index: 0;
  background-attachment: fixed; }
  #section-counter .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: '';
    z-index: -1;
    opacity: .8;
    background: #000000;
    background: #ce4be8;
    background: -moz-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ce4be8), color-stop(100%, #207ce5));
    background: -webkit-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -o-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -ms-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -webkit-linear-gradient(315deg, #ce4be8 0%, #207ce5 100%);
    background: -o-linear-gradient(315deg, #ce4be8 0%, #207ce5 100%);
    background: linear-gradient(135deg, #ce4be8 0%, #207ce5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ce4be8', endColorstr='#207ce5', GradientType=1 ); }

.ftco-section {
    padding: 4em 0;
    position: relative;
    width: 100%;
}

@media (max-width: 1199.98px) {
  .ftco-counter {
    background-position: center center !important; } }

.ftco-counter .img {
  display: block;
  width: 100%; }
  @media (max-width: 767.98px) {
    .ftco-counter .img {
      height: 400px;
      background-position: top center !important; } }

.ftco-counter .text strong.number {
  font-weight: 700;
  font-size: 32px;
  color: #fff; }

.ftco-counter .text span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600; }

.ftco-counter .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%; }
  .ftco-counter .icon span {
    color: #fff;
    font-size: 48px; }

@media (max-width: 767.98px) {
  .ftco-counter .counter-wrap {
    margin-bottom: 20px; } }
	
.ftco-intro {
  color: rgba(255, 255, 255, 0.8);
  padding: 3em;
  position: relative;
  background-attachment: fixed;
  z-index: 0;
  overflow: hidden; }
    .ftco-intro .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: '';
      opacity: .6;
      background: #000000;
    background: #ce4be8;
    background: -moz-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ce4be8), color-stop(100%, #207ce5));
    background: -webkit-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -o-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -ms-linear-gradient(-45deg, #ce4be8 0%, #207ce5 100%);
    background: -webkit-linear-gradient(315deg, #ce4be8 0%, #207ce5 100%);
    background: -o-linear-gradient(315deg, #ce4be8 0%, #207ce5 100%);
    background: linear-gradient(135deg, #ce4be8 0%, #207ce5 100%);
      z-index: -1; }
  @media (max-width: 991.98px) {
    .ftco-intro {
      background-position: center center !important; } }
  .ftco-intro h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .ftco-intro h2 {
        font-size: 20px; } }
    .ftco-intro h2 span {
      background: #4986fc; }

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  margin-bottom: 30px;
}

.gallery #gallery-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.gallery #gallery-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s;
}

.gallery #gallery-flters li:hover, .gallery #gallery-flters li.filter-active {
  color: #006fbe;
}

.gallery #gallery-flters li:last-child {
  margin-right: 0;
}

.gallery .gallery-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(36, 50, 93, 0.6);
}

.gallery .gallery-wrap::before {
  content: "";
  background: rgba(36, 50, 93, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gallery .gallery-wrap .gallery-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery .gallery-wrap .gallery-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery .gallery-wrap .gallery-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.gallery .gallery-wrap .gallery-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.gallery .gallery-wrap .gallery-info p {
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.gallery .gallery-wrap .gallery-links {
  text-align: center;
  z-index: 4;
}

.gallery .gallery-wrap .gallery-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.gallery .gallery-wrap .gallery-links a:hover {
  color: #25a4ff;
}

.gallery .gallery-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.gallery .gallery-wrap:hover .gallery-info {
  opacity: 1;
}

.gallery .gallery-wrap:hover .gallery-info::before {
  top: 15px;
  left: 15px;
}

.gallery .gallery-wrap:hover .gallery-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Gallery Details
--------------------------------------------------------------*/
.gallery-details {
  padding-top: 40px;
}

.gallery-details .gallery-details-slider img {
  width: 100%;
}

.gallery-details .gallery-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery-details .gallery-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f03c02;
}

.gallery-details .gallery-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f03c02;
}

.gallery-details .gallery-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(43, 35, 32, 0.08);
}

.gallery-details .gallery-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.gallery-details .gallery-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.gallery-details .gallery-info ul li + li {
  margin-top: 10px;
}

.gallery-details .gallery-description {
  padding-top: 30px;
}

.gallery-details .gallery-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.gallery-details .gallery-description p {
  padding: 0;
}

.contactus p {
    color: var(--dark);
	font-size:12px;
	font-weight:600;
	padding:15px 40px;
}

.contactus i {
    color: var(--dark);
	display:inline-block;
	position:absolute;
}

.contactus .footer-address {
	font-family: "Roboto",Sans-serif;
	display:inline-block;
    font-size: 1rem;
    line-height: 1.5em;
	color: var(--dark);
	margin-left: 30px;
}


/*** Footer ***/
.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0066FF;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #8558d1;
  text-decoration: none;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--dark);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--dark);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer p {
    color: var(--dark);
	font-size:12px;
	font-weight:600;
	padding:15px 40px;
}

.footer i {
    color: var(--dark);
	display:inline-block;
	position:absolute;
}

.footer .footer-address {
	font-family: "Roboto",Sans-serif;
	display:inline-block;
    font-size: 1rem;
    line-height: 1.5em;
	color: var(--dark);
	margin-left: 30px;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}

.blink {
  animation: blinker 3s linear infinite;
  display:none;
}
@keyframes blinker {
  50% {
	  opacity: 0;
  }
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  z-index: 1; /* Sit on top */
  padding-top: 7%; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.1); /* Black w/ opacity */
  z-index:9999;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 35%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.8s;
  animation-name: animatetop;
  animation-duration: 0.8s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color: #75ad75;
  color: white;
}
@media (max-width: 992px) {
    .admission-banner {
        bottom: 20px !important; /* adjust as needed */
    }
}
@media (max-width: 400px) {
    .admission-banner {
        bottom: 20px !important; /* adjust as needed */
    }
	
	.admission-banner .admission-text {
       font-size:0.8rem !important;
    }
}
.compsec {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 12%;
  z-index: 99999;
  background: #dc3545;
  height: 30px;
  transition: all 0.4s ease;
  color: #fff;
  padding: 25px 10px;
  border-radius: 15px;
  cursor: pointer;
}

.compsec a{
    color: #fff;
}

.compsec:hover {
  background: #bb2d3b;
}

/* Show state */
.compsec.show {
  visibility: visible;
  opacity: 1;
}

.compsecother {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 12%;
  z-index: 99999;
  background: #dc3545;
  height: 30px;
  transition: all 0.4s ease;
  color: #fff;
  padding: 25px 10px;
  border-radius: 15px;
  cursor: pointer;
}

.compsecother a{
    color: #fff;
}

.compsecother:hover {
  background: #bb2d3b;
}

/* Show state */
.compsecother.show {
  visibility: visible;
  opacity: 1;
}

/* Floating animation */
.floating {  
    animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
 
@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 5px); }
    100% { transform: translate(0, 0px); }    
}
.reg-button {
  position: fixed;
  bottom: 5px;
  left: 20%;
  z-index: 99;
  width:60%;
  -webkit-box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
          box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease; 
  background:#FFF;
  padding:20px 20px 20px 20px;
  font-weight:600;
  cursor:pointer;
  text-align:center;
  }