/* FONT IMPORT */
@import url(layout.min.css);
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Local Font */
@font-face {
    font-family: "comicsans";
    src: url("../fonts/comicsans.ttf");
}

@font-face {
    font-family: "georgia";
    src: url("../fonts/georgia.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #213472;
    --secondary: #F97338;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Inter", sans-serif;
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "comicsans";
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* PRELOADER */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--primary);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--secondary);
}


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background: transparent;
    font-size: 1rem;
    color: var(--primary);
    text-transform: capitalize;
    display: inline-block;
    padding: 18px 3em;
    line-height: normal;
    border: 1px solid var(--secondary);
}

.themeBtn:hover{
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* !GLOBAL CSS */

/* Main Banner Sec Css Start */

.mainBanner {
    background: url(../images/mainBanner.png)center/cover fixed;
    height: 830px;
    display: flex;
    align-items: center;
}

.bannerBox {
    background: rgb(255 245 237 / 84%);
    padding: 7.5rem 3.4375rem 3.4375rem 3.4375rem;
    position: relative;
}

.bannerBox small {
    color: var(--primary);
    font-size: 1.4375rem;
    font-family: 'comicsans';
    position: relative;
    margin-bottom: 1rem;
    display: block;
}

.bannerBox small:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 105px;
    height: 1px;
    bottom: -1rem;
}

.bannerBox h1 {
    font-size: 3.25rem;
    color: var(--secondary);
    font-weight: 400;
}

.bannerBox h1 span {
    display: block;
    color: var(--primary);
}

.bannerBox h3 {
    font-size: 1.875rem;
    color: var(--primary);
    margin: 6.25rem 0 0 9.375rem;
    width: fit-content;
    text-align: center;
}

.bannerPaths img {
    position: absolute;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.path1 {
    top: 1.5rem;
    left: 3.5rem;
    animation: zoomInOut 2s infinite ease-in-out;
}

.path2 {
    top: 3.625rem;
    right: 4rem;
    animation: zoomInOut 3s infinite ease-in-out;
}

.path3 {
    bottom: -2rem;
    left: -4.5rem;
    animation: zoomInOut 3s infinite ease-in-out;
}

.path4 {
    right: 4rem;
    bottom: 3rem;
}

.path5 {
    bottom: 9rem;
    left: 7rem;
    animation: zoomInOut 3s infinite ease-in-out;
}

.greenBox {
    background: #BADA55;
    height: 4.5rem;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.greenBox:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 90%;
    height: 1px;
    inset: 0;
    margin: auto;
}

/* Main Banner Sec Css End */

/* Program Sec Css Start */

.programSec {
    padding: 3.125rem 0 6.875rem 0;
    background: #FFF5ED;
}

.secHeading {
    color: var(--primary);
    font-size: 2.1875rem;
    text-align: center;
    position: relative;
}

.secHeading:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 116px;
    height: 1px;
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: auto;
}

.programWraps img {
    height: 100px;
}

.programWraps {
    text-align: center;
    margin: 3.75rem 0;
}

.programWraps h3 {
    font-size: 1.5625rem;
    color: var(--primary);
    margin: 1.25rem 0;
}

.programWraps p {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 300;
    width: 66%;
    margin: auto;
    line-height: 1.75;
}

.programSec:before,
.aboutSec:before,
.testimonialSec:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 90%;
    height: 1px;
    bottom: 3rem;
    left: 0;
    right: 0;
    margin: auto;
}

.programPath img {
    position: absolute;
    bottom: 5rem;
    animation: moveUpDown 3s infinite ease-in-out;
}

@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.path6 {
    left: 6rem;
}

.path7 {
    right: 5rem;
}

/* Program Sec Css End */

/* About Sec Css Start */

.aboutSec {
    background: var(--secondary);
    padding: 3.75rem 0 4.375rem 0;
}

.aboutImage img {
    width: 100%;
}

.aboutBox {
    text-align: center;
    background: #FAFAFA;
    height: 100%;
    padding: 2.5rem 0;
}

.aboutBox p {
    font-size: 0.9375rem;
    color: var(--primary);
    line-height: 1.75;
    width: 56%;
    margin: 0 auto 1.5rem;
}

