* {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
ul {
  margin: 0;
  padding: 0;
  font-family: 'Lora', serif;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lobster Two', cursive;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit
}

.btn:focus {
  box-shadow: none;
}

:root {
  --main-color: #ff5252;
  --primary-color: #00bcd4;
  --secondary: #5d2999;
  --extra-color: #092a49;
  --theme-color-1: #ff9800;
  --theme-color-2: #96D81F;
  --theme-color-3: #e27d60;
  --theme-color-4: #85dcb8;
  --theme-color-5: #e8a87c;
  --theme-color-6: #c38d9e;
  --gray-color: #e3e3e3;
  --white-color: #ffffff;
  --background-layer: #11111180;
}

::-webkit-scrollbar {
  width: 3px
}

::-webkit-scrollbar-track {
  background: var(--primary-color)
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
  border-radius: 6px;
}

/*--header-section--*/
/*--top-header-- */
.top-header {
  background-color: var(--extra-color);
  padding: 12px 0;
}

.top-contact-list {
  display: inline-block;
}

.top-contact-list li {
  display: inline-block;
  margin-right: 19px;
}

.top-contact-list li:last-child {
  margin: 0
}

.top-contact-list li a {
  color: var(--white-color);
  font-size: 13px;
  transition: all ease-in-out .3s;
}

.top-contact-list li a:hover {
  color: var(--primary-color)
}

.top-contact-list li a i {
  color: var(--theme-color-1);
  margin-right: 6px;
}

.top-contact-box {
  display: inline-block;
  border-left: 1px solid #2b455b;
  border-right: 1px solid #2b455b;
  padding: 0 10px;
}

/*--//top-header-- */
/* navbar-styling */
.school-logo {
  max-width: 170px;
}

.nav-section {
  padding: 0;
  border: 0;
  transition: all .5s ease-in-out;
  z-index: 100;
  background-color: var(--white-color);
  padding: 0 10px;
}

.nav-section>.container {
  transition: all .5s ease-in-out;
}

.nav-section.nav-add-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.nav-section>.container.nav-add-top {
  max-width: 100%;
}

.main-navbar>.nav-item>.nav-link {
  padding: 17px 14px;
  color: #222;
  font-weight: 700;
  position: relative;
  font-size: 15px;
  text-transform: capitalize;
}

.main-navbar>.nav-item {
  position: relative;
  transition: all .5s ease-in-out;
}

.main-navbar>.nav-item>.nav-link::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--white-color);
  position: absolute;
  top: calc(50% + 10px);
  left: 15px;
  transition: all .5s ease-in-out;

}

.main-navbar>.nav-item>.nav-link::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--white-color);
  position: absolute;
  top: calc(50% + 12px);
  right: 15px;
  transition: all .5s ease-in-out;
}

.main-navbar>.nav-item:hover>.nav-link::after,
.main-navbar>.nav-item:hover>.nav-link::before,
.main-navbar>.nav-item.active>.nav-link::after,
.main-navbar>.nav-item.active>.nav-link::before {
  width: 50%
}

.logo-content {
  text-transform: uppercase;
  font-weight: 600
}

.main-navbar>.nav-item.active>.nav-link,
.main-navbar>.nav-item:hover>.nav-link {
  background: var(--theme-color-1);
}

.notice-button>.btn {
  background: var(--theme-color-1);
  color: var(--white-color);
  padding: 17px 15px;
  border-radius: 0;
  position: relative;
  z-index: 0;
  border: 0;
}

#side-notice-close i {
  font-size: 22px;
  color: var(--white-color);
}

/* navbar-drodown-menu-desgin */
.main-navbar .dropdown-menu .navbar-nav {
  flex-direction: column;
}

.main-navbar>.nav-item .dropdown-menu {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  border-top: 2px solid var(--theme-color-1);
  border-radius: 0;
  box-shadow: 0px 2px 3px rgb(0 0 0 / 15%);
  width: 13em;
  transition: all .4s;
  transform: scaleY(0);
  transform-origin: 50% 0;

}

.main-navbar>.nav-item:hover>.dropdown-menu,
.main-navbar>.nav-item>.dropdown-menu-open {
  transform: scaleY(1);
}

.main-navbar>.nav-item>.dropdown-menu .nav-item:hover>.sub-dropdown {
  transform: scaleY(1);
}

.main-navbar .dropdown-toggle::after {
  display: none;
}

.main-navbar .dropdown-toggle i {
  font-size: 12px;
  margin-left: 5px;
}

.main-navbar>.nav-item .dropdown-menu .nav-link {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 13px;
  position: relative;
  transition: all .5s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-navbar>.nav-item .dropdown-menu .nav-link:hover {
  background-color: var(--theme-color-1);
  padding-left: 20px;
}

.main-navbar>.nav-item .dropdown-menu .nav-link::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--extra-color);
  transform: scale(0);
  transform-origin: 0 50%;
  transition: all .5s ease-in-out;
}

.main-navbar>.nav-item .dropdown-menu .nav-link:hover::before {
  transform: scale(1);
}

.main-navbar>.nav-item .dropdown-menu .nav-item {
  border: 1px solid var(--gray-color);
}

.main-navbar>.nav-item .dropdown-menu .nav-item:first-child {
  border-top: 0;
}

.main-navbar>.nav-item .dropdown-menu .nav-item:not(:last-child) {
  border-bottom: 0
}

.nav-item.heading {
  display: none
}

#bars {
  font-size: 20px;
  color: var(--extra-color);
  display: none;
}

/* sub-dropdown-desgin */
.main-navbar .sub-dropdown {
  position: absolute;
  left: 100%;
}

