:root {
    --theme-color-1: #649cd8;
    --theme-color-2: #4968c3;
}

* {
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
    font-size: 16px;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-weight: 500;
    font-family: "Lilita One", sans-serif;
    color: rgb(68 68 68);
}

.highlight {
    font-family: inherit;
    font-size: inherit;
    color: var(--theme-color-1);
}

img.logo-main {
    width: 120px;
    height: auto;
}

a {
    text-decoration: none !important;
}

section {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
}


/* Scroll activated */

.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}

.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}

.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}

.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}

.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

/* ---------------------------- */

section.hero-section {
    padding-top: 10px;
    background-image: url(montessori-img/background-bg.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: repeat;
    z-index: 1;
}

section.hero-section::after {
    content: '';
    position: absolute;
    background-image: url(montessori-img/background-box.jpg);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

h1.hero-title {
    font-size: 60px;
    margin-bottom: 25px;
}

.hero-sub {
    background: var(--theme-color-1);
    display: inline-block;
    padding: 2px 10px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.banner-subhead {
    font-size: 18px;
    margin-bottom: 2em;
}

.btn-button {
    position: relative;
    padding: 15px 30px;
    background: var(--theme-color-1);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    min-width: 200px;
    display: inline-block;
    border-radius: 6px;
    z-index: 1;
}

.btn-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 5px;
    left: 5px;
    z-index: -3;
    border: 2px dashed var(--theme-color-1);
    background: transparent;
    border-radius: 5px;
    transition: all 0.5s;
}

.btn-button:hover::before {
    top: -5px;
    left: -5px;
}

.sub-heading {
    background: var(--theme-color-2);
    display: inline-block;
    padding: 2px 10px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: capitalize;
}

h2.heading {
    font-size: 44px;
    display: block;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50px;
    border: 4px solid #ffffff;
    background: var(--theme-color-1);
    outline: 2px dashed var(--theme-color-1);
    color: #fff;
    transition: all 0.5s;
}

h4.feature-head {
    font-size: 24px;
    font-weight: 500;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: transparent;
    padding: 12px;
    border: 2px dashed #7c97d43b;
    box-shadow: 2px 2px 10px 0px rgb(0 0 0 / 20%);
    height: 100%;
}

.feature-body {
    flex: 1;
}

.feature-card:hover .feature-icon {
    border: 0px solid;
    outline: 2px solid var(--theme-color-1);
}

h2.banner-big-text {
    font-size: 60px;
    margin-bottom: 1em;
}

section.banner-section {
    padding-top: 100px;
    padding-bottom: 200px;
}

.bg-color::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(montessori-img/section-bg.webp);
    background-size: contain;
    background-repeat: repeat-x;
    z-index: -1;
}

section.banner-section.bg-color::before {
    background-size: 100% 420px;
}


ul.accordion-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

ul.accordion-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

ul.accordion-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(montessori-img/star.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.accordion-area button.accordion-button {
    font-size: 20px;
    font-weight: 500;
    background-color: var(--theme-color-1);
    display: block;
    padding: 18px 60px 18px 35px;
    transition: all 0.5s;
    border-radius: 0px;
    position: relative;
    z-index: 1;
    color: #fff;
}

.accordion-area button.accordion-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(montessori-img/page-bg.png);
    z-index: -1;
    background-size: cover;
    background-repeat: repeat;
    opacity: 0.5;
}

.accordion-area .accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.accordion-area .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-area .accordion-button:focus {
    box-shadow: none;
}

.accordion-area .accordion-collapse {
    transition: border 0.01s;
}

.accordion-area .accordion-item {
    margin-bottom: 30px;
    border: none;
    background-color: transparent;
}

.accordion-area .accordion-button:not(.collapsed) {
    background-color: var(--theme-color-2);
    border-radius: 0px 0px;
    color: #fff;
}

.accordion-area .accordion-collapse.collapse.show {
    background: #fff;
    border: 2px solid #5a5fbe;
    border-radius: 0px 0px;
}

.accordion-area .accordion-button::after {
    display: inline-block;
    text-align: end;
    position: absolute;
    right: 30px;
}

section.certification-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

img.montessori-certificate-img {
    width: 100%;
    height: auto;
    background: var(--theme-color-1);
    padding: 10px;
}

img.teacher-training {
    width: 100%;
}

.teacher-card {
    background: transparent;
    padding: 10px;
    height: 100%;
    border: 2px dashed var(--theme-color-1);
}

h5.teacher-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--theme-color-1);
}

.teacher-card p {
    font-size: 14px;
}