.aboutBox h2 {
    margin-bottom: 4rem;
}

.aboutBox h2:before {
    width: 237px;
    bottom: -2rem;
}

.aboutPath img {
    position: absolute;
    animation: zoomInOut 2s infinite ease-in-out;
}

.path8 {
    top: 2.5rem;
    left: 12%;
}

.path9 {
    top: 2.5rem;
    right: 12%;
}

.path10 {
    top: 45%;
    left: 10px;
}

.path11 {
    top: 54%;
    left: -3.5rem;
}

.path12 {
    bottom: 1.2rem;
    right: -1.5rem;
}

.aboutSec:before {
    bottom: 2rem;
}

/* About Sec Css End */

/* Call Sec Css Start */

.callSec {
    background: #ED1566;
    padding: 7.5rem 0;
}

.callContent h2 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.callContent a {
    color: var(--white);
    font-size: 1.875rem;
    font-family: 'comicsans';
    font-weight: bold;
    border-bottom: 2px solid;
}

.callPaths img {
    position: absolute;
}

.path13 {
    top: 0;
    right: 0;
}

.path14 {
    top: 0;
    bottom: 0;
    margin: auto;
    left: 7rem;
    animation: zoomInOut 5s infinite ease-in-out;
}

/* Call Sec Css End */

/* Place Sec Css Start */

.placeSec {
    padding: 3.4375rem 0 6.25rem 0;
    background: #BADA55;
}

.placeHeading h2 {
    color: var(--primary);
    text-align: center;
    font-size: 3.5rem;
}

.placeWraps figure img {
    width: 100%;
}

.placeContent {
    background: #FAFAFA;
    padding: 1.875rem 1.875rem;
}

.placeContent h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.placeContent p {
    margin: 0;
    color: var(--primary);
    font-size: 0.9375rem;
    line-height: 1.75;
}

.placeWraps {
    margin-top: 2.5rem;
}

.path15 {
    top: 1rem;
    left: 6rem;
    animation: zoomInOut 2s infinite ease-in-out;
}

.path16 {
    bottom: 4rem;
    right: 4.7rem;
    animation: zoomInOut 4s infinite ease-in-out;
}

/* Place Sec Css End */

/* Testimonial Sec Css Start */

.testimonialSec {
    background: #FFF5ED;
    padding: 6.25rem 0 5rem 0;
    z-index: 1;
}

.testimonialHeading h2:before {
    width: 290px;
    bottom: -12px;
}

.testimonialWraps {
    text-align: center;
}

.testimonialWraps h3 {
    color: var(--primary);
    font-size: 1.875rem;
    margin: 3.75rem auto 3.75rem;
    line-height: 1.4;
    width: 52%;
}

.testimonialWraps span {
    color: var(--primary);
    font-size: 1.1875rem;
    font-family: "georgia";
}

.testimonialSec .swiper-button-next,
.testimonialSec .swiper-button-prev {
    color: var(--primary);
    top: 40%;
}

.testimonialSec .swiper-button-next:after,
.testimonialSec .swiper-button-prev:after {
    font-size: 1.25rem;
}

.testimonialSec .swiper-button-prev {
    left: 10%;
}

.testimonialSec .swiper-button-next {
    right: 10%;
}

.testBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

/* Testimonial Sec Css End */

/* Gallery Sec Css Start */

.gallerySec {
    background: var(--primary);
    padding: 9.375rem 0 2.5rem 0;
}

.galleryOne {
    display: flex;
    gap: 2.5rem;
}

