@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Supermercado+One&display=swap");

body {
  font-family: "Nunito", serif !important;
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-size: 14px;
  line-height: 120%;
  color: #333;
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}

.button {
  padding: 13px 25px;
  display: block;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
}

.white-btn {
  background: #fff;
  color: #000;
}

.yellow-btn {
  color: #000;
  background: #ffd223;
}

.hover-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 3;
  width: 0;
  background-color: #162c5a;
  transition: all 300ms ease-in-out;
}

.button:hover .hover-bg {
  width: 100%;
}

.btn-text {
  position: relative;
  z-index: 99;
  color: #000;
  margin: 0;
  transition: all 250ms ease-in-out;
}

.yellow-btn:hover .btn-text,
.white-btn:hover .btn-text {
  color: #fff;
}
/***/

.up-bar {
  padding: 10px 12px;
  background-color: #162c5a;
  color: #fff;
}

.call-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.call-head a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.call-head a img {
  width: 16px;
  height: 16px;
}

/***/

.header-main {
  padding: 10px 0;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transition: all 300ms ease-in-out;
  background: #00aeef;
}

.header-main.fixed-top {
  top: 0;
  padding: 8px 0;
  background: #00aeef;
}

.header-main .collapse {
  width: 100%;
}

.header-main .navbar-nav {
  justify-content: space-around;
  width: 100%;
  align-items: center;
}

.header-main a.button.white-btn {
  margin-left: 5px;
  padding: 13px 15px;
}

.header-main .navbar-nav li .nav-link {
  padding: 13px 16px !important;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
}

.header-main.fixed-top .navbar-nav li .nav-link {
  color: #fff;
}

.header-main .navbar-nav li a.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #ffd223;
  width: 0;
  opacity: 0;
  transition: all ease-in-out 250ms;
}

.header-main .navbar-nav li a.active:before {
  width: 100%;
  opacity: 1;
}

/***/

.main-banner {
  padding: 100px 0;
  min-height: 800px;
  background: url("https://kidsown.webiwork.com/wp-content/uploads/2025/10/depositphotos_159097182-stock-photo-children-building-blocks-in-kindergarten-e1760362718801.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.butterfly-icon{
	display: none;
}
.animation-content {
  margin: 0 auto;
  text-align: center;
}

.banner-logo img {
  position: relative;
  max-width: 114px;
  -webkit-animation: mover 2s infinite;
  animation: mover 2s infinite;
  margin: 0 auto;
  animation-timing-function: linear;
}

@keyframes mover {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 10px;
    top: 0px;
  }
  50% {
    left: 10px;
    top: 10px;
  }
  75% {
    left: 0px;
    top: 10px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}

.butterfly-icon {
  position: absolute;
  right: -50px;
  top: 100px;
}

.butterfly-icon img {
  position: relative;
  -webkit-animation: moverUpRight 1.5s infinite;
  animation: moverUpRight 1.5s infinite;
  margin: 0 auto;
  animation-timing-function: linear;
}

@keyframes moverUpRight {
  0% {
    right: 0px;
    top: 0px;
  }

  50% {
    right: -15px;
    top: -15px;
  }

  100% {
    right: 0px;
    top: 0px;
  }
}

/****/

.event-section {
  background: url("../images/event-crop.png");
  background-position: 50% 50%;
  background-size: cover;
  height: 300px;
}

.event-section h1 {
  color: #a51613;
  font-size: 60px;
  font-weight: bold;
  text-shadow: 1px 1px 6px #f5ff8b;
  margin: 0;
}

.enroll-img img {
  max-width: 134px;
}

/***/

.hello-section {
  padding: 100px 0;
}

.say-hello-gallery img {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.say-hello-gallery {
  position: relative;
  text-align: center;
}

.tab-new {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  width: 170px;
  height: 170px;
  justify-content: center;
  align-items: center;
  border: 1px solid #162c5a;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 1px 1px 9px 0 silver;
  text-decoration: none;
  z-index: 55;
}

.tab-new a {
  display: flex;
  width: 170px;
  height: 170px;
  justify-content: center;
  align-items: center;
}

.new-bg {
  display: flex;
  width: 80%;
  height: 80%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px dashed #198990;
  border-radius: 100%;
  background-color: #9ce4ff;
  background-image: url(../images/objects.png);
  background-position: 0% 50%;
  background-size: cover;
  text-align: center;
  padding: 8px;
  margin: auto;
}

.new-bg h4 {
  color: #00aeef;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.wpcf7-not-valid-tip {
  font-size: 16px;
  margin-top: 6px;
}

.new-bg h3 {
  color: #162c5a;
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}

.say-content h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #00aeef;
  font-size: 70px;
  line-height: 110%;
  font-weight: 900;
}

.bold-text {
  color: #162c5a;
  font-weight: 400;
}

.say-content h2 {
  color: #162c5a;
  font-size: 32px;
  margin-top: 20px;
  font-weight: 400;
}

.main-content-div {
  display: flex;
  width: 100%;
  max-width: 1300px;
  padding: 0 30px;
  margin-right: auto;
  margin-left: auto;
  justify-content: space-between;
  align-items: center;
  background-image: url("https://kidsown.webiwork.com/wp-content/uploads/2025/10/depositphotos_24687523-stock-photo-super-creative-kids-1.png");
  background-position: 80% 0%;
  background-size: 150px;
  background-repeat: no-repeat;
}

.paragraph {
  margin-bottom: 10px;
  color: #7e7e7e;
  font-size: 17px;
  text-align: left;
  line-height: 140%;
}

/****/
.commenter-name {
  display: flex;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  justify-content: flex-end;
  color: #162c5a;
  font-size: 25px;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 120%;
}

.comment-head {
  margin-bottom: 40px;
  color: #0095cc;
  font-size: 30px;
  line-height: 110%;
  font-weight: 600;
  text-align: center;
  font-family: "Exo", serif;
}

.text-span {
  color: #d6f3fd;
  font-size: 60px;
}

/***/
.programs .container {
  max-width: 1020px;
}

.programs {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../images/learning-count.jpg);
  background-position: 50% 50%;
  background-size: 1920px 1000px;
  padding: 150px 0;
}

.program-main-blog {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  margin: 0 auto 20px;
}

.program-blog-one {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #b3eca9;
}

.program-blog {
  position: absolute;
  z-index: 5;
  top: 0;
  transition: all 600ms ease-in-out;
}

