:root {
    --pink-color: #F73A83;
    --pink-hover-color: #D52C6D;
    --gray-light: #393939;
    --gray-dark-1: #2b2b2b;
    --text-color: #232323;
    --gray-dark-color: #2b2b2b;
    --purple-bright: #ca64ff;
    --pink-mid: #cf67db;
    --blue-sky: #00b7ff;
    --green-trans: #65c92980;
    --orange-bright: #ff8800;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--bs-text-shed);
    background: var(--bs-background-shed3);
    transition: 0.35s;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
}

a {
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    transition: 0.5s all ease-in-out;
}

.slow-effect {
    transition: 0.5s all ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Fredoka', sans-serif;
    line-height: 1;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #71717A;
}

img {
    max-width: 100%;
}

a,
button {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    outline: none;
    background: none;
    transition: 0.5s all ease-in-out;
    font-family: 'Fredoka', sans-serif;
}

.fredoka-fonts {
    font-family: 'Fredoka', sans-serif;
}

.poppins-fonts {
    font-family: "Poppins", sans-serif;
}

.montserrat-fonts {
    font-family: "Montserrat", sans-serif;
}

.ink-free {
    font-family: "Ink Free", sans-serif;
}

.section-sub-heading {
    font-family: "Ink Free", sans-serif;
}


/*=============== font weight ===============*/

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/*=============== font size ===============*/

.fs-79 {
    font-size: 30px;
}

.fs-58 {
    font-size: 28px;
}

.fs-28 {
    font-size: 20px;
}

.fs-22 {
    font-size: 18px;
}

.fs-17 {
    font-size: 16px;
}

.fs-15 {
    font-size: 15px;
}

.fs-14 {
    font-size: 14px;
}


/*=============== letter-spacing ===============*/

.l_spacing_82 {
    letter-spacing: 0.82px;
}

.l_spacing_44 {
    letter-spacing: 0.44px;
}

.l_spacing_38 {
    letter-spacing: 0.38px;
}

.l_spacing_24 {
    letter-spacing: 0.24px;
}

.l_spacing_17 {
    letter-spacing: 0.17px;
}

.l_spacing_18 {
    letter-spacing: 0.18px;
}

.l_spacing_16 {
    letter-spacing: 0.16px;
}

.l_spacing_15 {
    letter-spacing: 0.15px;
}

.l_spacing_14 {
    letter-spacing: 0.14px;
}

.text-color {
    color: var(--text-color);
}

.gray-color {
    color: var(--gray-dark-color);
}

.pink-color {
    color: var(--pink-color);
}

.gray-light-color {
    color: var(--gray-light);
}

.slow-anim {
    transition: 0.5s all ease-in-out;
}


/*=============== Common Button/Links ===============*/

.common-btn {
    padding: 15px 20px 15px 30px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    border: none;
    color: #fff;
    background: var(--pink-color);
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    outline: none;
}

.btn:hover {
    background: var(--pink-hover-color);
}

.common-btn span {
    font-size: 16px;
}

.white-button {
    background: #fff;
}

.common-btn .btn-text {
    color: #fff;
    position: relative;
    z-index: 1;
    transition: 0.5s all ease-in-out;
    font-size: 20px;
    display: flex;
    align-items: center;
    font-family: 'Fredoka', sans-serif;
    font-weight: 400;
    letter-spacing: 0.22px;
}

.btn.common-btn i {
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 9px 13px;
    text-align: center;
    margin-left: 6px;
    transition: 0.5s all ease-in-out;
    font-size: 17px;
}

.common-btn:hover i {
    color: #fff;
    background: var(--pink-color);
}

.common-btn:hover .btn-text {
    color: #fff;
}

.common-btn i {
    padding-left: 10px;
}

.common-btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 5px;
    background: var(--pink-hover-color);
    transition: all 0.3s ease;
}

.common-btn:hover:after {
    top: auto;
    bottom: 0;
    height: 100%;
}

@media (min-width:1600px) {
    .container {
        max-width: 1456px;
    }
}

@media (min-width: 576px) {
    .align-container-left {
        margin-left: calc((100vw - 540px) / 2);
    }
    .align-container-right {
        margin-right: calc((100vw - 540px) / 2);
    }
}

@media (min-width: 768px) {
    .align-container-left {
        margin-left: calc((100vw - 720px) / 2);
    }
    .align-container-right {
        margin-right: calc((100vw - 720px) / 2);
    }
}