.galleryFlexs {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.galleryTwo .galleryFlexs {
    margin: 0 0 2.5rem 0;
}

.galleryTwo {
    margin-top: 2.5rem;
}

.galleryWraps {
    position: relative;
    overflow: hidden;
    transition: all 0.5s 
ease;
}

.galleryWraps a img {
    transition: 2s ease;
}
.galleryWraps img {
    transition: 0.9s 
ease-in-out ;
    
}

.galleryWraps:hover img {
    transform: scale(1.15);
}

/* Gallery Sec Css End */

/* Notice Sec Css Start */

.noticeSec {
    background: #BADA55;
    padding: 2.5rem 0;
}

.noticeContent h2 {
    color: #ED1566;
    font-size: 1.3125rem;
    font-weight: bold;
    text-align: center;
}

.noticeContent h4 {
    font-size: 1.1875rem;
    color: var(--black);
    font-weight: 400;
    font-family: 'georgia';
    margin-top: 1.75rem;
    line-height: 1.4;
}

.noticeContent ul {
    list-style: disc;
    list-style-position: inside;
}

.noticeContent ul li {
    font-size: 0.875rem;
    color: var(--black);
    font-weight: 500;
}

.noticeContent a {
    color: #8B0000;
    font-weight: bold;
    display: block;
       margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Notice Sec Css End */

/* Footer Css Start */

footer {
    background: #213472;
}

.footLogo a h2 {
    font-size: 3.25rem;
    margin: 2rem 0;
    text-align: center;
    color: #BADA55;
}

.copyRight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 5rem 1.25rem 1.875rem;
    background: #E21C21;
    background: linear-gradient(to right, #E21C21 83%, #0F7011 70%);
}

.copyRight p {
    margin: 0;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: bold;
}

.copyRight ul {
    display: flex;
    gap: 1.25rem;
}

.copyRight ul li a {
    color: var(--white);
}

.copyrightBg {
    background: #BADA55;
    padding: 0.875rem 0 1.125rem 0;
}

/* Footer Css End */

/* Inner Css Start */

.aboutBanner {
    background: #FFF5ED;
    padding: 5rem 0 6.875rem 0;
}

.aboutBanner:before,
.aboutInner:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 90%;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    margin: auto;
}

.aboutBan span {
    color: var(--primary);
    font-size: 1.4375rem;
    position: relative;
    margin-bottom: 2rem;
    display: block;
    font-family: "comicsans";
}

.aboutBan h2 {
    color: var(--primary);
    font-size: 3.25rem;
    margin: 0;
}

.aboutBan span:before {
    content: "";
    position: absolute;
    background: var(--primary);
    height: 1px;
    width: 87px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: -8px;
}

.ceoSec {
    background: url(../images/ceoBg.png)center/cover fixed;
    padding: 3.75rem 0;
}

.ceoBox {
    background: rgb(33 52 114 / 81%);
    padding: 4.375rem 0 2.1875rem 18.75rem;
}

.ceoBox h2 {
    color: var(--white);
    font-size: 3.5rem;
}

.ceoBox h2 span {
    color: #BADA55;
}

.ceoBox h3 span {
    color: #BADA55;
    text-decoration: underline;
}

.ceoBox h3 {
    color: var(--white);
    font-size: 1.625rem;
    font-weight: bold;
    margin: 1rem 0;
}

.ceoBox p {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 2;
    width: 57%;
}

.ceoBox ul {
    display: flex;
    gap: 8px;
    margin-top: 1.35rem;
}

.ceoBox ul li a {
    background: var(--black);
    width: 24px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.75rem;
}

.ceoImages {
    position: relative;
}

.ceo2 {
    position: absolute;
    bottom: 1rem;
    left: -2rem;
}

.path17 {
    position: absolute;
    bottom: 5rem;
    left: 12rem;
}

.aboutInner {
    padding-top: 1.875rem;
    background: #FFF5ED;
}

.aboutInner .row+.row {
    margin-top: 5.625rem;
}

.abtText {
    text-align: center;
}

.abtText p {
    color: var(--primary);
    font-size: 0.9375rem;
    line-height: 1.85;
    width: 48%;
    margin: 2.5rem auto 0;
}

.aboutInner:before {
    bottom: inherit;
    top: 51.5%;
}

.path18 {
    position: absolute;
    top: 33.5%;
    right: 14%;
    width: 180px;
}

.programInner:before {
    display: none;
}

.programInner {
    padding: 0rem 0 2rem 0;
}

.programInner .programWraps p {
    width: 59%;
}

.therapyBanner {
    background: url(../images/therapyBanner.png)center/cover;
}

.therapyBanner:before {
    bottom: 3rem;
}

.therapySec video {
    height: 750px;
    width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 0 100% 100%;
}

.therapyOverlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
}