.program-main-blog:hover .program-blog {
  transform: scale(0.45);
}

.program-blog-iner-1 {
  background-color: #84c079;
  width: 200px;
  height: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
}

.program-blog-iner-1 img {
  width: 100%;
  max-height: 100%;
}

.hover-wrapper {
  background-color: #162c5a;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  transition: all 450ms ease-in-out;
  transform: scale(0.7);
}

.program-main-blog:hover .hover-wrapper {
  transform: scale(1);
}

.hover-blog-top h3 {
  margin: 0px;
  color: #fff;
  font-size: 2rem;
  line-height: 110%;
  font-weight: 400;
  letter-spacing: 0px;
}

.one p {
  color: #b3eca9;
}

.hover-blog-bottom {
  display: flex;
  justify-content: flex-end;
}

.hover-blog-bottom a {
  border-radius: 20px;
  color: #333;
  font-size: 18px;
  display: inline-block;
  padding: 9px 15px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  margin-left: auto;
}

.one .hover-blog-bottom a {
  border-radius: 20px;
  background-color: #b3eca9;
  color: #333;
  font-size: 18px;
}
/***/
.why-choose-section {
  display: flex;
  padding: 50px 0 450px 0;
  justify-content: center;
  align-items: flex-start;
  background-image: url(../images/baby-toysplane.jpg);
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-list {
  max-width: 950px;
  margin: 0 auto;
}

.home-list h1 {
  margin-bottom: 15px;
  color: #00aeef;
  font-size: 70px;
  line-height: 120%;
  font-weight: 900;
}

.choose-list {
  padding: 0;
  margin: 0;
  list-style-position: inside;
}

.choose-list li {
  color: #162c5a;
  font-size: 18px;
  line-height: 110%;
  padding-bottom: 10px;
}
/****/

.childcare-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 130px;
  background-image: url(../images/bg-cloud-05.png);
  background-position: 0px 0px;
  background-size: cover;
  background-color: #9ce4ff;
}

.section-img {
  max-width: 150px;
  position: absolute;
}

.section-img img {
  width: 100%;
}

.section-img.left {
  left: 10px;
  top: 10px;
}

.section-img.right {
  right: 10px;
  bottom: 10px;
}

.section-img img {
  position: relative;
  -webkit-animation: mover 2s infinite;
  animation: mover 2s infinite;
  margin: 0 auto;
  animation-timing-function: linear;
}

.top-tib-block {
  max-width: 1200px;
  padding: 30px 40px;
  margin: 0 auto;
  background-color: #162c5a;
  border-radius: 10px;
}

.top-tib-block h3 {
  color: #fff;
  margin-bottom: 10px;
  line-height: 120%;
  font-size: 30px;
  font-weight: 600;
}

.tip-list {
  padding: 0 0 0 25px;
  margin: 0;
  list-style-position: outside;
}

.tip-list li {
  color: #fff;
  font-size: 18px;
  line-height: 120%;
  padding: 10px 0;
}

.fees-council {
  padding: 25px 0;
}

.link-11 {
  color: #162c5a;
  font-weight: 600;
}

.fees-council .content-wrapper {
  max-width: 450px;
  text-align: center;
  margin: 0 auto;
}

.fees-council h5 {
  color: #162c5a;
  line-height: 120%;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.fees-council p {
  color: #162c5a;
  line-height: 120%;
  text-align: center;
  font-size: 18px;
}

.childcare-section h1 {
  margin: 0px;
  color: #00aeef;
  font-size: 70px;
  line-height: 130%;
  font-weight: bold;
  text-align: center;
}

.childcare-section p {
  margin: 20px 0 0;
  color: #162c5a;
  font-size: 20px;
  line-height: 110%;
  font-weight: 600;
  text-align: center;
}

.childcare-section .head-main {
  margin-bottom: 60px;
}

.child-care-card {
  position: relative;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 #e6e6e6;
  height: 100%;
}

.child-care-card h2 {
  font-family: "Supermercado One", serif;
  color: #162c5a;
  text-align: center;
  position: relative;
  z-index: 9;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.head-card {
  position: relative;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.child-care-card p {
  font-size: 16px;
  text-align: center;
  margin: 0 0 20px;
  padding: 14px;
  color: #7e7e7e;
}

.child-care-card h3 {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0;
  bottom: 20px;
  margin: 0 auto;
  text-align: center;
  color: #ffd223;
  font-size: 80px;
  font-weight: 900;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.blog-img {
  width: 100%;
  height: 225px;
  overflow: hidden;
  position: relative;
}

.blog-img:hover .blog-overlay {
  opacity: 1;
}

.blog-overlay {
  position: absolute;
  background: linear-gradient(
    180deg,
    rgba(22, 44, 90, 0.64),
    rgba(22, 44, 90, 0.64)
  );
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms ease-in-out;
  opacity: 0;
}

.blog-overlay a:hover {
  transform: scale(1.2, 1.2);
  background: #162c5a;
}

.blog-overlay a img {
  transition: all 250ms ease-in-out;
}

.blog-overlay a:hover .plus {
  opacity: 0;
}

.blog-overlay a:hover .plus-white {
  opacity: 1;
}

.blog-overlay a .plus-white {
  opacity: 0;
}

.blog-overlay a {
  height: 60px;
  width: 60px;
  border-radius: 60px;
  overflow: hidden;
  background: #ffd223;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 350ms ease-in-out;
}

.blog-overlay a img {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 25px;
  max-height: 25px;
}

/***/

.location-section {
  padding: 50px 25px;
}

.location-section h2 {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
  font-weight: 900;
  color: #00aeef;
  font-size: 48px;
  text-align: center;
}

.map-box img {
  width: 100%;
}

/***/

.social-connection {
  padding: 50px 0;
}

.linkedin-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.linkedin-box h1 {
  display: flex;
  justify-content: center;
  font-weight: 900;
  color: #00aeef;
  font-size: 45px;
}

.socialoimg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  width: 250px;
  flex: 0 0 250px;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #162c5a;
  background-color: #fff;
  box-shadow: 1px 1px 9px 0 silver;
}

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

/***/
.contact-us-section {
  padding: 60px 0;
  background-color: #f7f7f7;
}

.contact-us-section h2 {
  margin: 0 0 25px;
  color: #00aeef;
  font-size: 70px;
  line-height: 120%;
  font-weight: bold;
}

.form-block-main {
/*   max-width: 465px; */
}

.form-group {
  margin-bottom: 25px;
}

.form-group input {
  height: 46px;
  border-radius: 10px;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid rgb(0 175 239 / 10%);
  transition: all 250ms ease-in-out;
}

.form-group input:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #00aeef;
}

.form-group textarea {
  height: 100px !important;
  border-radius: 16px;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid rgb(0 175 239 / 10%);
  transition: all 250ms ease-in-out;
}

.form-group textarea:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #00aeef;
}

.form-group label {
  color: #162c5a;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: block;
  margin-bottom: 8px;
}

.contant-info {
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 25px;
  background-color: #fff;
  max-width: 310px;
  margin: 0 auto;
  padding: 50px 15px 15px;
  text-align: center;
}

.block-text-contact h3 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 25px;
}

