@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css");
@import url("./common.css");
* {
  font-family: "Roboto", sans-serif;
}

@media (min-width: 1200px) {
  header .container {
    align-items: start !important;
  }
}
section {
  overflow-x: hidden;
}

header {
  background-color: #999;
  z-index: 99999;
}
header .container {
  font-size: 0.875rem;
}
header .container .top-nav .nav-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
header .container .top-nav .nav-item .top-icon {
  width: 1.5rem;
  height: 1.5rem;
}
header .container .top-nav .nav-item .nav-link {
  color: #fff;
  font-weight: 400;
}
header .container .navbar-brand {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
header .container .navbar-brand .main-logo {
  width: 92px;
}
header .container .navbar-brand .logo-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
header .container .navbar-brand .logo-text-box .logo-text-up {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-bottom: 2px solid #fff;
  display: inline-flex;
  margin-bottom: 0;
  padding: 2px;
}
header .container .navbar-brand .logo-text-box .logo-text-down {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  margin-bottom: 0;
  padding: 2px;
}
header .container .navbar-brand .logo-text {
  width: 13.3125rem;
}
header .container .navbar-toggler {
  padding: 0;
  border: 0;
}
header .container .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
  border: 0;
  padding: 0;
}
header .container .line {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
header .container .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
header .container .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
header .container .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
header .container .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
header .container .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
header .container .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
header .container .admission-btn {
  padding: 0.5rem 2rem;
  border-radius: 0.75rem;
  background: #e04444;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
}
header .bottom-nav {
  background: #f9bf23;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
}
header .bottom-nav .navbar-nav {
  justify-content: space-between;
  flex-wrap: wrap;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 100%;
}
header .bottom-nav .navbar-nav .nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #353535;
}
header .bottom-nav .navbar-nav .nav-link.active {
  color: #e04444;
}
header .bottom-nav .drop-link {
  border: 0;
}
header .bottom-nav .drop-link li {
  position: relative;
}
header .bottom-nav .drop-link li a {
  font-size: 16px;
  font-weight: 500;
  padding: 3px 20px;
}
header .bottom-nav .drop-link li a:hover {
  background: #e04444;
  color: #fff;
}
header .bottom-nav .drop-link a:before,
header .bottom-nav .drop-link a span:before,
header .bottom-nav .drop-link a:after,
header .bottom-nav .drop-link a span:after {
  content: "";
  position: absolute;
}
header .bottom-nav .drop-link a:before,
header .bottom-nav .drop-link a span:before {
  top: calc(50% - 0.3em);
  left: 0em;
  width: 0.5em;
  height: 0.5em;
  opacity: 0;
  transform: translate3d(-0.6em, 0, 0) rotate(45deg);
}
header .bottom-nav .drop-link a:after,
header .bottom-nav .drop-link a span:after {
  bottom: calc(50% - 0.25em);
  right: 0em;
  width: 0.5em;
  height: 0.5em;
  opacity: 0;
  transform: translate3d(0.6em, 0, 0) rotate(45deg);
}
header .bottom-nav .drop-link a:before,
header .bottom-nav .drop-link a:after {
  transition: transform 0.3s ease-out, opacity 0.3s;
}
header .bottom-nav .drop-link a span:before,
header .bottom-nav .drop-link a span:after {
  transition: transform 0.3s ease-out 0.15s, opacity 0s 0.05s;
}
header .bottom-nav .drop-link a:hover {
  overflow: visible;
  background: transparent;
}
header .bottom-nav .drop-link a:hover:before,
header .bottom-nav .drop-link a:hover span:before {
  transform: translate3d(0, 0, 0) rotate(45deg);
  opacity: 1;
}
header .bottom-nav .drop-link a:hover:after,
header .bottom-nav .drop-link a:hover span:after {
  transform: translate3d(0, 0, 0) rotate(45deg);
  opacity: 1;
}
header .bottom-nav .drop-link a:before,
header .bottom-nav .drop-link a span:before {
  border-right: 0.15em solid #fff;
  border-top: 0.15em solid #fff;
}
header .bottom-nav .drop-link a:after,
header .bottom-nav .drop-link a span:after {
  border-left: 0.15em solid #fff;
  border-bottom: 0.15em solid #fff;
}