.therapyContent h2 {
    color: var(--white);
    margin: 0;
    font-size: 3.875rem;
}

.therapyContent h3 {
    font-size: 1.1875rem;
    color: var(--white);
    font-family: 'georgia';
    margin: 2.2rem 0;
}

.therapyContent a,
.treatmentsContent a {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: bold;
    letter-spacing: 0.8px;
    display: inline-block;
    border-radius: 50px;
    background: #FFC606;
    padding: 0.875rem 2em;
}

.therapyContent a:hover,
.treatmentsContent a:hover{
    background: var(--primary);
    color: var(--white);
}

.treatmentSect {
    padding: 6.25rem 0 4.375rem 0;
}

.treatmentBoxs {
    background: var(--white);
    box-shadow: 0 7px 9px 4px rgb(0 0 0 / 10%);
    border-radius: 30px;
    padding: 1.875rem 1.5625rem 2.5rem 1.5625rem;
}

.treatmentBoxs figure {
    text-align: center;
}

.treatmentBoxs h3 {
    color: var(--primary);
    font-size: 1.4375rem;
    margin: 1.6875rem 0 1.875rem 0;
}

.treatmentBoxs p {
    color: var(--primary);
    margin: 0;
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1.75;
}

.treatmentBoxs+.treatmentBoxs {
    margin-top: 4.375rem;
}

.treatmentsContent {
    margin: 2.5rem 0 0 3rem;
    position: sticky;
    top: 2rem;
}

.treatmentsContent h2 {
    color: var(--primary);
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 1.3rem;
}

.treatmentsContent p {
    color: var(--primary);
    font-size: 0.9375rem;
    font-weight: bold;
    line-height: 1.75;
    width: 54%;
    margin-bottom: 1.5rem;
}

.treatmentsContent ul {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 3.75rem;
}

.treatmentsContent ul li {
    color: var(--primary);
    font-size: 0.9375rem;
}

.treatmentsContent ul li:nth-child(1),
.treatmentsContent ul li:nth-child(2) {
    color: #3D9BE9;
    text-decoration: underline;
}

.treatmentSect .row+.row {
    margin-top: 6.875rem;
}

.findingBoxs {
    text-align: center;
    background: #FFF5ED;
    padding-top: 3.75rem;
}

.findingBoxs h2 {
    color: var(--primary);
    font-size: 2.1875rem;
    margin: 0;
}

.findingBoxs h3 {
    font-size: 1.625rem;
    color: #0F7011;
    font-weight: bold;
    font-family: 'georgia';
    margin: 1.75rem 0;
}

.findingBoxs p {
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1.75;
    width: 73%;
    margin: 0 auto 2rem;
}

.findingBoxs a {
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: #BADA55;
    display: inline-block;
    border-radius: 50px;
    color: var(--white);
    padding: 0.875rem 2em;
    margin-bottom: -1rem;
}

.findingBoxs a:hover{
    background: var(--primary);
    color: var(--white);
}

.healthImg {
    margin-top: 4.375rem;
}

.successSect {
    background: url(../images/successBg.png)center/cover fixed;
    padding: 7.1875rem 0;
}

.successBox {
    background: #FFC606;
    border-radius: 10px;
    border: 1px solid #324158;
    max-width: 600px;
    padding: 4.375rem 3.125rem 3.75rem 3.125rem;
}

.successBox h2 {
    color: var(--primary);
    font-size: 2.1875rem;
    margin: 0;
}

.successBox p {
    color: var(--primary);
    font-size: 1.1875rem;
    font-family: 'georgia';
    margin: 2rem 0;
}

.successBox a {
    color: var(--white);
    font-size: 0.875rem;
    background: #324158;
    display: inline-block;
    padding: 0.625rem 2em;
    border-radius: 100px;
}

.successBox a:hover{
    color: var(--white);
    background: var(--secondary);
}

.aboutImg {
    position: relative;
}

.autism4 {
    position: absolute;
    right: 0;
    bottom: -58%;
}