.contact-us-section h3 {
  font-family: "Supermercado One", serif;
  color: #162c5a;
  font-weight: 700;
  font-size: 24px;
}

.center-image {
  max-width: 160px;
  margin: 0 auto -40px;
}

.center-image img {
  width: 100%;
}

.contant-info a,
.contant-info p {
  margin-bottom: 10px;
  color: #7e7e7e;
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}

.contant-info h3 {
  text-align: center;
  margin: 25px 0;
}

/****/

.footer {
  position: relative;
  display: block;
  margin-top: 58px;
  padding: 120px 0 150px;
  background-color: #effdff;
  background-image: url(../images/birds-wire.png);
  background-position: 100% 0%;
  background-size: 700px;
  background-repeat: no-repeat;
}

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

.ft-about img {
  max-width: 160px;
}

.ft-about a {
  margin-bottom: 20px;
  display: block;
}

.bg-footer {
  position: absolute;
  left: 0;
  z-index: 1;
  right: 0;
  bottom: 0;
  height: 300px;
  background-image: url(../images/bg-cloud-05.png);
  background-position: 0% 0%;
  background-size: cover;
  opacity: 1;
}

.footer h4 {
  margin-bottom: 22px;
  font-family: Nunito, sans-serif;
  color: #43cec6;
  font-size: 20px;
  line-height: 125%;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer p,
.footer-copyright p {
  margin: 0;
  color: #7e7e7e;
  font-size: 18px;
  text-align: left;
  line-height: 115%;
}

.footer-copyright {
  margin-top: 50px;
}

.ft-links {
  display: flex;
  flex-direction: column;
  padding-right: 0px;
  align-items: flex-start;
}

.ft-links .footer-link {
  display: block;
  padding: 10px 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  color: #162c5a;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.ft-links .footer-link:hover {
  opacity: 1;
  color: #00aeef;
}

.social-link a {
  height: 50px;
  width: 50px;
  overflow: hidden;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: #162c5a;
}

.social-link a img {
  width: 100%;
  height: 100%;
  max-height: 25px;
  max-width: 25px;
}

/****/

.contact {
  width: 100%;
  height: 100vh;
  background-image: url("../images/scene.jpg");
  background-position: bottom 0 left 50%, right 50%;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.contact-banner {
  height: 100vh;
  background-image: url("https://kidsown.webiwork.com/wp-content/uploads/2025/10/depositphotos_151254348-stock-photo-kids-showing-copyspace-board-removebg-preview-1.png");
  background-position: 50% 50%, 50% 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.contact-absolute p {
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 22px;
  color: #626975;
  font-size: 20px;
  line-height: 120%;
  font-weight: 900;
  text-align: center;
}

.contact-absolute h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #00aeef;
  font-size: 60px;
  line-height: 120%;
  font-weight: 900;
}

.contact-absolute {
  position: static;
  height: 100%;
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-absolute .banner-logo img {
  max-width: 160px;
}

.contact-us-page {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: transparent;
  background-image: url(../images/kids-planet-contact.png);
  background-position: 50% 0%;
  background-size: cover;
}

.contact-list {
  display: flex;
  align-items: center;
  margin: 0 0 25px;
}

.contact-list:nth-last-child(1) {
  margin: 0;
}

.link-line a,
.link-line h5 {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  margin: 0;
}

.link-line {
  width: calc(100% - 25px);
  padding-left: 10px;
}

.contant-page-content h3 {
  margin-bottom: 10px;
  padding-bottom: 0px;
  color: #00aeef;
  font-weight: 900;
  font-size: 22px;
  text-align: center;
}

.contant-page-content {
  padding: 30px;
  background: #fff;
  box-shadow: 0 16px 40px 0 #e3e7e9;
  border-radius: 10px;
}

.contant-page-content p {
  color: #666;
  text-align: center;
  font-size: 14px;
}

.connect-details {
  padding-top: 15px;
}

.contact-us-page-form {
  margin-left: auto;
}

.contact-us-page-form textarea,
.contact-us-page-form input {
  background: #f7f7f7;
}

/***/
.booking-img img {
  width: 100%;
}

/**food & birthday-section**/

p {
  color: #7e7e7e;
  font-size: 18px;
}

.food-gallery {
  background-image: url(../images/2207340-02.svg);
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0 650px;
}

.birthday-section {
  padding: 60px 0;
}

.content-food {
  max-width: 840px;
  margin: 0 auto;
}

.content-food h2 {
  margin: 0 0 30px;
  color: #00aeef;
  font-size: 70px;
  line-height: 120%;
  font-weight: 900;
  text-align: center;
}

.content-food p {
  color: #162c5a;
  line-height: 110%;
  text-align: center;
}

.bd-img {
  border-style: solid;
  border-width: 1px;
  border-color: #afc3ec;
  border-radius: 50%;
  background-color: #b3e8fc;
  box-shadow: -14px -1px 0 0 #162c5a;
  width: 450px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.bd-content h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #00aeef;
  font-size: 60px;
  line-height: 110%;
  font-weight: 900;
}

.bd-content p {
  width: 100%;
  color: #7e7e7e;
  font-size: 18px;
  font-weight: 400;
}

/**gallery Image Hover Animation**/
.gallery-section {
  padding: 140px 0 200px;
  background-color: #d2ebf0;
  background-image: url(../images/footer.png), url(../images/BG.png);
  background-position: 50% 100%, 0% 0%;
  background-size: contain, contain;
  background-repeat: repeat-x, repeat-x;
}

.gallery-section .col-lg-4 {
  margin-bottom: 25px;
}

.gallery-box {
  overflow: hidden;
  position: relative;
  padding: 8px;
}

.gallery-img {
  height: 250px;
  width: 100%;
  border: 2px solid #ffd223;
  overflow: hidden;
}

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

.img-border-hover {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

.hover-one {
  left: 0;
  top: 0;
}

.hover-two {
  bottom: 0;
  right: 0;
}

.bottom-border,
.top-border {
  width: 0%;
  height: 2px;
}

.right-border,
.left-border {
  height: 0;
  width: 2px;
}

.run-border {
  position: absolute;
  transition: all 350ms ease-in-out;
  background: #00aeef;
}

.gallery-box:hover .right-border,
.gallery-box:hover .left-border {
  height: 100%;
}

.gallery-box:hover .bottom-border,
.gallery-box:hover .top-border {
  width: 100%;
}

.left-0 {
  left: 0;
}

.gallery-content .banner-logo img {
  max-width: 140px;
}

.gallery-content .banner-logo {
  margin-bottom: 30px;
}

.gallery-icon {
  max-width: 80px;
}

.gallery-content h2 {
  margin: 10px 0 30px;
  color: #00aeef;
  font-size: 65px;
  line-height: 110%;
  font-weight: 900;
}

.gallery-content p {
  color: #162c5a;
  font-weight: 700;
}

.gallery-content {
  margin-bottom: 60px;
}

/**FAQ**/

.faq-section {
  position: relative;
  min-height: 900px;
  background: #d2ebf0;
  padding: 140px 0% 120px;
  background-image: url(../images/scene.jpg), url(../images/objects1.png);
  background-position: 50% 100%, 50% 50%;
  background-size: contain, contain;
  background-repeat: repeat-x, repeat;
}

.accordion-item {
  background: transparent;
  border: none;
  margin-bottom: 25px;
}

.faq-accordian {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-button:not(.collapsed),
button.accordion-button {
  outline: none !important;
  box-shadow: none !important;
  font-size: 18px;
  font-weight: 900;
  color: #162c5a;
  height: 80px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px !important;
}

.accordion-body {
  background-image: url(../images/crop-cloud.png);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: repeat-x;
  padding: 40px;
}

.faq-accordian ul {
  padding: 0;
  margin-bottom: 0;
  list-style-position: inside;
}

.faq-accordian li p {
  padding: 20px 0 0 25px;
}

.faq-accordian p,
.faq-accordian li {
  line-height: 115%;
  font-weight: 600;
  margin-bottom: 15px;
  color: #7e7e7e;
  font-size: 18px;
  text-align: left;
}

.faq-accordian p :nth-last-child(1),
.faq-accordian li:nth-last-child(1) {
  margin-bottom: 0;
}

.faq-links h3 {
  margin-top: auto;
  color: #00aeef;
  font-size: 18px;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.27px;
}

.faq-links h3 a {
  color: #162c5a;
  text-decoration: none;
}

/**About us page**/

.about-head-section {
  padding: 150px 0 50px;
  height: 900px;
  background-image: url(../images/bg.svg);
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-containt img {
  max-width: 150px;
}

.about-img img {
  width: 100%;
  position: relative;
  -webkit-animation: mover 2s infinite;
  animation: mover 2s infinite;
  margin: 0 auto;
  animation-timing-function: linear;
}

.about-containt p {
  max-width: 800px;
  margin-top: 40px;
  margin-bottom: 22px;
  color: #626975;
  font-size: 20px;
  line-height: 125%;
  font-weight: 900;
  text-align: left;
}

.about-containt h1 {
  margin-top: 0px;
  margin-bottom: 0px;
  color: #00aeef;
  font-size: 70px;
  line-height: 120%;
  font-weight: 900;
}
.about-containt p {
  margin: 20px 0;
}
.mission-img img {
  width: 100%;
}

.mission-section {
  padding: 80px 0 220px;
  background-color: #fff;
  background-image: url(../images/bgcity.png);
  background-position: 50% 100%;
  background-size: 260px;
  background-repeat: repeat-x;
}

.mission-content {
  padding-left: 40px;
}

.mission-content h1 {
  margin-top: auto;
  margin-bottom: 40px;
  font-family: Nunito, sans-serif;
  color: #00aeef;
  font-size: 60px;
  line-height: 110%;
  font-weight: 900;
}

.mission-content p {
  width: 100%;
  color: #7e7e7e;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
}

/****/

.program-section.rules {
  position: relative;
  display: flex;
  padding-top: 100px;
  padding-bottom: 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  overflow: unset;
}

.container-9.rules {
  width: 95vw;
  height: auto;
  padding-top: 100px;
  padding-right: 20px;
  padding-left: 20px;
  align-items: center;
  background-color: #fff;
}

.container-9 {
  display: flex;
  width: 90vw;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
}

.rules-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 0vh;
  padding: 60px 40px;
  justify-content: space-between;
  align-items: flex-start;
  border-style: solid;
  border-width: 2px;
  border-color: #dedede;
}

.rules-left {
  position: sticky;
  top: 10vw;
  display: flex;
  height: 100%;
  width: 45%;
  justify-content: space-between;
}

.rules-title {
  display: flex;
  padding: 40px;
  justify-content: flex-start;
  background-image: url(../images/about-bg-new.png);
  background-position: 50% 100%;
  background-size: cover;
}

.title-3 {
  display: flex;
  height: 150px;
  flex-direction: column;
  align-items: flex-start;
}

.title-text.rules {
  margin-top: 0vw;
  flex-direction: column;
  align-items: flex-start;
}

.title-text {
  display: flex;
  margin-top: 1vw;
  align-items: center;
}

.heading-26 {
  margin-top: 0px;
  color: #162c5a;
  font-size: 60px;
  line-height: 70px;
}

.div-block-270 {
  margin: 0 0 15px;
}

.rules-content-scroll {
  position: relative;
  width: 6vw;
  height: 68vh;
  border: 4px solid #dedede;
  background-color: #f7f7f7;
  background-image: none;
}

.rules-content-scroll-arrow {
  position: absolute;
  top: -0.5%;
  right: auto;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 8vh;
  align-items: center;
  background-color: #162c5a;
}

.rules-content-scroll-arrow-icon {
  position: absolute;
  left: 0px;
  width: 70%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.rules-right {
  width: 65%;
}

.rules-content {
  width: 100%;
}
.rules-content .special{
	margin-top: 4vw;
}
.rules-content-point.hide {
  display: flex;
  margin-bottom: 1vw;
  background-color: #c4eaf8;
  background-image: url(../images/Button-Wave.svg);
  background-position: 0px 0px;
  background-size: cover;
}

.rules-content-point {
  background-color: #c4eaf8;
  background-image: url(../images/objects1.png);
  background-position: 50% 50%;
  background-size: cover;
  padding: 40px;
  display: flex;
  margin-bottom: 1vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 4px solid #dedede;
}

.block-blue.push-down.less {
  max-width: 1200px;
  margin-top: 0px;
  margin-bottom: 0px;
  flex-direction: column;
  background-color: #162c5a;
}

.block-blue.push-down {
  position: static;
  margin-bottom: 0px;
  padding-right: 40px;
  padding-left: 40px;
  border-radius: 6px;
  background-color: #06223f;
}

.block-blue {
  position: relative;
  display: flex;
  width: 100%;
  padding: 30px 60px;
  flex-wrap: wrap;
  background-color: #237ac6;
}

.rules-content h3 {
  display: flex;
  margin-bottom: 21px;
  margin-left: 0px;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  font-size: 25px;
  line-height: 130%;
  font-weight: 700;
  letter-spacing: 1px;
}

.rules-content-point-text {
  width: 100%;
  color: #162c5a;
  font-size: 21px;
  line-height: 30px;
  font-weight: 400;
}

.rules-content li {
  font-size: 18px;
  line-height: 110%;
  color: #fff;
  padding: 10px 0;
  margin: 0;
}

.div-block-270 {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.heading-14.grey {
  color: #162c5a;
}

.heading-14 {
  font-size: 16px;
  line-height: 100%;
}

h1.heading-16 {
  color: #00aeef;
  font-weight: 700;
  font-size: 25px;
}

.div-block-175.services {
  border-top-color: #162c5a;
  background-color: #f7f7f7;
}

.div-block-175.services {
  margin-bottom: 0px;
  border-top-color: #162c5a;
  background-color: #f7f7f7;
}

.bold-text-10 {
  color: #162c5a;
}

.div-block-175 {
  width: 100%;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
  padding: 20px;
  border-top: 2px solid #e84435;
  background-color: #f2f1f1;
}

.heading-14 a.link {
  text-decoration: none;
}

.rules-content img {
  width: 100%;
}

/****/
.programs-2section {
  padding: 40px 0;
}

.programs-2section h1 {
  display: flex;
  margin-bottom: 40px;
  font-weight: 900;
  justify-content: center;
  align-items: center;
  color: #00aeef;
  font-size: 50px;
}

.programs-2section p {
  font-size: 20px;
  line-height: 140%;
}

.p-center {
  text-align: center;
}

.programs-2section h2 {
  display: flex;
  margin: 0 0 20px;
  justify-content: flex-start;
  align-items: center;
  color: #00aeef;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 30px;
  line-height: 100%;
  font-weight: 900;
}

.programs-2section .col-md-6:nth-child(1) {
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  padding-right: 25px;
}

.programs-2section .col-md-6:nth-child(2) {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  padding-left: 25px;
}

.programs-2section .col-md-6:nth-child(3) {
  border-right: 1px solid #eee;
  padding-top: 20px;
  padding-right: 25px;
}

.programs-2section .col-md-6:nth-child(4) {
  padding-top: 20px;
  padding-left: 25px;
}

.div-block-215 {
  width: 100%;
  height: 250px;
  background-image: url(../images/footer.png);
  background-position: 50% 50%;
  background-size: cover;
}

/****/

.kindergarten-head {
  height: 650px;
  padding-bottom: 60px;
  padding-top: 100px;
  background-color: #c4eaf8;
  background-image: url("https://kidsown.webiwork.com/wp-content/uploads/2025/10/Frame-17-1.png");
  background-position: 50% 50%;
  background-size: cover;
}

.kindergarten-head .contact-absolute {
  padding: 80px 0;
}

.kindergarten-head h1 {
  margin: 35px 0 0;
  font-size: 55px;
  font-weight: 700;
}

.contact-absolute .banner-logo {
  text-align: center;
}

.kindergarten-about h2 {
  margin-top: 0px;
  margin-bottom: 15px;
  color: #00aeef;
  font-size: 60px;
  line-height: 110%;
  text-align: center;
  font-weight: 700;
}

.kindergarten-about {
  display: flex;
  height: auto;
  padding-top: 40px;
  padding-bottom: 0px;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  background-image: url(../images/kids-planet-contact.png);
  background-position: 50% 50%;
  background-size: cover;
}

.kindergarten-about h3 {
  color: #00aeef;
  margin-bottom: 20px;
  margin-top: 0;
  font-size: 30px;
  line-height: 120%;
  font-weight: 700;
}

.kindergarten-about head {
  text-align: center;
}

/* .term-blue {
  margin: 0 0 30px;
  background-color: #162c5a;
  color: #fff;
  padding: 30px 30px 0;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
} */

.term-blue h3 {
  font-size: 22px;
  color: #fff;
}

.kindergarten-about-content p {
  width: 100%;
  color: #7e7e7e;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 25px;
  text-align: justify;
}

.kindergarten-about-img img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.kindergarten-about-img {
  text-align: center;
}

.about-content-box {
  text-align: center;
  margin-bottom: 35px;
}

.about-content-box h3 {
  margin: 0 0 30px;
  color: #00aeef;
  font-size: 30px;
  line-height: 110%;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

.about-content-box ul {
  padding-left: 45px;
}

.about-content-box ul li {
  color: #162c5a;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
  text-align: left;
  line-height: 140%;
}

.enrolling-list p {
  font-weight: 700;
  font-size: 18px;
}

.text-blue {
  color: #162c5a;
  font-weight: 500;
  font-size: 18px;
  line-height: 125%;
}

.about-content-box .left-start.text-blue {
  text-align: left;
}

.points-section {
  padding: 60px 0;
  background-color: #9ce4ff;
  background-image: url(../images/bg-cloud-05.png);
  background-position: 60% 50%;
  background-size: cover;
}

li {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #162c5a;
  font-size: 18px;
  line-height: 130%;
}

.points-section h3 {
  margin: 0 0 15px;
  font-size: 30px;
  line-height: 120%;
  font-weight: 700;
  color: #00aeef;
  text-align: center;
}

.head-content {
  max-width: 800px;
  margin: 0 auto 100px;
  text-align: center;
}

.kindergarten-about .head img {
  margin: 0 auto;
}

.kindergarten-about .head {
  text-align: center;
}

.head-content p {
  color: #162c5a;
  line-height: 145%;
  text-align: center;
}

.benefit-card-section {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}

.benefit-card {
  padding: 10px;
  width: 50%;
  flex: 0 0 50%;
}

.benefit-card img {
  max-width: 60px;
  max-height: 60px;
}

.benefit-img img {
  width: 100%;
}

/******/
.gallery-new-section {
  padding: 160px 0 80px;
}

.gallery-new-section h2 {
  margin: 10px 0 30px;
  color: #00aeef;
  font-size: 65px;
  line-height: 115%;
  font-weight: 900;
  text-align: center;
}

.gallery-head-content {
  max-width: 936px;
  margin: 0 auto 20px;
}

.gallery-head-content p {
  width: 100%;
  color: #162c5a;
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
}

.fees-contenet {
  max-width: 780px;
  margin: 0 auto 60px;
}

.fees-contenet h6 {
  color: #162c5a;
  line-height: 130%;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}

.fees-contenet p {
  color: #162c5a;
  line-height: 130%;
  text-align: center;
}

.ccs-table {
  display: block;
  height: auto;
  margin: 80px auto 40px;
  padding-bottom: 0px;
  background-color: #fff;
}

.ccs-table th:nth-child(1) {
  background-color: #fff;
  width: 180px;
  min-width: 180px;
}

.ccs-table th {
  background-color: #c4eaf8;
  padding: 20px;
  text-align: center;
}

.ccs-table table {
  border-spacing: 5px 10px !important;
  border: 2px solid #dedede;
  border-collapse: separate;
}

.ccs-table th:nth-child(2) {
  width: 280px;
  min-width: 280px;
}

.ccs-table th:nth-child(3) {
  background-image: url(../images/pattern_6.png);
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
  width: 280px;
  min-width: 280px;
}

.ccs-table th:nth-child(5) {
  background-image: url(../images/pattern_6.png);
  background-position: 0px 0px, 0px 0px;
  background-size: auto, cover;
}

.ccs-table th:nth-child(4) {
  width: 280px;
  min-width: 280px;
}

.ccs-table td:nth-child(4) {
  width: 280px;
  min-width: 280px;
}

.ccs-table th {
  font-size: 24px;
  line-height: 130%;
  margin-top: 20px;
  color: #162c5a;
}

.ccs-table td {
  margin-bottom: 0px;
  color: #333;
  text-align: center;
  font-size: 18px;
  height: 120px;
  width: 300px;
}

.ccs-table td p {
  color: #162c5a;
  margin: 0 0 5px;
  width: 300px;
}

.benefit-content h6 {
  color: #152981;
  font-size: 18px;
  font-weight: 800;
  margin: 16px 0;
}

.benefit-content p {
  color: #162c5a;
  font-size: 16px;
  line-height: 120%;
}

ul.dropdown-menu {
  overflow: hidden;
  padding: 10px;
  border-radius: 20px;
  background-color: transparent;
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(hsla(0, 0%, 100%, 0.55)),
      to(hsla(0, 0%, 100%, 0.55))
    ),
    url(../images/pattern_6.png);
  background-image: linear-gradient(
      180deg,
      hsla(0, 0%, 100%, 0.55),
      hsla(0, 0%, 100%, 0.55)
    ),
    url(../images/pattern_6.png);
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, repeat;
}

.certification-gvt {
  height: 190px;
  width: 190px;
  border-radius: 100%;
  overflow: hidden;
}

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

.dropdown-item img {
  width: 50px;
  max-height: 40px;
  object-fit: cover;
  object-position: center;
}

a.dropdown-item {
  padding: 10px 20px;
}

.ccs-table td:nth-child(4),
.ccs-table td:nth-child(2) {
  padding: 16px;
  background-color: #c4eaf8;
  background-image: url(../images/shape-faq.svg);
  background-position: 100% 0%;
  background-size: cover;
  box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.12);
  color: #162c5a;
  text-align: center;
}

.ccs-table td:nth-child(5),
.ccs-table td:nth-child(3) {
  background-image: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(hsla(0, 0%, 100%, 0.64)),
      to(hsla(0, 0%, 100%, 0.64))
    ),
    url(../images/pattern_6.png);
  background-image: linear-gradient(
      180deg,
      hsla(0, 0%, 100%, 0.64),
      hsla(0, 0%, 100%, 0.64)
    ),
    url(../images/pattern_6.png);
  background-position: 0px 0px, 0px 0px;
}

.navbar-nav li {
  margin: 0 !important;
}
.navbar-nav a.button.white-btn p {
  font-size: 16px;
  text-transform: uppercase;
}
section {
  overflow: hidden;
}
button.navbar-toggler {
  background: #162c5a;
  border-radius: 10px;
  height: 40px;
  width: 40px;
  overflow: hidden;
  padding: 5px;
  outline: none !important;
  box-shadow: none !important;
}

button.navbar-toggler img {
  width: 100%;
}

select.form-control {
  height: 46px;
  border-radius: 10px;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid rgb(0 175 239 / 10%);
  transition: all 250ms ease-in-out;
  background: #f7f7f7;
}

ul.cnss-social-icon {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.submit-button.w-button {
/*   width: 100%; */
  background: #1f285a;
  color: #fff;
  font-size: 18px;
  text-align: center;
	padding: 0 1rem;
}
@media screen and (max-width: 1480px) {
  .contact-banner {
    background-size: 120%;
  }
  .contact-absolute h1 {
    font-size: 50px;
  }
  .event-section h1 {
    font-family: "Supermercado One", serif;
  }
}
@media screen and (max-width: 1410px) {
  .header-main .navbar-nav li .nav-link {
    font-size: 13px;
    font-weight: 800;
  }
  .gallery-content .banner-logo img {
    max-width: 100px;
  }
  .food-gallery {
    padding: 60px 0 300px;
  }
}
@media screen and (max-width: 1199px) {
  .kindergarten-head {
    height: 450px;
  }
  .gallery-content .banner-logo img {
    max-width: 80px;
  }
  .gallery-icon {
    max-width: 50px;
  }
  li,
  p,
  .head-content p,
  .kindergarten-about-content p,
  .programs-2section p {
    font-size: 16px;
  }
  .header-main .navbar-nav li .nav-link {
    padding: 5px 8px !important;
    font-size: 13px;
  }
  .bd-content h2 .content-food h2,
  .mission-content h1,
  .childcare-section h1,
  .say-content h1 {
    font-size: 48px;
  }
  .comment-head,
  .say-content h2 {
    font-size: 24px;
  }
  .paragraph {
    font-size: 14px;
  }
  .navbar-nav a.button.white-btn {
    padding: 10px 10px;
  }
  .navbar-nav a.button.white-btn p {
    font-size: 14px;
  }
  .contact-absolute {
    padding-top: 200px;
  }
  .contact-absolute .banner-logo img {
    max-width: 120px;
  }
  .contact-banner {
    background-size: 115%;
  }
  .contact-absolute p {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 16px;
  }
  .kindergarten-about h2,
  .contact-absolute h1 {
    font-size: 48px;
    text-align: center;
  }
  .event-section h1 {
    font-size: 36px;
  }
  .enroll-img img {
    max-width: 90px;
  }
  .main-banner {
    padding: 80px 0 50px;
    min-height: 500px;
  }
  .gallery-content h2,
  .home-list h1 {
    font-size: 48px;
  }
  .choose-list li {
    font-size: 16px;
  }
  .why-choose-section {
    padding: 50px 0 300px 0;
  }
  .childcare-section {
    padding: 80px 0;
  }
  .childcare-section p {
    margin-top: 12px;
  }
  .childcare-section .head-main {
    margin-bottom: 30px;
  }
  .contact-us-section h2 {
    margin: 0 0 15px;
    font-size: 48px;
  }
  .rules-wrapper {
    padding: 30px;
  }
  .bd-img {
    width: 320px;
    height: 320px;
  }
  .ccs-table td {
    font-size: 16px;
  }
  .ccs-table th {
    font-size: 18px;
  }
  .gallery-section {
    padding: 60px 0 100px;
    background-size: 180%;
  }
  .rules-content h3,
  .rules-content-point-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .main-content-div {
    padding: 0 25px;
  }
  .footer {
    margin-top: 0;
  }
  .about-head-section {
    height: 500px;
  }
  .header-main a.button.white-btn {
    margin-left: 0;
    font-weight: 600;
  }
  .home-list {
    max-width: 750px;
  }
  .footer {
    background-image: none;
  }
  .gallery-new-section {
    padding: 40px 0;
  }
  .accordion-body {
    padding: 20px;
  }
  .gallery-new-section h2 {
    font-size: 45px;
  }
  .contact-absolute {
    padding-top: 130px;
  }
  .contact-banner,
  .contact {
    height: 60vh;
  }
  .contact-banner {
    background-size: 170%;
  }
  .rules-title {
    width: 100%;
  }
  .rules-right,
  .rules-left {
    top: 0;
    width: 50%;
  }
  .rules-wrapper {
    padding: 20px;
  }
  .program-section.rules {
    padding-top: 35px;
  }
  .container-9.rules {
    width: 100%;
    padding: 0;
    padding-right: 10px;
    padding-left: 10px;
  }
  .heading-26 {
    font-size: 25px;
  }
  .block-blue.push-down {
    padding: 20px;
  }
  .header-main,
  .header-main.fixed-top {
    background: #fff;
  }
  .header-main.fixed-top .navbar-nav li .nav-link,
  li .nav-link {
    color: #162c5a;
  }
  .header-main .navbar-nav {
    align-items: flex-start;
  }
  .header-main .navbar-nav li .nav-link {
    padding: 15px 0 !important;
    font-weight: 900;
  }
  .navbar-nav a.button.white-btn p {
    font-weight: 900;
  }
  .fees-contenet p,
  li,
  .gallery-head-content p,
  .navbar-nav a.button.white-btn p {
    font-size: 16px;
    color: #162c5a;
  }
  .navbar-nav a.button.white-btn {
    padding: 15px 0;
    color: #162c5a;
  }
  .navbar-nav a.button.white-btn .hover-bg {
    display: none;
  }
  .button {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
  }
  button.navbar-toggler {
    margin-left: auto;
    margin-right: 0;
  }
  nav.navbar.navbar-expand-lg {
    text-align: right;
  }
  .footer {
    padding: 50px 0;
  }
  .socialoimg {
    height: 180px;
    width: 180px;
    flex: 0 0 180px;
  }
  .bd-content h2,
  .content-food h2,
  .kindergarten-about h2,
  .mission-content h1,
  .location-section h2,
  .linkedin-box h1 {
    font-size: 36px;
  }
  .kindergarten-about h3,
  .child-care-card h2 {
    font-size: 20px;
  }
  .child-care-card h3 {
    font-size: 40px;
  }
  .rules-title,
  .rules-content-point {
    padding: 10px;
  }
  .head-content {
    margin-bottom: 50px;
  }
  .term-blue {
    flex-wrap: wrap;
    padding: 20px !important;
  }
  .gallery-content .banner-logo img {
    max-width: 70px;
  }
  .faq-section {
    padding: 100px 0;
  }
  .gallery-content h2,
  .home-list h1,
  .say-content h1 {
    font-size: 40px;
  }
  .hello-section {
    padding: 60px 0;
  }
  .ccs-table {
    margin: 25px auto 40px;
  }
  .gallery-section {
    padding: 80px 0;
    background-size: 200%;
  }
}

@media screen and (max-width: 767px) {
  .gallery-section {
    padding: 50px 0 80px;
    background-size: 220%;
  }
  .section-img {
    display: none;
  }
  .footer-copyright {
    margin-top: 20px;
  }
  .bd-img {
    margin: 0 auto 25px;
  }
  .contact-banner,
  .contact {
    height: 450px;
  }
  .container {
    padding: 0 15px;
  }
  .accordion-button:not(.collapsed),
  button.accordion-button {
    font-size: 14px;
    height: 55px;
  }
  .gallery-content {
    margin-bottom: 15px;
  }
  .gallery-icon {
    max-width: 40px;
  }
  .faq-links h3 {
    font-size: 14px;
  }
  .accordion-item {
    margin-bottom: 12px;
  }
  .faq-accordian p,
  .faq-accordian li {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .gallery-new-section {
    padding: 40px 0;
  }
  .contact-us-page .col-md-6:nth-child(1) {
    margin-bottom: 40px;
  }
  .contact-us-page {
    padding: 50px 0 0;
  }
  .contact-absolute p {
    font-size: 12px;
  }
  .kindergarten-head {
    height: 330px;
  }
  .contact-absolute .banner-logo img {
    max-width: 60px;
  }
  .rules-content ul {
    padding-left: 15px;
  }
  .gallery-new-section h2,
  .kindergarten-about h2 {
    font-size: 28px;
    text-align: center;
  }
  .contact-absolute h1 {
    font-size: 20px;
    text-align: center;
  }
  .rules-left {
    width: 100%;
    height: 350px;
  }
  .rules-content-scroll,
  .rules-right {
    display: none;
  }
  .bd-content h2,
  .content-food h2,
  .kindergarten-about h2,
  .childcare-section h1,
  .contact-us-section h2,
  .location-section h2,
  .linkedin-box h1 {
    font-size: 32px;
    font-weight: 800;
  }
  .childcare-section {
    padding: 40px 0;
  }
  .childcare-section .col-md-4 {
    margin-bottom: 25px;
  }
  .top-tib-block {
    padding: 20px;
  }
  .say-content h1,
  .programs-2section h1 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .programs-2section h2,
  .top-tib-block h3 {
    font-size: 22px;
    font-weight: 800;
  }
  .programs-2section p {
    font-size: 14px;
    line-height: 125%;
  }
  .tip-list li {
    font-size: 16px;
    padding: 10px 0 0;
    padding: 10px 0 0;
  }
  .contact-us-section {
    padding: 30px 0;
  }
  .about-head-section {
    padding: 80px 0 40px;
    height: auto;
    background-size: 80%;
    background-repeat: no-repeat;
    align-items: flex-start;
  }
  .about-containt img {
    max-width: 50px;
  }
  .about-img img {
    max-width: 220px;
    margin-left: auto;
    margin-right: 0;
  }
  .about-containt h1 {
    font-size: 36px;
  }
  .faq-section {
    padding: 60px 0;
  }
  .about-img {
    text-align: right;
  }
  .mission-content {
    padding: 30px 0 0 0;
  }
  .enrolling-list p {
    font-size: 16px;
  }
  .rules-content li,
  li,
  .kindergarten-about-content p,
  .mission-content p,
  .footer p,
  .footer-copyright p,
  p {
    font-size: 14px;
  }
  .mission-content h1 {
    margin-bottom: 10px;
  }
  .div-block-215 {
    height: 80px;
  }
  .about-content-box h3 {
    font-size: 26px;
  }
  .programs-2section .col-md-6 {
    padding: 20px !important;
  }
  .points-section {
    padding: 30px 0 !important;
  }
  .gallery-content h2,
  .home-list h1 {
    font-size: 32px;
  }
  .form-block-main {
    max-width: 100%;
  }
  .linkedin-box {
    gap: 20px;
  }
  .enroll-heading {
    width: 100%;
    flex: 0 0 100%;
    text-align: center;
  }

  .enroll-img {
    width: 100%;
    text-align: center;
  }

  section.event-section {
    height: auto;
  }
  .programs {
    padding: 50px 0;
  }
  .commenter-name {
    text-align: center;
    justify-content: center;
  }
  .text-span {
    color: #d6f3fd;
    font-size: 32px;
    display: inline-block;
  }
  .main-content-div {
    background-image: none;
    padding: 0 18px;
  }
  .comment-head,
  .say-content h2 {
    font-size: 20px;
  }
  .ccs-table {
    margin: 25px auto 40px;
  }
  .mission-section {
    padding: 50px 0 150px;
  }
}

@media screen and (max-width: 575px) {
  .ccs-table {
    margin: 10px auto 40px;
  }
  .hello-section {
    padding: 40px 0;
  }
  .call-head strong {
    display: none;
  }
  .about-content-box h3 {
    font-size: 22px;
  }
  .footer {
    margin-top: 0;
  }
  .linkedin-box {
    flex-wrap: wrap;
    gap: 30px;
  }
  .linkedin-box h1 {
    width: 100%;
  }
  .socialoimg {
    height: 260px;
    width: 260px;
    flex: 0 0 260px;
  }
  .faq-section {
    padding: 50px 0;
  }
  .gallery-content h2 {
    font-size: 28px;
  }
  .food-gallery {
    padding: 60px 0 200px;
  }
  .food-gallery {
    padding: 50px 0;
    background: none;
  }
  .tab-new {
    display: none;
  }
  .text-span {
    color: #d6f3fd;
    font-size: 25px;
    display: inline-block;
  }
  .birthday-section {
    padding: 30px 0 50px;
  }
}


.special{
	margin-top: 5%;
}

.special p{
	color: white;
}

.head p{
	margin-top: 8px;
}








/* General Styles */

/* Banner Section */
.contact-banner {
    position: relative;
    background-image: url('<?php echo esc_url($settings['banner_image']); ?>');
    background-size: cover;
    padding: 40px 0;
    color: white;
    text-align: center;
}

.contact-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-banner .banner-logo img {
    max-width: 150px;
}

.contact-banner h1 {
    font-size: 36px;
}

/* Top Text Section */
.top-text-section {
    text-align: center;
    padding: 50px 0;
}

.top-text-section h2 {
   margin-top: 2rem;
    margin-bottom: 2rem;
    color: #00aeef;
    font-size: 30px;
    line-height: 120%;
    font-weight: 900;
/* 	text-align: start; */
}

.top-text-section p {
    font-size: 18px;
    line-height: 1.6;
	padding: 0 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Group Section - Images in a Row */
.top-group-section {
    padding: 40px 20px;
}

.top-group-images {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
	max-width: 1200px;
    margin: 0 auto;
}

.top-group-image {
    max-width: 30%; /* Ensures images fit in the row */
    flex-grow: 1;
    flex-basis: 30%;
    box-sizing: border-box;
}

.top-group-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Booking Section */
.booking-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
}

.booking-img {
    max-width: 100%;
}

.booking-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-us-page-form {
    margin-top: 20px;
}

/* Location Section */
.location-section {
    text-align: center;
    padding: 50px 20px;
}

.location-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.map-box {
    margin: 20px auto;
    max-width: 100%;
}






