@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #000;
}

a {
  text-decoration: none;
}

.fa-phone {
  transform: rotate(90deg);
}

.topbar ul {
  justify-content: end;
  margin-bottom: 0px;
  display: flex;
  gap: 15px;
  padding: 0px;
  line-height: normal;
  color: #fff;
}

.topbar ul li i {
  margin-right: 10px;
}

.topbar ul li a {
  color: #fff;
}

.topbar ul li {
  list-style: none;
}

.logo img {
  max-width: 550px;
}

/* animation menu hamburger */
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 1023px) {
  .menu-btn {
    display: flex;
  }
}

.menu-btn .menu-btn__lines,
.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #fff;
  transition: all 0.4s ease-in-out;
}

.menu-btn .menu-btn__lines::before,
.menu-btn .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.menu-btn .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.menu-btn .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

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

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #fff;
}

.expand-btn:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: " \25BE";
  opacity: 0.75;
  transform: translateY(-50%) rotate(0);
  transition: 0.25s;
}

.expand-btn.open {
  color: #ff5722;
}

.expand-btn.open:after {
  transform: translateY(-50%) rotate(180deg);
}

/* navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}

@media (max-width: 1023px) {
  .navbar {
    padding: 10px 20px;
  }
}

.navbar.sticky {
  position: sticky;
  z-index: 999;
  top: 0;
}

.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar .menu-items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar {
  width: 6px;
  background-color: #222;
}

.navbar .menu-items::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}

@media (max-width: 1023px) {
  .navbar .menu-items {
    scrollbar-gutter: stable;
    position: fixed;
    top: 65px;
    left: 0;
    display: block;
    width: 350px;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 100px;
    padding-right: 10px;
    background: #171b27;
    overflow-y: auto;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
  }

  .navbar .menu-items.open {
    transform: translateY(0);
  }
}

.navbar .menu-items>li>.menu-item {
  padding: 1.5rem 1rem;
}

@media (max-width: 1023px) {
  .navbar .menu-items>li>.menu-item {
    padding: 1rem 1rem;
  }
}

.navbar .menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1023px) {
  .navbar .menu-items li a {
    padding: 10px 1rem;
  }
}

.navbar .dropdown {
  position: relative;
}

@media (min-width: 1024px) {
  .navbar .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .navbar .dropdown:hover>.expand-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}

@media (min-width: 1024px) {

  .navbar .dropdown .dropdown-right .expand-btn:after,
  .navbar .dropdown .dropdown-left .expand-btn:after {
    right: 0.625rem;
  }
}

@media (min-width: 1024px) {
  .navbar .dropdown-menu li a:hover {
    color: #a5d5ff;
  }

  .navbar .dropdown-menu li a {
    color: #fff;
  }

  .navbar .dropdown-menu {
    position: absolute;
    top: 65px;
    right: 0;
    display: block;
    left: 0;
    width: 190px;
    padding: 5px 0;
    background: #004a89;
    border-radius: 0 0 5px 5px;
    opacity: 0;
    box-shadow: 0 20px 50px 0 #000;
    visibility: hidden;
    transition: all 0.4s ease;
  }
}

@media (max-width: 1023px) {
  .navbar .dropdown-menu {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    padding-left: 1rem;
    overflow: hidden;
  }
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

@media (max-width: 1023px) {
  .navbar .menu-right {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-right:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}

.navbar .menu-left {
  top: 0;
  left: -100%;
}

@media (max-width: 1023px) {
  .navbar .menu-left {
    top: 0;
    left: 0;
    width: 100%;
    padding-left: 1.5rem;
  }

  .navbar .menu-left:before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 20px;
    width: 1px;
    height: calc(100% - 25px);
    background-color: #000;
    transform: translateY(-50%);
  }
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 14px;
  transition: 0.25s;
}

.navbar .menu-item:hover {
  color: #004682;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #000;
}

@media (min-width: 1024px) {
  .navbar .dropdownMega {
    position: inherit !important;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 650px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu {
    position: relative;
    display: none;
    padding-left: 0;
  }
}

.navbar .mega-menu .content {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  background: #171b27;
  -webkit-box-shadow: 0 20px 50px 0 #000;
  box-shadow: 0 20px 50px 0 #000;
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content {
    grid-template-columns: auto;
  }
}

@media (min-width: 1024px) {
  .navbar .mega-menu .content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 1023px) {
  .navbar .mega-menu .content .col {
    padding: 0;
    width: 100%;
  }
}

.navbar .category .content .col .img-wrapper {
  margin: 1rem 0;
}

.navbar .blog .content {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 1024px) {
  .navbar .blog .content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.navbar .blog .content .col .img-wrapper {
  margin-bottom: 1rem;
}

.navbar .blog .content .col .menu-title {
  font-weight: normal;
}

.navbar .blog .content .col .menu-title a {
  transition: 0.25s;
}

.navbar .blog .content .col .menu-title a:hover {
  color: #ff5722;
}

.navbar .content .col {
  display: flex;
  flex-direction: column;
}

.navbar .content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.navbar .content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.navbar .content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.navbar .content .col img {
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.navbar .content .col .menu-title {
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.125rem;
  border-left: 2px solid #ff5722;
  padding-left: 0.625rem;
}

@media (max-width: 1023px) {
  .navbar .content .col .menu-title {
    font-size: 0.875rem;
  }
}

.navbar .content .col p {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.813rem;
  line-height: 1.6rem;
  color: #fff;
}

.navbar .content .col .mega-links {
  padding-left: 1rem;
  border-left: 1px solid #3c3c3c;
}

@media (max-width: 1023px) {
  .navbar .content .col .mega-links {
    border-left: 0;
    padding-left: 0;
  }

  .navbar .content .col .mega-links li {
    margin: 0;
  }

  .navbar .content .col .mega-links li a {
    padding: 0 0.5rem;
  }
}

.navbar .content .col .mega-links li {
  margin: 1rem 0;
}

.navbar .content .col .mega-links li a {
  padding: 0;
}

@media (max-width: 1023px) {
  .overflow {
    overflow: hidden;
  }
}

@media (max-width: 1023px) {
  .overlay {
    position: fixed;
    z-index: 500;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    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.overlay--active {
    opacity: 1;
    visibility: visible;
  }
}

/* marquee div container */
.marquee {
  font-size: 16px;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  height: 40px;
  overflow: hidden;
  background-color: #003f9a;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* nested div inside the container */
.marquee div {
  display: block;
  width: 200%;
  position: absolute;
  overflow: hidden;
  animation: marquee 12s linear infinite;
}

/* span with text */
.marquee span {
  float: left;
  width: 50%;
}

/* keyframe */
@keyframes marquee {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.announce_ment {
  background-color: #ffd427;
  padding: 8px 0;
  font-size: 18px;
  color: black;
  font-weight: 600;
  position: relative;
}

.announce_ment:after {
  content: "";
  content: "";
  position: absolute;
  right: -62px;
  height: 40px;
  width: 63px;
  background-color: #ffd427;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  top: 0px;
  z-index: 10;
}

.slider_hero {
  margin-top: -104px;
  position: relative;
}

.slide_image:after {
  position: absolute;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #0000009c;
  content: "";
}

.slide_image {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner_image_cnt {
  position: relative;
  z-index: 9;
}

.inner_image_cnt p {
  color: white;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}

.inner_image_cnt h1 {
  font-size: 42px;
  color: white;
  font-weight: 600;
}

.box_all_links a {
  display: block;
  text-align: center;
  color: white;
  position: relative;
  font-size: 16px;
  transition: 0.6s;
  padding: 5px 0px;

}

.box_all_links ul li {
  margin: 15px 0;
  list-style: none;
}

.icon_top {
  width: 96px;
  height: 96px;
  border-radius: 100%;
  background-color: white;
  margin: auto;
  margin-top: -100px;
  z-index: 99;
  position: relative;
  border: 4 px solid #855ca6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box_all_links h2 {
  font-size: 14px;
  color: white;
  FONT-WEIGHT: 700;
  margin-top: 15px;
  TEXT-TRANSFORM: uppercase;
}

.box_all_links {
  padding: 35px 15px 15px;
}

.box_all_links:nth-child(1) {
  background-color: #855ca6;
}

.yellow.box_all_links {
  background-color: #ea9025;
  height: 100%;
}

.sky.box_all_links {
  background-color: #25b2ea;
  height: 100%;
}

.red.box_all_links {
  background-color: #b30000;
  height: 100%;
}

.all_menu_btn {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-color: #003f9a;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  /* position: absolute; */
  right: 0px;
  top: -40px;
  align-items: center;
}


.all_menu_btn span {

  font-size: 10px;
  font-weight: 600;
  margin-top: 5px;
}

.about_school {
  padding: 60px 0;
  background-color: #003f9a;
  position: relative;
  overflow: hidden;
}

.global_heading h3 {
  font-size: 22px;
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
}

.global_heading h4 {
  font-size: 34px;
  color: #003f9a;
  font-weight: 600;
}

.about_school .global_heading h4 {
  font-size: 38px;
  color: white;
  font-weight: 600;
}

p {
  color: #c7c6c6;
  font-size: 16px !important;
}

.about_school .global_heading h3 {
  color: white;
  font-size: 22px;
}

.about_school img {
  border-radius: 10px;
}

.visit-our-website i {
  margin-left: 15px;
  height: 45px;
  width: 45px;
  border-radius: 100px;
  background: white;
  color: black;
  text-align: center;
  line-height: 45px;
}

.visit-our-website {
  padding: 0px 0px 0px 30px;
  background: var(--Secondary);
  border-radius: 160px;
  color: var(--White);
  position: relative;
  transition: all 0.2s ease;
  border-radius: 100px;
  display: inline-block;
  overflow: hidden;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.15px;
  text-transform: capitalize;
  border: 1px solid var(--Secondary);
  display: inline-block;
  background-color: #ffd427;
}

.visit-our-website:hover i {
  transform: rotate(0deg);
  transition: all 0.3s ease;
  background: #eae6b3;
  color: var(--Secondary);
}

.visit-our-website:hover {
  color: var(--Secondary);
  transition: all 0.3s ease;
}

.visit-our-website:hover:before {
  width: 100%;
  color: white;
  background: #003581;
  transition: all 0.4s ease;
}

.visit-our-website span {

  position: relative;
  z-index: 999;
}

.visit-our-website:hover span {
  color: white;
}

.count-area {
  position: relative;
  text-align: center;
  color: #fff;
}

.count-area-content {
  margin-top: 15px;
  text-align: center;
  margin-bottom: 15px;
}

.count-area-content:hover .count-icon i {
  color: #efdc04;
  transition: 0.6s;
}

.count-area i {
  font-size: 38px;
  transition: 0.6s;
}

.count-digit {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
}

.count-title {
  font-size: 16px;
}

.count-area {
  background-color: #003581;
  border-radius: 10px;
}

.school_badge {
  position: absolute;
  left: 0px;
  top: 0px;
}

.principal_msg {
  padding: 60px 0;
  overflow: hidden;
}

.principal_msg img {
  border-radius: 15px;
}

.principal_msg p {
  color: #3a3a3a;
  font-weight: 600;
}

.right_msg {
  padding-left: 60px;
}

/** mayo-advantage **/
.mayo-advantage {
  width: 100%;
  display: block;
  margin: 10px 0;
      background-attachment: fixed!important;
    background: linear-gradient(180deg, #e2e2e2, #e8e8e8b3), url(../images/bg-fac.JPG) no-repeat center top;
  background-size: cover;
  padding: 60px 0 0 0;
  overflow: hidden;
  position: relative;
}

/* .mayo-advantage:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(234, 234, 234, 0.7);
} */
.mayo-advantage .mayo-imag {
  width: 100%;
  display: block;
  position: relative;
  bottom: -75px;
}

.advnt-iner {
  position: relative;
  width: 100%;
  display: block;
}

.advnt-iner ul li {
  width: 100px;
  height: 100px;
  background: #fff url("../images/img-c1.png") no-repeat center center;
  border: 6px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  bottom: 3%;
  background-size: 70px;
  left: -2%;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;

}

.advnt-iner ul li.active,
.advnt-iner ul li:hover {
  background: #003f9a url("../images/img-c1-hover.png") no-repeat center center;
  background-size: 70px;
}

.advnt-iner ul li .img-1 img {
  padding: 14px;
}

.img-1 i{ color: #003581;}
.advnt-iner ul li.active .img-1 i{color: white; }
.advnt-iner ul li:hover .img-1 i{ color: white;}

.img-1{ font-size: 24px!important;}

.advnt-iner ul li.nth-2 {
  bottom: 32%;
  background: #fff url("../images/img-c2.png") no-repeat center center;
  background-size: 60px;
  left: 40px;
}

.advnt-iner ul li.nth-2.active,
.advnt-iner ul li.nth-2:hover {
  background: #003f9a url("../images/img-c2-hover.png") no-repeat center center;
  background-size: 60px;
}

.advnt-iner ul li.nth-3 {
  bottom: 55%;
  background: #fff url("../images/img-c3.png") no-repeat center center;
  background-size: 60px;
  left: 158px;
}

.advnt-iner ul li.nth-3.active,
.advnt-iner ul li.nth-3:hover {
  background: #003f9a url("../images/img-c3-hover.png") no-repeat center center;
  background-size: 60px;
}

.advnt-iner ul li.nth-4 {
  bottom: 70%;
  background: #fff url("../images/img-c4.png") no-repeat center center;
  background-size: 68px;
  left: 310px;
}

.advnt-iner ul li.nth-4.active,
.advnt-iner ul li.nth-4:hover {
  background: #003f9a url("../images/img-c4-hover.png") no-repeat center center;
  background-size: 68px;
}

.advnt-iner ul li.nth-5 {
  bottom: 76%;
  background: #fff url("../images/img-c5.png") no-repeat center center;
  left: 485px;
  background-size: 56px;
}

.advnt-iner ul li.nth-5.active,
.advnt-iner ul li.nth-5:hover {
  background: #003f9a url("../images/img-c5-hover.png") no-repeat center center;
  background-size: 56px;
}

.advnt-iner ul li.nth-6 {
  bottom: 68%;
  background: #fff url("../images/img-c6.png") no-repeat center center;
  left: 665px;
  background-size: 60px;
}

.advnt-iner ul li.nth-6.active,
.advnt-iner ul li.nth-6:hover {
  background: #003f9a url("../images/img-c6-hover.png") no-repeat center center;
  background-size: 60px;
}

.advnt-iner ul li.nth-7 {
  bottom: 50%;
  background: #fff url("../images/img-c7.png") no-repeat center center;
  left: 812px;
  background-size: 62px;
}

.advnt-iner ul li.nth-7.active,
.advnt-iner ul li.nth-7:hover {
  background: #003f9a url("../images/img-c7-hover.png") no-repeat center center;
  background-size: 62px;
}

.advnt-iner ul li.nth-8 {
  bottom: 28%;
  background: #fff url("../images/img-c8.png") no-repeat center center;
  background-size: 70px;
  left: 910px;
}

.advnt-iner ul li.nth-8.active,
.advnt-iner ul li.nth-8:hover {
  background: #003f9a url("../images/img-c8-hover.png") no-repeat center center;
  background-size: 70px;
}

.visit-our-website:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: red;
  height: 100%;
  width: 0px;
  transition: all 0.4s ease;
  z-index: 1;
}

.advnt-iner ul li.nth-9 {
  bottom: 3%;
  left: 967px;
  background: #fff url("../images/img-c9.png") no-repeat center center;
  background-size: 68px;
}

.advnt-iner ul li.nth-9.active,
.advnt-iner ul li.nth-9:hover {
  background: #003f9a url("../images/img-c9-hover.png") no-repeat center center;
  background-size: 70px;
}

/* .advnt-iner ul li .img-1 {
  opacity: 0;
  visibility: hidden;
} */
.advnt-iner .ovly-detls {
  width: 300px;
  display: block;
  text-align: center;
  padding: 25px 10px;
  background: #fff;
  min-height: 128px;
  box-shadow: 0px 0px 22px 8px rgba(0, 0, 0, 0.09);
  position: absolute;
  top: -180%;

  border-radius: 5px;
  z-index: 2;
  left: -93px;
  opacity: 0;
  visibility: hidden;
}

.advnt-iner li.active .ovly-detls {
  opacity: 1;
  visibility: visible;
}

.advnt-iner .ovly-detls::after {
  content: "";
  border-bottom: 8px solid transparent;
  width: 8px;
  height: 8px;
  right: 0;
  bottom: -16px;
  position: absolute;
  border-top: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  left: 0;
  margin: 0 auto;
}

.advnt-iner .ovly-detls h4 {
  font-size: 18px;
  color: #000;
  line-height: 100%;
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

.advnt-iner .ovly-detls p {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-weight: 400;
}

@media (max-width: 375px) {
  .advnt-iner .ovly-detls {
    width: 215px;
    text-align: left;
    padding: 20px 10px;
    top: 0;
    left: 110%;
    opacity: 1;
    visibility: visible;
  }

  .advnt-iner .ovly-detls {
    width: 215px;
    min-height: 202px;
  }

  .advnt-iner ul li {
    margin-bottom: 140px;
  }

  .clndr-sld .owl-stage-outer {
    width: 202px;
  }

  .clnder-info .info-clndr {
    width: 280px;
  }

  .clnder-info.active .info-clndr {
    top: 105px;
  }

  .homePoup .modal-dialog {
    margin-left: 25px;
  }

  .home-slider .clndr-sld .owl-prev {
    left: 203px;
  }

  .advnt-iner ul li {
    margin-bottom: 140px;
  }

  .advnt-iner .ovly-detls {
    width: 215px;
    min-height: 202px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .advnt-iner .ovly-detls h4 {
    font-size: 15px;
    line-height: 18px;
  }

  .mayo-advantage .mayo-imag {
    display: none;
  }

  .advnt-iner ul {
    display: block;
    width: 100%;
    text-align: center;
    position: static;
    margin: 0 auto;
    margin-left: 0;
  }

  .advnt-iner ul li {
    position: relative;
    bottom: inherit !important;
    left: inherit !important;
    flex-direction: column;
    display: block;
    margin-right: 0;
    margin-bottom: 85px;
    width: 70px;
    height: 70px;
    background-size: 65% !important;
    border: 2px solid #fff;
  }

  .advnt-iner .ovly-detls {
    width: 410px;
  }
}

footer {
  background-color: #18171d;
  padding: 60px 0 20px;
}

.news_letter {
  border: 1px solid #808080;
  display: flex;
  align-items: center;
  padding: 5px;
}

.news_letter input {
  background-color: transparent;
  border: none;
  width: 65%;
  padding: 10px;
  color: white;
}

.news_letter input:focus {
  outline: none;
}

/* 15 */
.btn-15 {
  background: #06162f;
  border: none;
  z-index: 1;
  color: white !important;
  font-weight: 500;
  /* border-radius: 5px; */
  padding: 0.5rem 2rem;
  position: relative;
  display: inline-block;
}

.btn-15:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #efdc04;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.btn-15:hover {
  color: black !important;
  transition: 0.4s;
}

.btn-15:hover svg path {
  fill: black;
  color: black;
}

.btn-15:hover:after {
  left: 0;
  width: 100%;
}

.btn-15:active {
  top: 2px;
}

.custom-btn {
  font-size: 16px;
  color: #fff;
  border-radius: 0px;
  padding: 10px 30px !important;
  text-align: center;
  font-weight: 500;
  background: #003f9a;
  cursor: pointer;
  transition: all 0.3sease;
  position: relative;
  display: inline-block;
  outline: none;
  overflow: hidden;
}

.top_header {
  padding-bottom: 30px;
  border-bottom: 1px solid #949494;
}

.footer_links h6 {
  color: white;
  font-size: 18px;
}

.footer_links ul li {
  list-style: none;
  margin: 15px 0;
}

.footer_links ul li a {
  color: #8996a0;
  font-size: 16px;
  transition: 0.6s;
}

.mid_footer {
  padding: 40px 0;
  border-bottom: 1px solid #949494;
}

.footer_copyright ul li {
  list-style: none;
}

.footer_copyright p{ margin: 0px!important;}

.footer_copyright ul li a {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: #003f9a;
  color: white;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_copyright ul li a:hover {
  background-color: #efdc04;
  color: #003f9a;
}

.footer_copyright ul {
  display: flex;
  gap: 10px;
}

.footer_copyright {
  padding-top: 20px;
}

.footer_copyright p {
  font-size: 14px !important;
}



.notice_board_box {
  background-color: #E3E3E3;
  padding: 15px;
  border-radius: 10px
}

.notice_board_box h5 {
  font-size: 25px;
  color: #003F9A;
  font-weight: 600;
  margin-bottom: 20px;
}

.activity_post h5 {
  font-size: 25px;
  color: #003F9A;
  font-weight: 600;
  margin-bottom: 20px;
}

.our_gallery {
  padding: 60px 0;
}


.notice_board {
  padding: 60px 0;
  overflow: hidden;
}

.date {
  background-color: #003F9A;
  color: white;
  font-weight: 600;
  padding: 6px 28px;
  border-radius: 5px;
}

.date span {
  font-size: 24px;
  font-weight: 600;
}

.date p {
  font-size: 12px !important;
  margin: 0px;
}


.news_notice {
  padding-top: 0px !important;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #C6C6C6;
  margin-top: 0px !important;
}

.news_tittle {

  font-size: 18px !important;
  color: black;
  font-weight: 600;
  margin: 0px;
}

.news_tittle_subtittle {

  color: #495057;
}

.slide_photos img {


  border-radius: 20px;

}






.activity_post {
  background-color: #E3E3E3;
  padding: 15px;
  border-radius: 20px;
  height: 100%;
}

header.scrolled {
  background-color: white;
  transition: 0.6s;
}

header .black_logo {
  display: none;
}

header.scrolled .white_logo {
  display: none;
}


header.scrolled .black_logo {
  display: block;
}


.yellow.custom-btn {

  background: #FFD427;
  color: black !important;

}

.red.custom-btn {

  background: #b30000;

}

.yellow.custom-btn svg path {
  fill: black;
  color: black;
}

/* .visit-our-website:hover{ background-color: #003581; color: white; transition: 0.6s;} */

.visit-our-website:hover i {
  background-color: #fcd438;
}

.box_all_links a:hover {
  text-decoration: underline;
  margin-left: 10px;
  transition: 0.6s;
  background-color: #ffffff24;
  border-radius: 10px;
}

.announcement.topbar {
  position: relative;
  z-index: 99;

}

.footer_links ul li a:hover {
  color: #ffd427;
  margin-left: 9px;
  transition: 0.6s;
  text-decoration: underline;
}

.our_gallery .gallery-item img {

  border-radius: 15px;
  cursor: pointer;

}

.offcanvas {
  background-color: #022a63;
  z-index: 9999;
}

.top_slide ul li a {

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #084090;
  border-radius: 5px;
  padding: 15px 0px;
  color: white;
  transition: 0.6s;

}

.top_slide ul li a i {
  font-size: 18px;
}

.top_slide ul li a:hover {

  background-color: #ffd427;
  color: #084090;
  transition: 0.6s;
}


.top_slide ul li {
  list-style: none;
}

.top_slide ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.all_menu_new li {
  list-style: none;
}

.all_menu_new li a {
  margin: 10px 0;
  color: white;
  display: block;
  font-weight: 600;
  padding: 7px 5px;
}


.btn-close {
  filter: invert(16);
}

.btn-close:hover {

  box-shadow: none;
}


.advnt-iner ul li .img-1 img {
  padding: 14px;
  width: 80%;
}

.advnt-iner {
  position: relative;
  width: 100%;
  display: block;
}

@media (min-width: 1263px) and (max-width: 2500px) {
  .advnt-iner {
    width: 100%;
    display: block;
    max-width: 1040px;
    margin: 0 auto;
    z-index: 6;
  }
}



.social_icon {
  position: absolute;
  right: 0px;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%);
  z-index: 99;
  width: 42px;
}

.social_icon ul li {
  display: inline-block;
  list-style: none;
  text-align: center;
  margin: 5px 0;
}

.social_icon ul {
  display: flex;
  flex-direction: column;
}

.social_icon i {
  color: white;
  font-size: 22px;
}

.social_icon ul li a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

}

.social_icon ul li a:hover {
  background-color: #b30000;
  color: #003581;
}

.social_icon ul li a:hover i {
  color: white;
}

.social_icon ul {
  position: relative;
}

.social_icon ul:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 200px;
  background-color: white;
  bottom: 146px;
  left: 20px;
}

.social_icon ul:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 269px;
  background-color: white;
  top: 146px;
  left: 20px;
}

.about_all_links {

  position: relative;
  z-index: 99;
}


.notice_slide {
  height: 396px;
}


.breadcrumb_globe:after {

  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000008f;
  top: 0px;
  left: 0px;
  border-radius: 0px 0px 76px 76px;

}

.breadcrumb_globe {
  position: relative;
  padding: 200px 0 145px;
  border-radius: 0px 0px 76px 76px;
}

.iner_bread_crumb_cnt {
  z-index: 99;
  position: relative;
}

.iner_bread_crumb_cnt h1 {
  color: white;
  font-weight: 600;
}

.iner_bread_crumb_cnt ul {
  display: flex;
  gap: 5px;
}

.iner_bread_crumb_cnt ul li {
  list-style: none;
}

.iner_bread_crumb_cnt ul i {
  color: white;
}

.iner_bread_crumb_cnt ul li a {
  color: white;
}

.iner_bread_crumb_cnt ul li a:hover {
  text-decoration: underline;
}

.contact_details {
  padding: 90px 0;
}

.contact_details .contact_tittle {

  display: flex;
  align-items: center;
  gap: 15px;

}

.contact_details .contact_tittle h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0px;
}

.contact_details .contact_tittle i {
  font-size: 32px;
  color: #003f9a;
}

.information_box p {
  color: #3a3a3a;
  font-weight: 500;
  margin-top: 8px;
}


.form_elements {
  background-color: #F3F5FA;
  padding: 20px;
}

.contact_us_form h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.form_elements input {
  width: 100%;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #BBBBBC;
}

.form_elements label {
  font-size: 14px;
  color: #7D7D7D;
  display: block;
}

.login_form_field .form-control {
  padding: 10px;
  border-radius: 15px;
  border: 1px solid #bdbdbd;
  appearance: auto;
}

.login_form_field h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.login_form_field .form-control:focus {
  box-shadow: none;
  border: 1px solid #003f9a;
}

.global_pages {
  padding: 45px 0;
}

.global_pages h2 {
  font-weight: 600;
  font-size: 28px;
}

.global_pages h3 {
  font-weight: 600;
  font-size: 22px;
  margin: 25px 0px 5px;
}

.global_pages p {
  color: #525252;
  line-height: 30px;
}

.in_this_sec {
  background-color: #003f9a;
  padding: 50px 20px;
  margin-top: -90px;
  z-index: 99;
  position: relative;
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  position: sticky;
  top: 105px;
}

.in_this_sec h3 {
  color: white;
  font-weight: 600;
  font-size: 24px;
  padding: 10px 10px;
}


.in_this_sec ul li {
  list-style: none;
}

.in_this_sec ul li a {
  color: white;
  font-size: 16px;
  padding: 10px 10px;
  display: block;
  font-weight: 600;
}

.in_this_sec ul li a.active {
  background-color: white;
  color: #003f9a;
}

.in_this_sec ul li a:hover {
  background-color: white;
  color: #003f9a;
}

.left_content img {
  border-radius: 15px;
}



.img_facility {
  overflow: hidden;
  border-radius: 15px;
}

.img_facility img {
  height: 230px;
  transition: 0.6s;
}

.facilities_box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.facilities_box h3 {
  position: absolute;
  bottom: 0px;
  padding: 10px;
  background-color: #003f9a;
  color: white;
  margin: 0px;
  font-size: 16px;
  width: 100%;
  transition: 0.6s;
  text-align: center;
}

.facilities_box:hover img {
  transform: scale(1.2);
  transition: 0.6s;
}

.left_content ol {
  padding: 0px;
  padding-left: 15px;
}

.facilities_box:hover h3 {
  bottom: 25px;
  transition: 0.6s;
}

.left_content ol li {
  color: #525252;
  padding: 0px;
  margin-bottom: 15px;
  font-size: 16px;
}

.left_content table h5 {
  margin: 0px;
  font-size: 16px;
  font-weight: bold;
}


/* Menu item*/
#sidebar-container .list-group a {
  height: 50px;
  color: white;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
  height: 45px;
  padding-left: 30px;
}

