/*
Theme Name: C2 Developer Zone
Theme URI: https://c2developerzone.com
Author: C2 Developer Zone Team
Author URI: https://c2developerzone.com
Description: Custom WordPress theme developed for MDB School, designed to represent a modern educational institution offering quality academics, student-focused learning, experienced faculty, and a nurturing environment that supports overall growth and excellence.
Version: 1.0
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap');
/*font-family: "Outfit", sans-serif;*/


body {
  color: #444444;
  font-family: "Outfit", sans-serif;
  background: #fff;
}

p {
  color: #636363;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  line-height: 26px;
}

a {
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #07132b;
  font-family: "Fredoka", sans-serif;
}

a.theme-btn {
    margin: 2rem auto 0.5rem;
    display: inline-flex;
    color: #ffffff;
    transition: 0.3s ease;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: -0.2px;
    font-size: 16px;
    background: #023f7d;
    padding: 8px 16px 8px 16px;
    align-items: center;
    border-radius: 100px 100px 0 100px;
}

a.theme-btn:hover {
  background: #1f9ddf;
}

section {
  position: relative;
}

.pd {
  padding: 0;
}

.pd-left {
  padding-left: 0;
}

.pd-right {
  padding-right: 0;
}

.owl-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
	width:100%;
}
button.owl-prev {
    position: absolute;
    top: 50%;
    left:-4%;
    transform: translateY(-50%);
}
button.owl-next {
    position: absolute;
    top: 50%;
    right: -1%;
    transform: translateY(-50%);
}

button.owl-prev, button.owl-next {
    display: flex;
}


button.owl-prev span,
button.owl-next span {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 5px;
  font-weight: 400;
}
button.owl-prev:before {
    content: "";
    width: 80px;
    height: 80px;
    background-image: url('assets/img/butterfly-prev.png');
    background-size: 75px;
    background-repeat: no-repeat;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2.00);
    animation-duration: calc(var(--animate-duration) * 2.00);
    -webkit-animation-name: tada;
    animation-name: tada;
    animation-iteration-count: infinite;
}
button.owl-next:before {
    content: "";
    width: 80px;
    height: 80px;
    background-image: url('assets/img/butterfly-next.png');
    background-size: 75px;
    background-repeat: no-repeat;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2.00);
    animation-duration: calc(var(--animate-duration) * 2.00);
    -webkit-animation-name: tada;
    animation-name: tada;
    animation-iteration-count: infinite;
}
button.owl-prev span, button.owl-next span {
    display: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  transition: all 0.4s;
  animation-iteration-count: infinite;
  animation-duration: 2s;
}
.back-to-top img {
    width: 95px;
}
.back-to-top:hover {
    background: transparent!important;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*Topbar Sec*/

section.topbar-sec {
  padding: 10px 0;
  background: #4C4AB2;
  width: 90%;
  margin: auto;
  border-radius: 0 0 20px 20px;
}

.topbar-left a {
  padding: 2px 5px;
  display: inline-block;
  margin-right: 8px;
  font-family: "Monda", sans-serif;
}

.topbar-left a img {
  margin-right: 5px;
  height: 20px;
}

.topbar-left a:first-child {
  border-right: solid 1px #fff;
  padding-right: 16px;
}

.social-link {
  text-align: right;
}

.social-link a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3abbff;
  border: solid 1px #ffffff54;
  margin: 0 3px;
  border-radius: 100px;
  font-size: 15px;
}

.topbar-left {
  display: flex;
  align-items: center;
  height: 100%;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  background: transparent;
  position: fixed;
  top: 0px;
  width: 100%;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: none;
}

.header-col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255 255 255);
  top: 0;
  width: 100%;
  border-radius: 0;
}

header#header .container {
  background: #ffffff;
  padding: 0;
  border-radius: 0 0 40px 40px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  height: 43px;
}

.header-right {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  margin: auto;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 17px 26px 17px;
  font-size: 15px;
  font-weight: 500;
  color: #0c1e31;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.15px;
  text-transform: capitalize;
  font-family: "Outfit", sans-serif;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar .current-menu-item,
.navbar .current-menu-item:focus {
  color: #ffffff;
  clip-path: polygon(17% 0%, 83% 0%, 100% 100%, 0% 100%);
  background: #1f9ddf;
}

.current-menu-item a {
    color: #fff;
}
.navbar li.current-menu-item:hover>a {
    color: #ffffff;
}
.navbar a:hover,
.navbar li:hover>a {
  color: #1f9ddf;
}
.navbar .current-menu-parent .current-menu-item {
    background: transparent;
}
.navbar .current-menu-parent .current-menu-item a, .navbar .current-menu-parent a:hover{
    color: #1f9ddf;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #ea1826;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  color: #13192b;
  letter-spacing: -0.2px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #1f9ddf;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
.mobile-nav-toggle {
    display: block;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background: #1c90cd;
    padding: 5px;
    margin-left: 7px;
	z-index: 9999;
}
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
    height: 96vh;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ea1826;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ea1826;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}
a.admission-btn, .theme-btn {
    background: #023f7d;
    padding: 12px 9px 12px 18px;
    border-radius: 100px;
    margin-left: auto;
    display: table;
    transition: 0.3s ease;
}
a.admission-btn i, .theme-btn i {
    background: #1f9ddf;
    padding: 5px 12px;
    border-radius: 6px 30px 30px;
    margin-left: 7px;
    transition: 0.3s ease;
}
a.admission-btn:hover {
    background: #1f9ddf;
    color: #fff;
}
a.admission-btn:hover i{
    background: #023f7d;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 75px 0 70px;
  overflow: hidden;
}

.theme-heading-sec {
  margin-bottom: 3rem;
  text-align: center;
}

.theme-heading-sec h2 {
  text-transform: capitalize;
  font-size: 43px;
  font-weight: 600;
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
  color: #0c1e31;
  line-height: 43px;
  font-family: "Fredoka", sans-serif;
}

.theme-heading-sec h2 span {
  color: #FF8F00;
}

.theme-heading-sec h6 {
  font-family: "Schoolbell", cursive;
  color: #e0373d;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
}





/*Banner*/

#demo {
  position: relative;
  background-color: #023f7d;
  height: 100%;
}

div#demo:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 226px;
  max-height: 32%;
  top: auto;
  left: 0;
  right: 0;
  bottom: -38px;
  z-index: 2;
  -webkit-mask-image: url(//dt-kidscool.myshopify.com/cdn/shop/files/slider-cloud-bg.png?v=1682063227&width=2500), url(//dt-kidscool.myshopify.com/cdn/shop/files/slider-cloud-bg-ligh2t_1.png?v=1682061640&width=2500);
  -webkit-mask-size: contain;
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: repeat-x;
  background-color: #ffffff;
  pointer-events: none;
}

div#demo:after {
  content: "";
  background-image: url(assets/img/bn-texture2.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-size: 26%;
  /* background-image: url(assets/img/bn-texture.png);
    opacity: 0.6; */
}