img {
  max-width: 100% !important;
}

li {
  list-style: none;
}

#carouselExampleCaptions {
  margin-top: 2.75rem;
}
#carouselExampleCaptions .carousel-inner .carousel-caption {
  border-radius: 0.9375rem;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(1.8px);
          backdrop-filter: blur(1.8px);
  text-align: center;
  bottom: 2.2rem !important;
}
#carouselExampleCaptions .carousel-inner .carousel-caption h5 {
  width: 90%;
  color: #055995;
  font-size: 2.1875rem;
  font-style: normal;
  font-weight: 600;
  margin: auto;
  margin-bottom: 0;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  animation: text-animation 0.7s ease-in-out;
}
@keyframes text-animation {
  0% {
    transform: scale(0%);
  }
  50% {
    transform: scale(110%);
  }
  100% {
    transform: scale(100%);
  }
}
#carouselExampleCaptions .carousel-inner img {
  -o-object-fit: cover;
     object-fit: cover;
}

.announcment {
  background-color: #999;
  padding: 10px 0 10px 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.announcment > img {
  width: 32px;
}
.announcment marquee a {
  margin-bottom: 0;
  text-decoration: none;
  color: #ffffff;
}

.about-school {
  background: url(../../assets/images/lines-6.png) no-repeat;
  background-position: top right;
  background-size: 40%;
  padding-top: 5rem;
  overflow-y: hidden;
}
.about-school .btn {
  border: 0;
  border-radius: 2rem;
  background: #f9bf23;
  color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 3rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.about-school .btn::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: auto;
  height: 100%;
  padding: 0.9rem;
  border-radius: 50%;
  background-color: #1a9ad6;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s linear;
}
.about-school .btn:hover {
  background-color: #5bb4dd;
}
@media (width > 768px) {
  .about-school .img-about {
    box-shadow: -15px -15px #f9bf23;
  }
}
@media (width > 768px) {
  .about-school .about-img-wrapper .about-home-slider-icon1 {
    animation: beat 2s infinite alternate;
    left: -10%;
    position: absolute;
    top: -8%;
    width: 15%;
    z-index: -1;
  }
  .about-school .about-img-wrapper .about-home-slider-icon2 {
    animation: swing 5s ease infinite;
    bottom: -10%;
    left: -10%;
    position: absolute;
    width: 20%;
    z-index: -1;
  }
  .about-school .about-img-wrapper .about-home-slider-icon3 {
    left: -15%;
    position: absolute;
    top: 48%;
    width: 43%;
    z-index: -1;
  }
  .about-school .about-img-wrapper .about-home-slider-icon4 {
    animation: heartbeat 5s ease-in-out 0s infinite normal both running;
    position: absolute;
    right: -7%;
    top: -7%;
    transform: translateZ(0);
    width: 12%;
    z-index: -1;
  }
}

.highlight {
  background: url(../../assets/images/lines-7.png) 100% no-repeat;
  background-position: left -16rem;
  padding: 5rem 0;
}
.highlight h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.highlight img {
  border-right: 0.4375rem solid #e04444;
}

.slider {
  background: #FFEDBC url(/assets/images/lines-7.png) no-repeat center;
  padding: 3.25rem 0 2rem;
  overflow: hidden;
}
.slider .ax-hidden {
  visibility: hidden;
  position: absolute;
}
.slider .carousel {
  --carousel-height: 375px;
  --carousel-width: 1000px;
  --carousel-item-height: 150px;
  --carousel-item-width: 150px;
  padding-bottom: 3.5rem;
  width: 100%;
}
.slider .carousel-container {
  align-items: center;
  display: flex;
  min-height: var(--carousel-height);
  margin: 0 auto;
  max-width: var(--carousel-width);
  position: relative;
}
.slider .carousel-controls {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.slider .carousel-control {
  all: unset;
  background-color: transparent;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  height: 22px;
  margin: 0 20px;
  position: relative;
  transform: scale(1.5);
  transition: transform 0.5s ease-out;
  width: 22px;
  font-size: 2.5rem;
}
.slider .carousel-control-previous,
.slider .carousel-control-nexts {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider .carousel-control-previous {
  left: 10%;
}
.slider .carousel-control-nexts {
  right: 10%;
}
.slider .carousel-item {
  height: var(--carousel-item-height);
  opacity: 0;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
  width: var(--carousel-item-width);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.slider .carousel-item.carousel-item-1 img {
  border: 3px solid #fc2f10;
}
.slider .carousel-item.carousel-item-2 img {
  border: 3px solid #fcee21;
}
.slider .carousel-item.carousel-item-3 img {
  border: 3px solid #8c4d3b;
}
.slider .carousel-item.carousel-item-4 img {
  border: 3px solid #1a9ad6;
}
.slider .carousel-item img {
  border-radius: 0.9375rem;
  margin-top: 3rem;
}
.slider .carousel-item h2,
.slider .carousel-item p {
  opacity: 0;
}
.slider .carousel-item h2 {
  margin-bottom: 1.25rem;
  position: absolute;
  width: 50vw;
  transform: translate(-27%, -25%);
  color: #222;
  font-size: 2rem;
  font-weight: 600;
}
.slider .carousel-item p {
  position: absolute;
  width: 91vw;
  transform: translateX(-38.5%);
  margin-top: 1rem;
  color: rgba(34, 34, 34, 0.5);
  font-size: 1.125rem;
  font-weight: 500;
}
.slider .carousel-item-1 {
  left: 15%;
  opacity: 0.4;
}
.slider .carousel-item-2,
.slider .carousel-item-4 {
  height: calc(var(--carousel-item-height) * 1.5);
  opacity: 1;
  width: calc(var(--carousel-item-width) * 1.5);
  z-index: 1;
}
.slider .carousel-item-2 {
  left: 30%;
}
.slider .carousel-item-3 {
  height: calc(var(--carousel-item-height) * 2);
  opacity: 1;
  left: 50%;
  width: calc(var(--carousel-item-width) * 2);
  z-index: 2;
}
.slider .carousel-item-3 img {
  border: 3px solid #ffffff;
}
.slider .carousel-item-3 h2,
.slider .carousel-item-3 p {
  opacity: 1;
}
.slider .carousel-item-4 {
  left: 70%;
}
.slider .carousel-item-5 {
  left: 85%;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .slider .carousel-item p {
    width: 100%;
    transform: translateX(0%);
  }
  .slider .carousel-item h2 {
    width: 100%;
    font-size: 1.5rem;
    transform: translate(0%, -35%);
  }
}
.slider .carousel-control-play {
  display: none;
}

.admission {
  padding-block: 2rem;
  background: #f8f1ff;
  position: relative;
  z-index: 9;
}
.admission .btn {
  border: 0;
  border-radius: 2rem;
  background: #f9bf23;
  color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 3rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  margin: auto;
}
.admission .btn::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: auto;
  height: 100%;
  padding: 0.9rem;
  border-radius: 50%;
  background-color: #1a9ad6;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s linear;
}
.admission .btn:hover {
  background-color: #5bb4dd;
}
.admission figure.card {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.25);
  border: 0;
  aspect-ratio: 1/1;
}
.admission figure.card img {
  width: 50%;
  margin: 1rem auto;
}
.admission figure.card h3 {
  color: #000;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
}

.facilities {
  background: linear-gradient(rgba(0, 24, 111, 0.7), rgba(0, 24, 111, 0.7)), url(../../assets/images/our-campus/campus-1.webp) center center/cover no-repeat;
  padding-block: 2rem;
  overflow: visible;
}
.facilities .divider {
  position: relative;
}
.facilities .divider::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: #fff;
  position: absolute;
  right: 50%;
  top: 0;
}
.facilities figure {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.facilities figure .facilities_icon {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #fff;
}
.facilities figure .facilities_icon img {
  width: 3.5rem;
}
.facilities figure figcaption h2,
.facilities figure figcaption span,
.facilities figure figcaption p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  display: inline-block;
}

.academic_brilliance {
  padding-block: 2rem;
}
.academic_brilliance h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
}
.academic_brilliance h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.academic_brilliance #achieving_brilliance {
  border-radius: 0.9375rem;
  overflow: hidden;
  background: #f2f5ff;
  box-shadow: 0px 4px 16px 3px rgba(0, 14, 136, 0.15);
  margin-top: 2rem;
}
.academic_brilliance #achieving_brilliance .card {
  padding: 1.25rem;
  background: transparent;
  border: 0;
}
.academic_brilliance #achieving_brilliance .card figure {
  text-align: center;
  margin: 0;
}
.academic_brilliance #achieving_brilliance .card figure img {
  border-radius: 50%;
}
.academic_brilliance #achieving_brilliance .card figure figcaption {
  margin-top: 0.5rem;
}
.academic_brilliance #achieving_brilliance .card figure figcaption p {
  margin: 0;
}
.academic_brilliance #achieving_brilliance .card .card-body {
  padding: 0;
}
.academic_brilliance #achieving_brilliance .card .card-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
}
.academic_brilliance #achieving_brilliance .card .card-body p {
  color: #5f5f5f;
  font-size: 1.125rem;
  font-weight: 400;
}
.academic_brilliance #achieving_brilliance .carousel-control-prev {
  left: -7.5%;
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: #f2f5ff;
  opacity: 1;
  border-radius: 50%;
}
.academic_brilliance #achieving_brilliance .carousel-control-next {
  right: -7.5%;
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: #f2f5ff;
  opacity: 1;
  border-radius: 50%;
}