.sidebar-submenu {
  font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
  background-color: #333;
  height: 35px;
}

.sidebar-separator {
  background-color: #333;
  height: 25px;
}

.logo-separator {
  background-color: #333;
  height: 60px;
}

/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
  content: " \f0d7";
  font-family: FontAwesome;
  display: inline;
  text-align: right;
  padding-left: 10px;
}

/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
  content: " \f0da";
  font-family: FontAwesome;
  display: inline;
  text-align: right;
  padding-left: 10px;
}

.sidebar-submenu a {
  margin: 0px !important;
  background-color: #084090 !important;
}

.multi_menu {
  position: relative;
}

.multi_menu:after {
  content: '\f078';
  font-family: "FontAwesome";
  font-weight: 900;
  margin-left: 8px;
  right: 7px;
  position: absolute;
  top: 6px;

}

.all_menu_new a:hover {

  background-color: #ffd427;
  color: #084090;

}

.sidebar-submenu .list-group-item:hover {

  background-color: #ffd427 !important;
  color: #084090 !important;

}

/* 14-4-2025 */
.scrollToTop i {
  color: var(--White);
}

.scrollToTop:hover {
  box-shadow: inset 0 0 0 1px #003f9a;
  background: #ffd427;
}

.scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  display: block;
  box-shadow: inset 0 0 0 1px #ffd427;
  z-index: 100;
  border-radius: 30px;
  transition: 300ms linear;
  background: var(--Secondary);
}