.abtText img {
    width: 55px;
    margin-bottom: 1.25rem;
}

.autismInner {
    padding-bottom: 6.875rem;
}

.autismInner:before {
    top: 32.2%;
}

.autismInner:after,
.borderLine:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 90%;
    height: 1px;
    left: 0;
    right: 0;
    margin: auto;
    top: 56.7%;
}

.borderLine:before {
    top: inherit;
    bottom: -3.5rem;
}

.borderLine {
    position: relative;
}

.enrollISect {
    background: #FDFDFC;
    padding: 5.625rem 0;
}

.scheduleClndr iframe {
    height: 520px;
}

.enrollIInner .scheduleClndr iframe {
    height: 100vh;
}

.aboutBan p {
    color: var(--primary);
    font-size: 1.1875rem;
    font-family: 'georgia';
    width: 56%;
    margin: 1rem auto 0;
}

.gamesInner {
    background: url(../images/gamesBg.png)center/cover fixed;
    padding: 1.875rem 0 3.125rem 0;
}

.gameHeading h2 {
    text-align: center;
    font-size: 3.25rem;
    color: var(--primary);
}

.path19 {
    top: 2rem;
    position: absolute;
    right: 36%;
}

.contactBanner {
    padding-top: 2.5rem;
}

.contactInner {
    padding: 5rem 0 2.5rem 0;
    background: #FFF5ED;
}

.contactForm form {
    max-width: 310px;
    margin: 3.5rem auto 0;
}

.contactForm label {
    color: var(--primary);
    font-size: 0.875rem;
}

.contactForm .form-control {
    border: unset;
    border-radius: unset;
    outline: unset;
    box-shadow: unset;
    border-bottom: 1px solid rgb(33 52 114 / 50%);
    background: transparent;
    padding-left: 0;
}

.contactForm textarea {
    resize: none;
    height: 100px;
}

.contactForm button {
    background: var(--primary);
    color: #BADA55;
    border: unset;
    width: 100%;
    border-radius: 50px;
    font-size: 1.1875rem;
    font-family: 'georgia';
    padding: 8px 0;
    margin-top: 8px;
    outline: unset;
}

.contactForm button:hover{
    background: var(--secondary);
    color: var(--white);
}

.openingHours {
    text-align: center;
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
}

.openingHours p {
    font-size: 1.125rem;
    color: var(--primary);
    font-family: 'georgia';
    width: 53%;
    margin: 0 auto 1.875rem;
}

.openingHours h3 {
    font-size: 1.4375rem;
    color: #E21C21;
}

.openingHours h4 {
    color: #3D9BE9;
    font-size: 1.4375rem;
    font-family: 'comicsans';
}

.openingHours h2 {
    margin-bottom: 2rem;
}

.openingHours span {
    color: #8B0000;
    font-size: 1.125rem;
    font-family: 'georgia';
    width: 53%;
    margin: auto;
    display: block;
}

.contactLocation {
    text-align: center;
}

.contactLocation h2 {
    margin-bottom: 4rem;
}

.contactLocation ul li span {
    display: block;
    font-size: 1.1875rem;
    font-weight: bold;
    color: #ED1566;
    font-family: 'georgia';
}

.contactLocation ul li:nth-child(2) span {
    color: #0F7011;
}

.contactLocation ul li:nth-child(3) span {
    color: #F97338;
}

.contactLocation ul li a {
    color: var(--primary);
    font-family: 'georgia';
    font-size: 1.1875rem;
    width: 46%;
    display: block;
    margin: auto;
}

.contactLocation ul li:nth-child(2) a {
    color: #3D9BE9;
}

.contactLocation ul li:nth-child(3) a {
    color: #8B0000;
}

.contactLocation ul li+li {
    margin-top: 2rem;
}

.path20 {
    position: absolute;
    right: 23%;
    bottom: 52%;
}

.googleMap iframe {
    display: block;
    filter: grayscale(1);
}

.googleMap {
    margin-top: 5rem;
    border-top: 1px solid var(--primary);
    padding-top: 2.5rem;
}


/* Inner Css End */