@media (min-width: 992px) {
    .align-container-left {
        margin-left: calc((100vw - 960px) / 2);
    }
    .align-container-right {
        margin-right: calc((100vw - 960px) / 2);
    }
}

@media (min-width: 1200px) {
    .align-container-left {
        margin-left: calc((100vw - 1140px) / 2);
    }
    .align-container-right {
        margin-right: calc((100vw - 1140px) / 2);
    }
}

@media (min-width: 1400px) {
    .align-container-left {
        margin-left: calc((100vw - 1320px) / 2);
    }
    .align-container-right {
        margin-right: calc((100vw - 1320px) / 2);
    }
}

@media (min-width: 1600px) {
    .align-container-left {
        margin-left: calc((100vw - 1456px) / 2);
    }
    .align-container-right {
        margin-right: calc((100vw - 1456px) / 2);
    }
}

.custom-container {
    width: auto;
}


/* =============== header =============== */

.header-section {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 0;
    transition: 0.5s all ease-in-out;
    padding: 20px 0;
}

.contact {
    font-weight: normal;
    gap: 7px;
    color: var(--gray-dark-3);
}

.nav-item a {
    transition: all 0.3s ease;
    color: #121212;
}

.nav-item a:hover {
    color: var(--pink-color);
}

.nav-item a:hover,
.active-nav {
    color: var(--pink-bright) !important;
}

.common-btn.header-enquiry {
    padding: 10px 15px 10px 25px;
}

.header-contact {
    display: flex;
    align-items: center;
}

.header-contact i {
    background: var(--pink-hover-color);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.contact-number {
    color: #141414;
    font-size: 19px;
}

.mobile-toggle {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 25px;
    background: transparent;
    cursor: pointer;
}

.toggle-close {
    width: 25px;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}

.toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    background: var(--gray-dark-4);
}

.close-icon {
    position: relative;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 1;
    border-radius: 15px;
    z-index: 50;
    background: var(--gray-dark-4);
}

.close-icon:nth-child(1) {
    top: 1px;
    transform: rotate(45deg);
}

.close-icon:nth-child(2) {
    bottom: 1px;
    transform: rotate(-45deg);
}

.toggle-line:nth-child(1) {
    top: 0px;
}

.toggle-line:nth-child(2) {
    margin-top: 6px;
    width: 70%;
}

.toggle-line:nth-child(3) {
    margin-top: 6px;
}

.navbar-toggler1 .toggle-close {
    display: none;
}

.navbar-toggler1[aria-expanded="true"] .mobile-toggle {
    display: none;
}

.navbar-toggler1[aria-expanded="true"] .toggle-close {
    display: block;
}


/* =============== Hero section =============== */

.main-section {
    overflow-x: hidden;
}

.banner-section {
    background-image: url(../images/img/hero-bg.png);
    background-size: cover;
    background-position: 50% bottom;
    padding: 90px 0 40px;
}

.banner-main {
    align-items: start;
}

.weak-a-genius-heading {
    position: relative;
}

.home-about-btn {
    margin-top: 60px;
}

.pink-star {
    position: absolute;
    left: 0;
    top: 12%;
}

.blue-star {
    position: absolute;
    top: 0;
    left: 21%;
}

.orange-star {
    position: absolute;
    right: 15%;
}

.green-star {
    position: absolute;
    right: -7%;
    bottom: 40%;
}

.left-spoon {
    position: absolute;
    bottom: 35%;
    left: 0;
}

.scissors {
    position: absolute;
    bottom: 16%;
    left: 0;
}

.right-spoon {
    position: absolute;
    right: 0;
    bottom: 16%;
}

.octopus {
    position: absolute;
    bottom: 0;
    left: 50vh;
}

.we-educated {
    max-width: 200px;
}

.view-more {
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
}

.home-banner-content {
    margin: 48px 0 20px;
}

.home-banner-btn {
    margin-top: 60px;
}


/* =============== About Section =============== */