#animated-thumbnails-gallery a {
  display: inline-block;
  
}

#animated-thumbnails-gallery img {
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.left_content input.form-control:focus {
  box-shadow: none;
}

.other_documents a {
  display: block;
  color: #143d79;
  font-weight: 700;
}

.other_documents a:hover {
  background-color: #ffd427;
  color: black;
}

.btngroups-flex {
  display: flex;
  gap: 10px;
}

.btngroups-flex button.custom-btn.btn-15 {
  width: 100%;
}

.custom-btn.btn-15.btn-primary {
  background: #003f9a !important;
  border: 2px solid #003f9a !important;

  color: #fff;
}

.custom-btn.btn-15.btn-success {
  background: #ffd427 !important;
  color: #000 !important;
  border: 2px solid #ffd427 !important;

}

.custom-btn.btn-15.btn-secondary {
  background: #b30000 !important;
  border: 2px solid #b30000;

}

.custom-btn.btn-15.btn-primary:hover {
  background: #fff !important;
  border: 2px solid #003f9a !important;
  color: #fff;
}

.custom-btn.btn-15.btn-success:hover {
  background: #fff !important;
  border: 2px solid #ffd427 !important;
  color: #000;
}

.custom-btn.btn-15.btn-secondary:hover {
  background: #fff !important;
  border: 2px solid #b30000;
}