.testimonials-card {
    background: #faf7f4;
    padding: 40px 20px;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
    min-height: 300px;
    margin: 10px;
}

h2.testimonials-title {
    font-size: 24px;
    color: var(--theme-color-2);
}

.testimonials-content {
    text-align: justify;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 1em;
}

.user-name {
    color: #000;
    font-weight: 600;
    color: var(--theme-color-1);
}

section.testimonials-section h2.heading {
    margin-bottom: 1em;
}

section.testimonials-section .slick-prev:before,
section.testimonials-section .slick-next:before {
    color: var(--theme-color-1);
    font-size: 30px;
}

section.testimonials-section .slick-prev {
    left: -50px;
}

section.testimonials-section .slick-next {
    right: -50px;
}

footer.footer {
    display: block;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

footer.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(montessori-img/section-bg.webp);
    background-size: cover;
    background-repeat: repeat-x;
    z-index: -1;
}

h5.footer-heading {
    font-size: 24px;
    color: #515151;
    margin-bottom: 1em;
}

p.footer-text {
    color: #000000a8;
    font-size: 16px;
    text-align: justify;
}

ul.footer-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

ul.footer-list li {
    padding-bottom: 10px;
    font-size: 16px;
    color: #000000a8;
}

ul.contact-details-footer {
    list-style: none;
    padding-left: 2rem;
}

ul.contact-details-footer li {
    color: #000000a8;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    padding-bottom: 12px;
}

ul.contact-details-footer li a {
    color: #000000a8;
}

.footer-social-media {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 1em 0;
    border-radius: 10px;
}

a.social-icons {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50px;
    border: 4px solid #ffffff;
    background: var(--theme-color-1);
    outline: 2px dashed var(--theme-color-1);
    color: #fff;
    transition: all 0.5s;
}

a.social-icons:hover {
    border: 0px solid;
    outline: 2px solid var(--theme-color-1);
}

footer.bottom-footer {
    background: var(--theme-color-2);
    color: #fff;
    padding: 20px;
}

ul.contact-details-footer i {
    color: var(--theme-color-2);
}



img.hero-cloud-1 {
    width: 100px;
    position: absolute;
    top: 5%;
    left: 10%;
}

img.hero-cloud-2 {
    width: 150px;
    position: absolute;
    left: 40%;
    top: 10%;
}

img.hero-cloud-3 {
    width: 200px;
    position: absolute;
    top: 10%;
    right: 10%;
}

img.hero-star-1 {
    position: absolute;
    width: 50px;
    top: 20%;
    right: 30%;
}

img.hero-star-2 {
    position: absolute;
    width: 50px;
    top: 10%;
    left: 30%;
}

img.hero-star-3 {
    position: absolute;
    width: 50px;
    top: 30%;
    left: 10px;
}

img.hero-rocket-3 {
    position: absolute;
    width: 60px;
    top: 40%;
    left: 30%;
}

.in-front {
    position: relative;
    z-index: 2;
}

.banner-clouds {
    display: block;
    position: absolute;
    width: 60%;
    height: 400px;
    top: 5%;
    right: 0;
    z-index: 0;
}

img.logo.aff-cerf-logo {
    display: inline;
    width: 120px;
}

.aff-certificate-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.Affiliation-area {
    display: block;
    padding-bottom: 2em;
}

img.montessori-kit-img-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 300px;
}

section.about-section {
    background: #dfe9ff;
    background-image: linear-gradient(to right, #dbe2ff, #ffffff, #ffffff, #faf7f4);
}

.abt-box {
    background: #fff;
}

.abt-box.blue-box {
    background: #7c97d4;
    color: #fff;
}

.abt-box.blue-box h4.mb-3 {
    color: #fff;
}

img.footer-logo {
    width: 200px;
    margin-bottom: 20px;
    height: auto;
}

/* --- animations --- */
@keyframes drift {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.25;
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(255, 255, 255, .0));
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, .8));
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    20% {
        transform: translate(1px, -2px) rotate(-1deg);
    }

    40% {
        transform: translate(-2px, 1px) rotate(1.2deg);
    }

    60% {
        transform: translate(2px, -1px) rotate(-0.8deg);
    }

    80% {
        transform: translate(-1px, 2px) rotate(0.6deg);
    }
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero-cloud-1 {
    animation: drift 12s ease-in-out infinite;
    animation-delay: .2s;
}

.hero-cloud-2 {
    animation: drift 5s ease-in-out infinite;
    animation-delay: 1.1s;
}

.hero-cloud-3 {
    animation: drift 6s ease-in-out infinite;
    animation-delay: 0.6s;
}