.about-bottom-shape::before {
    content: "";
    background: linear-gradient(0deg, #fff0 0%, #fff 28%, #fff 100%);
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: -75px;
}

.blue-toys {
    bottom: -60px;
    right: 50px;
    position: absolute;
    z-index: 0;
    width: 110px;
}


/* =============== School Facilities =============== */

.school-facilities {
    background-image: url(../images/shapes/bg_shape1.webp);
    background-size: cover;
    background-position: 50% bottom;
    padding: 125px 0 60px;
    background-position-y: bottom 6px;
}

.facilities-row {
    margin-top: 38px;
}

.round-col-column {
    z-index: 1;
}

.common-round-shape {
    border-radius: 100%;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 29px;
}

.Safety-round {
    background: var(--pink-dark);
}

.learning-round {
    background: var(--purple-bright);
}

.social-round {
    background: var(--blue-bright)
}

.nutrition-round {
    background: var(--green-mid)
}

.outdoor-space-round {
    background: var(--orange-bright)
}

.column-text {
    padding: 0 15px;
}

.engaging-bg {
    position: absolute;
    bottom: -30%;
    z-index: -1;
}


/* =============== Educational Programs =============== */

.educational-programs-section {
    padding: 60px 0 50px;
}

.educational-top-shape {
    position: absolute;
    top: -26%;
    z-index: -1;
    width: 100%;
    height: 40%;
    object-fit: cover;
}

.step-multi-column {
    gap: 11px 10px;
}

.single-step {
    border: 1px solid #D6D6D6;
    border-radius: 29px;
    padding: 12px 32px 10px 21px;
    background: #fff;
    width: fit-content;
}

.step-dot {
    background: var(--blue-sky);
    width: 10px;
    height: 10px;
    min-width: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

.step-title {
    color: var(--gray-dark-color);
}

.single-step:hover {
    background: var(--pink-color);
    border: 1px solid var(--pink-color);
}

.single-step:hover .step-dot {
    background: #fff;
}

.single-step:hover .step-title {
    color: #fff;
}

.step-bg-blue-shape {
    position: absolute;
    right: -16%;
    z-index: -1;
}

.step-bg-yellow-shape {
    position: absolute;
    right: 4%;
    z-index: -1;
    bottom: -44%;
}

.educational-bg-shape {
    position: absolute;
    bottom: -111%;
    z-index: -1;
}

.orange-bolt-toys {
    position: absolute;
    bottom: -26px;
    width: 102px;
    left: 20px;
    z-index: -1;
}


/* =============== Educational Programs =============== */

.active-bg-shapes img {
    position: absolute;
    bottom: 0;
}

.active-bottom-shape {
    position: absolute;
    bottom: -26%;
    z-index: -1;
}

.thumbnail-icon {
    border-radius: 50%;
    transition: all .3s ease;
    animation: ripple-video 1.5s linear infinite;
    background: transparent;
    color: #fff;
    width: 40px;
    height: 40px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    border: none;
    z-index: 2;
}

.video-thumbnail:hover .thumbnail-icon {
    font-size: 65px;
}

@keyframes ripple-video {
    0% {
        -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .3), 0 0 0 10px hsla(0, 0%, 100%, .3), 0 0 0 20px hsla(0, 0%, 100%, .3);
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .3), 0 0 0 10px hsla(0, 0%, 100%, .3), 0 0 0 20px hsla(0, 0%, 100%, .3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px hsla(0, 0%, 100%, .3), 0 0 0 20px hsla(0, 0%, 100%, .3), 0 0 0 30px hsla(0, 0%, 100%, 0);
        box-shadow: 0 0 0 10px hsla(0, 0%, 100%, .3), 0 0 0 20px hsla(0, 0%, 100%, .3), 0 0 0 30px hsla(0, 0%, 100%, 0);
    }
}


/*=============== theme Video Modal ===============*/

.modal {
    position: fixed;
    top: 0px;
    pointer-events: none;
    left: 0px;
    background: rgba(51, 51, 51, 0.9);
    width: 100vw;
    height: 100vh;
    z-index: 100;
    opacity: 0;
    transition: 0.3s;
}

.modal.active {
    opacity: 1;
    display: block;
    pointer-events: auto;
}

.modal.active .box {
    top: 50%;
}

.modal video {
    border-radius: 5px;
}

.video_modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: var(--theme-yellow);
    width: 30px;
    height: 30px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 23px;
    z-index: 11;
}

.modal .box {
    display: block;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
    padding: 20px;
    position: absolute;
    top: 70%;
    left: 0;
    transform: translate(0, -50%);
    transition: 0.3s all ease-in-out;
    right: 0;
}