.custom-btn.btn-15.btn-secondary::after,
.custom-btn.btn-15.btn-success::after,
.custom-btn.btn-15.btn-primary::after {
  display: none;

}

.contact_details_newform {
  padding: 90px 0;
}

.contact_details_newform .list-unstyled li {
  margin-bottom: 10px;
}

.new-users-links {
  text-align: center;
  padding: 20px 0px;
}

.new-users-links a {
  background-color: #ffffff24;
  line-height: 20px;
  display: inline-flex;
  font-weight: bold;
  color: #003f9a;
  border-bottom: 1px solid #003f9a;
  font-size: 16px;
}
.img-upload-border {
  border: 1px solid #e5e5e5;
  padding: 10px;
  height: 150px;
  object-fit: cover;
  width: 100%;
}



.box-gallery-img {
  display: flex
;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 10px;
  padding: 15px;
  background: #003f9a2b;
  transition: all 500ms ease;
  border: 1px solid #ffe8e8;
}

.box-gallery-img:hover {
  border: 1px solid var(--Secondary);
}

.box-gallery-album .box-gallery-img img {
  width: calc(50% - 5px);
  border-radius: 10px;
  border: 1px solid var(--Secondary);
  height: 110px;
  object-fit: cover;
}

.box-gallery-album > img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--Secondary);
  height: 240px;
  object-fit: cover;
}