.hero-star-1 {
    animation: twinkle 1.8s ease-in-out infinite;
    animation-delay: .3s;
}

.hero-star-2 {
    animation: twinkle 2.4s ease-in-out infinite;
    animation-delay: 1.0s;
}

.hero-star-3 {
    animation: twinkle 3.1s ease-in-out infinite;
    animation-delay: 1.7s;
}

.hero-rocket-3 {
    animation:
        shake 1.2s ease-in-out infinite,
        bob 2.2s ease-in-out infinite;
    image-rendering: -webkit-optimize-contrast;
}

img.crocodile-hero-img {
    position: absolute;
    z-index: 0;
    bottom: 10px;
    right: 10%;
}

img.bg-banner-img {
    position: absolute;
    bottom: 0px;
    left: 0;
    z-index: -1;
    width: 500px;
}

section.banner-section {
    overflow: visible;
}

img.logo.aff-logo {
    width: 70px;
}

.aff-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

span.affiliation-nav {
    font-size: 13px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
}

.logo-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trainer-img-wrapper {
    position: relative;
    display: inline-block;
}

.trainer-main-img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease, box-shadow 0.4s ease;
}



.trainer-main-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.trainer-border {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 3px dashed var(--theme-color-2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 8s;
}


section.trainer-section:hover .trainer-border {
    animation: rotateBorder 8s linear infinite;
}

section.trainer-section:hover .trainer-main-img {
    transform: scale(0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes rotateBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



section.trainer-section {
    background-image: url(montessori-img/background-line.jpg);
}

section.trainer-section {
    background-image: url(montessori-img/background-line.jpg);
    background-size: contain;
    background-repeat: repeat;
}

.montessori-kids-img img {
    width: 100%;
}

.feature-card p {
    margin-bottom: 0;
}

/* --------------------------------- */


/* ---------------------------- */



@media (max-width: 768px) {
    * {
        font-size: 16px;
    }

    img.logo-main {
        width: 80px;
        height: auto;
    }

    section {
        padding: 30px 0;
    }

    img.logo.aff-logo {
        width: 70px;
        height: 50px;
        object-fit: contain;
    }

    .banner-clouds {
        width: 100%;
        top: 10%;
    }

    img.hero-cloud-1 {
        width: 50px;
    }

    img.hero-cloud-2 {
        width: 60px;
        top: 0;
    }

    img.hero-cloud-3 {
        width: 80px;
        top: 0;
        right: 0;
    }

    img.hero-star-1,
    img.hero-star-2,
    img.hero-star-3 {
        width: 30px;
    }

    .montessori-kids-img img {
        width: 100%;
    }

    h1.hero-title {
        font-size: 40px;
        margin-bottom: 25px;
        text-align: center;
    }

    .hero-sub {
        font-size: 14px;
        text-align: center;
    }

    .banner-subhead {
        font-size: 15px;
        margin-bottom: 2em;
        text-align: center;
    }

    .btn-button {
        font-size: 16px;
        width: 100%;
    }

    img.crocodile-hero-img {
        width: 50px;
        bottom: 0;
        right: 0;
    }

    h4.feature-head {
        font-size: 20px;
        font-weight: 500;
    }

    p {
        font-size: 14px;
    }

    h2.banner-big-text {
        font-size: 30px;
        margin-bottom: 1em;
    }

    img.bg-banner-img {
        position: relative;
        width: 100%;
        margin-top: 30px;
    }

    section.banner-section {
        overflow: hidden;
        padding-top: 30px;
        padding-bottom: 0;
    }

    h2.heading {
        font-size: 30px;
    }

    .sub-heading {
        font-size: 14px;
        margin-bottom: 10px;
    }

    img.montessori-kit-img-bg {
        position: relative;
        width: 200px;
        margin: 0 auto;
        display: block;
    }

    img.montessori-certificate-img {
        margin-top: 1em;
    }

    section.certification-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    img.teacher-training {
        width: 100%;
        margin-bottom: 30px;
    }

    .trainer-img-wrapper {
        margin-bottom: 30px;
    }

    ul.accordion-list li {
        font-size: 14px;
    }

    img.footer-logo {
        width: 150px;
        margin: 0 auto;
        display: block;
    }

    h5.footer-heading {
        font-size: 20px;
        color: #515151;
        margin-bottom: 1rem;
    }

    ul.contact-details-footer {
        list-style: none;
        padding-left: 0;
    }

    p.mb-0.small.text-footer {
        font-size: 10px;
    }
}


@media (min-width: 768px) and (max-width: 1400px) {}