@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0%;
  padding: 0%;
}

body {
  font-family: "Noto Sans", sans-serif !important;
}

::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #2d3583;
}

.custom-close {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  background-color: #ed1c24;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Noto Sans", sans-serif !important;
}

h1 span {
  color: #2d3583;
}


/* navbar */

.navbar {
  background: #2d3583;
  height: 80px;
}

.notice-container {
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  color: white;
  width: 100%;
  margin: 20px auto;
}

.notice-label {
  background-color: #9c0f14;
  color: white;
  padding: 10px;
  font-weight: bold;
  margin-right: 10px;
  min-width: 150px;
  text-align: center;
}

@media (max-width:768px) {
  .notice-label {
    background-color: #ed1c24;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
    margin-right: 10px;
    min-width: 100px;
    text-align: center;
    font-size: 12px;
  }
}

.notice-marquee {
  color: #2d3583;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-grow: 1;
}

.notice-link {
  color: #2d3583;
  text-decoration: none;
  padding-right: 50px;
}

.notice-content {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.notice-marquee:hover .notice-content {
  animation-play-state: paused;
}

.notice-link:hover {
  text-decoration: underline;
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

@media (min-width:1269px) {
  .navbar .menu-items {
    display: flex;
    align-items: center;
  }
}


.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.navbar ul li a:hover {
  color: #ed1c24;
}

.navbar ul li a:active,
.navbar ul li a:focus {
  color: #ed1c24;
}

.nav-item.dropdown:hover .activity_drop {
  display: block;
}

.dropdown-item:hover {
  color: #ed1c24;
  background: #fff;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}

.expand-btn:after {
  content: " \25BE";
  opacity: 0.4;
  margin-left: 5px;
}

/* .navbar .dropdown-menu,
.menu-right {
  position: absolute;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
} */

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  color: #fff;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
}

.navbar .menu-item:hover {
  color: #ed1c24;
}

.navbar .menu-itemm {
  color: #000;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.1rem 0.5rem;
  font-size: 14px;
}

.navbar .menu-itemm:hover {
  color: #ed1c24;
}

.navbar .menu-title .menu-links {
  color: #000;
}

.menu-item.first-item {
  padding: 1.5rem 1rem;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;
  left: 0;
  width: 100vw;
  top: 80px;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  background: #e9ecef;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(0.9);
}

.content .col .menu-title {
  color: #ed1c24;
  font-size: 1.2rem;
  line-height: 3rem;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .mega-links {
  border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 0.2rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ed1c24;
}

/* container */

/*.container p {
  color: #ffffff;
}

h1 {
  font-weight: 700;
  line-height: 10vw;
  color: #ffffff;
  text-transform: uppercase;
}*/

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}

@media screen and (max-width: 1025px) {
  .navbar {
    padding: 0;
    justify-content: space-evenly;
  }
}

/* Responsive style */

@media screen and (max-width: 1030px) {
  .navbar {
    padding: 10px 20px;
    justify-content: space-between;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: none;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 65px;
    left: 0;
    background: #fcfcfc;
    display: none;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    transform: scaleX(0);
    transform-origin: left;
    overflow: hidden;
    transition: all 0.5s ease;
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }

  .expand-btn.open+.sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open+.blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
  }
}

.bg1 {
  font-size: 14px;
  line-height: 22px;
  background: #2A166F;
}

@media (max-width: 999px) {
  .bg1 {
    display: none;
  }
}

.adm11 {
  margin-top: 50px;
  height: 500px;
  width: 400px;
}

@media (max-width: 999px) {
  .adm11 {
    display: none;
  }
}

.dropdown-menu {
  overflow: hidden;
  border: transparent;
  border-radius: 0%;
  font-size: medium;
  font-weight: bold;
}

.dropdown-menu .dropdown-item {

  color: #000;
  margin-bottom: 0;
  padding-bottom: 0%;
  transition: transform 0.2s;
}



/*.dropdown-menu{
  overflow: hidden;
  .dropdown-item{
    height: 5px;
    font-size: small;
    transition: transform .2s; 
    &:hover{
      transform: scale(1.1);
      background: #80d2ff;
      color: #0c0c0c;
  }
}
} 
*/
.list {
  list-style: none;
  display: inline !important;
}

.circle-icon {
  background: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px white solid;
  text-align: center;
  line-height: 22px;
  position: relative;
  top: -10px;
}

.circle-icon .inside {
  position: absolute;
  left: 1px;
  color: #2A166F;
}

.icons {
  display: flex;
  justify-content: flex-start;
}

.circle-icon:hover {
  background: #d1c7f5;
  color: rgb(255, 255, 255);
  transition: 0.5s;
}

/*navbar
.navbar-brand{
   img{
   height: 80px;
   width: 100px;
}
}*/
/* .navbar .container a {
  height: 55px;
}
.navbar .container a img {
  width: 115px;
} */

.header {
  height: 90vh;
  background-image: linear-gradient(rgba(0, 172, 252, 0.671), rgba(0, 0, 0, 0.527)), url(./img/Nepal-police-school.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

/*.header img {
  width: 170px;
  float: left;
}*/
@media (max-width: 999px) {
  .header {
    height: 70vh;
  }
}

.login-btn {
  width: 100px !important;
  padding: 8px 0;
  outline: none !important;
  border: 2px solid #fff;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  float: right;
}

.space h3 {

  padding-bottom: 0;
  font-size: 45px;
}

.space h3 {
  margin: 18px 0;
}

.space h4 {
  padding: 30px;
}

.spacee h3 {
  padding-top: 50px;
  text-align: start;
}

.spacee p {
  padding-bottom: 50px;
  text-align: start;
}

@media (max-width: 999px) {
  .space h3 {
    font-size: 30px;
    padding-top: 20px;
  }
}

.topprag {
  margin-top: 150px;
}


/***************Global Button*********************/
button {
  --primary-color: #2d3583;
  --secondary-color: #fff;
  --hover-color: #2A166F;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 1em 1em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  height: 45px;
}

button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}



button:hover .arrow {
  background: var(--secondary-color);
}

button:hover .arrow:before {
  right: 0;
}

/*****************Hero Image slider**********************/
/* Hero SLider */
.my-slider-progress {
  background: #ccc;
  height: 4px;
}

.my-carousel-progress-bar {
  background: #2d3583;
  height: 6px;
  transition: width 400ms ease;
  width: 0;
}

@media screen and (max-width:1100px) {
  .hero .splide__list {
    height: 100%;
  }
}

@media screen and (min-width:1100px) {
  .hero .splide__list {
    height: 85vh;
  }
}


/* Welcome Section */
.glimpse-row {
  box-sizing: border-box;
  display: flex;
  flex-flow: row wrap;
  margin-top: -25px;
  width: calc(100% + 25px);
  /* margin-left: -25px; */
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.description p {
  letter-spacing: 0.5px;

}

.glimpse-card {
  min-height: 236px;
  height: 100%;
  margin-right: 30px;
  border-radius: 25px;
  text-align: center;
  color: #3d2474;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

@media screen and (max-width:1100px) {
  .glimpse-card {
    width: 100%;
  }
}

.glimpse-card .img-description {
  padding: 20px;
}

.glimpse-card .img-holder img {
  width: 100%;
  height: auto;
  padding: 15px;
}

@keyframes hangDown {
  to {
    transform: translateY(20px);
  }
}

@keyframes hangUp {
  to {
    transform: translateY(-15px);
  }
}

.glimpse-card {
  margin-bottom: 10px;

  display: flex;
  align-items: center;
}

.child1 {
  background-position: center;
  background-size: cover;
  /* Scale the image to cover the entire container */
  background-repeat: no-repeat;
  /* Prevent the image from repeating */
  animation: hangDown 2s ease-in-out alternate infinite;
}

.child2 {
  background-position: center;
  background-size: cover;
  /* Scale the image to cover the entire container */
  background-repeat: no-repeat;
  animation: hangUp 2s ease-in-out alternate infinite;
}

.child3 {
  animation: hangUp 2s ease-in-out alternate infinite;
  background-position: center;
  background-size: cover;
  /* Scale the image to cover the entire container */
  background-repeat: no-repeat;
}

.child4 {
  background-position: center;
  background-size: cover;
  /* Scale the image to cover the entire container */
  background-repeat: no-repeat;
  /* Prevent the image from repeating */
  background-image: url("assets/img/Juniorclass-7.JPG") !important;
  animation: hangDown 2s ease-in-out alternate infinite;
}

/*.input-group {
  width: 90% !important;
  max-width: 500px;
  border-radius: 30px;
  background: #fff;
  margin: auto;
  padding: 2px;
}

.form-control {
  border: 0 !important;
  border-radius: 30px !important;
  margin: 2px;
  box-shadow: none !important;
}

.input-group-text {
  width: 100px;
  color: #fff !important;
  background-image: linear-gradient(#4ed0f8, #2A166F);
  border: 0 !important;
  padding: 9px 5px !important;
  border-radius: 30px !important;
  box-shadow: none !important;
}*/
.btnaddmission {
  border: 1px solid black;
  background: #0314ac;
  color: #fff;
  transition: transform 0.2s;
}

.btnaddmission:hover {
  transform: scale(1.1);
  border: 2px solid black;
  background: #011aff;
  color: #fff;
}

.btnn {
  padding: 4px;
  margin: 4px;
  background: #0314ac;
  color: #fff;
  box-shadow: 2px 2px;
  transition: transform 0.2s;
}

.btnn:hover {
  transform: scale(1.1);
  background: #011aff;
  color: #fff;
}

.btn1 {
  background: #BE2867;
  color: #fff;
  height: 50px;
}

.con1 {
  background: #ffffff;
  border: 2px solid black;
}

.course {
  height: 230px;
  width: 100%;
}

@media (max-width: 999px) {
  .course {
    height: 350px;
  }
}

.message-team a {
  color: #2A166F;
  text-decoration: none;
}

.message-team a:hover {
  margin-left: 2px;
}

.advertise {

  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.card-img-topL {
  height: 400px;
}

.threed {
  height: 200px;
  width: 300px;
}

.featured {
  margin-top: 150px;
  height: 400px;
  width: 100%;
}

.button {
  border: 1px solid #0c0c0c;
  border-radius: 50px;
  background-color: #0092DF;
  border: none;
  color: #FFFFFF;
  text-align: center;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

@media (max-width: 999px) {
  .featured {
    height: 350px;
  }
}

.btn2 {
  background: #BE2867;
  color: #fff;
  height: 50px;
  margin-left: 485px;
}

.card-img-top {
  height: 200px;
}

.cultural {
  background-image: linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.801)), url(./img/IMG_3439.JPG);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  color: #fff;
}

.sciencelab {
  height: 40vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(13, 13, 34, 0.521)), url(./img/IMG_2809.JPG);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.sciencelab1 {
  height: 40vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(13, 13, 34, 0.521)), url(./img/IMG_3183.JPG);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.sciencelab2 {
  height: 40vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(13, 13, 34, 0.521)), url(./img/IMG_3645.JPG);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.spaceee {
  text-align: center;
  padding-top: 100px;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: #0092DF;
  color: #fff;
  height: 350px;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
  text-align: center;
  padding: 20px;
  background: #ddd;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle 
.active, .dot:hover {
  background-color:cornflowerblue;
}

/* Add an italic font style to all quotes */
q {
  font-style: italic;
}

/* Add a blue color to the author 
.author {color: #340066;}
footer{
  position: relative;
  width: 100%;
  background: #0092DF;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
footer .row b{
  color: #fff;
}
footer .social_icon , 
footer .menu{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}
footer .social_icon li ,
footer .menu li{
  list-style: none;
}
footer .social_icon li a{
  font-size: 2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
footer .social_icon li a:hover{
  transform: translateY(-10px);
}

footer .menu li a{
  font-size: 1.2em;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  }
footer .menu li a:hover{
  opacity: 1;
}
footer p{
  color: #fff;
  text-align: start;
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.1em;
}
footer .wave{
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background:url(wave.png);
  background-size: 1000px 100px;
}
footer .wave#wave1{
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animateWave 4s linear infinite;
}
footer .wave#wave2{
  z-index: 999;
  opacity: 0.5em;
  bottom: 10px;
  animation: animateWave_02 4s linear infinite;
}
@keyframes animatewave{
  0%{
    background-position-x: 1000px;
  }
  100%{
    background-position-x: 0px;
  }
}
@keyframes animatewave_02{
  0%{
    background-position-x:0px;
  }
  100%{
    background-position-x:  1000px;
  }
}
*/



/*about us page*/
.about {
  height: 70vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(71, 71, 255, 0.452)), url(.assets/img/allteachers.jpeg);
  background-repeat: no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  text-align: center;
  color: #fff;
}

.coreteam {
  height: 70vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(71, 71, 255, 0.452)), url(./img/IMG_3183.JPG);
  background-repeat: no-repeat;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
  text-align: center;
  color: #fff;
}

.trapezoid {
  border-top: 70vh solid rgba(0, 0, 0, 0.3882352941);
  border-left: 0px solid transparent;
  border-right: 400px solid transparent;
  height: 10vh;
  width: 150vh;
}

@media (max-width: 999px) {
  .about {
    height: 40vh;
    background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(71, 71, 255, 0.452)), url(./img/allteachers.jpeg);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    text-align: center;
    color: #fff;
  }
}

.abouttext {
  position: absolute;
}

.aboutside {
  margin-left: 30px;
  position: relative;
  padding-top: 50px;
  height: 80vh;
  width: 50vh;
}

.aboutmd {
  padding: 50px;
}

.aboutlast {
  padding-top: 50px;
  position: relative;
  max-width: 800px;
  /* Maximum width */
  margin: 0 auto;
  /* Center it */
}

.aboutlast .contentt {
  position: absolute;
  /* Position the background text */
  bottom: 140px;
  /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0);
  /* Fallback color */
  background: rgba(0, 0, 0, 0.5);
  /* Black background with 0.5 opacity */
  color: #f1f1f1;
  /* Grey text */
  width: 95%;
  /* Full width */
  padding: 20px;
  /* Some padding */
}

.aboutlst {
  height: 40vh;
  width: 270px;
}

.achievements {
  height: 70vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(71, 71, 255, 0.452)), url(./img/Nepal-police-school.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
}

.achievementside {
  padding-top: 50px;
  height: 90vh;
  width: 100vh;
}

.achievementmd {
  padding: 50px;
}

.achievementlast {
  position: relative;
  max-width: 800px;
  /* Maximum width */
  margin: 0 auto;
  /* Center it */
}

.achievementlast .contentt {
  position: absolute;
  /* Position the background text */
  bottom: 140px;
  /* At the bottom. Use top:0 to append it to the top */
  background: rgb(0, 0, 0);
  /* Fallback color */
  background: rgba(0, 0, 0, 0.5);
  /* Black background with 0.5 opacity */
  color: #f1f1f1;
  /* Grey text */
  width: 95%;
  /* Full width */
  padding: 20px;
  /* Some padding */
}

.achievementlst {
  height: 40vh;
  width: 270px;
}

.contact {
  height: 60vh;
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(71, 71, 255, 0.452)), url(./assets/img/Rectangle-93.jpg);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  text-align: center;
  background-repeat: no-repeat;
  color: #fff;
}