.box-gallery-album h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 31px;
  color: #000000;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
}


.gallery-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}


.card-outer .gallery-box {
  border-radius: 0px;
  border: 1px solid var(--Secondary);
}


.admission-page .card-outer .gallery-box.gallery-box-seprate img, .gallerys-page .card-outer .gallery-box.gallery-box-seprate img {
  height: 240px;
  object-fit: cover;
}

.card-outer img {
  border-radius: 0px;
}


.gallery-box img {
  width: 100%;
  border-radius: 10px;
}


.gallery-box img {
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}


.gallery-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  background-color: #80000047;
  width: 100%;
  height: 100%;
}



.gallerys-page{ padding: 80px 0;}

.top_btn .yellow.custom-btn{ display: inline-block!important;}

.top_btn .red.custom-btn{ display: inline-block!important;}

.top_btn { position: relative; z-index: 9;}

.grid_design{ display: grid; grid-template-columns: 1fr ; gap: 15px;}

.grid_design a{ 

  background-color: #557ec9;
  color: white;
  padding: 21px;
  text-align: start;
  border-radius: 10px;
  width: 100%;
  position: relative;

}

.grid_design a:after { 
  content: "\f063";
  font-family: "Font Awesome 6 pro";
  position: absolute;
  width: 50px;
  height: 50px;
  color: #557ec9;
  background-color: white;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  right: 5px;
  top: 6px;
}
.left_content ul{ padding-left: 15px;}