/*=============== Gross Motor Skills ===============*/

.gross-skills {
    padding: 125px 0 150px;
}

.green-toys {
    position: absolute;
    right: 0;
    top: 0;
    width: 115px;
    z-index: -1;
}

.top-common-space {
    margin-top: 20px;
}

.curriculum-image-area {
    width: 90%;
    margin: 70px auto 0px;
}

.single-curriculum {
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    text-align: center;
    height: 80px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
}

.gardening-box {
    background: linear-gradient(-126deg, #6982ca 0%, #6982ca 9%, #05b5fd 100%);
    margin: 0 auto;
    text-align: center;
    left: 0;
    right: 0;
    top: -36px;
}

.sport-box {
    background: linear-gradient(-126deg, #b45ca5 9%, #4892da 75%);
    right: -12px;
    top: 6%;
}

.art-box {
    background: linear-gradient(40deg, #18adfa 0%, #12aef6 0%, #1f73c1 100%);
    right: -23px;
    top: 50%;
}

.excursions-box {
    background: linear-gradient(-145deg, #6490ee 0%, #b870df 84%);
    bottom: -27px;
    right: 50px;
}

.outdoor-box {
    background: linear-gradient(-132deg, #d56bbf 13%, #e97962 95%);
    left: 35px;
    bottom: -25px;
}

.math-box {
    background: linear-gradient(-126deg, #d269cd 24%, #e67775 100%);
    left: -21px;
    top: 50%;
}

.literacy-box {
    background: linear-gradient(-126deg, #4e99f2 0%, #a677e2 100%);
    left: -13px;
    top: 6%;
}

.skill-icon {
    width: 26px;
}

.inner-curriculum p {
    font-size: 12px;
}

.curriculum-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}

.curriculum-elements {
    font-size: 20px;
}

.curriculum-underline-shape {
    width: 100px;
    margin-top: 10px;
}


/*=============== Meet Our Professional ===============*/

.meet-professional-section {
    padding-bottom: 70px;
}

.teacher-row {
    margin-top: 50px;
}

.meet-professional-text {
    margin: 0 auto;
}

.teacher-trainer-img {
    height: 450px;
    width: auto;
}

.teacher-social-media i {
    width: 32px;
    height: 32px;
    background: var(--pink-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teacher-text {
    margin-bottom: 22px;
}

.squire-blue-toys {
    position: absolute;
    bottom: 22%;
    left: -100px;
    z-index: -1;
}

.teacher-and-training {
    padding-top: 233px;
}

.Cultivating-a-Love-for-Learning-section {
    background-image: url(../images/bg/cultivating-bg.png);
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.your-child {
    background-image: url(../images/bg/startsoon-bg.png);
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============== Testimonials section =============== */

.testimonial-section {
    background-image: url(../images/bg/slider-background.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% top;
    background-repeat: no-repeat;
    padding: 105px 0 0 0;
}

.testimonial-section::before {
    background: url(../images/shapes/testimonlis_single_line.svg);
    content: "";
    position: absolute;
    top: 81%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

.testimonials-slider .swiper-wrapper {
    margin-bottom: 83px;
}

.testimonial-main {
    margin-top: 60px;
    padding-top: 21px;
}

.testimonials-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.quote-shape {
    position: absolute;
    left: -138px;
    right: 0;
    margin: 0 auto;
    width: 60px;
}

.swiper-slide.testimonials-items {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, filter 0.5s;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #AEAEAE;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #AEAEAE;
    opacity: 1;
    border-radius: 50px;
}

.testimonials-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 49px;
    background: rgb(60, 109, 202);
    background: linear-gradient(90deg, #F80 6%, #CF67DB 34%, #F73A83 56%, #CA64FF 68%, #00B7FF 99%);
}

.ice-cream {
    position: absolute;
    bottom: -159px;
    left: -31px;
    width: 142px;
}

.testimonials-btn {
    text-align: center;
    padding-top: 90px;
}

.testimonial-main-bg {
    position: absolute;
    top: -15%;
    z-index: -1;
}

.testimonial-blue-toys {
    position: absolute;
    right: -5%;
    bottom: 0;
}


/* =============== footer =============== */

.footer-section {
    padding: 200px 0 100px;
}

.inner-footer {
    width: 100%;
    height: 100%;
    padding: 30px 0;
    background: #5d5fd0;
}

.inner-footer::before {
    background: url(../images/shapes/footer_top_shape.png);
    content: "";
    width: 101%;
    position: absolute;
    top: -89px;
    z-index: -1;
    background-position: bottom;
    height: 305px;
    background-size: cover;
}

.inner-footer::after {
    background: url(../images/shapes/footer_bottom_shape.png);
    content: "";
    width: 100%;
    height: 112px;
    position: absolute;
    bottom: 20px;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.starfish-isolated {
    position: absolute;
    top: 62px;
    left: 31%;
}

.footer-background-shape {
    position: absolute;
    bottom: 0;
    z-index: -1;
}

.footer-logo {
    width: 270px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
}

.footer-contact {
    margin: 0 0 40px 0;
}

.footer-toys {
    position: absolute;
    right: -5%;
    bottom: 0;
}

.single-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.contact-icon i {
    color: #fff;
    font-size: 30px;
}

.contact-details {
    padding-left: 15px;
    margin-left: 15px;
}

.contact-details::before {
    background: #ccccf2;
    width: 2px;
    height: 99%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
}

.contact-info-title {
    color: #ccccf2;
    font-size: 14px;
}

.contact-details a {
    font-size: 18px;
    color: #fff;
}

.contact-details a:hover {
    color: #ffcf02;
}

.title-widget {
    margin-bottom: 15px;
}

.footer-links {
    color: #ccccf2;
    padding: 10px 0px;
    display: block;
}

.footer-links:hover {
    padding-left: 5px;
    color: #fff;
}

.address-icon i {
    font-size: 40px;
}


/*=============== Footer Copyright ===============*/

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.23);
    padding: 30px 0 0
}

.footer-social-media i {
    color: #fff;
    margin-right: 15px;
    font-size: 20px;
    transition: 0.5s all ease-in-out;
}

.copyright-text {
    color: #ccccf2;
}


/* =============== responsive =============== */

@media (max-width: 1399px) {
    .navbar-toggler1 {
        display: block;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -505px;
        max-width: 500px;
        width: 100%;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.6s ease-in-out;
        padding-top: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 30;
    }
    .navbar-collapse.show {
        right: 0;
    }
}


/* =============== about page start =============== */

.where-fun-section {
    background-image: url(../images/img/hero-bg.png);
    background-size: cover;
    background-position: 50% bottom;
    padding: 90px 0 40px;
}

.mission {
    line-height: 27px;
}

.our-mission-section {
    background-image: url(../images/bg/our-mission-bg.png);
    background-size: cover;
    background-position: 50% bottom;
    padding: 90px 0 40px;
}

.year-of-excellence {
    gap: 40px;
}

.year-of-excellence h2 {
    font-size: 48px;
    color: #1661DC;
    font-weight: 400;
}

.year-of-excellence h3 {
    font-size: 24px;
    line-height: 26px;
}


/* =============== popular question =============== */

.faq-item {
    border: 1px solid #CAF1FF;
    border-radius: 32px;
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.faq-item .question {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-family: 'Fredoka', sans-serif;
}

.faq-item .question i {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.faq-item .answer {
    display: none;
    margin-top: 10px;
    color: #3E5558;
}

.faq-item .toggle-icon {
    width: 40px;
    height: 40px;
    background-color: #19CADE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease-in-out;
}

.faq-item.active .question {
    color: #1661DC;
}

.adventure-naver-star {
    position: absolute;
    bottom: -30%;
    right: 45%;
}

.where-fun-blue-star {
    position: absolute;
    left: 0;
    top: 10%;
}

.where-fun-orange-star {
    position: absolute;
    right: 25%;
    top: 8%;
}

.faq-item.active {
    border: 1px solid #1661DC;
}

.frequently-head {
    padding-bottom: 52px;
}


/* =============== safety-first =============== */

.safety-first-blue-toys {
    position: absolute;
    top: -45%;
    left: -5%;
}

.drump {
    position: absolute;
    left: 75px;
    bottom: -40px;
}


/* =============== cutivating a love for learning =============== */

.holistic {
    background-image: url(../images/resources/holistic-bg.png);
    width: 56px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.play-based {
    background-image: url(../images/resources/play-based-bg.png);
    width: 56px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.experienced-bg {
    background-image: url(../images/resources/experienced-bg.png);
    width: 56px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* =============== We Believe in Fostering a Love for Learning at V-Wonderers =============== */

.fostering-pink-star {
    bottom: -15%;
    right: 60%;
}

.fostering-orange-star {
    right: 20%;
    top: -5%;
    z-index: -1;
}

.fostering-blue-star {
    top: -3%;
}

.fostering-green-star {
    position: absolute;
    bottom: 0;
    right: 5%;
}


/* =============== Starts soon! Limited Spots Remain. Enroll Your Child Today! =============== */

.days-main {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 0 30px 0 0;
}

.days-main span {
    display: block;
    color: #F73A83;
    font-size: 52px;
    font-family: 'Fredoka', sans-serif;
}

#countdown {
    padding-top: 35px;
}

.countdown-content {
    color: #3E5558;
    font-family: "Poppins", sans-serif;
}

.emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
}

.countdown-content {
    padding: 0 !important;
}

@media all and (max-width: 768px) {
    h1 {
        font-size: calc(1.5rem * var(--smaller));
    }
    .days-main {
        font-size: calc(1.125rem * var(--smaller));
    }
    .days-main span {
        font-size: calc(3.375rem * var(--smaller));
    }
}

.visit-form {
    padding: 20px 24px;
    border-radius: 32px;
    border: 1px solid #AA72F7;
    width: 100%;
}

.form-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    margin-top: 0 !important;
}

.visit-form:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: 1px solid #F73A83 !important;
}

.start-soon {
    background-image: linear-gradient(to bottom, #CAF1FFF6, #D7FAFC00);
    border-radius: 32px;
}

.start-soon-limited {
    padding: 105px 52px;
}

.start-soon-limited-orange-toys {
    top: -7%;
    z-index: 1;
}

.learning-toys {
    top: -100%;
}

.doll {
    position: absolute;
    bottom: 70px;
    left: 20px;
}


/* =============== Gallery page =============== */

.gallery-faq-item.active .gallery-answer {
    color: #F73A83;
}

.gallery-faq-item.active {
    border: 1px solid #F73A83;
}

.gallery-faq-item {
    border: 1px solid #AA72F7;
}

.gallery-faq-item .gallery-toggle-icon {
    background-color: #AA72F7;
}


/* =============== v wonderers tabs =============== */

#portfolio {
    padding: 40px;
    margin: 0 auto;
}

.tabs-btn button {
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
}

.filter-button {
    font-size: 18px;
    border: 1px solid #FFB7D3;
    border-radius: 36px;
    text-align: center;
    color: #03181B;
    margin-bottom: 30px;
}

.filter-button:focus {
    background-color: #F73A83;
    color: white;
}

.filter-button:hover {
    font-size: 18px;
    border: 1px solid #FFB7D3;
    text-align: center;
    color: #ffffff;
    background-color: #F73A83;
}

.btn-default:active .filter-button:active {
    background-color: #F73A83;
    color: white;
}

.filter-button {
    font-size: 18px;
    border: 1px solid #FFB7D3;
    border-radius: 36px;
    text-align: center;
    color: #03181B;
    margin-bottom: 30px;
    background-color: white;
}

.filter-button.active,
.filter-button:focus {
    background-color: #F73A83;
    color: white;
}

.filter-button:hover {
    border: 1px solid #FFB7D3;
    color: #ffffff;
    background-color: #F73A83;
}

.port-image {
    width: 100%;
}

.gallery_product {
    margin-bottom: 24px;
}

.gallery_product img {
    object-fit: cover;
    border-radius: 40px;
}

.tabs-btn {
    gap: 28px;
}

.tabs-btn button {
    padding: 19px 20px;
}

.frequently-question {
    padding: 100px 0 52px 0;
}


/* =============== Branch page =============== */

.jaipur-branch-drump {
    position: absolute;
    right: -80px;
    bottom: 0;
    z-index: -1;
}

.ahemdabad-blue-toys {
    position: absolute;
    left: -70px;
    top: -15px;
    z-index: -1;
}

.jaipur-orange-toys {
    position: absolute;
    right: -80px;
    top: 0;
    z-index: -1;
}

.jaipur-branch-main {
    padding-bottom: 95px;
}

.ahemdabad-branch-main {
    padding-bottom: 95px;
}

.school-blue-light {
    position: absolute;
    right: -20%;
    top: -20%;
    z-index: -1;
}

.branch-head-main {
    padding: 111px 0 88px 0;
}

.branch-head {
    padding-bottom: 12px;
}

.ahemdabad-pink-light {
    position: absolute;
    right: -55%;
    bottom: -50%;
    z-index: -1;
}

.school-btn {
    padding: 95px 0 118px 0;
}

.greent-light {
    position: absolute;
    left: -50%;
    bottom: 13%;
    z-index: -1;
}


/* =============== contact us page =============== */

.let-locate-head {
    font-size: 58px !important;
}

.form-container {
    padding: 30px;
    border-radius: 10px;
}

.form-control {
    border-radius: 32px;
    border: 1px solid #AA72F7;
    padding: 20px 24px;
    color: #3E5558 !important;
}

.form-control:focus {
    border: 1px solid #F73A83 !important;
    box-shadow: none !important;
}

::placeholder {
    color: #8E999B !important;
}

.contact-us-btn {
    padding: 0;
    text-align: start;
}

.form-content {
    margin-bottom: 24px;
}


/* =============== info section =============== */

.phone-icon i {
    color: #1661dc;
    padding: 20px;
    background-color: #fff;
    border-radius: 50px;
}

.phone-contact-main {
    background-color: #CAF1FF;
    border-radius: 32px;
    width: 296px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main a {
    color: #03181B;
}

.contact-main {
    padding-top: 25px;
}

.info-section {
    padding: 150px 0 120px 0;
}

.email {
    background-color: #FFC3DF;
}

.email-icon i {
    color: #e921c5;
}

.location {
    background-color: #B6FFD3;
}

.location-icon i {
    color: #16dc91;
}

.timing {
    background-color: #FCF6BD;
}

.time-icon i {
    color: #ffda2d;
}

.content-info p {
    color: #03181B;
    margin: 0;
}

.content-info span {
    color: #3E5558;
}

.telephone-main a {
    color: #03181B;
}

.contact-us-btn {
    margin-left: 1.5rem !important;
}


/* =============== Looks like you took a detour into the unknown! =============== */

.looks-section {
    background-image: url(../images/bg/looks-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.error-btn {
    margin-bottom: 50px;
}

.looks-logo {
    padding-top: 40px;
}

.looks-head {
    padding-top: 23px;
}

.looks-head p {
    padding-top: 35px;
    color: #3E5558;
}

.looks-btn {
    margin-top: 64px;
}


/* =============== popup =============== */


/* =============== The Modal (background) =============== */

.ebcf_modal {
    display: none;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}


/* =============== Modal Content =============== */

.ebcf_modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px 20px 50px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 30px;
}


/* =============== The Close Button =============== */

.ebcf_close {
    color: #3C3C3C;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ebcf_close:hover,
.ebcf_close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.popup-form {
    padding: 0;
}

.holistic-contetn p {
    color: #3E5558 !important;
}


/* =============== date icon ===============  */

.date-picker-1::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.date-picker-1 {
    position: relative;
}

.date-picker-1::after {
    content: url('../images/svg/calendar.svg');
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.date-picker-2::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.date-picker-2 {
    position: relative;
}

.date-picker-2::after {
    content: url('../images/svg/calendar-2.svg');
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}


/* animation */

@keyframes twinkle {
    0% {
        opacity: 0.5;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.animation-twinkle {
    animation: twinkle 1s infinite alternate;
}


/* Snail Movement Animation */


/* @keyframes snailMove {
  0% {
      transform: translateX(-100px); 
  }
  100% {
      transform: translateX(100vw); 
  }
}


.Snail {
  animation: snailMove 20s linear infinite; 
  position: absolute; } */


/* Floating Up-Down Animation */

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: floatUpDown 2s ease-in-out infinite;
    position: absolute;
}


/* Rotation Animation */

@keyframes rotateBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.common-round-shape {
    transition: transform 0.5s ease-in-out;
}

.common-round-shape:hover {
    transform: scale(1.1);
}

.common-round-shape:hover img {
    transform: rotateY(180deg);
    transition: transform 0.5s ease-in-out;
}

.phone-contact-main {
    transition: transform 0.3s ease-in-out;
}

.phone-contact-main:hover {
    transform: translateY(-10px);
}

.phone-contact-main {
    transition: transform 0.3s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-down {
    animation-name: fadeInDown;
    animation-duration: 1s;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}