html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

h1,h2,h3,h4,h5,h6{
    font-family: "Poppins", sans-serif;
}
header {
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0px 6px 14px -3px #0000003b;
  z-index: 9;
  position: relative;
}

li, p {
    font-size: 15px;
    color: #424242;
    line-height: 1.8;
    letter-spacing: 0.02rem;
    font-family: "National Park", sans-serif;

}

a {
    transition: 0.6s ease-in-out;
    font-family: "National Park", sans-serif;
}

nav ul li a.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #0B2038;
  text-transform: uppercase;
  font-weight: 600;
}

nav ul li a.nav-link:hover{
    color: #F25334;
}


.call-to-que a {
    display: flex;
    font-family: "National Park", sans-serif;
    justify-content: end;

}
.call-to-que a span.cta-num {
    font-size: 15px;
    color: #000;
    font-weight: 800;
    margin-left: 12px;
    position: relative;
    transition: 0.6s ease-in-out;
}

.call-to-que a span.cta-num:after {
    content: "";
    width: 0;
    height: 1px;
    background-color: #26a49f;
    position: absolute;
    left: 0;
    top: 20px;
    transition: 0.6s ease-in-out;
}

.call-to-que a span.cta-text{
    display: block;
    color: #9f9f9f;
    font-weight: normal;
}

.call-to-que a span i {
    background-color: #26a49f;
    color: #fff;
    padding: 14px;
    font-size: 14px;
    transition: 0.6s ease-in-out;
    border-radius: 100%;
}

.call-to-que a:hover span i{
    background-color: #0B2038;
}
.call-to-que a:hover span.cta-num:after{
    width: 100%;
}
.call-to-que a:hover span.cta-num{
    color: #26a49f;
}


/*Home page css*/
#hero-slider {
  
  overflow: hidden;
}
.text-color-red {
  color: #f25334;
}
.text-color-green {
  color: #75c137;
}
.text-color-cyan {
  color: #26A6A1;
}
.text-color-yellow {
  color: #FFAA23;
}

.hover-box {
  text-align: center;
  border: 1px solid #eee;
  border-radius: 60px;
  padding: 95px 65px 45px 76px;
  position: relative;
  background-color: #FAF5F2;
  overflow: hidden;
  box-shadow: 0 0 35px -9px #0000001a;
  transition: 0.5s ease-in-out;
}

.hover-box:before {
  content: "";
  width: 100%;
  height: 90%;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  border-top-left-radius: 45px;
  border-top-right-radius: 115px;
}
.hover-border-red:hover{
  border: 1px solid #f25334;
}
.hover-border-green:hover{
  border: 1px solid #75c137;
}
.hover-border-cyan:hover{
  border: 1px solid #26A6A1;
}
.hover-border-yellow:hover{
  border: 1px solid #FFAA23;
}
.hover-box:hover {
  box-shadow: unset;
}
.hover-box span, .hover-box h2 {
  position: relative;
  z-index: 1;
}

.hover-box span i {
  font-size: 60px;
}

.hover-box h2 {
  font-size: 18px;
    margin-top: 25px;
    color: #0B2038;
    font-weight: 600;
}

.our-prog {
  background-color: #f25334;
  padding-bottom: 6rem;
}

.program-box {
  border-radius: 50px;
  overflow: hidden;
  padding-bottom: 25px;
}
.program-detail {
  display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      padding: 0 45px;
}
.featured-image {
  position: relative;
}

.featured-image:before {
  content: "";
  width: 100%;
  height: 25%;
  position: absolute;
  background-color: #fff;
  bottom: 0;
  left: 0;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
span.d-icon {
  font-size: 30px;
    background-color: #f25334;
    color: #fff;
    width: 80px;
    height: 80px;
    line-height: 60px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    z-index: 5;
    position: absolute;
    justify-self: center;
    top: -90px;
}
.program-detail h3 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 600;
}
.child-age {
  color: #f25334;
  font-weight: 400;
}
.program-detail p + p{
  font-size: 16px;
  text-align: center;
  margin-bottom: 35px;
}

.shake-on-hover-icon:hover span.d-icon{
  -webkit-animation: shakeX 0.6s ease-in-out;
  -moz-animation: shakeX 0.6s ease-in-out;
  -o-animation: shakeX 0.6s ease-in-out;
  animation: shakeX 0.6s ease-in-out;
}

@-webkit-keyframes shakeX {
  0%, 100% { -webkit-transform: translateX(0); }
  20%, 60% { -webkit-transform: translateX(-10px); }
  40%, 80% { -webkit-transform: translateX(10px); }
}

@-moz-keyframes shakeX {
  0%, 100% { -moz-transform: translateX(0); }
  20%, 60% { -moz-transform: translateX(-10px); }
  40%, 80% { -moz-transform: translateX(10px); }
}