.left_content ul li{ 

  color: rgb(82, 82, 82);
  line-height: 30px;
  font-size: 16px;


}





.activity_post  .owl-prev {

position: absolute;
  top: 50%;
  left: 0px;
  transform: translate(30%, -50%);

  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 100%;

  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  display: flex;
  align-items: center;
  justify-content: center;

}


.activity_post  .owl-next {

position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%);

  width: 30px;
  height: 30px;
  background-color: white;
  border-radius: 100%;

  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  display: flex;
  align-items: center;
  justify-content: center;

}


.activity_post  .owl-next:hover{

background-color: #003F9A;
color: white;


}



.activity_post  .owl-prev:hover{

background-color: #003F9A;
color: white;


}



.nth-15 .ovly-detls {
    width: 300px;
    display: block;
    text-align: center;
    padding: 25px 10px;
    background: #fff;
    min-height: 128px;
    box-shadow: 0px 0px 22px 8px rgba(0, 0, 0, 0.09);
    position: absolute;
    top: -198%;
    border-radius: 5px;
    z-index: 2;
    left: -106px;
    opacity: 0;
    visibility: hidden;
}


.nth-2  .ovly-detls {
    top: -243%;
    left: -107px;
}


.nth-3  .ovly-detls {
    top: -218%;
    left: -107px;
}




.nth-4  .ovly-detls {
top: -192%;
    left: -107px;
}




.nth-5  .ovly-detls {
    top: -238%;
    left: -107px;
}




.nth-6  .ovly-detls {
    top: -214%;
    left: -107px;
}



.nth-9  .ovly-detls {
     top: -263%;
    left: -107px;
}



.nth-8  .ovly-detls {
top: -192%;
    left: -107px;
}

.nth-7  .ovly-detls {
    top: -217%;
    left: -107px;
}


.nth-1{ display: none!important;}


.plus_icon{ font-size: 32px; font-weight: 700;}