.notice-button .btn:after {
  content: "";
  width: 0;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.notice-button .btn:hover:after {
  width: 100%
}

.notice-button .btn i {
  color: var(--extra-color);
  font-size: 16px;
  -webkit-animation: ring 4s .2s ease-in-out infinite;
  -webkit-transform-origin: 50% 4px;
  -moz-animation: ring 4s .2s ease-in-out infinite;
  -moz-transform-origin: 50% 4px;
  animation: ring 4s .2s ease-in-out infinite;
  transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
  0% {
    -webkit-transform: rotateZ(0);
  }

  1% {
    -webkit-transform: rotateZ(30deg);
  }

  3% {
    -webkit-transform: rotateZ(-28deg);
  }

  5% {
    -webkit-transform: rotateZ(34deg);
  }

  7% {
    -webkit-transform: rotateZ(-32deg);
  }

  9% {
    -webkit-transform: rotateZ(30deg);
  }

  11% {
    -webkit-transform: rotateZ(-28deg);
  }

  13% {
    -webkit-transform: rotateZ(26deg);
  }

  15% {
    -webkit-transform: rotateZ(-24deg);
  }

  17% {
    -webkit-transform: rotateZ(22deg);
  }

  19% {
    -webkit-transform: rotateZ(-20deg);
  }

  21% {
    -webkit-transform: rotateZ(18deg);
  }

  23% {
    -webkit-transform: rotateZ(-16deg);
  }

  25% {
    -webkit-transform: rotateZ(14deg);
  }

  27% {
    -webkit-transform: rotateZ(-12deg);
  }

  29% {
    -webkit-transform: rotateZ(10deg);
  }

  31% {
    -webkit-transform: rotateZ(-8deg);
  }

  33% {
    -webkit-transform: rotateZ(6deg);
  }

  35% {
    -webkit-transform: rotateZ(-4deg);
  }

  37% {
    -webkit-transform: rotateZ(2deg);
  }

  39% {
    -webkit-transform: rotateZ(-1deg);
  }

  41% {
    -webkit-transform: rotateZ(1deg);
  }

  43% {
    -webkit-transform: rotateZ(0);
  }

  100% {
    -webkit-transform: rotateZ(0);
  }
}

@-moz-keyframes ring {
  0% {
    -moz-transform: rotate(0);
  }

  1% {
    -moz-transform: rotate(30deg);
  }

  3% {
    -moz-transform: rotate(-28deg);
  }

  5% {
    -moz-transform: rotate(34deg);
  }

  7% {
    -moz-transform: rotate(-32deg);
  }

  9% {
    -moz-transform: rotate(30deg);
  }

  11% {
    -moz-transform: rotate(-28deg);
  }

  13% {
    -moz-transform: rotate(26deg);
  }

  15% {
    -moz-transform: rotate(-24deg);
  }

  17% {
    -moz-transform: rotate(22deg);
  }

  19% {
    -moz-transform: rotate(-20deg);
  }

  21% {
    -moz-transform: rotate(18deg);
  }

  23% {
    -moz-transform: rotate(-16deg);
  }

  25% {
    -moz-transform: rotate(14deg);
  }

  27% {
    -moz-transform: rotate(-12deg);
  }

  29% {
    -moz-transform: rotate(10deg);
  }

  31% {
    -moz-transform: rotate(-8deg);
  }

  33% {
    -moz-transform: rotate(6deg);
  }

  35% {
    -moz-transform: rotate(-4deg);
  }

  37% {
    -moz-transform: rotate(2deg);
  }

  39% {
    -moz-transform: rotate(-1deg);
  }

  41% {
    -moz-transform: rotate(1deg);
  }

  43% {
    -moz-transform: rotate(0);
  }

  100% {
    -moz-transform: rotate(0);
  }
}

@keyframes ring {
  0% {
    transform: rotate(0);
  }

  1% {
    transform: rotate(30deg);
  }

  3% {
    transform: rotate(-28deg);
  }

  5% {
    transform: rotate(34deg);
  }

  7% {
    transform: rotate(-32deg);
  }

  9% {
    transform: rotate(30deg);
  }

  11% {
    transform: rotate(-28deg);
  }

  13% {
    transform: rotate(26deg);
  }

  15% {
    transform: rotate(-24deg);
  }

  17% {
    transform: rotate(22deg);
  }

  19% {
    transform: rotate(-20deg);
  }

  21% {
    transform: rotate(18deg);
  }

  23% {
    transform: rotate(-16deg);
  }

  25% {
    transform: rotate(14deg);
  }

  27% {
    transform: rotate(-12deg);
  }

  29% {
    transform: rotate(10deg);
  }

  31% {
    transform: rotate(-8deg);
  }

  33% {
    transform: rotate(6deg);
  }

  35% {
    transform: rotate(-4deg);
  }

  37% {
    transform: rotate(2deg);
  }

  39% {
    transform: rotate(-1deg);
  }

  41% {
    transform: rotate(1deg);
  }

  43% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(0);
  }
}

/*--//header-section--*/
/*-- notice-section -- */
.notice-section {
  width: 100%;
  height: 100%;
  background-color: #0000004d;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10000;
  transition: all .1s ease-in-out;
}

.notice-section-add {
  right: 0;
}

.notice-blox {
  width: 350px;
  height: 100%;
  background-color: var(--extra-color);
  float: right;
  padding: 10px 18px;
  margin-right: -300px;
  transition: all .5s ease-in-out;
}

.notice-blox-add {
  margin-right: 0;
}

.notice-heading {
  color: var(--white-color);
  font-size: 25px;
  position: relative;
  padding: 9px 0
}

.notice-heading::after {
  content: "";
  width: 100px;
  height: 2px;
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 40px;
}

.notice-list {
  padding: 25px 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.notice-list li {
  margin: 10px 0
}

.notice-list::-webkit-scrollbar {
  width: 1px
}

.notice-list::-webkit-scrollbar-track {
  background: var(--extra-color)
}

.notice-list::-webkit-scrollbar-thumb {
  background-color: var(--extra-color)
}

.notice-list li a {
  color: var(--primary-color);
  font-size: 13px
}


.notice-list li a i {
  margin-right: 10px;
  color: var(--theme-color-1)
}

.notice-list li a:hover {
  text-decoration: underline;
}

/*--//notice-section -- */

/* hero-slider */
.hero-slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

.hero-slider .swiper-slide {
  overflow: hidden;
  color: #fff;
}

.hero-slider .swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.hero-slider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 53px;
  margin-top: -30px;
  text-align: center;
  border: 2px solid var(--extra-color);
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  border-radius: 55px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  font-size: 20px;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.hero-slider .swiper-button-prev {
  left: 25px;
  transform: translateX(50px);
}

.hero-slider .swiper-button-next {
  right: 25px;
  transform: translateX(-50px);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  display: none;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
  bottom: 30px;
}

.hero-slider .swiper-pagination {
  text-align: center;
  bottom: 50px;
}

.hero-slider .swiper-pagination-bullet {
  opacity: 1;
  width: 17px;
  height: 6px;
  border-radius: 18px;
  background-color: var(--white-color);
  transition: all .5s ease-in-out;

}

.hero-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  background-color: var(--primary-color)
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
  min-height: calc(100vh - 106px);
  transition: all .4s ease;
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
  width: 100%;
  text-align: center;
}

.hero-style .slide-title h2 {
  display: inline-block;
  font-size: 3em;
  font-weight: 600;
  line-height: 1;
  color: var(--primary-color);
  background-color: var(--white-color);
  margin: 0 0 30px;
  text-transform: capitalize;
  transition: all .4s ease;
  padding: 10px;
  border-radius: 10px;
}

.hero-style .slide-text p {
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: normal;
  color: #ffffff;
  margin: 0 0 40px;
  transition: all .4s ease;
}

.hero-style .slide-text p span {
  color: var(--main-color)
}

.hero-style .slide-btns>a:first-child {
  margin-right: 10px;
}

/*--------------------------------------------------------------
	#hero-button-style
--------------------------------------------------------------*/
.btn-theme-1 {
  background-color: var(--theme-color-1);
  color: var(--white-color);
  padding: 10px 15px;
  font-weight: 600;
  position: relative;
  z-index: 0;
  border: 0;
  overflow: hidden;
}

.btn-theme-1:hover::before {
  width: 100%;
  left: 0;
}

.btn-theme-1::before {
  content: "";
  width: 0;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transition: all .9s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn-theme-1:hover {
  color: var(--white-color);
}

.btn-theme-2 {
  background-color: var(--extra-color);
}

/* hero-slider-end */
/* home-focus-section */
.home-focus-container {
  margin-top: -50px;
}

.home-focus-box {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 20px;
  border-radius: 5px 0px 0px 5px;
  overflow: hidden;
}

.home-focus-box a {
  position: relative;
  color: transparent;
  font-size: 30px;
  display: inline-block;
  -webkit-text-stroke: 1px var(--white-color);
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.hover-effect-text {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--main-color);
  transform: translateX(-100%);
  transition: transform 0.2s cubic-bezier(0.29, 0.73, 0.74, 1.02);
  text-transform: uppercase;
}

.hover-effect-text::after {
  content: attr(data-hover);
  display: inline-block;
  transform: translateX(100%);
  transition: transform 0.2s cubic-bezier(0.29, 0.73, 0.74, 1.02);
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 700;
}

.home-focus-box a:hover .hover-effect-text::after,
.home-focus-box a:hover .hover-effect-text {
  transform: none;
}

.home-focus-box.theme-color-1 {
  background-color: var(--theme-color-1);
}

.home-focus-box.extra-color {
  background-color: var(--extra-color);
}

.home-focus-box.secondary {
  background-color: var(--secondary);
}

/*--//home-focus-section--end*/
/* about-us-section */
.about-us-section {
  margin: 2.9rem 0 0
}

.title-box {
  text-align: center;
  max-width: 514px;
  margin: 0 auto;
}

.title-box p {
  font-size: 15px;
  line-height: 1.7em;
}

.section-title {
  display: inline-block;
  text-transform: capitalize;
  font-weight: 600;
  font-family: "Lobster Two", cursive;
  color: var(--extra-color);
  font-size: 3rem;
  margin-bottom: 9px;
}

.section-title span {
  font-family: inherit;
  color: var(--main-color);
}

.principal-img {
  width: 140px;
  height: 151px;
  border: 1px solid #4e254b;
  float: left;
  object-fit: cover;
  margin: 0 10px 0 0;
}

.about-us-box {
  padding: 40px 0;
  text-align: justify;
}

.about-us-box h3 {
  color: var(--extra-color);
  font-weight: 600;
  margin-bottom: 26px;
  position: relative;
  font-size: 25px
}

.about-us-box h3:after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -5px;
  border-radius: 10px;
}

.read-more-btn {
  color: var(--white-color);
  background-color: var(--extra-color);
  font-size: 13px;
  text-transform: capitalize;
  margin-top: 15px;
}

.about-us-box p {
  font-size: 16px;
}

/*--//about-us-section--end*/
/*--our-services-section--*/
.our-services-section {
  background-image: url(../images/bg-2.jpg);
  padding: 4rem 0;
  background-position: 0 -30px;
}

.services-right-box,
.services-left-box {
  padding: 36px 0
}

.services-right-box>h3 {
  font-family: sans-serif;
  color: var(--extra-color)
}

.services-right-box>span {
  display: block;
  margin: 10px 0 14px;
  font-size: 20px;
  font-family: sans-serif;
  color: var(--secondary);
  line-height: 1.3em;
}

.services-right-box>p {
  font-size: 15px;
  line-height: 1.5em;
}

.services-list {
  padding: 10px 0
}

.services-list li {
  margin: 10px 0;
  color: var(--extra-color);
  font-family: sans-serif;
  font-size: 15px;
  transition: all .5s ease-in-out;
}

.services-list li i {
  margin-right: 7px;
  color: var(--theme-color-1);
  transition: all .5s ease-in-out;
}

.services-list li:hover {
  color: var(--primary-color)
}

.services-list li:hover i {
  margin-right: 15px;
}

.services-box {
  text-align: center;
  margin-bottom: 30px;
}

.services-box i {
  font-size: 30px;
  background-color: var(--white-color);
  color: var(--main-color);
  width: 80px;
  height: 80px;
  border: 2px solid var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 10px auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.services-box i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--main-color);
  transition: all .6s ease-in-out;
  transform: scale(0);
  border-radius: 50%;
}

.services-box:hover i::after {
  transform: scale(2);
}

.services-box:hover i {
  color: var(--white-color)
}

.services-box h4 {
  margin: 19px 0 8px;
  font-family: sans-serif;
  font-size: 20px;
}

/*--//our-services-section--*/
/*--counter-number-section--*/
.counter_number_section {
  background: url(../images/bg.jpg);
  background-attachment: fixed;
  padding: 70px 0;
  position: relative;
  z-index: 0;
}

.counter_number_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5d2999b3;
  z-index: -1;
}

.counter-number-box {
  text-align: center;
  color: var(--white-color);
  margin: 25px 0;
}

.counter-number-box i {
  font-size: 39px;
}

.counter-number-box h2 {
  font-size: 37px;
  font-weight: 700;
  margin: 16px 0 3px;
}

.counter-number-box span {
  font-weight: 500;
  font-family: "Lobster Two", cursive;
  font-size: 25px;
}

.counter-number-box:hover i {
  animation: slide-up 1s infinite;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes slide-up {
  0% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(6px);
  }
}

/*--//counter-number-section--*/
/*--our_gallery_section--*/
.our_gallery_section {
  position: relative;
  padding: 3.8rem 0;
  background: url(../images/bg-2.jpg);
}

.our_gallery_slider {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.our_gallery_slider .swiper-slide {
  opacity: 1;
}

.our_gallery_slider .swiper-slide img {
  display: block;
  max-width: 100%;
}

.gallery-next,
.gallery-prev {
  position: absolute;
  bottom: 0;
  left: 50%
}

.gallery-prev {
  margin-left: 19px;
}

.our_gallery_slider .gallery-next,
.our_gallery_slider .gallery-prev {
  font-size: 22px;
  color: var(--main-color);
}

.gallery-prev.swiper-button-disabled,
.gallery-next.swiper-button-disabled {
  color: var(--primary-color)
}

.our_gallery_slider .swiper-slide {
  padding: 10px;
  background-color: var(--extra-color);
}

.our_gallery_slider .swiper-slide-shadow-left,
.our_gallery_slider .swiper-slide-shadow-right {
  display: none;
}

.gallery_description_box {
  background-color: var(--theme-color-1);
  text-align: center;
  color: var(--white-color);
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
}

/*--//our_gallery_section--*/
/*--parents-says-section--*/
.parents-says-section {
  padding: 4rem 0;
}

.parents_says_box {
  background-color: var(--theme-color-1);
  color: var(--white-color);
  border-radius: 20px;
  padding: 40px 30px;
}

.parents_says_slider .swiper-slide:nth-child(2) .parents_says_box {
  background: var(--main-color)
}

.parents_says_slider .swiper-slide:nth-child(3) .parents_says_box {
  background: var(--theme-color-2)
}

.parents_says_slider {
  padding: 50px 0
}

.parents_says_slider .swiper-pagination {
  bottom: 10px;
}

.parents_says_slider .swiper-pagination-bullet {
  background: var(--main-color);
  opacity: 1;
}

.parents_says_slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid var(--primary-color);
  outline-offset: 3px;
  background-color: var(--extra-color)
}

.parents_descriotion_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.parents_says_box>p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 27px;
}

.parents_image_box>img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.parents_name_box>h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
}

.parents_name_box>span {
  font-size: 13px;
  font-family: 'Lobster Two', cursive;
}

.parents_name_box {
  position: relative;
  z-index: 0;
}

.parents_name_box i {
  font-size: 6rem;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: -1;
  color: var(--gray-color);
  opacity: .08;
}

/*--//parents-says-section--*/
/*--our_teachers_section--*/
  /* the slides */
  .teacher-box-slider .slick-slide {
    margin: 0 20px;
}

/* the parent */
.teacher-box-slider .slick-list {
    margin: 0 -20px;
}

.our_teacher_section {
  background-image: url(../images/bg-2.jpg);
  background-size: cover;
}

.teacher-slider-container {
  margin: 50px auto;
}

.teacher-box {
  overflow: hidden;
  border-radius: 10px;
}

.teacher-slider {
  padding: 3rem 0
}

.teacher-image-box {
  overflow: hidden;
}

.teacher-image-box img {
  transition: all .7s ease-in-out;
}

.teacher-image-box:hover img {
  transform: scale(1.2);
}

.teacher-description1-box {
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
  padding: 25px 0
}

.teacher-description1-box h4 {
  font-weight: 600;
  font-size: 29px
}

.teacher-description1-box span {
  font-size: 15px;
  margin-top: 15px
}

.teacher-social-box {
  max-width: 75%;
  margin: 20px auto 0;
  display: flex;
  justify-content: space-between;
}

.teacher-social-icon {
  background-color: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px
}
/*--our_teachers_section_end--*/











/*-- footer-section --*/
.footer-section {
  background-color: var(--extra-color);
  padding: 60px 0 80px;
  color: var(--white-color)
}

.footer-title {
  font-size: 23px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 25px;
}

.footer-title::before {
  content: "";
  width: 50px;
  height: 3px;
  background-color: var(--gray-color);
  position: absolute;
  bottom: -8px;
  border-radius: 30px;
}

.footer-logo img {
  transform-origin: top left;
  transform: scale(.8);
}

.our-school-content {
  font-size: 15px;
  margin: 13px 0 19px;
}

.contact-media li {
  float: left;
}

.contact-links li {
  margin: 4px 0;
}

.contact-links li i {
  color: var(--theme-color-1);
  font-size: 13px;
  margin-right: 8px;
}

.contact-links li a {
  font-size: 15px;
  transition: all .5s ease-in-out;
}

.contact-links li a:hover {
  padding-left: 6px;
  color: var(--primary-color);
}

.contact-media li a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  background: var(--theme-color-1);
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border-radius: 3px;
  transition: all .5s ease-in-out;
  font-size: 16px;
}

.contact-media li a:hover {
  background-color: #cc7a00;
}

.contact-media li a i {
  transition: all .5s ease;
}

.contact-media li a:hover i {
  transform: rotate(360deg);
}

.main-links li {
  margin: 11px 0;
  font-size: 13px;
}

.main-links li i {
  margin-right: 8px;
  color: var(--theme-color-1)
}

.main-links li a {
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.main-links li a:hover {
  padding-left: 10px;
  color: var(--primary-color);
}

.address-content {
  margin: 10px 0 23px
}

/*--//main-footer-end--*/
/*--copyright-section--*/
.copyright-section {
  padding: 10px 0;
  background: #f59303;
  color: var(--white-color)
}

.copy-right-text {
  font-size: 15px;
  font-family: sans-serif;
}

.copy-right-text a {
  font-family: sans-serif;
}

/*-- footer-section-end --*/
/*--home_page_end--*/
/*---mission_vision_page_start---*/
.page_title_header {
  /* background: url(../images/mission-vision.jpg); */
  background-size: 100% 100%;
  background-position: center bottom;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 20px;
}

.page_title_header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page_title_header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-layer);
  opacity: .5;
}

.page_title_box {
  color: var(--white-color);
  min-height: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-transform: uppercase;
}

.page_title_box h1 {
  font-size: 27px;
  font-weight: 800;
}

.page_title_box h3 {
  font-size: 18px;
  font-family: 'Lora', serif;
  margin-top: 12px;
  position: relative;
}

.page_title_box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 78px;
  height: 4px;
  background: var(--white-color);
  border-radius: 5px;
}

.top_page_nav {
  display: flex;
  justify-content: center;
}

.top_pagination {
  color: var(--white-color);
  overflow: hidden;
  border-radius: 5px;
}

.top_pagination li {
  float: left
}

.top_pagination li a {
  display: inline-block;
  background-color: var(--extra-color);
  padding: 10px 14px;
  font-size: 13px;
  position: relative;
  transition: all .5s ease-in-out;
}

.top_pagination .angle-right {
  position: absolute;
  left: 96%;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-color)
}

.top_pagination li:not(:first-child) a {
  color: var(--primary-color)
}

.top_pagination li:first-child a:hover {
  color: var(--primary-color)
}

.top_pagination li:not(:first-child) a:hover {
  color: var(--white-color)
}

.page-heading {
  padding: 10px 0
}

.page-heading h2 {
  color: var(--extra-color);
  font-weight: 700;
  margin: 20px 0 6px;
  text-transform: uppercase;
}

.page-heading span {
  font-weight: 700;
  color: var(--main-color)
}

.mission_vision_content_box,
.mission_vision_image_box {
  position: relative;
  margin: 30px;
}

.mission_vision_image_box {
  border: 1px solid var(--theme-color-1);
  border-radius: 5px;
  text-align: center;
}

.mission_col:after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--theme-color-1);
  position: absolute;
  top: 0;
  right: 0;
}

.mission_col::before {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid var(--theme-color-1);
  box-shadow: 3px 3px 0px var(--primary-color);
  border-radius: 50%;
  position: absolute;
  right: -7px;
  top: -7px;
  z-index: 4;
}

.mission_vision_image_box::after {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--theme-color-1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -45px;
}

.mission_vision_content_box {
  border: 1px solid var(--theme-color-1);
  background: var(--white-color);
  border-radius: 4px;
  padding: 20px;
  position: relative;
}

.mission_vision_content_box::before {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--theme-color-1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -46px;
}

.mission_vision_content_box h4 {
  color: var(--extra-color);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.mission_vision_content_box h4>span {
  color: var(--main-color)
}

.mission_vision_content_box p {
  font-size: 15px;
  line-height: 25px;
  text-align: justify;
}

.mission_vision_content_box p::first-letter {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
}

/*---//mission_vision_page_end---*/
/*---chairman_desk_page_start---*/
/* .page_title_header.chairman-header {
  background-image: url(../images/header-back.jpg);
} */

.chairman_desk_content,
.chairman_desk_image {
  margin: 40px 0;
  z-index: 0;
  padding: 10px;
}

.chairman_desk_content h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-family: 'Lora', serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.chairman_desk_content p {
  text-align: justify;
}

.chairman_description {
  text-align: right;
  text-transform: capitalize;
  margin-top: 10px;
  font-size: 14px
}

.chairman_desk_image img {
  border-radius: 12px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}

.chairman_desk_image {
  text-align: center;
}

.chairman_desk_image a {
  position: relative;
}

.chairman_desk_image a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 50%;
  height: 50%;
  border-top: 3px solid var(--extra-color);
  border-left: 3px solid var(--theme-color-1);
  z-index: -1;
  transition: .5s all ease-in-out;
}

.chairman_desk_image a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 50%;
  height: 50%;
  border-right: 3px solid var(--theme-color-1);
  border-bottom: 3px solid var(--extra-color);
  z-index: -1;
  transition: .5s all ease-in-out;
}

.chairman_desk_image a:hover::after {
  transform: scale(1.1);
}

.chairman_desk_image a:hover::before {
  transform: scale(1.1);
}

/*---chairman_desk_page_end---*/
/*---contact_heading_section--*/
.contact_heading_section {
  padding-top: 10px
}

.contact_heading_box {
  box-shadow: 0 0 30px rgb(214 215 216 / 30%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 15px;
  text-align: center;
  position: relative;
  height: 100%;
}

.contact_heading_box i {
  font-size: 22px;
  border: 2px dotted var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--extra-color);
}

.contact_heading_box h5 {
  margin: 18px 0 5px;
  font-weight: 600;
  color: var(--main-color);
  text-transform: uppercase;
}

.contact_heading_box a,
.contact_heading_box p {
  font-size: 15px;
  line-height: 1.6em;
}

.contact_heading_box::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--theme-color-1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(.5);
  transition: all .5s ease-in-out;
}

.contact_heading_box:hover::before {
  transform: scale(1);
}

/*---//contact_heading_section_end--*/
/*---infrastructure_section---*/
.infrastructure_content_box,
.infrastructure_image_box {
  margin: 20px 0
}

.infrastructure_image img {
    width: 100%;
    object-position: center;
    max-height: 200px;
    object-fit: contain;
    transition: all .5s ease-in-out;
}

.infrastructure_image:hover img {
  transform: scale(1.2) rotate(-5deg);
}

.infrastructure_content_box h2 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  font-family: 'Lora', serif;
  margin-bottom: 10px;
}

.infrastructure_content_box p {
  text-align: justify;
  font-size: 15px;
  line-height: 1.5em;
}

.infrastructure_image_box {
  border-radius: 10px;
  overflow: hidden;
}

.types-infrastructure_box {
  padding: 0 0 13px 32px;
  position: relative;
}

.types-infrastructure_box::before {
  content: "";
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid var(--theme-color-1);
  box-shadow: 3px 3px 0px var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
}

.types-infrastructure_box::after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--theme-color-1);
  position: absolute;
  top: 0;
  left: 7px;

}

.types-infrastructure_box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 7px;
}

.types-infrastructure_box p {
  font-size: 14px;
  line-height: 1.5em;
}

.filter_button_infrastructure li {
  display: inline-block;
  cursor: pointer;
  margin: 10px 6px;
  font-size: 15px;
  border: 2px solid var(--extra-color);
  padding: 2px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all .5s ease-in-out;
}

.filter_button_infrastructure {
  padding-top: 30px
}

.filter_button_infrastructure li:hover,
.filter_button_infrastructure li.active {
  background-color: var(--main-color);
  color: var(--white-color)
}

.infrastructure_image {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin: 10px 0
}

.infrastructure_image::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all .5s ease-in-out;
  pointer-events: none;
}

.infrastructure_image:hover::before {
  opacity: .5;
}

.infrastructure_image a i{
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%);
  z-index: 1;
  transition: all .5s ease-in-out;
}

.infrastructure_image:hover a i{
  top: 50%;
}

.infrastructure_image a i {
  font-size: 26px;
  color: var(--extra-color)
}

/*---//infrastructure_section_end---*/
/*--faq-section--*/
.faq_box .card-header {
  display: flex;
  justify-content: space-between;
}

.faq_box .card-header .accordion_side_icone .fa-plus {
  display: none;
}

.faq_box .card-header.collapsed .accordion_side_icone .fa-plus {
  display: block;
}

.faq_box .card-header.collapsed .accordion_side_icone .fa-minus {
  display: none;
}

.faq-container {
  margin-top: 17px;
}

.faq_box .card-header {
  background-color: var(--extra-color);
  color: var(--white-color);
  cursor: pointer;
}

.faq_box .card-body {
  background-color: var(--gray-color);
  color: #000;
  font-size: 14px
}

.faq_title {
  color: var(--main-color);
  font-weight: 600;
  font-size: 24px;
  position: relative;
  margin-bottom: 15px;
}

.faq_title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--theme-color-1);
  border-radius: 10px;
}

.faq_answer_send_box {
  margin-top: 17px;
  padding-bottom: 20px;
  background: var(--gray-color);
  overflow: hidden;
  border-radius: 5px;
}

.faq_answer_send_title {
  padding: 14px 12px 12px;
  background-color: var(--theme-color-1);
  color: var(--white-color)
}

.faq_answer_send_title h4 {
  font-size: 20px
}

.send_qustion_form_box {
  padding: 20px 25px
}

.school_form_control {
  text-transform: capitalize;
  font-family: 'Lora', serif;
  padding: 7px 11px;
  font-size: 14px;
  height: auto;
  color: var(--extra-color);
}

.school_form_control:focus {
  box-shadow: none;
  border-color: var(--theme-color-1);
  color: var(--extra-color);
}

.school_form_btn {
  font-size: 15px;
  padding: 9px 16px;
  text-transform: uppercase;
}

/*--//faq-section-end--*/
/*--contact_section_start--*/
.form_box {
  position: relative;
  margin-top: 25px;
}

.form_box .form-control {
  height: auto;
  border-color: var(--theme-color-1);
  padding: 8px 10px;
  font-size: 15px;
  text-transform: capitalize;
}

.form_box .form-control:focus,
.form_box .form-control:not(:placeholder-shown) {
  box-shadow: none;
  border-color: var(--primary-color);
}

.contact_form_label {
  margin: 0;
  position: absolute;
  top: 9px;
  left: 15px;
  font-size: 15px;
  background: var(--white-color);
  transition: all .5s ease;
  pointer-events: none;
}

.form_box .form-control:focus+.contact_form_label,
.form_box .form-control:not(:placeholder-shown)+.contact_form_label {
  top: -12px;
  transform: scale(.91);
  color: var(--primary-color);
}

.contact_form_label span {
  color: #ff0019;
}

.captcha_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.captcha_box h2 {
  background-color: #565656;
  color: var(--white-color);
  font-family: 'Lora', serif;
  font-size: 20px;
  padding: 7px 8px;
  border-radius: 5px;
}

.captcha_box i {
  margin-left: 10px;
  cursor: pointer;
}

.school_form_row {
  display: flex;
  justify-content: center;
}

.contact_submit_btn {
  text-transform: uppercase;
  margin-top: 20px;
  padding: 7px 38px;
  font-size: 16px
}

.address_box {
  box-shadow: 0 0 30px rgb(214 215 216 / 30%);
  padding: 21px 16px;
  border-radius: 10px;
  margin-top: 10px;
  text-align: center;
  position: relative;
}

.address_box::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--theme-color-1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(.5);
  transition: all .5s ease-in-out;
}

.address_box:hover::before {
  transform: scale(1);
}

.address_box:nth-child(2) {
  margin-top: 33px;
}

.address_box i {
  font-size: 18px;
  border: 2px dotted var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--extra-color);
}

.address_content_box {
  margin-top: 10px
}

.address_content_box h5 {
  font-family: 'Lora', serif;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 600
}

.address_content_box a {
  font-size: 15px;
  line-height: 25px;
  display: block
}

.map-box iframe {
  width: 100%;
  height: 450px;
  margin: 15px 0 -6px
}

/*--contact_section_end--*/
/*--academic_staff_page_start--*/
.section_heading {
  position: relative;
  padding-bottom: 14px;
}

.section_heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background-color: var(--theme-color-1);
  border-radius: 5px;
}

.section_heading h3 {
  font-family: 'Lora', serif;
  font-size: 25px;
  color: var(--main-color);
  font-weight: 600
}

.section_heading h5 {
  font-family: 'Lora', serif;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 8px;
  font-weight: 600;
  color: var(--extra-color)
}

.heading_under_conetnt {
  font-size: 15px;
  margin: 15px 0
}

.heading_under_conetnt::first-letter {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
}

.acadamic_staff_box {
  overflow: hidden;
  position: relative;
  height: 100%;
  padding: 5px;
}

.acadamic_staff_box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 2px solid var(--main-color);
  border-left: 2px solid var(--main-color);
  transform: scaleY(.5);
  transform-origin: 50% 50%;
  z-index: -1;
  transition: all .5s ease-in-out;
}

.acadamic_staff_box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  transform: scaleX(.5);
  transform-origin: 50% 50%;
  z-index: -1;
  transition: all .5s ease-in-out;
}

.acadamic_staff_box:hover::before {
  transform: scaleY(1);
}

.acadamic_staff_box:hover::after {
  transform: scaleX(1);
}

.acadamic_staff_img {
  width: 40%;
  float: left;
}

.acadamic_staff_detalles {
  width: 60%;
  height: 100%;
  float: left;
  background-color: var(--theme-color-3);
  padding: 20px;
  position: relative;
}

.teacher_name {
  font-family: cursive;
  color: var(--white-color);
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
}

.teacher_name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 2px;
  border-radius: 10px;
  background-color: var(--white-color);
}

.designation_content {
  margin-top: 20px;
  font-family: 'Lora', serif;
  color: var(--white-color);
  font-size: 16px
}

.acadamic_staff_detalles p {
  color: var(--extra-color);
  margin-top: 10px
}

.social_media_teacher {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--extra-color);
  color: var(--white-color);
  padding: 5px 0;
  border-radius: 5px;
}

.social_media_teacher a {
  display: block;
}

.social_media_teacher a i {
  width: 38px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s ease-in-out;
}

.social_media_teacher a i:hover {
  background-color: var(--theme-color-1);
}

.acadamic_staff_col {
  margin-top: 20px;
}

.acadamic_staff_col:nth-child(2n + 1)>.acadamic_staff_box>.acadamic_staff_detalles {
  background-color: var(--theme-color-4);
}

.acadamic_staff_col:nth-child(2n)>.acadamic_staff_box>.acadamic_staff_detalles {
  background-color: var(--theme-color-3);
}

.acadamic_staff_col:nth-child(3n)>.acadamic_staff_box>.acadamic_staff_detalles {
  background-color: var(--theme-color-5);
}

.acadamic_staff_col:nth-child(4n)>.acadamic_staff_box>.acadamic_staff_detalles {
  background-color: var(--theme-color-6);
}

.other_staff_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
}

.other_staff_box img {
  border-radius: 5px;
}

.other_staff_content {
  width: 90%;
  background-color: var(--white-color);
  box-shadow: 0px 10px 24px 0px rgb(0 0 0 / 10%);
  border-radius: 5px;
  transform: translateY(-50%);
  text-align: center;
  padding: 20px 0;
  color: var(--extra-color)
}

.other_staff_content h4 {
  text-transform: capitalize;
  font-size: 24px;
  transition: all .3s ease-in-out;
}

.other_staff_content span {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px
}

.social_media_staff {
  top: 20%;
  right: -38px;
  transition: all .3s ease-in-out;
}

.other_staff_box:hover .social_media_staff {
  top: 20%;
  right: 0;
}

.other_staff_box:hover .other_staff_content h4 {
  color: var(--theme-color-1)
}

.other_staff_img {
  overflow: hidden;
}

.other_staff_img img {
  transition: all .5s ease-in-out;
}

.other_staff_box:hover .other_staff_img img {
  transform: scale(1.2);
}

.curriculum_top_content {
  margin-top: 20px
}

.curriculum_top_content::first-letter {
  font-size: 20px
}

/*--academic_staff_page_end--*/
/*---curriculum_page_start---*/
.curriculum_content,
.curriculum_image {
  padding: 30px 0 5px
}

.curriculum_content h5 {
  font-size: 19px;
  font-family: 'Lora', serif;
  font-weight: 600;
  color: var(--extra-color);
  margin-bottom: 10px;
}

.curriculum_content p {
  text-align: justify;
  font-size: 15px
}

.curriculum_content {
  height: 100%;
  position: relative;
  padding-bottom: 13px
}

.divider {
  width: 100%;
  height: 13px;
  background: url(../images/divider.png) no-repeat;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0
}

.curriculum_image a {
  display: inline-block;
  position: relative;
}

.curriculum_image a img {
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.curriculum_image a::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 50%;
  height: 50%;
  border-top: 3px solid var(--extra-color);
  border-left: 3px solid var(--theme-color-1);
  z-index: -1;
  transition: .5s all ease-in-out;
}

.curriculum_image a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 50%;
  height: 50%;
  border-right: 3px solid var(--theme-color-1);
  border-bottom: 3px solid var(--extra-color);
  z-index: -1;
  transition: .5s all ease-in-out;
}

.curriculum_image a:hover::before,
.curriculum_image a:hover::after {
  transform: scale(1.1);
}

/*---curriculum_page_end---*/
/*--beyond_academics_section_start--*/
.beyond_academics_content p {
  text-align: justify;
}

/*--beyond_academics_section_end--*/
/*--notice_page_start--*/
.notice-box{
  border: 1px solid var(--extra-color);
  border-radius: 3px;
  padding-bottom: 20px;
  background: url(../images/pattern-back.png);
  background-size: cover;
}
.notice-box:not(:first-child){
  margin-top: 50px;
}
.notice-box-heading{
  background-color: var(--main-color);
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
  padding: 10px 10px;
  font-size: 20px;
  position: relative;
}
.blink_img_style{
  position: absolute;
  left: 50%;
  top: -21px;
  transform: rotate(10deg) translateX(-50%);
}
.notice_title_bar{
  text-align: center;
  padding: 20px 0 10px
}
.notice-title{
  font-family: 'Lora', serif;
  display: inline-block;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  border-bottom: 2px solid #000;
  line-height: 20px;
}
.notice_title_bar h5{
  font-family: 'Lora', serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--extra-color);
  margin: 20px 0 10px
}
.notice_content{
  padding: 0 23px;
  text-align: right;
}
.notice_paragraph{
  font-family: sans-serif;
  text-align: justify;
  font-size: 16px;
  line-height: 27px;
  color: #000;
 
}
.notice_paragraph_add{
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  
}
.notice_paragraph_read_add{
-webkit-line-clamp: unset;
}


.read_more_btn{
  display: none;
  color: var(--main-color);
  font-weight: 600;
  text-transform: capitalize;
}
.notice_paragraph.notice_paragraph_add + .read_more_btn{
  display: inline-block;
}
.read_more_btn:hover,
.read_more_btn:focus{
  color: var(--main-color);
}
.footer-notice{
  margin-top: 10px;
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  text-align: left;
  text-transform: capitalize;
}
.notice_download_box{
  text-align: center;
}
.download_btn{
  background-color: var(--extra-color);
  text-transform: uppercase;
  font-size: 13px
}
.download_btn i{
  margin-right: 6px;
  font-size: 15px;
}
.latest_notice_box{
  width: 100%;
  min-height: 300px;
  padding: 15px;
  position: relative;
  margin-top: 20px;
  border: 10px solid var(--primary-color);
  -o-border-image: repeating-linear-gradient(45deg, transparent, transparent 5px, var(--primary-color) 6px, var(--primary-color)15px, transparent 16px, transparent 20px) 20/14px;
  border-image: repeating-linear-gradient(45deg, transparent, transparent 5px, var(--primary-color) 6px, var(--primary-color) 15px, transparent 16px, transparent 20px) 20/14px;
}
.latest_notice_list li a{
  font-size: 14px;
  font-weight: 600;
  color: var(--extra-color);
  line-height: 17px;
  transition: all .4s ease-in-out;
}
.latest_notice_list li a img{
  display: none;
}
.latest_notice_list li.new a img{
  display: inline-block;
}
.latest_notice_list li{
  border-bottom: 1px dotted var(--extra-color);
  padding-bottom: 9px
}
.latest_notice_list li:last-child{
  border-color: transparent;
}
.latest_notice_list li:not(:last-child){
  margin-bottom: 10px;
}
.latest_notice_list li a i{
  color: var(--theme-color-1);
  font-size: 16px;
  margin-right: 3px;
  transition: all .4s ease-in-out;
}
.latest_notice_list li a:hover{
  color: var(--main-color)
}
.latest_notice_list li a:hover i{
  margin-right: 6px;
}
.notice-box .blink_img_style{
  display: none;
}
.notice-box.new-notice .blink_img_style{
  display: block;
}
/*--notice_page_end--*/


/*---go_to_top_start---*/
.go_top_top {
  width: 40px;
  height: 40px;
  background: var(--main-color);
  color: var(--white-color);
  position: fixed;
  bottom: 10px;
  right: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  z-index: 100;
}

.go_top_top_add {
  right: 10px
}

.go_top_top i {
  font-size: 18px
}

/*---go_to_top_end---*/






/* responsive */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

  /* navbar-styling */
  .notice-button .btn span {
    display: none;
  }

  /* hero-slider-desgin */
  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    width: 42px;
    height: 42px;
    font-size: 20px
  }

  .hero-style .slide-title h2 {
    font-size: 2.7em;
    margin-bottom: 24px;
  }

  .hero-style .slide-text p {
    font-size: 20px;
    margin-bottom: 29px;
  }

  .hero-style .btn {
    font-size: 13px;
  }

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

  /* navbar-styling */
  .main-navbar {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -260px;
    background: #ffffff;
    width: 260px;
    height: 100%;
    overflow-y: scroll;
    transition: all .5s ease-in-out;
    z-index: 2000;
  }

  .main-navbar-mobile-add {
    left: 0;
  }

  .mobile-close {
    position: absolute;
    top: 0;
    right: 0
  }

  .main-navbar>.nav-item .dropdown-menu {
    display: block;
    opacity: 1;
    transform: scaleY(0);
    width: 100%;
    overflow: hidden;
    border: 0;
    height: 0;
  }

  .main-navbar>.nav-item:hover>.dropdown-menu,
  .main-navbar>.nav-item>.dropdown-menu-open {
    height: auto;
  }

  .main-navbar>.nav-item.show>.show {
    height: auto;
  }

  .main-navbar>.nav-item .dropdown-menu .nav-item {
    border: 1px solid #2b455b;
  }

  .main-navbar>.nav-item:not(:last-child) .dropdown-menu .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-item.heading {
    display: block;
    margin: 10px 10px 21px;
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    z-index: 100;
  }

  .nav-item.heading .nav-link:hover {
    background-color: initial;
  }

  .main-navbar>.nav-item.heading.active,
  .main-navbar>.nav-item.heading:hover {
    background-color: initial;
  }

  .nav-item.heading .nav-link::after,
  .nav-item.heading .nav-link::before {
    display: none;
  }

  .main-navbar>.nav-item:not(.nav-item.heading) {
    margin: 0 10px;
  }

  .main-navbar>.nav-item:not(.nav-item.heading)>.nav-link {
    padding: 8px 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #2b455b;
    border-bottom: 0;
  }

  .main-navbar>.nav-item:last-child>.nav-link {
    border-bottom: 1px solid #2b455b !important;
  }

  #bars {
    display: block;
  }

  /* hero-slider-desgin */
  .hero-style {
    min-height: calc(100vh - 130px);
  }

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 18px
  }

  .hero-style .slide-title h2 {
    font-size: 2.5em;
    margin-bottom: 24px;
  }

  /* home-focus-box */
  .home-focus-box {
    padding: 18px;
  }

  .home-focus-box a {
    font-size: 28px;
  }

  /* about-us-section */
  .section-title {
    font-size: 2.5em;
  }

  /* services-section */
  .services-right-box>h3 {
    text-align: center;
  }

  .services-right-box>span {
    text-align: center;
  }

  .services-right-box>p {
    margin-top: 23px;
  }

  .services-right-box,
  .services-left-box {
    padding-bottom: 0;
  }

  .services-box h4 {
    font-size: 18px
  }

  .services-box p {
    font-size: 15px;
  }

  /*--counter-up-section--*/
  .counter_number_section {
    padding: 50px 0
  }

  /*--//counter-up-section-end--*/
  /*--gallery-section--*/
  .gallery_description_box {
    font-size: 14px
  }

  /*--//-gallery-section-end--*/
  /* footer-section-styling */
  .footer-item-box {
    margin-top: 25px;
  }

  .footer-section {
    padding: 50px 0 70px;
  }

  /*--//footer-section-styling-end */
  /*===----///home_page_end-----===*/
  /*---misssion_vision_page_styling---*/
  .mission_col:after {
    left: 0;
  }

  .mission_col::before {
    display: none
  }

  .mission_vision_image_box::after {
    left: -45px
  }

  .mission_content::after {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--theme-color-1);
    position: absolute;
    top: 0;
    left: 0;
  }

  .mission_content::before {
    content: "";
    width: 15px;
    height: 15px;
    background: white;
    border: 1px solid var(--theme-color-1);
    box-shadow: 3px 3px 0px var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: -7px;
    z-index: 4;
  }

  .page-heading {
    padding: 0;
  }

  .page-heading h2 {
    font-size: 25px;
    margin-bottom: 3px;
  }

  .page-heading span {
    font-size: 14px
  }

  /*---//misssion_vision_page_styling_end---*/
  /*---chairman_page_start---*/
  .chairman_desk_image {
    margin-top: 0;
  }

  .chairman_desk_content h3 {
    font-size: 18px
  }

  /*---//chairman_page_end---*/
  /*--faq_page_start--*/
  .faq_title {
    font-size: 23px;
    padding-top: 20px;
  }

  /*--faq_page_end--*/
  /*--academic_staff_section--*/
  .section_heading h3 {
    font-size: 20px
  }

  .section_heading h5 {
    font-size: 14px
  }

  .section_heading::after {
    width: 87px;
  }

  .section_heading {
    padding-bottom: 10px
  }

  .other_staff_content h4 {
    font-size: 23px
  }

  /*--academic_staff_section_end--*/
  /*--notice-page-start*/
  .latest_notice_box{
    margin-bottom: 60px;
  }
  .notice-box-heading,
  .notice-title,
  .notice_title_bar h5{
    font-size: 19px
  }
  /*--notice-page-end*/


}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  /* top_header_desgin_start */
  .top-contact-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .top-contact-list li{
    line-height: 25px;
  }
  .top-contact-box{
    width: 400px
  }
  /* top_header_desgin_end */
  /* hero-slider-desgin */
  .hero-style {
    min-height: calc(100vh - 120px);
  }

  .hero-style .slide-title h2 {
    font-size: 2em;
    margin-bottom: 24px;
  }

  .hero-style .slide-text p {
    font-size: 17px
  }

  .hero-style .btn {
    font-size: 12px;
  }

  .hero-slider .swiper-button-prev,
  .hero-slider .swiper-button-next {
    display: none;
  }

  /* about-us-section */
  .section-title {
    font-size: 2.2em;
  }

  .title-box p {
    font-size: 14px
  }

  .about-us-box h3 {
    font-size: 23px
  }

  .about-us-box p {
    font-size: 15px;
    line-height: 1.7em;
  }

  /* services-section */
  .services-right-box>h3 {
    font-size: 23px
  }

  .services-right-box>span {
    font-size: 19px
  }

  /*--counter-up-section--*/
  .counter-number-box i {
    font-size: 33px
  }

  .counter-number-box h2 {
    font-size: 31px
  }

  .counter-number-box span {
    font-size: 23px
  }

  .counter_number_section {
    padding: 40px 0
  }

  .counter-number-box {
    margin: 20px 0
  }

  /*--//counter-up-section-end--*/
  /*--parents-says-section--*/
  .parents-says-section {
    padding: 2.5rem 0
  }

  .parents_says_slider {
    padding: 40px 0
  }

  .parents_image_box>img {
    width: 50px;
    height: 50px;
  }

  .parents_image_box>img {
    font-size: 23px
  }

  .parents_says_box {
    padding: 30px 20px
  }

  /*--//parents-says-section-end--*/
  /*===--//home_page_end----===*/
  /*--mission_page_start--*/
  .mission_vision_content_box {
    margin: 30px 0 0 15px
  }

  .mission_vision_content_box::before {
    width: 30px;
    left: -30px
  }

  .page-heading h2 {
    font-size: 23px;
    margin-bottom: 1px;
  }

  .page-heading span {
    font-size: 13px
  }

  .page_title_box h1 {
    font-size: 24px
  }

  .page_title_box h3 {
    font-size: 16px
  }

  /*--//mission_page_end--*/
  /*---contact_page_start--*/
  .captcha_box h2 {
    font-size: 17px
  }

  .contact_submit_btn {
    padding: 6px 30px;
    font-size: 15px;
  }

  .address_box {
    margin-top: 20px;
  }

  .address_content_box h5 {
    margin-top: 10px
  }

  .map-box iframe {
    height: 300px;
  }
  /*---contact_page_end--*/
    /*--notice-page-start*/
    .notice-box-heading,
    .notice-title,
    .notice_title_bar h5{
      font-size: 17px
    }
    /*--notice-page-end*/
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

  /* top-header-styling */
  .top-contact-list li a {
    font-size: 12px;
  }

  .notice-blox {
    max-width: 90vw
  }

  /*--navbar-syling---*/
  .main-navbar {
    max-width: 85vw
  }

  /*---navbar-syling-end--*/
  /* hero-slider-desgin */
  .hero-style {
    min-height: 60vh;
  }

  .hero-slider .swiper-pagination {
    bottom: 20px;
  }

  .hero-style .slide-title h2 {
    font-size: 1.8em;
    margin-bottom: 21px;
  }

  .hero-style .slide-text p {
    font-size: 15px;
    font-weight: 900;
  }

  .hero-style .btn {
    font-size: 12px;
    padding: 8px 15px
  }

  /* home-focus-box */
  .home-focus-box {
    padding: 17px;
  }

  .home-focus-box a {
    font-size: 25px;
  }

  /*--title-section--*/
  .title-box {
    padding: 0 15px
  }

  /*--//title-section-end--*/
  /*--our-services-section */
  .our-services-section {
    margin-bottom: 0;
  }

  /*--counter-up-section--*/
  .counter-number-box i {
    font-size: 30px
  }

  .counter-number-box h2 {
    font-size: 33px;
    margin: 11px 0 3px
  }

  .counter-number-box span {
    font-size: 21px
  }

  .counter_number_section {
    padding: 30px 0
  }

  .counter-number-box {
    margin: 20px 0
  }

  /*--//counter-up-section-end--*/
  /*--parents-says-section--*/
  .parents_name_box>h3 {
    font-size: 22px
  }

  .parents_says_box>p {
    line-height: 24px;
  }

  /*--//parents-says-section-end--*/
  /*--our_teachers_section--*/
  .teacher-social-box {
    max-width: 63%
  }

  /*--//our_teachers_section-end--*/

  /* footer-section */
  .our-school-content {
    font-size: 14px;
    line-height: 1.6em;
  }

  .address-content {
    font-size: 14px;
    line-height: 1.6em;
  }

  .footer-title {
    font-size: 20px;
  }

  .contact-media li a {
    font-size: 14px;
    width: 32px;
    height: 32px;
  }

  /*--footer-section-end---*/
  /*===---//home_page_end---===*/
  /*--mission_page_start--*/
  .page_title_box h1 {
    font-size: 20px;
  }

  .page_title_box h3 {
    font-size: 12px;
    margin-top: 9px
  }

  .page_title_box {
    min-height: 180px
  }

  .page_title_box h3::after {
    height: 3px
  }

  .page-heading h2 {
    font-size: 20px;
    margin-bottom: 0;
  }

  .page-heading span {
    font-size: 12px;
  }

  .mission_vision_content_box h4 {
    font-size: 20px;
  }

  .mission_vision_content_box p {
    font-size: 14px
  }

  /*--//mission_page_end--*/
  /*---chairman_page_start---*/
  .chairman_desk_image {
    margin-top: 0;
  }

  .chairman_desk_content h3 {
    font-size: 16px
  }

  .chairman_desk_content p {
    font-size: 14.5px;
    line-height: 1.7em;
  }

  .chairman_description {
    font-size: 13px
  }

  /*---//chairman_page_end---*/
  /*---contact_heading_section--*/
  .contact_heading_box i {
    font-size: 18px;
    width: 45px;
    height: 45px
  }

  .contact_heading_box h5 {
    font-size: 21px;
    margin: 18px 0 8px;
  }

  .contact_heading_box a,
  .contact_heading_box p {
    font-size: 14px;
    line-height: 1.7em;
  }

  /*---//contact_heading_section_end--*/
  /*---infrastructure_section---*/
  .infrastructure_content_box h2 {
    font-size: 18px
  }

  .infrastructure_content_box p {
    font-size: 14px
  }

  .infrastructure_content_box,
  .infrastructure_image_box {
    margin: 15px 0;
  }

  .types-infrastructure_box h4 {
    font-size: 19px
  }

  .types-infrastructure_box p {
    font-size: 13px;
    line-height: 1.6em;
  }

  .filter_button_infrastructure li {
    font-size: 14px
  }

  /*---//infrastructure_section_end---*/
  /*--faq_page_start--*/
  .faq_title {
    font-size: 20px;
    padding-top: 20px;
  }

  .faq_box .card-header h5 {
    font-size: 19px
  }

  .faq_answer_send_title h4 {
    font-size: 19px;
  }

  .school_form_btn {
    font-size: 14px;
    padding: 7px 17px;
  }

  /*--faq_page_end--*/
  /*---contact_page_start--*/
  .address_box {
    margin-top: 20px;
  }

  .address_content_box h5 {
    font-size: 16px
  }

  .address_content_box a {
    font-size: 14px
  }

  .contact_form_label {
    font-size: 14px;
  }

  .form_box .form-control {
    font-size: 14px
  }

  .captcha_box h2 {
    font-size: 16px
  }

  .contact_submit_btn {
    font-size: 14px;
    padding: 6px 30px;
  }

  .map-box iframe {
    height: 250px;
  }

  /*---contact_page_end--*/
  /*--academic_staff_section--*/
  .section_heading h3 {
    font-size: 18px
  }

  .section_heading h5 {
    font-size: 13px
  }

  .heading_under_conetnt {
    font-size: 14px;
    line-height: 22px;
    text-align: justify;
  }

  .acadamic_staff_detalles {
    width: 100%;
  }

  .acadamic_staff_detalles {
    width: 100%;
    height: auto
  }

  .acadamic_staff_img {
    width: 100%
  }

  .social_media_teacher a i {
    width: 33px;
    height: 27px;
    font-size: 14px
  }

  .acadamic_staff_col {
    margin-top: 30px
  }

  .other_staff_content h4 {
    font-size: 22px
  }

  /*--academic_staff_section_end--*/
  /*---curriculum_section_start---*/
  .curriculum_top_content {
    font-size: 14.4px;
    line-height: 1.6em;
  }
  .curriculum_content p{
    padding-bottom: 20px;
  }
  .curriculum_content h5 {
    font-size: 17px
  }

  /*---curriculum_section_end---*/

  /*--notice-page-start*/
  .notice-box-heading,
  .notice-title,
  .notice_title_bar h5{
    font-size: 15px
  }
  .notice_paragraph,
  .footer-notice {
    font-size: 15px
  }
  .download_btn{
    font-size: 11px;
  }
  /*--notice-page-end*/

  /*---go_top_top---*/
  .go_top_top {
    width: 35px;
    height: 35px;
  }

  .go_top_top i {
    font-size: 16px;
  }
  /*---go_top_top---*/
}