.carousel-inner {
  position: relative;
  z-index: 1;
}

.carousel-item {
  padding: 0rem 0 0rem;
  height: 100vh;
}

.carousel-item .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.banner-heading {
  padding-left: 3rem;
  padding-right: 0.5rem;
}

.banner-heading a.theme-btn {
    margin: 0;
    background: #f13037;
    color: #ffffff;
    border-radius: 100px 100px 0 100px;
    padding: 9px 16px;
}

.banner-heading h1 {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 60px;
  text-transform: uppercase;
  padding-left: 0px;
  word-spacing: -5px;
  color: #fff;
  font-family: "Fredoka", sans-serif;
}

.banner-heading h1 span {
  color: #ee0d0d;
  display: block;
}

.banner-heading p {
  color: #ffffff;
  font-size: 16px;
  line-height: 26px;
  margin: 1.7rem 0 2.7rem;
  letter-spacing: 0.3px;
  font-weight: 300;
}

.ban-col,
.ban-col-rt {
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
}

.banner-rt-col {
  position: relative;
  width: 100%;
  max-height: 410px;
  height: 100vh;
  background: #fff;
  overflow: hidden;
  margin-top: -1rem;
  -webkit-mask-image: url(assets/img/bn-shape.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.ban-col-rt:before {
  content: "";
  -webkit-mask-image: url(assets/img/bn-bf-shape.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  width: 100%;
  max-height: 466px;
  height: 100vh;
  position: absolute;
  top: 50%;
  background: #1f9ddf;
  transform: translate(-50%, -50%);
  left: 50%;
}

.banner-rt-col img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.prt1,
.prt2 {
  position: absolute;
  animation-iteration-count: infinite;
    animation-duration: 3s;
}

.prt1 {
  left: 16px;
  top: -38px;
  width: 61px;
}

.prt2 {
  right: 65px;
  bottom: 0px;
  transform: rotate(7deg);
  width: 61px;
}



.carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  margin: -5rem 0.3rem 0;
  opacity: .5;
  border-radius: 100%;
  border: solid 5px #ffffff;
  box-shadow: 0px 0px 0px 1px #b4b5b5;
  background: #b4b5b5;
  display: block;
}

.carousel-indicators .active {
    opacity: 1;
    box-shadow: 0px 0px 0px 1px #1f9ddf;
    background: #1f9ddf;
}

.carousel-control-next, .carousel-control-prev {
    width: 4%;
    opacity: 1;
}
.carousel-control-prev {
    left: 28px;
}
.carousel-control-next {
    right: 28px;
}
button.carousel-control-prev img, button.carousel-control-next img{
    animation-iteration-count: infinite;
    animation-duration: 3s;
}
.banner-heading a.theme-btn:hover {
    background: #1f9ddf;
}


/*About Sec*/

/* section.about-sec {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 239, 228, 1) 100%);
} */

.about-sec .theme-heading-sec {
  margin-bottom: 1.2rem;
  text-align: left;
}

.about-sec .theme-heading-sec h2 {
  text-align: left;
}

.about-rt-col {
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

.about-lt-col {
  position: relative;
}

.abt-img {
  position: relative;
  width: 84%;
  margin: auto;
  display: table;
}

.abt-lt-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-wrap p {
  color: #c2c3d7;
}
.svg1 {
    width: 20%;
    position: absolute;
    right: 63px;
    top: 1px;
    transform: rotate(365deg);
}
svg#Layer_1 {
    fill: #e0373dd9;
    transform: rotate(365deg);
    animation-iteration-count: infinite;
    animation-duration: 1.5s;
}

.counter-sec {
  display: flex;
  justify-content: space-between;
}

.count {
  width: calc(100% / 3 - 0px);
  text-align: center;
  padding: 0rem 1rem;
  border-right: solid 1px #35319c26;
}

.count h3 {
  font-family: "Fredoka", sans-serif;
  color: #023f7d;
}

.count h5 {
  font-size: 17px;
  letter-spacing: -0.2px;
}

.counter-sec .count:last-child {
  border: none;
}

.counter-sec {
  display: flex;
  justify-content: space-between;
  margin: 1.3rem 0 1.2rem;
  background: #faf5f2;
  padding: 1rem;
}

.sign {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ceo-img {
    border-radius: 100px;
    width: 85px;
    height: 85px;
    object-fit: cover;
    object-position: CENTER;
}

.abt-call a {
  color: #07132b !important;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.signature-wrap {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 40px;
    margin: 1.5rem 0 0.5rem;
}

.sign h5 {
    font-size: 18px;
    margin: 0;
}
.sign h5 span {
    font-size: 16px;
    display: block;
    color: #e0373d;
}

.abt-call {
  display: flex;
  align-items: center;
}

.abt-call a span {
  font-weight: 300;
  display: block;
  font-size: 15px;
}

.abt-call i {
  width: 45px;
  height: 45px;
  background-color: #e0373d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  color: #fff;
  -webkit-mask: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2044%2046%22%20%3E%3Cpath%20d%3D%22M44%2023.0795C44%2035.0763%2031.5827%2042.6359%2022%2044.8041C10.1572%2047.4813%200%2035.0763%200%2023.0795C0%2011.0827%2014.2416%20-4.40477%2025%201.17218C37.5%205.98954%2044%2011.0827%2044%2023.0795Z%22%20%2F%3E%3C%2Fsvg%3E);
  mask: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2044%2046%22%20%3E%3Cpath%20d%3D%22M44%2023.0795C44%2035.0763%2031.5827%2042.6359%2022%2044.8041C10.1572%2047.4813%200%2035.0763%200%2023.0795C0%2011.0827%2014.2416%20-4.40477%2025%201.17218C37.5%205.98954%2044%2011.0827%2044%2023.0795Z%22%20%2F%3E%3C%2Fsvg%3E);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  transition: all 500ms ease;
  margin-right: 10px;
}

/*Classes*/

/* section.classes-sec {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 239, 228, 1) 100%);
  padding-top: 50px;
} */
section.classes-sec {
    padding-top: 40px;
}
.classes-wrap {
  background: #fff;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  max-height: 400px;
  height: 100vh;
  cursor:pointer;
}

.classes-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.classes-img {
  max-height: 310px;
  height: 100vh;
  position: relative;
}

.classes-cont {
  background: antiquewhite;
  padding: 1rem 1.5rem 1.3rem;
  text-align: center;
  border-radius: 100px 100px 30px 30px;
  position: absolute;
  bottom: -60px;
  transition: 0.3s ease;
}
.classes-sec .theme-btn {
    margin: 3rem 0 0rem;
}
.classes-cont p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
}

.classes-wrap:hover .classes-cont {
  bottom: 0px;
}

.classes-ic {
  border-radius: 10px 40px 10px 10px;
  display: flex;
  transition: all ease 0.4s;
  background: #fff;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  margin: -67px auto 9px;
}
.classes-wrap:hover .classes-ic {
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
    animation-delay: 2s;
}
.classes-ic img {
  width: 43px;
}