.news_announcement {
  padding-block: 2rem;
  background: #dee6ff url(../../assets/images/news-announcement-bg.png);
}
.news_announcement h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
}
.news_announcement figure.card {
  background: transparent;
  padding: 1rem;
  border: 0;
}
.news_announcement figure figcaption {
  margin-top: 0.95rem;
}
.news_announcement figure figcaption h3 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 145%;
}
.news_announcement .btn {
  border: 0;
  border-radius: 2rem;
  background: #f9bf23;
  color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 3rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  margin-inline: auto;
}
.news_announcement .btn::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: auto;
  height: 100%;
  padding: 0.9rem;
  border-radius: 50%;
  background-color: #1a9ad6;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.5s linear;
}
.news_announcement .btn:hover {
  background-color: #5bb4dd;
}

.testimonial {
  padding-block: 2rem;
}
.testimonial h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.testimonial .nav-pills {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
  gap: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 0.9375rem;
  border: 0.5px solid #3e4f8a;
  background: #f2f5ff;
}
.testimonial .nav-pills .nav-item .nav-link {
  border-radius: 0.625rem;
  background: #ffffff;
  color: #055995;
  box-shadow: 0px 4px 4px 0px rgba(0, 14, 136, 0.15);
  transition: 0.5s all;
  padding: 0.5rem 2rem;
}
.testimonial .nav-pills .nav-item .nav-link.active, .testimonial .nav-pills .nav-item .nav-link:hover {
  background: #055995;
  color: #ffffff;
}
.testimonial #tab_selector {
  border-radius: 0.625rem;
  color: #055995;
  box-shadow: 0px 4px 4px 0px rgba(0, 14, 136, 0.15);
  transition: 0.5s all;
}
.testimonial .tab-content .tab-pane .item {
  padding-block: 1rem;
}
.testimonial .tab-content .tab-pane .item .card {
  border: 0;
  min-height: 340px;
}
.testimonial .tab-content .tab-pane .item .card .upper_text {
  padding: 2rem 1.75rem;
}
.testimonial .tab-content .tab-pane .item .card .upper_text p {
  margin: 0;
}
.testimonial .tab-content .tab-pane .item .card .card-body .card-text {
  background-color: #f2f5ff;
  border-radius: 0.9375rem;
  padding: 1rem 1rem 4rem;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}