.contactside {
  padding-top: 50px;
  height: 80vh;
  width: 50vh;
}

.trapezoidc {
  border-top: 60vh solid rgba(0, 0, 0, 0.3882352941);
  border-left: 0px solid transparent;
  border-right: 400px solid transparent;
  height: 10vh;
  width: 150vh;
}

.conteent {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
}

.conteent .conteent-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}

.conteent:hover .conteent-overlay {
  opacity: 1;
}

.conteent-imagee {
  width: 100%;
}

.conteent-image {
  width: 100%;
}

@media (max-width: 999px) {
  .conteent-image {
    height: 800px;
  }

  .conteent {
    height: 300px;
  }

  .conteent img {
    height: 250px;
  }
}

.achievremove {
  margin-left: 100px;
}

.conteent-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out 0s;
}

.conteent:hover .conteent-details {
  top: 50%;
  left: 50%;
  opacity: 1;
}

.conteent-details h3 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.conteent-details p {
  color: #fff;
  font-size: 0.8em;
}

.fadeIn-bottom {
  top: 80%;
}

.conteent-image {
  height: 200px;
}

.conteent {
  /* border: 3px solid black; */
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.rectangle {
  padding-top: 50px;
}

.principal {
  margin-top: 150px;
  height: 300px;
  border: 20px solid #340066;
  transition: transform 0.2s;
}

.principal:hover {
  transform: scale(1.1);
}

.princ {
  margin-top: 150px;
  height: 300px;
  border: 20px solid #340066;
  transition: transform 0.2s;
}

.princ:hover {
  transform: scale(1.1);
}

@media (max-width: 999px) {
  .principal {
    margin-top: 0%;
    margin-left: 50px;
    height: 300px;
    border: 20px solid #340066;
    transition: transform 0.2s;
  }

  .principal:hover {
    transform: scale(1.1);
  }

  .princ {
    margin-left: 50px;
    height: 300px;
    border: 20px solid #340066;
    transition: transform 0.2s;
  }

  .princ:hover {
    transform: scale(1.1);
  }
}

.rectangle {
  padding-top: 0%;
}

.princi {
  margin-top: 120px;
}

@media (max-width: 999px) {
  .princi {
    margin-top: 0;
  }
}

.commandant {
  margin-left: 80px;
  margin-top: 50px;
  height: 300px;
  border: 20px solid #0092DF;
  transition: transform 0.2s;
}

.commandant:hover {
  transform: scale(1.1);
}

@media (max-width: 999px) {
  .commandant {
    margin-left: 50px;
    margin-top: 30px;
    height: 300px;
    border: 20px solid #0092DF;
    transition: transform 0.2s;
  }

  .commandant:hover {
    transform: scale(1.1);
  }
}

.achievementsidee {
  height: 80vh;
  width: -moz-fit-content;
  width: fit-content;
}

.coaches {
  margin-right: 100px;
}

.g1 {
  height: 50vh;
}

.test {
  margin-left: 40px;
  flex: auto;
  color: #0c0c0c;
  /*border: 2px solid rgb(163, 163, 163);*/
  transition: transform 0.2s;
}

.test:hover {
  transform: scale(1.1);
  /*background: #246289;*/
  color: #0c0c0c;
}

@media (max-width: 999px) {
  .test {
    margin-right: 30px;
    flex: auto;
    color: #0c0c0c;
    /*border: 2px solid rgb(163, 163, 163);*/
    transition: transform 0.2s;
  }

  .test:hover {
    transform: scale(1.1);
    /*background: #246289;*/
    color: #0c0c0c;
  }
}

@media (max-width: 999px) {
  .camp {
    height: 300px;
    margin-left: 80px;
  }
}

.main-section {
  text-align: center;
}

.fancy {
  width: 150px;
  padding: 10px;
}

.topsec {
  border: 2px solid black;
  border-radius: 30px;
  margin-top: 170px;
  height: 20vh;
  transition: transform 0.2s;
}

.topsec:hover {
  transform: scale(1.1);
}

.topsecc {
  border: 2px solid black;
  border-radius: 30px;
  margin-top: 10px;
  height: 20vh;
  transition: transform 0.2s;
}

.topsecc:hover {
  transform: scale(1.1);
}

.topsec1 {
  border: 2px solid black;
  border-radius: 30px;
  margin-left: 150px;
  margin-top: 170px;
  height: 20vh;
  transition: transform 0.2s;
}

.topsec1:hover {
  transform: scale(1.1);
}

.topsecc2 {
  border: 2px solid black;
  border-radius: 30px;
  margin-left: 150px;
  margin-top: 10px;
  height: 20vh;
  transition: transform 0.2s;
}

.topsecc2:hover {
  transform: scale(1.1);
}

.animated {
  height: 100vh;
  margin-left: 10px;
  padding-top: 0%;
}

/*card try*/
.card {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border: none;
  margin-bottom: 30px;
}

.height-fix img {
  height: 350px;
}

.card .height-fix .card-img-top {
  width: auto !important;
}

.card.height-fix .card-img-overlay {
  top: unset;
  color: #fff;
  background: linear-gradient(to bottom, rgba(26, 96, 111, 0) 0%, rgba(26, 96, 111, 0) 1%, rgba(24, 39, 247, 0.91) 31%, rgba(60, 184, 252, 0.91) 100%);
}

.card.height-fix .fa {
  color: #fff;
  font-size: 22px;
  margin-right: 18px;
}

.card-zoom {
  overflow: hidden;
  position: relative;
}

.zoom-in {
  transition: transform 0.3s ease;
}

.card-zoom:hover .zoom-in {
  transform: scale(1.1);
}

.link {
  transition: color 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.card-zoom:hover .link {
  color: #a1513a;
}

.accordion-item {
  border: 2px solid black;
}

.list-group {
  overflow: hidden;
}

.list-group-item {
  transition: transform 0.2s;
}

.list-group-item:hover {
  background-color: #9eddff;
  transform: scale(1.1);
}

.football {
  height: 50vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/football1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

/*.carousel-item img {*/
/*  height: 50vh;*/
/*}*/

.maths {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/Maths.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.conteent-img {
  height: 400px;
  width: 100%;
}

.mathsads {
  background-image: linear-gradient(rgba(252, 250, 250, 0), rgba(13, 13, 34, 0.521)), url(./img/policesalute.JPG);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.mathsad h2 {
  text-align: center;
  padding: 50px;
  font-size: 55px;
  text-shadow: 0 0 10px;
}

.toprag {
  text-align: bottom;
}

.badmintion {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/badminton.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.lawntennis {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/lawntennis.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.karate {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/karate.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.judo {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/judo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.takewando {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/takewando.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.cricket {
  height: 70vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.438), rgba(0, 0, 0, 0.527)), url(./img/cricket.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.nepali {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/Nepali.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.english {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/ENGLISH.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.science {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/Science.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.computer {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/department\ of\ computer\ scienc.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.social {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/Social.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.administrative {
  height: 80vh;
  background-image: linear-gradient(rgba(0, 8, 12, 0.349), rgba(0, 0, 0, 0.199)), url(./img/Admin\ \ staff.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  background-attachment: fixed;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

.lasthome {
  height: 90vh;
  background-image: linear-gradient(rgba(255, 255, 255, 0.582), rgba(255, 255, 255, 0.623)), url(./img/IMG_3183.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  padding-top: 5px;
  text-align: center;
  color: #fff;
}

@media (max-width: 999px) {
  .lasthome {
    height: 170vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.582), rgba(255, 255, 255, 0.623)), url(./img/IMG_3183.JPG);
    background-repeat: no-repeat;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    text-align: center;
    color: #fff;
  }

  .last1 {
    margin-bottom: 50px;
    transition: transform 0.5s;
  }

  .last1:hover {
    transform: scale(1.1);
  }

  .last2 {
    margin-top: 10px;
    transition: transform 0.5s;
  }

  .last2:hover {
    transform: scale(1.1);
  }
}

.last1 {
  width: 400px;
  height: 300px;
  margin-top: 150px;
  transition: transform 0.5s;
}

.last1:hover {
  transform: scale(1.1);
}

.last2 {
  margin-top: 50px;
  transition: transform 0.5s;
}

.last2:hover {
  transform: scale(1.1);
}

.testt {
  margin-top: 5px;
  margin-right: 30px;
  flex: auto;
  color: #0c0c0c;
  transition: transform 0.2s;
}

.testt:hover {
  margin-top: 5px;
  transform: scale(1.1);
  color: #0c0c0c;
}

.cartoonpng {
  margin-top: 50px;
  margin-left: 20px;
}

@media (max-width: 999px) {
  .testt {
    padding-top: 10px;
    margin-left: 30px;
    align-items: center;
    flex: auto;
    color: #0c0c0c;
    /*border: 2px solid rgb(163, 163, 163);*/
    transition: transform 0.2s;
  }

  .testt:hover {
    background: #bce7fd;
    transform: scale(1.1);
    border: 2px solid rgba(0, 0, 0, 0.61);
    color: #0c0c0c;
  }

  .cartoonpng {
    margin-left: 50px;
  }
}

.con-img {
  height: 400px;
}

.achievtxt {
  color: #2A166F;
  font-size: 45px;
  font-weight: 100px;
}


.teachervoice {
  background: #ffffff;
  color: #2A166F;
}

.bgremove {
  height: 500px;
}

/*try*/
.cardd {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  padding: 32px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.conntent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #202020;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.conntent .heading {
  font-weight: 700;
  font-size: 32px;
}



.conntent .btn {
  color: #e8e8e8;
  text-decoration: none;
  padding: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(-45deg, #6cabff 0%, #0f2cd3 100%);
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.cardd::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(-45deg, #6cabff 0%, #0f2cd3 100%);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cardd:hover::before {
  height: 100%;
}

.cardd:hover {
  box-shadow: none;
}

.cardd:hover .btn {
  color: #212121;
  background: #e8e8e8;
}

.conntent .btn:hover {
  outline: 2px solid #e8e8e8;
  background: transparent;
  color: #e8e8e8;
}

.conntent:hover {
  color: #fff;
}

.conntent .btn:active {
  box-shadow: none;
}

/*flipcard*/
/* Features Section */
.latest-events {
  margin-bottom: 30px;
  padding: 0;
  position: relative;
  z-index: 4;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.latest-events .card-holder {
  background-color: #fff;
  height: 100%;
}

.latest-events .card-holder img {
  padding-top: 30px;
  padding-left: 8px;
  padding-right: 8px;
}

.advert-description h3 {
  text-align: center;
  margin-top: 15px;
  font-weight: bolder;
}

.advert-description p {
  color: #212529;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 550;
  letter-spacing: 0.5px;
}

.hover-effect {
  background-color: #FFFB18;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.latest-events:hover .card-holder {
  transform: translate3d(20px, 20px, 0);
  transition: 0.5s ease-out;
}

@media screen and (max-width: 700px) {
  .latest-events:hover .card-holder {
    transform: translateY(20px);
    transition: 0.5s ease-out;
  }
}

/* Events section */
.events-holder img {
  width: auto;
}

#about-events {
  color: #011aff;
  font-size: 18px;
}

#about-events small {
  color: red;
  font-size: 14px;
}

/* Message Section Css */
.news-img {
  padding-right: 15px;
}

.news-img img {
  transition: transform 0.3s ease;
}

.news-img img:hover {
  transform: scale(0.94);
}

.message-container {
  display: flex;
  flex-direction: column;
}

.msg-link {
  color: red;
  border: 2px solid red;
  padding: 5px 10px;
  border-radius: 7px;
  transition: .5s;
}

.msg-link:hover {
  background-color: red;
  color: #fff;

}

@media (max-width: 999px) {
  #tab-message {
    text-align: start;
    padding: 5px;

  }
}

/* Hero SLider 
.my-slider-progress {
  background: #ccc;
  height: 4px;
}

.my-carousel-progress-bar {
  background: rgb(134, 47, 255);
  height: 6px;
  transition: width 400ms ease;
  width: 0;
}
@media screen and (max-width:1100px) {
  .splide__list{
      height: 100%;
  }   
}
@media screen and (min-width:1100px) {
  .splide__list{
      height: 85vh;
  }   
}*/


@media (min-width: 1000px) {
  .carousel-inner .d-block {
  height: 650px;
}
}

.img-holder img {
  width: 100%;
  height: auto;
  border-radius: 25px;
}

/* Footer */
.footer-main {
  display: flex;
  justify-content: center;
  align-self: flex-end;
  min-height: 30vh;
  background: rgba(66, 21, 151, 0.1725490196);
  padding: 0;
  margin-top: 50px;
}

footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30vh;
  width: 100%;
  flex-direction: column;
}

footer .socials,
footer .menu {
  z-index: 200;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

footer .socials li,
footer .menu li {
  list-style: none;
}

footer .socials li a {
  font-size: 2em;
  color: #431597;
  display: inline-block;
  margin: 0 10px;
  transition: 0.5s;
}

footer .socials li a:hover {
  transform: translateY(-10px);
}

footer .menu li a {
  font-size: 1.2em;
  color: #431597;
  margin: 0 10px;
  display: inline-block;
  text-decoration: none;
  opacity: 0.75;
  transition: 0.5s;
}

footer .menu li a :hover {
  opacity: 1;
}

#menu span {
  position: absolute;
  height: 2px;
  width: 30px;
  background: #431597;
  display: block;
  left: 0;
  right: 0;
}

#menu span:first-child {
  top: 0;
}

#menu span:nth-child(2) {
  top: 9px;
}

#menu span:nth-child(3) {
  top: 18px;
}

strong {
  width: 30px;
  height: 20px;
  position: relative;
}

em {
  font-size: 14px;
  color: #1a2d59;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 52px;
  margin-left: 15px;
}

em,
.menu-trigger strong {
  display: inline-block;
  vertical-align: middle;
}

#nav-link {
  text-decoration: none;
  font-size: 14px;
  color: #1a2d59;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 52px;
  margin-left: 15px;
}



.nav-list a {
  text-decoration: none;
  font-size: 14px;
  color: #1a2d59;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 52px;
  margin-left: 15px;
  width: -moz-fit-content;
  width: fit-content;
}

.nav-list a:hover {
  color: #431597;
}

.second-footer {
  justify-content: center;
  min-height: 10vh;
  background: #2d3583;
  padding: 0 !important;
  color: #fff;
}

footer {
  justify-content: center;
  align-items: center;
  min-height: 10vh;
  width: 100%;
}



footer a {
  text-decoration: none;
  color: #ffc609;
}

footer a:hover {
  color: #fff;
}

#footer-items h3 {
  color: #431597;
  font-size: 24px;
}

#footer-items ul {
  padding: 0;
}

#footer-items ul li a {
  text-decoration: none;
  color: #000;
}

#footer-items ul li a:hover {
  cursor: pointer;
  color: #431597;
}

#footer-items ul li {
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  margin-top:12px;
}



.background-effect {
  display: flex;
  justify-content: center;
}

.background-effect img {
  position: absolute;
  height: 100%;
  filter: grayscale(100%);
  z-index: -1;
  opacity: 0.1;
}
.background-effect .book{
  opacity: 0.2;
}

.background-effect .sun {
  opacity: 0.1;
}
@media (max-width:678px){
  .background-effect img {
    height: 40%;
  }
}
@media screen and (max-width: 1200px) {
  .background-effect .sun {
    display: none;
  }

  .background-effect .bird {
    display: none;
  }
}

.rounded-start {
  height: 225px;
  width: 130px;
}

/*# sourceMappingURL=style.css.map */




/**************Extra curricular section******************/
.main {
  position: relative;
  width: calc(min(90rem, 90%));
  margin: 0 auto;
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
}

.swiper-slide>div {
  margin-bottom: 50px;
  margin-left: 15px;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination {
  bottom: 1.25rem !important;
}

.swiper {
  width: 100%;
  padding-top: 3.125rem;
}

.swiper-slide {
  width: 18.75rem;
  height: 28.125rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.swiper-slide h3 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.925rem;
  padding: 0 0 0 1.563rem;
  text-transform: uppercase;
}


.swiper-slide a {
  margin: 1.25rem 1.563rem 3.438rem 1.563rem;
  padding: 10px 30px;
  font-size: 1.1rem;
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  font-weight: 100;
  background-color: #1a2d59;

}

.swiper-slide a:hover {
  background-color: #431597;
}

.swiper-slide div {
  display: none;
  opacity: 0;
  padding-bottom: 0.625rem;
}

.swiper-slide-active div {
  display: block;
  opacity: 1;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.slide1 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot1.JPG") no-repeat 50% 50% / cover;
}

.slide2 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot5.JPG") no-repeat 50% 50% / cover;
}

.slide3 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot6.JPG") no-repeat 50% 50% / cover;
}

.slide4 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot7.JPG") no-repeat 50% 50% / cover;
}

.slide5 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot8.JPG") no-repeat 50% 50% / cover;
}

.slide6 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot9.JPG") no-repeat 50% 50% / cover;
}

.slide7 {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./assets/img/foot10.JPG") no-repeat 50% 50% / cover;
}

@media screen and (min-width: 93.75rem) {
  .swiper {
    width: 85%;
  }
}


/**************blog Section**************/


.news a {
  text-decoration: none;
  color: #0c0c0c;
}

.news a:hover {
  color: #ed1c24;
}

.news span {
  font-size: 14px;
  color: #777;
}


/* Hero Section for all back page */
.hero-image {
  position: relative;
  max-width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background-attachment: fixed;
}

.hero-heading {
  position: absolute;
  bottom: 60px;
  left: 20px;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  background-color: #2A166F;
}

.hero-head {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  background-color: #2A166F;
}

.hero-head a {
  text-decoration: none;
  color: #ffffff;
}

@media screen and (min-width:1000px) {
  .hero-image img {
    height: 80vh;
  }
}



:root {
  --main-nav-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
/*=============== main-nav ===============*/
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-color: var(--body-color);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav-bar {
  height: var(--main-nav-height);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}

.nav__logo i {
  font-size: 1.25rem;
}

.nav__logo:hover {
  color: var(--first-color);
}
*/
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
  opacity: 0;
}

@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }

  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav__link:hover {
  background-color: var(--first-color-lighten);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown__content {
  row-gap: 1.75rem;
}

.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}

.dropdown__group:first-child {
  margin-top: 1.25rem;
}

.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}

.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.dropdown__list {
  row-gap: 0.25rem;
}

.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}

.dropdown__link:hover {
  color: var(--title-color);
}

/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {

  /* Nav */
  .nav-bar {
    height: calc(var(--main-nav-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    display: flex;
    column-gap: 3rem;
    height: 100%;
  }

  .nav-bar li {
    display: flex;
  }

  .nav__link {
    padding: 0;
  }

  .nav__link:hover {
    background-color: initial;
  }

  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }

  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }

  .dropdown__content {
    grid-template-columns: repeat(4, 20%);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }



  .dropdown__group {
    padding: 4rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }

  .dropdown__group:first-child,
  .dropdown__group:last-child {
    margin: 0;
  }

  .dropdown__list {
    row-gap: 0.75rem;
  }

  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }

  .dropdown__icon i {
    font-size: 2rem;
  }

  .dropdown__title {
    font-size: var(--normal-font-size);
  }

  .dropdown__link {
    font-size: var(--small-font-size);
  }

  .dropdown__link:hover {
    color: var(--first-color);
  }

  .dropdown__item {
    cursor: pointer;
  }

  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }

  .dropdown__item:hover>.dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }
}

@media screen and (min-width: 1152px) {
  .container {
    margin-inline: auto;
  }
}

/* Timeline Starts Here */
/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #2d3583;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* Container around content */
.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: #2d3583;
  border: 4px solid #fff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left-t {
  left: 0;
}

/* Place the container to the right */
.right-t {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left-t::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #ed1c24;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ed1c24;
}

/* Add arrows to the right container (pointing left) */
.right-t::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #ed1c24;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ed1c24 transparent transparent;
}

/* Fix the circle for containers on the right side */
.right-t::after {
  left: -12px;
}

/* The actual content */
.timeline-content {
  padding: 20px 30px;
  background-color: #ed1c24;
  position: relative;
  border-radius: 6px;
  color: #fff;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 1000px) {

  /* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

  /* Full-width containers */
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  /* Make sure that all arrows are pointing leftwards */
  .timeline-container::before {
    left: 60px;
    border: medium solid #ed1c24;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ed1c24 transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left-t::after,
  .right-t::after {
    left: 15px;
  }

  /* Make all right containers behave like the left ones */
  .right-t {
    left: 0%;
  }
}

/* Management members */
#member-name {
  padding-top: 25px;
  color: #000;
  text-align: center;
}

.member-img img {
  height: 300px;
  width: 100%;
  object-fit: contain;
}

/* Admission page */
#admission-list li {
  list-style: disc;
  list-style-position: inside;
}

#add-title {
  color: #161f6d;
}

#add-title2 {
  color: rgb(154, 38, 38);
}

.box1,
.box2,
.box3 {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  color: #fff;
  height: 30vh;
  align-items: center;
  justify-content: center;
}

.box1 {
  background-color: #2d3583;
}

.box2 {
  background-color: #ffcb08;
}

.box3 {
  background-color: #ed1c24;
}

.box1>h3,
.box2>h3,
.box3>h3 {
  padding-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.box1>a,
.box2>a,
.box3>a {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 7px;
  padding: 8px 15px;
  transition: .5s;
}

.box1>a:hover,
.box2>a:hover,
.box3>a:hover {
  color: rgb(154, 38, 38);
  background-color: #fff;
}

.splide__slide {
  position: relative;
  overflow: hidden;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#herocaption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

/*Our Community */

.alumni img {
  height: 250px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.alumni {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

.alum-msg p {
  padding: 0 15px 0 15px;
}

.alumni span {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.bi-quote::before {
  font-size: 70px;
}

.carousel-inner {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /*border-radius: 30px;*/
}

.bi-arrow-left,
.bi-arrow-right {
  color: red;
  font-size: 25px;
}

#alumni-next,
#alumni-prev {
  bottom: 0 !important;
  top: unset;
  background: none;
  margin-bottom: 30px;
}

#alumni-next {
  right: 35%;
}

#alumni-prev {
  left: 35%;
}

.events p {
  font-size: 16px;
  font-weight: 300;
  color: red;
  margin-bottom: 8px;
  margin-top: 8px;
}

.events h4 {
  font-size: 22px;
  color: #161f6d;
  font-weight: 700;
}

/* Activities Gallery */
#x2 {
  text-decoration: none;
  color: black;
  font-size: 22px;
  font-family: 'inknut';
}

#x2:hover {
  border-bottom: 2px solid black;
  transition: ease-in;
}

.item .ffc .ffg {
  width: 26rem;
  box-shadow: none;
  border: none;
}

@media screen and (max-width:1200px) {
  .ffg {
    width: 20rem;
  }
}

@media screen and (max-width:750px) {
  .ffg {
    width: auto;
  }
}



.history {
  height: 250px;
  width: 100%;
}

.menu-book,
.navbar_offcanvas {
  display: none;
}

@media screen and (max-width:1268px) {

  .menu-book,
  .navbar_offcanvas {
    display: block;
  }

  .main_menu {
    display: none;
  }

  .shown {
    display: flex !important;

  }
}

.newnav-title {
  font-size: 20px;
  font-weight: 500;
}

.menu-titlee {
  font-size: 18px;
  font-weight: 500;
  color: #2d3583;
  margin-left: 20px;
}

.menu-itemms {
  color: #2d3583;
}

.offcanvas-title {
  font-size: 25px;
  font-weight: 600;
  color: #2d3583;
}

/* Activities Gallery */
#x2 {
  text-decoration: none;
  color: black;
  font-size: 22px;
  font-family: 'inknut';
}

#x2:hover {
  border-bottom: 2px solid black;
  transition: ease-in;
}

.item .ffc .ffg {
  width: 23rem;
  box-shadow: none;
  border: none;
}