.classes-cont a {
  border: solid 2px #fff;
  width: 90%;
  display: block;
  margin: auto;
  border-radius: 100px;
  padding: 5px;
  visibility: hidden;
}
.classes-wrap:hover .classes-cont a{
  visibility: visible;
}
.bg-green {
  background: #76ad1e;
}

.bg-red {
  background: #e30d5a;
}

.bg-cyan {
  background: #1f9ddf;
}

.bg-blue {
  background: #023f7d;
}

.classes-cont h4 {
  color: #fff;
}
.classes-cont.bg-blue a:hover {
    background: #fff;
    color: #023f7d;
}
.classes-cont.bg-cyan a:hover {
    background: #fff;
    color: #1f9ddf;
}
.classes-cont.bg-red a:hover {
    background: #fff;
    color: #e30d5a;
}
.classes-cont.bg-green a:hover {
    background: #fff;
    color: #76ad1e;
}

/*Event Sec*/
section.event-sec {
  background: #023f7d;
}
section.event-sec:after {
    content: "";
    background-image: url(assets/img/bn-texture2.png);
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-size: 26%;
}
section.event-sec .container {
    position: relative;
    z-index: 1;
}
.event-sec .theme-heading-sec h2 {
    color: #ffffff;
}
.event-row-wrap {
  background: #fff;
  padding: 1.5rem 1.1rem 1.5rem 0.9rem;
  border-radius: 30px 30px 30px 210px;
  width: 94%;
  margin: auto;
}
.event-img {
    max-height: 215px;
    height: 100vh;
    background: #e7eaec;
    border-radius: 20px 20px 20px 185px;
    position: relative;
    overflow: hidden;
}
.event-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.event-cont h5 {
    font-size: 26px;
    font-weight: 500;
    line-height: 27px;
    margin: 0.2rem 0 0.9rem;
}
.event-cont p {
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.8rem;
}
.event-cont span {
    color: #e0373d;
    letter-spacing: -0.2px;
    margin: 1rem 0 0rem;
    display: block;
}
.srv-carousel {
    width: 95%;
    margin: auto;
    padding: 0 2.5rem;
}
.event-sec a.theme-btn {
    display: table;
    background: #1f9ddf;
    border:solid 1px #1f9ddf;
}
.event-sec a.theme-btn:hover {
    background: #023f7d;
    border:solid 1px #1f9ddf;
}
.event-cont a {
    color: #023f7d;
    letter-spacing: -0.3px;
    position: relative;
    display: block;
    z-index: 1;
    padding-left: 1rem;
}
.event-cont a:before {
    display: inline-block;
    content: "";
    width: 45px;
    height: 45px;
    background-color: #1f9ddf82;
    border-radius: 50%;
    -webkit-mask: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2044%2046%22%20%3E%3Cpath%20d%3D%22M44%2023.0795C44%2035.0763%2031.5827%2042.6359%2022%2044.8041C10.1572%2047.4813%200%2035.0763%200%2023.0795C0%2011.0827%2014.2416%20-4.40477%2025%201.17218C37.5%205.98954%2044%2011.0827%2044%2023.0795Z%22%20%2F%3E%3C%2Fsvg%3E);
    mask: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2044%2046%22%20%3E%3Cpath%20d%3D%22M44%2023.0795C44%2035.0763%2031.5827%2042.6359%2022%2044.8041C10.1572%2047.4813%200%2035.0763%200%2023.0795C0%2011.0827%2014.2416%20-4.40477%2025%201.17218C37.5%205.98954%2044%2011.0827%2044%2023.0795Z%22%20%2F%3E%3C%2Fsvg%3E);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    transition: all 500ms ease;
    top: 50%;
    left:0;
    transform: translateY(-50%);
    position: absolute;
    z-index: -1;
}
.event-cont a:hover:before{
    background-color: #023f7d;
}
.event-cont a:hover {
    color: #1f9ddf;
}
/*Contact Sec*/
section.contact-sec {
    padding: 30px 0 30px;
}
.contact-lt-col {
    padding: 3rem 0 0 3rem;
    display: flex;
    align-items: center;
    position: relative;
}
.ci1, .ci2 {
    width: 70px !important;
    animation-iteration-count: infinite;
    animation-duration: 2.5s;
}
img.img-fluid.ci1 {
    position: absolute;
    left: 1%;
}
img.img-fluid.ci2 {
    position: absolute;
    bottom: 15%;
    right: 17%;
}
.contact-sec .theme-heading-sec {
  text-align: left;
}

.form-rt-col {
  padding: 3.5rem 0rem 5.5rem 5.5rem;
  position: relative;
}

.kid-contact {
    position: absolute;
    left: -99px;
    width: 176px;
    bottom: -7px;
}

.form-group p {
    margin: 0;
}
.form-group {
    margin-bottom: 10px;
}
.form-label {
    margin-bottom: 5px;
    color: #0c1e31;
}
.form-control {
    border: 1px solid rgb(2 63 125 / 9%);
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 10px;
    height: 47px;
    background-color: #fdfbff;
    font-size: 15px;
}
.submit-wrap {
    display: flex;
    border: none;
    border-radius: 100px;
    padding: 9px 9px 9px 14px;
    align-items: center;
    background: #023f7d;
    gap: 7px;
    color: #fff;
    margin-top: 1rem;
    position: relative;
}
.submit-btn, .submit-btn:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: none;
    padding: 0;
    height: auto;
}
.submit-wrap i {
    background: #1f9ddf;
    width: 54px;
    height: 30px;
    border-radius: 100px;
    max-width: 30px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.submit-wrap:hover {
    background: #1f9ddf;
}
.submit-wrap:hover i{
    background: #023f7d;
}
.contact-lt-col img {
  width: 75%;
}
span.wpcf7-spinner {
    position: absolute;
    bottom: -24px;
}

.cloud-sec {
  margin-top: -9rem;
  position: relative;
  z-index: 9;
}


/*Footer Top*/

footer.footer-top {
    padding: 0rem 0 1rem;
    position: relative;
    background-color: #023f7d;
    background-position: bottom center;
    background-repeat: no-repeat;
    margin-top: 0rem;
}
footer.footer-top:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 167px;
  max-height: 80%;
  top: -126px;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-mask-image: url(//dt-kidscool.myshopify.com/cdn/shop/files/slider-cloud-bg.png?v=1682063227&width=2500), url(//dt-kidscool.myshopify.com/cdn/shop/files/slider-cloud-bg-ligh2t_1.png?v=1682061640&width=2500);
  -webkit-mask-size: contain;
  -webkit-mask-position: bottom center;
  -webkit-mask-repeat: repeat-x;
  background-color: #023f7d;
  pointer-events: none;
}

.footer-middle {
  border-left: solid 1px rgb(255 255 255 / 22%);
  border-right: solid 1px rgb(255 255 255 / 22%);
}

.logo-wrap {
  padding-right: 1.8rem;
  text-align: center;
}

.logo-wrap img {
  width: 260px;
  background: #f7f7f7;
  padding: 9px;
}
.footer-contact-wrapper p, .footer-contact-wrapper a{
    position: relative;
    color: #e4e5ec;
    font-size: 15px;
    padding-left: 0;
    line-height: 23px;
    margin-bottom: 11px;
    font-weight: 300;
}
.footer-contact-wrapper p i {
  position: absolute;
  left: 0;
  top: 7px;
  color: #5bc7ff;
  font-size: 14px;
  display: flex;
}

.footer-wrapper h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.6rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.mail-wrap {
    margin-bottom: 0.7rem;
    line-height: 12px;
}
.footer-contact-wrapper a:hover {
    color: #1f9ddf;
}
.logo-wrap p {
    color: #e4e5ec;
    font-size: 15px;
    margin: 1rem 0 1.7rem;
    font-weight: 300;
    line-height: 23px;
    letter-spacing: 0.2px;
}

.footer-contact-wrapper {
  padding-left: 1.8rem;
  text-align: center;
}


/*Footer Bottom*/

footer.footer-bottom {
  padding: 0;
  position: relative;
  background: #023f7d;
}

footer.footer-bottom .container {
    padding: 16px 0;
    border-top: solid 1px rgb(255 255 255 / 22%);
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    background: #ffffff;
}
.copyright-txt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
footer.footer-bottom .row {
  align-items: center;
}

.social-link {
  text-align: center;
}

.logo-wrap .social-link a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #353458;
  border: solid 1px rgb(255 255 255);
  margin: 0 3px;
}