@media (width > 992px) {
  .testimonial .tab-content .tab-pane .item .card .card-body .card-text {
    min-height: 17rem;
  }
}
.testimonial .tab-content .tab-pane .item .card .card-body .below-text {
  border-radius: 0rem 0rem 0.9375rem 0.9375rem;
  padding: 2rem 1.75rem;
  background: #F9CC25;
}
.testimonial .tab-content .tab-pane .item .card .card-body .below-text img {
  width: -moz-max-content;
  width: max-content;
}
.testimonial .tab-content .tab-pane .owl-theme .owl-nav [class*=owl-] {
  all: unset;
}
.testimonial .tab-content .tab-pane .owl-theme .owl-nav [class*=owl-]:hover {
  all: unset;
}
.testimonial .tab-content .tab-pane .arrow_right,
.testimonial .tab-content .tab-pane .arrow_left {
  width: 35px;
  height: 35px;
  top: 50%;
  background: #f2f5ff;
  opacity: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial .tab-content .tab-pane .arrow_right {
  right: -5%;
  transform: translateY(-50%);
}
.testimonial .tab-content .tab-pane .arrow_left {
  left: -5%;
  transform: translateY(-50%) rotate(180deg);
}

footer {
  padding-top: 2rem;
  background: #055995;
}
footer li,
footer p,
footer a,
footer h2 {
  color: #ffffff;
  font-size: 1rem;
}
footer h2 {
  font-size: 1.25rem;
  font-weight: 600;
}
footer ul {
  padding-left: 0;
}
footer a:hover {
  color: #e04444;
}
footer p {
  margin-bottom: 0;
}
footer .bottom_footer {
  margin-top: 0.75rem;
  background: #122548;
  padding-block: 0.5rem;
}

@media (min-width: 992px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .navbar .navbar-collapse {
    flex-direction: column;
    gap: 1rem;
  }
  .navbar .navbar-nav .dropdown-menu {
    position: absolute;
    padding: 0 0.5rem 1rem;
    border-radius: 0;
    -moz-column-count: 2;
         column-count: 2;
    border: 0;
    margin-top: 0;
    box-shadow: 0 0 9px rgba(91, 90, 90, 0.4);
    border-radius: 0 0 10px 10px;
  }
  .testimonial .arrow_right,
  .testimonial .arrow_left {
    position: absolute;
  }
}
@media (max-width: 1200px) {
  .navbar .navbar-nav .dropdown-menu {
    position: static;
    -moz-column-count: 1;
         column-count: 1;
  }
  header .bottom-nav {
    background: #ffffff;
  }
  header .bottom-nav .navbar-nav .nav-link {
    color: #000000;
  }
  .about-school .img-about {
    margin: auto;
    display: block;
    margin-bottom: 1rem;
  }
  .academic_brilliance #achieving_brilliance .carousel-control-prev,
  .academic_brilliance #achieving_brilliance .carousel-control-next {
    position: static;
    display: inline;
    border: 1px solid #00186e;
    margin-left: 1rem;
  }
  .owl-theme .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  header .container {
    align-items: center !important;
  }
  header .container .admission-btn {
    display: none;
  }
  header .container .navbar-brand {
    width: auto;
    order: 0;
  }
  header .container .navbar-brand .main-logo {
    width: auto;
  }
  header .container .navbar-brand .logo-text {
    width: 70%;
  }
  header .container .navbar-toggler {
    order: 1;
  }
  header .container .top-nav {
    flex-direction: column;
  }
  header .container .top-link {
    order: 3;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  header .container .bottom-nav {
    order: 2;
  }
  #carouselExampleCaptions .carousel-inner .carousel-caption {
    bottom: 2rem !important;
    padding: 0.5rem;
  }
  #carouselExampleCaptions .carousel-inner .carousel-caption h5 {
    font-size: 0.875rem;
    width: 100%;
  }
}
.bottom-nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