@media screen and (max-width:1024px) {
  .item .ffc .ffg {
    width: 20 rem;
  }
}

@media screen and (max-width:750px) {
  .ffg {
    width: auto;
  }
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}

.card-container .card_box {
  background: #fff;
  border-radius: 15px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 300px;
  text-align: center;
}

.card-container .card_box:hover {
  transform: scale(1.02);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.card-container .card_box img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: transform 0.3s ease;
}

/* .card_box:hover img {
          transform: scale(1.1);
      } */

.card-container .card-content {
  padding: 20px;
}

.card-container .card-heading {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #333;
}

.card-container .card-paragraph {
  font-size: 1em;
  color: #777;
}

.card-container a {
  text-decoration: none;
  color: #333;
}

.card-container a:hover {
  color: #2d3583;
}

.owl-nav {
  display: none;
}

#btn-back-to-top {
  position: fixed;
  background-color: #ed1c24;
  bottom: 5px;
  right: 5px;
  display: none;
  border-radius: 50%;
  z-index: 999;
  border: 1px solid #ed1c24;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#btn-back-to-top i {
  font-size: 20px;
}

#btn-back-to-top:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}



.news-section {
  padding: 50px 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.news-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-top: 30px;
  position: relative;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-content a {
  text-decoration: none;
}

.news-content h2 {
  font-size: 20px;
  color: #2d3583;
  margin-bottom: 10px;
}

.news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.news-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.date-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(21, 37, 109, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.1em;
}


.gridcard {
  background: white;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  overflow: hidden;
  transition: transform 0.3s;
}

.gridcard img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gridcard h4 {
  padding: 1rem;
  color: #003049;
}

.gridcard a {
  text-decoration: none;
}



.gridcard:hover {
  transform: scale(1.02);
}


.latest-events-slider {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
}

.latest-events-slider h5 {
color: rgba(21, 37, 109, 0.8);
  
}
.latest-events-slider a{
  text-decoration: none;
}

.event-slider .event-card {
  margin: 10px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: transform 0.3s ease;
}

.event-slider .event-card:hover {
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.date-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(21, 37, 109, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.1em;
}

.card-image h3 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-content {
  padding: 20px;
}

.card-content p {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333;
}

.card-content .btn {
  display: inline-block;
  padding: 5px 10px;
  color: black;
  background-color: #ffcb08;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.card-content .btn:hover {
  background-color: #2d3583;
  color: #fff;
}

@media (min-width:968px) {
  .about_container p {
    text-align: justify;
  }
}

.npschautari img{

  mix-blend-mode: darken;
}


.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border-radius: 8px;
}

.pagination li {
  margin: 0;
}

.pagination li a {
  display: block;
  padding: 10px 15px;
  margin: 0 5px;
  text-decoration: none;
  color: #ff3b30;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination li a:hover,
.pagination li a.active {
  background-color: #ff3b30;
  color: #fff;
}

.pagination li a.disabled {
  color: #ccc;
  pointer-events: none;
  background-color: #f4f4f4;
}
.activities h2, .styled-heading {
    font-size: 2.5rem;
    font-weight: bold;
    
    text-shadow: 2px 5px 2px rgb(177, 172, 172);
}

@media (max-width: 992px) {
   .activities h2, .styled-heading {
        font-size: 2rem;
    }
}