/* web css */
  .web_student_menu a{
    font-weight: 600;
  }

  .web_student_mob_menu {
    display: none;
  }

  /* .mob_notice_list {
    display: none;
  } */

  @media(max-width: 767px) {

    .web_student_menu {
      padding: 10px 0;
    }

    .web_student_desk_menu {
      display: none;
    }

    .web_student_mob_menu {
      display: block;
    }

    .student_img img {
      width: 100%;
      margin-bottom: 20px;
    }

    .warning_msg_student {
      font-size: 14px;
    }

    .submit_student_dtls {
      width: 100%;
    }

    .month_attendance_box {
      margin: 7px 0;
    }

    .total_presnt_count_std span {
      display: block;
    }

    .std_change_pass_img {
      display: none;
    }

    .desk_notice_list {
      display: none;
    }

    .mob_notice_list {
      display: block;
    }

  }

  .mob_notice_list {
    width: 100%;
  }

  .mob_notice_list li a {
    display: flex;
    background: #ffffff;
    box-shadow: 1px 1px 7px 2px #e7e7e7;
  }

  .mob_notice_list li {
    margin: 10px 0;
  }

  .mob_notice_list li a div {
    padding: 5px 10px;
  }

  .mob_notice_list li a div > h6 {
    letter-spacing: .3px;
  }

  .mob_notice_list li a > i {
    padding: 5px;
    color: #ffffff;
    width: 40px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #ff9800;
  }

  /* .mob_notice_list li a > p {
    font-size: 13px;
    margin-top: 3px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  } */

  .mob_notice_list li a div > span {
    font-size: 13px;
    margin-top: 3px;
    color: #0000dd;
  }