/* Manadatory disclosure page */
.mandatory {
  padding: 8rem 0;
  overflow-x: hidden;
}
.mandatory button {
  padding: 1rem 0;
  margin: 1rem 0;
}
.mandatory .nav-pills .nav-link {
  color: #000;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.19);
  transition: 0.5s all;
  padding: 0.5rem 2rem;
  border: 1px solid #ccc;
  margin: 5px;
  width: 100%;
}
.mandatory .nav-pills .active {
  color: #fff;
  background-color: #055995;
}
.mandatory .tab-content {
  box-shadow: 0 0 10px #b8b8b8;
  margin-right: 10px;
  border-radius: 10px;
  padding: 15px;
}
.mandatory .table {
  border: 1px solid #ccc;
}
.mandatory .table a {
  text-decoration: none;
  color: #055995;
  font-weight: bolder;
  min-width: 150px;
  display: block;
}
.mandatory iframe {
  width: 100%;
  height: 100vh;
}

table a {
  text-decoration: none;
  color: #055995;
  font-weight: bolder;
}

/* Our Campus Page */
.our-campus {
  background: url("../images/body-bg.png") no-repeat;
  background-position: top right;
}
.our-campus h1 {
  color: #055995;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  margin: 2.8rem 0;
  padding-top: 4rem;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  animation: text-animation 0.7s ease-in-out;
  text-transform: uppercase;
}
.our-campus h4 {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.our-campus .owl-carousel {
  padding-left: 10px;
  padding-right: 10px;
}
.our-campus .owl-carousel .item .shadow-img {
  margin: 10px;
}
.our-campus .owl-carousel .item img {
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
  border: 1.5px solid #055995;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  width: auto;
}
.our-campus h5 {
  color: #055995;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.our-campus .quote {
  transform: rotate(180deg);
}

/*History page*/
.history {
  background: url("../images/body-bg.png") no-repeat;
  background-position: top right;
}
.history h1 {
  color: #055995;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  margin: 2.8rem 0;
  padding-top: 4rem;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  animation: text-animation 0.7s ease-in-out;
  text-transform: uppercase;
}

/*vission-mission-core*/
.vission-mission-core {
  background: url("../images/body-bg.png") no-repeat;
  background-position: top right;
}
.vission-mission-core h1 {
  color: #055995;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  margin: 2.8rem 0;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  animation: text-animation 0.7s ease-in-out;
  text-transform: uppercase;
}
.vission-mission-core h2 {
  text-align: center;
  font-weight: 600;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  padding: 2rem 0;
  color: #055995;
}
.vission-mission-core p {
  font-size: 1.3rem;
}
.vission-mission-core img {
  border-radius: 20px;
}
.vission-mission-core ul li, .vission-mission-core ol li {
  font-size: 1.2rem;
  padding: 0.6rem 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.vission-mission-core ul li img, .vission-mission-core ol li img {
  margin-top: 3px;
  width: 20px;
}

/* principal's message */
.principal-message {
  background: url("../images/body-bg.png") no-repeat;
  background-position: top right;
}
.principal-message h1 {
  color: #055995;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  margin: 2.8rem 0;
  padding-top: 4rem;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  animation: text-animation 0.7s ease-in-out;
  text-transform: uppercase;
}
.principal-message h5 {
  color: #055995;
  font-weight: bold;
}
.principal-message .principal {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-radius: 20px;
}
.principal-message .quote {
  transform: rotate(180deg);
}

/* Faculty Page */
.faculty h1 {
  color: #055995;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  margin: 2.8rem 0;
  padding-top: 4rem;
  text-align: center;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  animation: text-animation 0.7s ease-in-out;
  text-transform: uppercase;
}
.faculty .staff-list .nav-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
}
.faculty .quote {
  transform: rotate(180deg);
}

.gallery-filter .gallery-item {
  display: none;
}

.gallery-filter .gallery-item.show {
  display: block;
}

.gallery-filter .filter-btn-group {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-bottom: 1rem;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.9375rem;
  border: 0.5px solid #3e4f8a;
  background: #f2f5ff;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-filter .filter-btn {
  border-radius: 0.625rem;
  background: #ffffff;
  color: #055995;
  box-shadow: 0px 4px 4px 0px rgba(0, 14, 136, 0.15);
  transition: 0.5s all;
  padding: 0.5rem 2rem;
  font-size: 16px;
}

.gallery-filter .filter-btn.active {
  background: #055995;
  color: #ffffff;
}

.gallery-filter .gallery-item .shadow-img {
  margin: 0.75rem 0;
  width: 100%;
}

.videos h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

#main-slider .owl-item .item .main-slider-box {
  padding: 2rem 0;
}