@-o-keyframes shakeX {
  0%, 100% { -o-transform: translateX(0); }
  20%, 60% { -o-transform: translateX(-10px); }
  40%, 80% { -o-transform: translateX(10px); }
}

@keyframes shakeX {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-10px); }
  40%, 80% { transform: translateX(10px); }
}

/*Home page css*/


.inner-hero {
    min-height: 380px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-hero:before {
    content: "";
    background-color: #0B2038;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
}

.inner-header {
    position: relative;
}

.breadcrumbs ul li a {
    color: #F25334;
    text-decoration: none;
    font-weight: 500;
    font-family: "National Park", sans-serif;
}
.breadcrumbs ul li {
    color: #fff;
    font-weight: 500;
}
.breadcrumbs ul li i {
    font-size: 14px;
    margin-left: 5px;
}
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.checklist li + li {
    margin-top: 14px;
}

.checklist li i {
  color: #F25334;
  margin-right: 8px;
  margin-top: 2px;
  font-size: 17px;
}

.sub-title {
    font-weight: 600;
    font-size: 20px;
    font-family: "Poppins", sans-serif;
    color: #F25334;
}

.title {
    font-size: 25px;
    color: #0B2038;
    font-weight: 700;
}

.obj-box h3 {
  font-weight: 600;
  font-size: 18px;
}
.inner-ab-image {
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.bubble-image {
    position: absolute;
    bottom: 6px;
    right: 28px;
    max-width: 180px;
}

.front-layer-img {
    position: absolute;
    bottom: -50px;
    left: 0;
    border-radius: 100%;
    border: 15px solid #fff;
}

.alphabet-img {
    position: absolute;
    top: 0;
    left: 0;
}

.mission {
  background-color: #FFF0E5;
}

.mission-box {
  padding: 30px 40px;
  border-radius: 15px;
}
.mission-box span {
  color: #f25334;
  font-size: 45px;
  display: inline-block;
  margin-bottom: 15px
}
.mission-box h3 {
  color: #0B2038;
  font-size: 20px;
}

.rounded-right-corner {
border-bottom-right-radius: 500px;
overflow: hidden;
}
.rounded-left-corner {
  border-top-left-radius: 500px;
  overflow: hidden;
}

.zoom-loop {
    -webkit-animation: zoomInOut 4s ease-in-out infinite;
    -moz-animation: zoomInOut 4s ease-in-out infinite;
    -o-animation: zoomInOut 4s ease-in-out infinite;
    animation: zoomInOut 4s ease-in-out infinite;
  }
  
  @-webkit-keyframes zoomInOut {
    0%, 100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  
  @-moz-keyframes zoomInOut {
    0%, 100% {
      -moz-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -moz-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  
  @-o-keyframes zoomInOut {
    0%, 100% {
      -o-transform: scale(1);
      transform: scale(1);
    }
    50% {
      -o-transform: scale(1.1);
      transform: scale(1.1);
    }
  }
  
  @keyframes zoomInOut {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
  }
  


  .slide-left-right {
    -webkit-animation: slideLR 3s ease-in-out infinite;
  -moz-animation: slideLR 3s ease-in-out infinite;
  -o-animation: slideLR 3s ease-in-out infinite;
  animation: slideLR 3s ease-in-out infinite;
  }
  
  @-webkit-keyframes slideLR {
    0%, 100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
    50% {
      -webkit-transform: translateX(20px);
      transform: translateX(20px);
    }
  }
  
  @-moz-keyframes slideLR {
    0%, 100% {
      -moz-transform: translateX(0);
      transform: translateX(0);
    }
    50% {
      -moz-transform: translateX(20px);
      transform: translateX(20px);
    }
  }
  
  @-o-keyframes slideLR {
    0%, 100% {
      -o-transform: translateX(0);
      transform: translateX(0);
    }
    50% {
      -o-transform: translateX(20px);
      transform: translateX(20px);
    }
  }
  
  @keyframes slideLR {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(20px);
    }
  }
  

  .enroll-sec-bg {
    background-color: #FAF5F2;
    border-radius: 120px;
  }
  .cta-content {
    padding-left: 24px;
    padding-top: 80px;
    padding-bottom: 65px;
    padding-right: 24px;
  }

 
  .primary-bubble {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #fff;
    background-image: url('../images/primary-bubble.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 125px;
    height: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px 0px 16px;
    line-height: 1;
    text-align: center;
    z-index: 1;
  }

  .theme-btn-red {
    background-color: #f25334;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    border: 1px solid #f25334 !important;
    margin-top: 15px;
}

.theme-btn-red:hover {
    color: #f25334;
}

.bounce-up-down {
  -webkit-animation: bounceUD 3s ease-in-out infinite;
  -moz-animation: bounceUD 3s ease-in-out infinite;
  -o-animation: bounceUD 3s ease-in-out infinite;
  animation: bounceUD 3s ease-in-out infinite;
}

@-webkit-keyframes bounceUD {
  0%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-moz-keyframes bounceUD {
  0%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-o-keyframes bounceUD {
  0%, 100% {
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounceUD {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.testimonials-wrapper {
  background-color: #75C137;
  border-top-right-radius: 100px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 10px;
  padding: 45px 26px;
}

.testimonial-content p {
  color: #fff;
  text-align: center;
}

.testimonial-detail {
  display: flex;
  justify-content: end;
}

.testimonial-detail .details h3 {
  color: #fff;
  font-size: 25px;
  margin: 0;
}

.testimonial-detail .details p {
  color: #eaeaea;
  margin-bottom: 0;
}

.testimonial-avatar {
  margin-right: 15px;
  margin-top: 4px;
}

.testimonials-slider .swiper-button-prev:after, .testimonials-slider .swiper-button-next:after {
  display: none;
}

.testimonials-slider .swiper-button-prev, .testimonials-slider .swiper-button-next {
  background-color: #00000026;
  color: #fff;
  font-size: 20px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 30px;
}

.testimonials-slider .swiper-button-next{
  left: 62px !important;
  
}
.team-box {
  padding-bottom: 25px;
  transition: 0.6s ease-in-out;
}

.team-box:before {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 55px;
  border-top-right-radius: 55px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.baby-pink-bg:before {
background-color: #fdedea;
}

.team-card-details:hover h3, .team-card-details:hover span {
  transform: translateY(-40px);
  opacity: 0;
  visibility: hidden;
}

.animate__Top {
    position: absolute;
    left: 110px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}

.team-card-details:hover .animate__Top{
  bottom: 35px;
    opacity: 1;
    visibility: visible;
}

.team-card-details h3 {
  color: #0B2038;
  font-size: 24px;
  margin-bottom: 0;
  transition: 0.5s ease-in-out;
}
.team-card-details span {
  color: #7f7f7f;
  font-weight: 500;
  margin-bottom: 0;
  transition: 0.5s ease-in-out;
}
.team-card-two__svg-top {
  position: absolute;
  right: 5px;
  top: 2px;
  transition: all 500ms ease;
  z-index: -1;
  text-align: right;
}

.team-img-card {
  position: relative;
}

.team-img-card:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-top-right-radius: 350px;
  border-top-left-radius: 250px;
  border-bottom-right-radius: 250px;
  border-bottom-left-radius: 350px;
  z-index: -1;
}

.tilt-bg-red:before{
  background-color: #f25334;
}

.team-img-card img{
  border-top-left-radius: 350px;
  border-top-right-radius: 250px;
  border-bottom-left-radius: 250px;
  border-bottom-right-radius: 350px;
}

footer {
  background-color: #0b1f38;
  padding-top: 65px;
}

.ft-widget p, .ft-title {
  color: #fff;
}

.ft-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.ft-widget-social, .ft-widget-links, .ft-widget-location, .ft-widget-gallery{list-style: none;padding: 0;}
.ft-widget-social li a, .ft-widget-links li a, .ft-widget-location li a, .ft-widget-location li {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}

.ft-widget-social li {
  display: inline-block;
}

.ft-widget-social li + li {margin-left: 8px;}

.ft-widget-social li a{
  background-color: #F25334;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
}

.ft-widget-social li a:hover {
  background-color: #fff;
  color: #F25334;
}

/* Bootstrap utility-friendly grid layout */
.grid-template-columns {
  grid-template-columns: repeat(2, 1fr);
}

.padding-top-6{padding-top: 2rem;}
    .margin-top-6{margin-top: 2rem;}


    .cta-image {
      max-width: 100%;
    }
/*Projects*/
.school-activity{
  list-style: none;
  display: flex;
    flex-wrap: wrap;
}
.school-activity li .inner-wrapper-activity span {
  background-color: #f25334;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height:70px;
  text-align: center;
  font-size: 25px;
  border-radius: 100%;
  display: inline-block;
}

.school-activity li .inner-wrapper-activity h3 {
  font-size: 18px;
  color: #0b1f38;
  margin-top: 15px;
  font-weight: 600;
}
@media (min-width:992px){
  #hero-slider {
    height: 100vh;
  }
    .title {
      font-size: 35px;
    }

    .cta-image {
      position: absolute;
      right: 70px;
      top: -56px;
      max-width: 400px;
    }

    .cta-content {
      padding-left: 100px;
    padding-top: 100px;
    padding-bottom: 89px;
    }

    .cta-content .title{
      font-size: 30px;
    }

    .primary-bubble {
      top: -53px;
      left: -62px;
    }

    .testimonials-wrapper {
      padding: 45px 155px;
    }

    .padding-top-6{padding-top: 6rem;}
    .margin-top-6{margin-top: 6rem;}
    .grid-template-columns {
      grid-template-columns: repeat(3, 1fr); /* 2 columns on small screens */
    }

    .school-activity {
      margin-top: 40px;
    }
}