.logo-wrap .social-link a:hover {
  background: #00DCED;
  border: solid 1px #00DCED;
}
.footer-contact-wrapper span {
    color: #1f9ddf;
}
.copyright-txt p {
    color: #0c1e31;
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}
.copyright-txt span {
    color: #0c1e31;
    font-weight: 300;
}
.copyright-txt p a {
    color: #0293df;
    text-transform: capitalize;
    transition: 0.2s ease;
}
.copyright-txt p a:hover{
    color: #df3d37;
}
.footer-contact-wrapper p a {
  font-family: "Monda", sans-serif;
  color: #cbd0e3;
}

footer.footer-top .container {
  position: relative;
  z-index: 999;
}

/* Contact Us Page*/
.cont-top-img {
    max-height: 475px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100vh;
}
.form-container .theme-heading-sec {
    text-align: left;
}
.address-col {
    padding: 2rem;
}
.address-col .theme-heading-sec {
    margin-bottom: 1rem;
	text-align:left;
}
.address-wrap ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.address-wrap ul li {
    display: flex;
    align-items: flex-start;
    justify-content: left;
    padding: 20px 0;
    margin: 0;
    gap: 16px;
    border-bottom: solid 1px #f6f2ff;
}
.address-wrap ul li i {
    max-width: 55px;
    width: 100%;
    height: 55px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border: solid 4px #ffffff;
    outline: solid 1px #c19797;
}
.add-cont h6 {
    color: #e0373d;
    margin-bottom: 2px;
    font-weight: 500;
    letter-spacing: 0.2px;
}
.add-cont p {
    padding: 0;
    margin: 0;
}
.add-cont p a {
    color: #0c1e31;
}
.address-wrap ul li:first-child i {
    background: #4CAF50;
    outline: solid 1px #4caf50;
}
.address-wrap ul li:nth-child(2) i {
    background: blueviolet;
    outline: solid 1px #8a2be2;
}
.address-wrap ul li:last-child i {
    background: #e91e63;
	outline: solid 1px #e91e63;
}
.hours-table {
    background: #f3eaea;
    border-radius: 15px;
    padding: 1rem 1.5rem;
    width: auto;
    display: inline-block;
}
.hours-table td {
    padding: 5px 8px;
}
.hours-table tr td:last-child {
    padding: 4px 15px 4px 15px;
}

section.map-sec {
    padding-top: 0;
    text-align: center;
}
.form-container {
    background-color: #ffffff;
    padding: 4rem 4rem;
    margin-top: -10rem;
    border: solid 10px #fff;
    position: relative;
    z-index: 1;
}
.form-container:after {
    content: "";
    background-image: url(https://templates.envytheme.com/ketan/default/assets/img/teacher-bg.jpg);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 98%;
    opacity: 0.5;
    z-index: -1;
    mix-blend-mode: luminosity;
}
.form-container .theme-heading-sec h2 {
    margin: 0;
}
.map-wrapper {
    border-radius: 21px;
    position: relative;
    background: #f7f7f7;
    padding: 2rem;
    margin-bottom: 5rem;
}
.map-wrapper iframe {
    border: 0;
    border-radius: 15px;
    box-shadow: 1px 2px 13px 0px rgb(113 122 165 / 33%);
}

.map-wrapper:after {
    transform: translateX(-96%) rotate(20deg);
}
.map-wrapper:before, .map-wrapper:after {
    content: "";
    background: #a1695c;
    width: 50px;
    height: 260px;
    position: absolute;
    bottom: -35%;
    left: 50%;
    z-index: -1;
}
.map-wrapper:before {
    transform: translateX(10%) rotate(328deg);
    background: #815146;
}
textarea.form-control {
    min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
    height: auto;
}
.captcha-image {
    padding: 10px;
    display: inline-block;
    text-align: center;
    width: 100%;
    background: #f5f3f3;
    border-radius: 10px;
    border: none;
    margin-top: 0.7rem;
}
.cf7ic_instructions{
    color: #0c1e31;
}
.captcha-image path {
    fill: #023f7d;
}
.form-container .captcha-image {
    background: #bee3f7;
}

/*About Us Page*/

.chairman-section {
    background: #023f7d;
}
.chairman-section:after {
    content: "";
    background-image: url(assets/img/abt-shape.svg);
    position: absolute;
    bottom: -14px;
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: bottom;
}
.chairman-section .theme-heading-sec {
    margin-bottom: 2rem;
    text-align: left;
}
.chairman-section .theme-heading-sec h2 {
    color: #fff;
    font-weight: 500;
}
.chairman-content p {
    color: #fff;
    font-weight: 300;
}
.chairmanImg {
    position: relative;
}
.chrmnImg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    width: 82%;
    border: solid 7px #023f7d;
}
section.mission-sec {
    padding-bottom: 11rem;
}
section.mission-sec .tab-pane ul li:before {
    content: "\F270";
    font-family: 'bootstrap-icons';
    color: #1f9ddf;
    position: absolute;
    left: 0;
    font-size: 17px;
    top: 2px;
    font-weight: 600;
}
section.mission-sec .tab-pane ul li {
    position: relative;
    padding: 0 0 1rem 1.5rem;
    line-height: 23px;
}
section.mission-sec .tab-pane ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mission-sec .theme-heading-sec {
    text-align: left;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #023f7d;
}
section.mission-sec h4 {
    border-left: solid 3px #e30d5a;
    padding-left: 0.5rem;
    margin: 1.5rem 0;
}
/*Event Details*/

.event-dtls-ltCol img {
    height: 450px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.event-meta span {
    background: #023f7d;
    color: #fff;
    padding: 0.6rem 1rem;
    display: inline-block;
    border-radius: 10px 10px 0 0;
    font-size: 14px;
}
.event-dtls-ltCol h2 {
    border-left: solid 4px orangered;
    margin: 1.5rem 0 1.1rem;
    padding-left: 0.5rem;
    line-height: 32px;
    letter-spacing: -0.5px;
}
.event-dtls-rtCol {
    background: beige;
    width: 80%;
}
.event-dtls-rtCol {
    background: beige;
    width: 100%;
    margin-left: auto;
    margin-top: 2.4rem;
    padding: 2rem;
}
.event-dtls-rtCol ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.event-dtls-rtCol ul li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0.7rem 0;
    gap: 12px;
}
.event-dtls-rtCol ul li img {
    max-width: 105px;
    height: 65px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.event-dtls-rtCol a {
    color: #07132b;
    font-family: "Fredoka", sans-serif;
    font-weight: 500!important;
    line-height: 21px;
    font-size: 18px;
    letter-spacing: -0.4px;
}
/*Gal-Archive*/
.gallery-section{
	padding-bottom:11rem;
}
.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 12px 0;
}
.album-grp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
}
.album-wrap img {
    max-height: 195px;
    height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    filter: unset!important;
}
.gallery-listing-title {
    margin: 0.7rem 0 0;
	text-align:center;
}
.gallery-listing-title h4 {
    font-size: 22px;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.gallery-listing-title a {
    position: relative;
    margin: 0.7rem 0;
    display: inline-block;
    padding-left: 15px;
}
.gallery-listing-title a:before {
    content: "";
    width: 42px;
    height: 38px;
    background: #cf4041;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 39% 51% 34% 27%;
    z-index: -1;
}
.gallery-listing-title a:hover {
    color: #cf4041;
}
.gallery-listing-title a:hover:before {
    background: #fdfdfd;
}
section.gallery-section .arch-col:nth-child(even) .gallery-container img {
    filter: hue-rotate(175deg);
}

/*Gallery*/

.gallery-single-sec{
	padding-bottom:11rem;
}
.gal a {
    width: calc(100% / 4 - 14px);
    display: inline-block;
    margin: 13px 5px;
    border-radius: 15px;
    position: relative;
}

.gal a img {
    height: 100vh;
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 38px;
}
a.image-popup span {
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    color: #0c1e31;
    background: #fff;
    width: 85%;
    text-align: center;
    padding: 7px 5px 2px;
    border-radius: 22px 22px 0 0;
    font-size: 19px;
    font-weight: 500;
}

/*Inner Banner*/

section.inner-banner-sec {
    background-color: #023870;
    position: relative;
    text-align: center;
    padding: 8rem 0 6.5rem;
}
/* section.inner-banner-sec:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 21px;
    background-image: url(assets/img/inner-bg-round.png);
    background-size: contain;
    background-repeat: no-repeat;
} */
section.inner-banner-sec:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(assets/img/inner-bg-ptrn.png);
	    background-size: cover;
    background-repeat: no-repeat;
	    opacity: 0.6;
    mix-blend-mode: color-burn;
}
.inner-banner-sec .container-fluid {
    position: relative;
    z-index: 1;
}
section.inner-banner-sec h1{
	color:#fff;
}

/* Form Design */

.required-star {
    color: red;
    font-weight: bold;
}
.error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}
/*Advertisement Modal*/

.advImg{
	position:relative;
	display:inline-block;
}
#advertiseModal img {
    background: #fff;
    padding: 5px;
    border-radius: 20px;
}
.advImg .btn-close {
    position: absolute;
    right: -7px;
    opacity: 1;
    top: -13px;
    font-size: 28px;
    color: #ffffff;
    background: red;
    padding: 0;
    border-radius: 100px;
    display: flex;
    align-items: center;
}

/*Class Details*/


.classImg img {
   -webkit-mask-image: url(data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 568.81 435.34'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23825151;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eabout-bg%3C/title%3E%3Cpath class='cls-1' d='M1045.18,672.68a148.17,148.17,0,0,1,22.62,14.85c24.73,19.76,42.38,47.59,52.53,77.57,15.33,45.26,16.43,97.18,2.34,142.87a226.61,226.61,0,0,1-7.8,21.43c-37.28,88.19-134.87,149.4-240.26,156.29-113.8,7.45-211.36-50.06-263.83-137.11a318.11,318.11,0,0,1-28-59.68c-20.33-58.45-27.3-122.69-6.35-181.81,4.67-13.18,10.21-32,20.94-42.49,9.71-9.46,21.11-2.86,30.43,3.38,9.53,6.38,18.85,12.06,29.69,16.07,23.09,8.56,48.28,10.63,72.7,8.71,34.68-2.71,68.25-12.94,101.82-22C871.56,660,912,650.7,952.9,651,984.77,651.25,1017.26,657.76,1045.18,672.68Z' transform='translate(-563.76 -651)'/%3E%3C/svg%3E);;
	       -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
	    mask-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 568.81 435.34'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23825151;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eabout-bg%3C/title%3E%3Cpath class='cls-1' d='M1045.18,672.68a148.17,148.17,0,0,1,22.62,14.85c24.73,19.76,42.38,47.59,52.53,77.57,15.33,45.26,16.43,97.18,2.34,142.87a226.61,226.61,0,0,1-7.8,21.43c-37.28,88.19-134.87,149.4-240.26,156.29-113.8,7.45-211.36-50.06-263.83-137.11a318.11,318.11,0,0,1-28-59.68c-20.33-58.45-27.3-122.69-6.35-181.81,4.67-13.18,10.21-32,20.94-42.49,9.71-9.46,21.11-2.86,30.43,3.38,9.53,6.38,18.85,12.06,29.69,16.07,23.09,8.56,48.28,10.63,72.7,8.71,34.68-2.71,68.25-12.94,101.82-22C871.56,660,912,650.7,952.9,651,984.77,651.25,1017.26,657.76,1045.18,672.68Z' transform='translate(-563.76 -651)'/%3E%3C/svg%3E");
	       mask-position: center;
    mask-repeat: no-repeat;
		    width: 90%;
}

.cont-screen {
   -webkit-mask-image: url(data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 568.81 435.34'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23825151;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eabout-bg%3C/title%3E%3Cpath class='cls-1' d='M1045.18,672.68a148.17,148.17,0,0,1,22.62,14.85c24.73,19.76,42.38,47.59,52.53,77.57,15.33,45.26,16.43,97.18,2.34,142.87a226.61,226.61,0,0,1-7.8,21.43c-37.28,88.19-134.87,149.4-240.26,156.29-113.8,7.45-211.36-50.06-263.83-137.11a318.11,318.11,0,0,1-28-59.68c-20.33-58.45-27.3-122.69-6.35-181.81,4.67-13.18,10.21-32,20.94-42.49,9.71-9.46,21.11-2.86,30.43,3.38,9.53,6.38,18.85,12.06,29.69,16.07,23.09,8.56,48.28,10.63,72.7,8.71,34.68-2.71,68.25-12.94,101.82-22C871.56,660,912,650.7,952.9,651,984.77,651.25,1017.26,657.76,1045.18,672.68Z' transform='translate(-563.76 -651)'/%3E%3C/svg%3E);;
	       -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
	    mask-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 568.81 435.34'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23825151;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Eabout-bg%3C/title%3E%3Cpath class='cls-1' d='M1045.18,672.68a148.17,148.17,0,0,1,22.62,14.85c24.73,19.76,42.38,47.59,52.53,77.57,15.33,45.26,16.43,97.18,2.34,142.87a226.61,226.61,0,0,1-7.8,21.43c-37.28,88.19-134.87,149.4-240.26,156.29-113.8,7.45-211.36-50.06-263.83-137.11a318.11,318.11,0,0,1-28-59.68c-20.33-58.45-27.3-122.69-6.35-181.81,4.67-13.18,10.21-32,20.94-42.49,9.71-9.46,21.11-2.86,30.43,3.38,9.53,6.38,18.85,12.06,29.69,16.07,23.09,8.56,48.28,10.63,72.7,8.71,34.68-2.71,68.25-12.94,101.82-22C871.56,660,912,650.7,952.9,651,984.77,651.25,1017.26,657.76,1045.18,672.68Z' transform='translate(-563.76 -651)'/%3E%3C/svg%3E");
	       mask-position: center;
    mask-repeat: no-repeat;
		    width: 90%;
}

section.cls-dtls-sec .row {
    align-items: center;
}
section.cls-dtls-sec .theme-heading-sec {
    margin-bottom: 1.5rem;
    text-align: left;
}
section.class-feat-sec {
    background: #023f7d;
    padding: 50px 0 140px;
}
section.class-feat-sec:after {
    content: "";
    background-image: url(assets/img/abt-shape.svg);
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 125px;
    background-size: cover;
    background-position: bottom;
}
.class-feat-sec h2 {
    color: #fff;
}
.class-feat-sec ul {
    list-style: none;
    padding: 0;
    width: 90%;
    margin: auto;
}
.class-feat-sec ul li {
    position: relative;
    width: calc(100% / 2 - 27px);
    display: inline-block;
    color: #fff;
    padding:0px 0 0 25px;
    margin: 8px 12px;
}
.class-feat-sec ul li:before {
    content: "";
    background: #51c2fd;
    width: 11px;
    height: 11px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: solid 3px #023f7d;
    outline: solid 2px #51c2fd;
	box-shadow: 0px 0px 0px 0px rgb(81 194 253);
    animation: fadeDot 1s linear infinite;
}
  @keyframes fadeDot {
  from {
    box-shadow: 0px 0px 0px 0px rgb(81 194 253);
  }

  to {
    box-shadow: 0px 0px 0px 11px rgb(81 194 253 / 0%);
  }
}
.teacher-section {
    padding-bottom: 11rem;
}
.teacher-section img{
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 900 680' style='enable-background:new 0 0 900 680;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M174.6,665.1c25.6,4.6,48.5,5.5,69,3.7c20.6-1.8,38.9-6.4,55.5-12.9c15.7-6.3,29.9-14.2,43.2-23.5 c33.7-23.1,57.2-53.4,86.8-82.3c23.3-23.4,55.9-37.8,90.4-29.4c21.9,3.8,44.1,11.8,65.4,15.6c57.1,10.7,116,5.7,168.5-15.2 c15.9-6.2,31.1-13.8,45.1-22.6c42.1-26.4,73.9-63.9,85.3-109.9C911,278.3,837,174.1,752,101.7C740,92,727.1,82.9,713.6,74.4 c-17.2-10.8-35.1-20.1-53.5-28s-37.4-14.5-56.8-19.7c-86-22.3-179.2-22.1-264.9,2.7c-56.6,16.4-107.6,44.7-150.2,81 c-14.2,12.1-27.5,25.1-39.9,38.8C77.4,227.6,39.1,326.5,36.1,427.9c-2.7,78.8,10.2,169.7,86.1,218.4 C137.1,655.1,154.5,661.5,174.6,665.1z'/%3E%3C/g%3E%3Cellipse transform='matrix(0.6706 -0.7418 0.7418 0.6706 -176.0597 109.9474)' cx='35.8' cy='253.2' rx='24.2' ry='25.9'/%3E%3C/g%3E%3C/svg%3E%0A");
    -webkit-mask-size: 100%;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 900 680' style='enable-background:new 0 0 900 680;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M174.6,665.1c25.6,4.6,48.5,5.5,69,3.7c20.6-1.8,38.9-6.4,55.5-12.9c15.7-6.3,29.9-14.2,43.2-23.5 c33.7-23.1,57.2-53.4,86.8-82.3c23.3-23.4,55.9-37.8,90.4-29.4c21.9,3.8,44.1,11.8,65.4,15.6c57.1,10.7,116,5.7,168.5-15.2 c15.9-6.2,31.1-13.8,45.1-22.6c42.1-26.4,73.9-63.9,85.3-109.9C911,278.3,837,174.1,752,101.7C740,92,727.1,82.9,713.6,74.4 c-17.2-10.8-35.1-20.1-53.5-28s-37.4-14.5-56.8-19.7c-86-22.3-179.2-22.1-264.9,2.7c-56.6,16.4-107.6,44.7-150.2,81 c-14.2,12.1-27.5,25.1-39.9,38.8C77.4,227.6,39.1,326.5,36.1,427.9c-2.7,78.8,10.2,169.7,86.1,218.4 C137.1,655.1,154.5,661.5,174.6,665.1z'/%3E%3C/g%3E%3Cellipse transform='matrix(0.6706 -0.7418 0.7418 0.6706 -176.0597 109.9474)' cx='35.8' cy='253.2' rx='24.2' ry='25.9'/%3E%3C/g%3E%3C/svg%3E%0A");
    mask-size: 100%;
    mask-position: top;
    mask-repeat: no-repeat;
	height: 245px;
    object-fit: cover;
    object-position: top;
}

.teacher-card:before {
    content: "";
    height: 100%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    transform: rotate(190deg);
    transition:all 0.3s linear 0s;
    backface-visibility: hidden;
    background-color: #e30d5a;
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 900 680' style='enable-background:new 0 0 900 680;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M174.6,665.1c25.6,4.6,48.5,5.5,69,3.7c20.6-1.8,38.9-6.4,55.5-12.9c15.7-6.3,29.9-14.2,43.2-23.5 c33.7-23.1,57.2-53.4,86.8-82.3c23.3-23.4,55.9-37.8,90.4-29.4c21.9,3.8,44.1,11.8,65.4,15.6c57.1,10.7,116,5.7,168.5-15.2 c15.9-6.2,31.1-13.8,45.1-22.6c42.1-26.4,73.9-63.9,85.3-109.9C911,278.3,837,174.1,752,101.7C740,92,727.1,82.9,713.6,74.4 c-17.2-10.8-35.1-20.1-53.5-28s-37.4-14.5-56.8-19.7c-86-22.3-179.2-22.1-264.9,2.7c-56.6,16.4-107.6,44.7-150.2,81 c-14.2,12.1-27.5,25.1-39.9,38.8C77.4,227.6,39.1,326.5,36.1,427.9c-2.7,78.8,10.2,169.7,86.1,218.4 C137.1,655.1,154.5,661.5,174.6,665.1z'/%3E%3C/g%3E%3Cellipse transform='matrix(0.6706 -0.7418 0.7418 0.6706 -176.0597 109.9474)' cx='35.8' cy='253.2' rx='24.2' ry='25.9'/%3E%3C/g%3E%3C/svg%3E%0A");
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 900 680' style='enable-background:new 0 0 900 680;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M174.6,665.1c25.6,4.6,48.5,5.5,69,3.7c20.6-1.8,38.9-6.4,55.5-12.9c15.7-6.3,29.9-14.2,43.2-23.5 c33.7-23.1,57.2-53.4,86.8-82.3c23.3-23.4,55.9-37.8,90.4-29.4c21.9,3.8,44.1,11.8,65.4,15.6c57.1,10.7,116,5.7,168.5-15.2 c15.9-6.2,31.1-13.8,45.1-22.6c42.1-26.4,73.9-63.9,85.3-109.9C911,278.3,837,174.1,752,101.7C740,92,727.1,82.9,713.6,74.4 c-17.2-10.8-35.1-20.1-53.5-28s-37.4-14.5-56.8-19.7c-86-22.3-179.2-22.1-264.9,2.7c-56.6,16.4-107.6,44.7-150.2,81 c-14.2,12.1-27.5,25.1-39.9,38.8C77.4,227.6,39.1,326.5,36.1,427.9c-2.7,78.8,10.2,169.7,86.1,218.4 C137.1,655.1,154.5,661.5,174.6,665.1z'/%3E%3C/g%3E%3Cellipse transform='matrix(0.6706 -0.7418 0.7418 0.6706 -176.0597 109.9474)' cx='35.8' cy='253.2' rx='24.2' ry='25.9'/%3E%3C/g%3E%3C/svg%3E%0A");
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
	z-index:-1;
}
.teacher-section .item {
    padding: 1.5rem 0.5rem;
    text-align: center;
}
.teacher-section .card-body {
    padding: 0.2rem 1rem;
}
.teacher-card {
    position: relative;
}
.teacher-card:hover:before {
	opacity:1;
}
.teacher-section h5 {
    margin-bottom: 3px;
    font-size: 19px;
}
.teacher-section p {
    color: #326783;
}
body.customize-support header#header {
    margin-top: 30px;
}
section.cls-actv-sec {
    background: linear-gradient(0deg, rgb(247 247 247 / 68%) 0%, rgba(250, 247, 217, 0.17) 100%);
}
.single-activity-rt-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.single-activity-rt-col ul li {
    display: flex;
    align-items: center;
    position: relative;
    margin: 2rem 0;
    gap: 24px;
}
.actv-icon {
    width: 80px;
    height: 80px;
    background:#4CAF50;
    border-radius: 100px;
    padding: 0.7rem;
	border: solid 4px #ffffff;
	outline: solid 1px #4CAF50;
}
.activity-rt-txt {
    flex: 1;
}
.activity-rt-txt p {
    margin: 0;
}
.single-activity-rt-col .theme-heading-sec {
    text-align: left;
}
.theme-heading-sec.activity-full-heading {
    text-align: center;
}
.single-activity-rt-col ul li:nth-child(even) .actv-icon {
    background:#e91e63;
	outline: solid 1px #e91e63;
}
.single-rt-act-flex{
	display:flex;
	align-items:center;
}
.actv-icon img {
    filter: brightness(0) invert(1);
}
.activity-col {
    text-align: center;
}
.activity-col img {
    width: 542px;
    height: 450px;
    object-fit: cover;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

/*Classes Listiing*/

.listing-classes .classes-wrap {
    margin: 1rem 0;
}
.listing-classes {
    padding-bottom: 13rem;
}

/*Event Listing*/

.event-sec-page .event-row-wrap {
    width: 100%;
    border: solid 1px #023f7d0d;
    background: #fafbfb;
}
.event-sec-page .event-img img {
    width: 100%;
}
section.event-sec-page {
    padding-bottom: 11rem;
}
.event-sec-page .event-cont a {
    margin-top: 1.2rem;
}
.event-sec-page .event-cont span {
    margin: 0.5rem 0 0rem;
}

/*Admission*/

.mdb-admission {
    padding-bottom: 9rem;
}
.adms-btn{
    display: flex;
    align-items: end;
    justify-content: right;
}
.submit-wrap.adms-wrap {
    display: table;
    padding: 9px 11px 9px 14px;
    width: 16%;
}
.adms-wrap button.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
fieldset {
    background: #f3f1f7;
    padding: 1.5rem;
    margin: 1.8rem 0;
}
legend {
    border-radius: 10px;
    padding: 2px 15px;
    margin: -2.3rem 0 1.2rem;
    background: #ffffff;
    width: auto;
}
fieldset .form-label {
    font-size: 15px;
    padding-left: 4px;
    margin-bottom: 5px;
}



@media (max-width: 1400px){
	.album-wrap img {
    max-height: 170px;
}
.gallery-listing-title h4 {
    font-size: 18px;
}
.gallery-listing-title a {
    margin: 0.7rem 0 0.3rem;
}
.gallery-listing-title a:before {
    width: 40px;
    height: 36px;
}
header .navbar a{
    padding: 26px 10px 26px 10px;
}	
}

@media (max-width: 1200px){
	   .album-wrap img {
        max-height: unset;
        height: auto;
    }
}


@media (max-width: 1024px) {
	
/*Contact Page*/
	
.hours-table {
    padding: 0.7rem 0.5rem;
}
.hours-table td {
    padding: 5px 5px;
}
.hours-table tr td:last-child {
    padding: 4px 6px 4px 6px;
}
}

@media (max-width: 992px) {
	
header .navbar a {
    padding: 12px 10px 12px 10px;
}
	
/*Contact Page*/
	
.cont-top-img {
    max-height: 310px;
}
.address-wrap ul li {
    display: inline-flex;
    width: calc(100% / 2 - 6px);
    margin: 0 0px;
	gap: 7px;
}
.form-container {
    margin-top: 0;
}
	/*Gallery*/
	.gal a {
    width: calc(100% / 3 - 14px);
}
.gal a img {
    max-height: 300px;
}
}


@media (max-width: 767px) {
	
	/*Header*/
	
	a.admission-btn i {
    display: none;
}
a.admission-btn, .theme-btn {
    padding: 12px 18px 12px 18px;
    font-size: 15px;
}
.mob-nav-col {
    position: absolute;
}
.mob-header-rt {
    justify-content: space-between;
    display: flex;
    align-items: center;
}
.header-col {
    padding: 0.9rem 0rem;
    width: 100%;
    margin: auto;
}	
#header .logo img {
    height: auto;
}
.navbar .current-menu-item, .navbar .current-menu-item:focus {
    clip-path: unset;
    background: transparent;
}
.navbar-mobile a:hover, .navbar-mobile a:focus, .navbar .current-menu-item a {
    color: #1c90cd;
}
#header {
    z-index: 9999;
    position: sticky;
    transform: unset;
    transition: unset;
    border-radius: 0!important;
}
header#header .container {
    border-radius: 0;
}
	
/*Banner*/
	
.carousel-item {
    padding: 1.5rem 0 2rem;
    height: auto;
}
.ban-col-rt:before {
    max-height: 303px;
    height: 100vh;
}
.prt1, .prt2 {
    width: 52px;
}
.prt1 {
    top: 15px;
}
.prt2 {
    bottom: 25px;
}
.banner-heading {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}
.banner-heading h1 {
            font-size: 40px;
        line-height: 46px;
}
.banner-heading p {
    margin: 1.2rem 0 1.5rem;
}
div#demo:before {
    bottom: -17px;
}
	

	
/*About*/
	
.about-rt-col {
    padding-left: 15px;
    padding-top: 32px;
}	
.signature-wrap {
    gap: 0px;
}
    .sign, .abt-call {
        display: block;
        text-align: center;
        width: 50%;
        padding: 1rem 0.7rem;
        max-height: unset;
        height: auto;
    }
	.sign {
    background: #76ad1e;
}
.signature-wrap .sign:last-child {
    background: #1f9de0;
}
.sign h5 {
    font-size: 20px;
    line-height: 20px;
}
.sign h5 span {
    color: #ffffff;
	margin-top:0.5rem;
}
.abt-call a {
    font-size: 24px;
}
.ceo-img {
    width: 90px;
    margin-bottom: 0.7rem;
}
	.abt-call i {
    width: 60px;
    height: 60px;
    font-size: 23px;
    margin: 0 auto 0.7rem;
}
	.about-sec a.theme-btn {
    margin: 2.5rem auto 0rem;
    display: table;
}
    section.mission-sec {
        padding-bottom: 7rem;
        padding-top: 3rem;
    }
	
/*Classes*/
	
.classes-wrap {
    margin-bottom: 1.5rem;
}
.classes-sec .theme-btn {
    margin: 1rem 0 0rem;
}
.classImg img {
    margin: auto;
    display: table;
	margin: 0 auto 1.3rem;
}
.class-feat-sec ul li {
    width: calc(100% / 1 - 27px);
	padding: 0px 0 0 30px;
}
.class-feat-sec ul{
    width: 98%;
}
section.class-feat-sec {
    padding: 50px 0 70px;
}
.single-activity-rt-col .theme-heading-sec {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}
	
/*Events*/
.srv-carousel {
    width: 96%;
    padding: 0 0rem;
}
.event-row-wrap {
    padding: 1.5rem 0.9rem 1.5rem 0.9rem;
	border-radius: 35px;
    width: 100%;
}
.srv-carousel .owl-stage-outer {
    padding: 0;
}
.event-img {
    max-height: unset;
    height: auto;
    border-radius: 20px 20px 80px 20px;
}
button.owl-prev:before, button.owl-next:before {
    width: 70px;
    height: 70px;
    background-size: 60px;
}
.event-single {
    padding-bottom: 11rem;
}	
	
/*Query*/
	
.kid-contact {
    display: none;
}
.form-rt-col {
    padding: 2rem 1.5rem 4rem;
}
.contact-lt-col img {
    width: 90%;
}
.submit-wrap {
    margin: 1rem auto;
}
	.contact-sec .theme-heading-sec h2 {
        text-align: center;
    }
	
/*Footer*/
	
.copyright-txt span {
    display: none;
}
.copyright-txt {
    display: block;
    text-align: center;
}
    footer.footer-bottom .container{
        padding: 9px 0;
        width: 96%;
        position: relative;
        overflow: hidden;
    }
footer.footer-top:before {
    height: 92px;
    max-height: 97%;
    top: -88px;
}	
.logo-wrap {
    padding:0 1rem;
}	
    .footer-contact-wrapper {
        padding: 0.3rem 1rem;
        border: none;
    }
.logo-wrap p {
    margin: 1rem 0 1rem;
}
	
/*Contact Page*/
	
.address-wrap ul li {
	display: block;
	text-align: center;
	width: 100%;
	}
.address-wrap ul li i {
    margin: 0 auto 0.7rem;
}
    .form-container {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
	.form-container .theme-heading-sec {
    text-align: center;
}
.form-container .theme-heading-sec h2 {
    margin: 0;
    line-height: 36px;
    font-size: 35px;
}
	.address-col .theme-heading-sec {
    text-align: center;
}
	.cont-top-img {
       max-height: unset;
       height: auto;
    }
.hours-col {
    margin: 1rem 0;
	text-align:center;
}
    .hours-table, .hours-table table {
        width: 90%;
    }
	    .hours-table td {
        padding: 7px 15px;
    }
.hours-col h4 {
        text-align: center;
        font-size: 26px;
    }
.address-col {
    padding: 0rem 1rem;
    margin-top: -2rem;
}
    .contact-section {
        padding-bottom: 18px;
        padding-top: 16px;
    }
	.form-container button.submit-wrap {
    margin: 1rem auto 0.2rem;
}
.theme-heading-sec h2 {
    font-size: 38px;
    line-height: 38px;
}
	
/*Gallery*/

.gallery-section, .gallery-single-sec {
    padding-bottom: 6rem;
    padding-top: 2.5rem;
}
.gallery-listing-title a {
    margin: 0.7rem 0 0rem;
}
	.gal a {
    width: calc(100% / 2 - 14px);
	margin: 7px 5px;
}
.gal a img {
    max-height: 250px;
}
	
/*Admissions*/
	
.submit-wrap.adms-wrap {
    width: 33%!important;
}
section.mdb-admission h2 br {
    display: none;
}
fieldset {
    padding: 1.5rem 1.2rem;
}
.mdb-admission .form-group {
    margin-bottom: 4px;
    padding: 4px;
}
.mdb-admission {
    padding-top: 3rem;
}
.mdb-admission .theme-heading-sec {
    margin-bottom: 1.3rem;
}
}