#main-slider .owl-item.center .item .main-slider-box .main-slider-box-para {
  color: rgba(34, 34, 34, 0.5);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

#main-slider .owl-item.center .item .main-slider-box .main-slider-box-heading {
  color: #222;
  font-size: 32px;
  font-weight: 700;
  padding-bottom: 5px;
  text-align: center;
}

@media (min-width: 1200px) {
  #main-slider .owl-item .item .main-slider-box .main-slider-box-heading, #main-slider .owl-item .item .main-slider-box .main-slider-box-para {
    display: none;
  }
  #main-slider .owl-item.center .item .main-slider-box .main-slider-box-heading, #main-slider .owl-item.center .item .main-slider-box .main-slider-box-para {
    display: block;
    width: 197%;
    margin-left: -49%;
  }
  #main-slider .owl-item.cloned .item .main-slider-box-img, #main-slider .owl-item:not(.center) .item .main-slider-box-img, #main-slider .owl-item:not(.active) .item .main-slider-box-img {
    transform: scale(0.8);
    position: relative;
    /* right: 0rem; */
    right: -2rem;
    top: 5rem;
    border: 3px solid #fcee21;
  }
  #main-slider .owl-item.cloned.center.active .item .main-slider-box-img {
    right: 0;
    top: 0;
  }
  #main-slider .owl-item .item .main-slider-box-img {
    width: 500px;
  }
  #main-slider .owl-item.active:not(.center) .item .main-slider-box-img {
    transform: scale(0.8);
    position: relative;
    left: -2rem;
    top: 5rem;
    border: 3px solid #fc2f10;
  }
  #main-slider .owl-item.center .item .main-slider-box-img {
    transform: scale(1.1);
    z-index: 9;
    position: relative;
    margin: 40px 0;
    border: 3px solid #1a9ad6;
  }
  #main-slider .owl-item.center {
    z-index: 9;
  }
}
@media (min-width: 1400px) {
  #main-slider .owl-item .item .main-slider-box-img {
    width: 550px;
  }
  .about-school .about-img-wrapper .about-home-slider-icon2 {
    bottom: -5%;
    left: -6%;
  }
  #main-slider .owl-item.cloned .item .main-slider-box-img, #main-slider .owl-item:not(.center) .item .main-slider-box-img, #main-slider .owl-item:not(.active) .item .main-slider-box-img {
    right: -4rem;
  }
  #main-slider .owl-item.active:not(.center) .item .main-slider-box-img {
    left: -4rem;
  }
}
@media (max-width: 1200px) {
  #main-slider .owl-item.center .item .main-slider-box-img {
    margin: 20px 0;
    border: 3px solid #1a9ad6;
  }
  #main-slider .owl-item .item .main-slider-box {
    padding: 0rem 0;
  }
}
@media (max-width: 1200px) {
  header .navbar > .container {
    max-height: 100vh;
    overflow-y: auto;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  header .container .top-link.navbar-collapse {
    margin-bottom: 1.2rem;
  }
  header .container .admission-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: #e04444;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
  }
  header .container .navbar-brand {
    display: flex;
    text-align: center;
    width: 225px;
  }
  header .container .bottom-nav {
    position: static;
    margin: 0;
  }
  header .container .bottom-nav .navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: #353535;
    padding: 3px 0;
  }
  main {
    margin-top: 105px;
  }
  #carouselExampleCaptions {
    margin-top: 0;
  }
  #carouselExampleCaptions .carousel-inner .carousel-caption h5 {
    font-size: 2rem;
  }
  .about-school {
    padding-top: 3rem;
  }
  .about-school .row {
    align-items: center;
  }
  .highlight {
    padding: 3rem 0;
  }
  .highlight .card-text {
    margin-bottom: 0;
    font-size: 14px;
  }
  .academic_brilliance #achieving_brilliance .card figure figcaption h4 {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: normal;
  }
  .academic_brilliance #achieving_brilliance .card figure figcaption p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }
  .our-campus h1,
  .vission-mission-core h1,
  .faculty h1,
  .history h1,
  .principal-message h1 {
    font-size: 28px;
    margin: 1rem 0;
    padding-top: 2rem;
    text-transform: uppercase;
  }
  .our-campus p,
  .vission-mission-core p,
  .faculty p,
  .history p,
  .principal-message p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .vission-mission-core h2 {
    padding: 10px 0;
  }
  .shadow-img {
    margin: 10px 0;
  }
  .box-shadow-div ul {
    padding: 0;
  }
  header .bottom-nav .drop-link li a {
    font-size: 16px;
    font-weight: 500;
    padding: 2px 2px 2px 7px;
    color: #1a9ad6;
  }
  header .bottom-nav .drop-link a:before,
  header .bottom-nav .drop-link a span:before,
  header .bottom-nav .drop-link a:after,
  header .bottom-nav .drop-link a span:after {
    display: none;
  }
  .mandatory {
    padding: 2rem 0;
  }
  .mandatory h2 {
    font-size: 24px;
  }
  .slider .carousel-item h2 {
    width: 100vw;
    transform: translate(-35%, -40%);
  }
  .gallery-filter .filter-btn {
    width: 32%;
  }
  .testimonial .nav-pills {
    width: auto;
  }
}
@media (max-width: 991px) {
  #carouselExampleCaptions .carousel-inner .carousel-caption h5 {
    font-size: 24px;
  }
  .about-school {
    padding-top: 4rem;
  }
  .highlight {
    padding: 2rem 0;
  }
  .highlight h2 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
  .facilities {
    padding: 2rem 0 1rem;
  }
  .facilities figure {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
  .facilities figure figcaption h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
  }
  .academic_brilliance #achieving_brilliance .card .card-body h2 {
    font-size: 24px;
    text-align: center;
  }
  .academic_brilliance #achieving_brilliance .card .card-body p {
    font-size: 16px;
    text-align: center;
  }
  .academic_brilliance {
    padding-block: 2rem;
    text-align: center;
  }
  .academic_brilliance h3 {
    font-size: 20px;
  }
  .news_announcement h2,
  .academic_brilliance h2,
  .testimonial h2, .videos h2 {
    font-size: 28px;
  }
  .news_announcement .card {
    border-radius: 15px;
  }
  .vission-mission-core ul li {
    font-size: 16px;
    display: flex;
    align-items: self-start;
    gap: 10px;
  }
  .footer .web-link li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #carouselExampleCaptions .carousel-inner img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 330px;
  }
  #carouselExampleCaptions .carousel-inner .carousel-caption h5 {
    font-size: 20px;
  }
  .about-school {
    text-align: center;
    padding-bottom: 2rem;
  }
  .about-school p {
    margin-bottom: 10px;
  }
  .about-school .btn {
    margin: 0 auto;
  }
  .testimonial .tab-content .tab-pane .item {
    padding-block: 1rem;
    margin-bottom: 10px;
  }
  .our-campus p {
    text-align: center;
  }
  .slider {
    min-height: 825px;
  }
  .videos {
    overflow: visible;
  }
  .videos .row {
    gap: 20px;
  }
  .footer .web-link li a {
    font-size: 14px;
  }
  .gallery-filter .filter-btn {
    width: 48%;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  .slider .carousel {
    --carousel-height: auto;
    --carousel-width: 547px;
    --carousel-item-height: auto;
    --carousel-item-width: auto;
  }
  .slider .carousel-item h2 {
    width: 100vw;
    transform: translate(-25%, -40%);
  }
  .slider .carousel-item {
    height: auto !important;
    width: auto !important;
    transform: translate(0px, 0px) !important;
    position: static;
  }
  .slider .carousel-item h2 {
    width: 100vw;
    transform: translate(0%, 0%);
  }
  .slider .carousel-control-previous {
    left: 0;
    z-index: 9;
  }
  .slider .carousel-control-nexts {
    right: 0%;
    z-index: 9;
  }
}
@media (max-width: 500px) {
  header .container .navbar-brand {
    display: flex;
    text-align: center;
    margin-right: 0;
    gap: 3px;
    width: auto;
  }
  header .container .navbar-brand .main-logo {
    width: 50px;
  }
  header .container .navbar-brand .logo-text-box .logo-text-up {
    font-size: 9px;
    border-bottom: 1px solid #fff;
  }
  header .container .navbar-brand .logo-text-box .logo-text-down {
    font-size: 8px;
  }
  main {
    margin-top: 70px;
  }
  .slider .carousel-item h2 {
    width: 85vw;
    transform: translate(0%, -40%);
  }
  .slider .carousel-item p {
    font-size: 1rem;
  }
  .slider {
    min-height: 800px;
  }
  ul {
    padding-left: 0;
  }
}
@keyframes beat {
  to {
    transform: scale(1.4);
  }
}
@keyframes swing {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(10deg);
  }
  to {
    transform: rotate(-5deg);
  }
}
@media (max-width: 576px) {
  .gallery-filter .filter-btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */