:root {
    --bs-primary: #ea9c16;
}

body {
    font-family: "Plus Jakarta Sans",sans-serif !important;
    color: #414141 !important;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .8s ease-out, visibility 0s linear .0s;
        visibility: visible;
        opacity: 1;
    }
/*** Spinner End ***/
.BannerSection {
    background: #eeebe6a3;
}

.banner {
    position: relative;
    background-position: center center;
    background-size: cover;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    overflow: hidden;
}

    .banner::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url(../image/education-bg.png);
        background-position: center center;
        background-size: cover;
        opacity: 0.5; /* Adjust the opacity as needed */
    }

.banner-content h1,
.banner-content small,
.banner-content a.btn {
    opacity: 1;
}

.banner-content img {
    /*opacity: 1;*/
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.banner-img img {
    /*animation: rotate 20s linear infinite;*/ /* Adjust the duration and animation timing function as needed */
    position: relative;
    z-index: 10000;
}

h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 400 !important;
    font-family: "Plus Jakarta Sans",sans-serif !important;
    ;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif !important;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

span.text-light.copyrightTxt {
    font-size: 15px !important;
}

.wow,
.animated {
    animation-duration: 2s !important;
}

.topbar_container {
    background-color: #38b6ff;
    width: 100%;
    min-height: 6vh !important;
    padding: 10px;
}

ul.header_info {
    position: relative;
    list-style: none;
    margin-left: -9%;
}

    ul.header_info li {
        float: left;
        display: inline;
        margin-left: 30px;
        color: #fff;
        font-size: 14px;
    }
/*** Button Start ***/
.btn.btn-primary {
    border: 0;
}

    .btn.btn-primary:hover {
        background: var(--bs-dark) !important;
        color: var(--bs-primary) !important;
    }

.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
/*** Button End ***/
.btn-primary {
    color: #fff;
    background-color: #38b6ff !important;
    border-color: #ea9c16;
    border-radius: 0px !important;
}

.btn-success {
    border-radius: 0px !important;
}

.btn-danger {
    border-radius: 0px !important;
}

.hidden {
    display: none !important;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000000 !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

h1.key_feature_title {
    font-size: 24px;
    font-weight: 500 !important;
}

.btn-primary-outline {
    color: #000;
    background-color: transparent;
    border-color: #000 !important;
    margin-left: 20px;
    /*** Navbar Start ***/
}

img.key_feature_image {
    width: 90px;
    height: auto;
    margin-bottom: 1rem;
}

.bg-primary {
    background: #38b6ff !important;
    color: #fff;
}

.bg-custom {
    background: #f9f9f9 !important;
}

.text-primary {
    color: #38b6ff !important;
}

.text-dark {
    color: #545454 !important;
}

.nav-bar {
    background: #ffffff;
}

    .nav-bar.sticky {
        /*position: fixed;*/
        position: relative;
        top: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(255, 255, 255, 0.72);
    }

.navbar .navbar-nav .nav-link {
    padding: 10px 25px;
    font-weight: 500;
    font-size: 18px;
    transition: .5s;
    font-family: "Plus Jakarta Sans",sans-serif !important;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: #5380ae;
    }

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/*** Navbar End ***/


/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/


/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    /*background: var(--bs-primary);*/
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

    .service-item .service-content-icon i,
    .service-item .service-content-icon p {
        transition: 1s;
    }

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) !important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white);
    color: var(--bs-dark);
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** Services End ***/


/*** Menu Start ***/
.menu .nav-item a.active {
    background: var(--bs-primary) !important;
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}
/*** Menu End ***/


/*** Youtube Video start ***/
.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/fact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

    .video .btn-play {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        box-sizing: content-box;
        display: block;
        width: 32px;
        height: 44px;
        border-radius: 50%;
        border: none;
        outline: none;
        padding: 18px 20px 18px 28px;
    }

        .video .btn-play:before {
            content: "";
            position: absolute;
            z-index: 0;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: var(--bs-primary);
            border-radius: 50%;
            animation: pulse-border 1500ms ease-out infinite;
        }

        .video .btn-play:after {
            content: "";
            position: absolute;
            z-index: 1;
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-50%);
            display: block;
            width: 100px;
            height: 100px;
            background: var(--bs-white);
            border-radius: 50%;
            transition: all 200ms;
        }

        .video .btn-play img {
            position: relative;
            z-index: 3;
            max-width: 100%;
            width: auto;
            height: auto;
        }

        .video .btn-play span {
            display: block;
            position: relative;
            z-index: 3;
            width: 0;
            height: 0;
            border-left: 32px solid var(--bs-dark);
            border-top: 22px solid transparent;
            border-bottom: 22px solid transparent;
        }

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

    #videoModal .modal-dialog {
        position: relative;
        max-width: 800px;
        margin: 60px auto 0 auto;
    }

    #videoModal .modal-body {
        position: relative;
        padding: 0px;
    }

    #videoModal .close {
        position: absolute;
        width: 30px;
        height: 30px;
        right: 0px;
        top: -30px;
        z-index: 999;
        font-size: 30px;
        font-weight: normal;
        color: #FFFFFF;
        background: #000000;
        opacity: 1;
    }
/*** Youtube Video End ***/


/*** Blog Start ***/
.blog-item {
    position: relative;
}

    .blog-item img {
        transition: 0.5s;
    }

    .blog-item:hover img {
        transform: scale(1.3)
    }

    .blog-item .blog-content {
        position: relative;
        transform: translateY(-50%);
        box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    }

        .blog-item .blog-content a.btn h5 {
            transition: 0.5s;
        }

    .blog-item:hover .blog-content a.btn h5 {
        color: var(--bs-primary) !important;
    }
/*** Blog End ***/


/*** Team Start ***/
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

    .team-item .team-icon {
        position: absolute;
        top: 0;
        right: 0;
    }

        .team-item .team-icon .share-link {
            opacity: 0;
            transition: 0.9s;
        }

    .team-item:hover .share-link {
        opacity: 1;
    }

    .team-item .team-content {
        transition: 0.9s;
    }

    .team-item:hover .team-content {
        background: var(--bs-primary) !important;
        color: var(--bs-dark) !important;
    }

    .team-item .team-content h4,
    .team-item .team-content p {
        transition: 0.5s;
    }

    .team-item:hover .team-content h4 {
        color: var(--bs-dark) !important;
    }

    .team-item:hover .team-content p {
        color: var(--bs-white);
    }
/*** Team End ***/


/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid #90caf9;
    padding: 20px 20px;
}

.testimonial-content p {
    font-size: 16px !important;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/*** testimonial End ***/


/*** Contact start ***/
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color: var(--bs-primary) !important;
}

.about-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.my-button {
    margin-left: 32% !important;
}

.client-info-section {
    margin-top: -2rem;
    margin-bottom: 1rem;
}

.fw-bold {
    font-weight: 600 !important;
}

.border-primary {
    border-color: #aaa !important;
}

.faqt-item {
    min-height: 430px !important;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
}

p.About-part.mb-4 {
    line-height: 32px;
}

.faqt-item.mycustom-bg {
    border: 2px solid #545454;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
}

.faqt-item.bg-primary {
    height: 250px;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 50%);
}

.mycustom-demo-txt {
    font-size: 26px !important;
    margin-bottom: 4% !important;
}
/*** Footer End ***/
.background-light-pink {
    background: #f6f6f6 !important;
    padding-top: 100px;
    padding-bottom: 100px;
}

.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
    -webkit-text-stroke: #1f9251 1.5px !important;
}

@-webkit-keyframes animation-jump {
    0% {
        top: 3px;
    }

    50% {
        top: -3px;
    }

    100% {
        top: 3px;
    }
}

@keyframes animation-jump {
    0% {
        top: 3px;
    }

    50% {
        top: -3px;
    }

    100% {
        top: 3px;
    }
}

p.sliderTxt-para {
    position: relative;
    line-height: 32px;
    text-align: justify;
    color: #2b2b2b;
    margin-top: -18px;
    margin-bottom: 30px;
}

p.key_feature_content {
    line-height: 30px;
}

.label-product.label_new {
    background: #c89979;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    border-radius: 3px;
    left: 13px;
    text-align: center;
    text-transform: capitalize;
    top: 13px;
    z-index: 3;
    padding: 3px 10px;
}

.service {
    background: #EEEBE6 !important;
}

h1.slider-content {
    font-size: 34px !important;
    margin-bottom: 10px !important;
}

h4.display-1.mb-4.animated.bounceInDown.slider-content {
    font-size: 16px;
    color: #38b6ff !important;
    font-weight: 500 !important;
    line-height: 34px;
}

.mycustom-top-gap {
    /*margin-top:8%;*/
}

h4.mytext-headings {
    color: #484848;
    font-weight: 400 !important;
    margin-bottom: 10%;
}

.footer {
    background: #EEEBE6 !important;
}

a.nav-item.nav-link.mymobile-menu {
    display: none;
}

img.img-fluid.header-logo {
    width: 80px;
    float: left;
    margin-right: 15px;
}

.mt-4 {
    margin-top: 3.5rem !important;
}

img.img-fluid.about_us_image {
    filter: drop-shadow(4px 20px 10px rgba(10, 10, 9, 0.47));
}

h1.text-primary.fw-bold.mb-0.logo-text {
    font-size: 32px;
    margin-top: 1rem;
}

h1.display-5.mb-4.about-txt-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500 !important;
    font-family: "Plus Jakarta Sans",sans-serif !important;
}

.flip-container {
    perspective: 1000px;
    position: relative;
}

.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
    height: 100%;
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.front {
    z-index: 2;
}

.back {
    transform: rotateY(180deg);
    display: flex;
    justify-content: center;
    /*align-items: center;*/
}

    .back img {
        max-width: 100%;
        max-height: 100%;
    }

.faqt-item.bg-primary.rounded.p-4.text-center.mytransparent-div {
    background: transparent !important;
}

.DesktopView-Info {
    display: flex;
}

.MobileView-Info {
    display: none;
}

.banner_items {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #ea9c16;
}

    .banner_items img {
        transition: transform 0.3s ease;
    }

    .banner_items:hover img {
        transform: scale(1.1);
    }

.intem-container {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px;
    background: #90caf9;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 2px rgb(0 0 0 / 10%);
    margin-bottom: 3rem;
}

h3.mytxt-heading {
    position: relative;
    font-size: 18px;
    font-weight: 600 !important;
    color: #303030;
    margin-top: 1rem;
    text-align: center;
}

h1.mycustomise-heading {
    font-family: "Plus Jakarta Sans",sans-serif !important;
    text-align: center;
    font-weight: 500 !important;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

@media only screen and (min-width: 360px) and (max-width: 1024px) {
    a.nav-item.nav-link.mymobile-menu {
        display: block !important;
        margin-bottom: 20px !important;
    }

    ul.header_info li {
        margin-top: -2% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 800px) {
    a.nav-item.nav-link.mymobile-menu {
        display: block !important;
        margin-bottom: 20px !important;
    }
}
/*===========================Mobile=======================================*/
@media only screen and (min-width: 360px) and (max-width: 768px) {
    a.nav-item.nav-link.mymobile-menu {
        display: block !important;
    }

    .my-mobileButton {
        position: absolute;
    }

    .mobileBtn-submit {
        margin-top: 12px;
    }

    small.silde-sub-content {
        margin-top: 10%;
        font-size: 10px !important;
    }

    h1.slider-content {
        font-size: 20px !important;
    }

    a.btn.Button-left {
        float: left;
    }

    a.btn.Button-right {
        float: left;
        margin-left: -4%;
    }

    .about-section {
        /*margin-top: 0%;*/
    }

    h4, h5, h6, .h4, .h5, .h6 {
        font-weight: 600 !important;
        font-family: 'Poppins', sans-serif !important;
        font-size: 20px;
    }

    .contact-info {
        position: relative;
        margin-left: -11px;
    }

        .contact-info p {
            font-size: 12px;
            margin-left: -6px;
        }

    .footer-icon.d-flex {
        margin-bottom: 30px;
    }

    .nav-bar.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background-color: #fff;
    }

    .mycustom-demo-txt {
        font-size: 26px !important;
        margin-bottom: 15% !important;
    }

    img.img-fluid.header-logo {
        width: 50px;
        float: left;
        margin-right: 15px;
    }

    h1.text-primary.fw-bold.mb-0.logo-text {
        font-size: 30px;
        margin-top: 0rem;
    }

    h4.display-1.mb-4.animated.bounceInDown.slider-content {
        font-size: 16px !important;
        color: #363636;
    }

    h4.display-1.mb-4.animated.bounceInDown.slider-content {
        font-size: 20px;
        color: #363636;
        font-weight: 500 !important;
        line-height: 30px;
    }

    .banner-img1 img {
        float: left !important;
    }

    .DesktopView-Info {
        display: none;
    }

    .MobileView-Info {
        display: block;
    }

    .banner-img img {
        float: left !important;
        /*margin-left: 4rem;*/
    }

    .topbar_container {
        background-color: #38b6ff;
        width: 100%;
        height: 5.5vh;
        padding: 10px;
    }

    ul.header_info {
        position: relative;
        list-style: none;
        margin-left: -9%;
        margin-top: -1.3rem;
    }

        ul.header_info li {
            float: left;
            display: inline;
            margin-left: 20px;
            color: #fff;
            font-size: 12px;
            padding-bottom: 8px;
        }

    .roadmap_container .content h2 {
        margin: 20px 15px 10px 10px;
        font-size: 12px;
        font-weight: normal;
        color: #242525;
        font-weight: 600 !important;
    }

    .roadmap_container .content p {
        margin: 0;
        font-size: 12px;
        line-height: 18px;
        color: #000000;
    }

    h1.display-5.mb-4.about-txt-title {
        font-size: 22px !important;
        line-height: 40px;
        font-weight: 500 !important;
        font-family: "Plus Jakarta Sans",sans-serif !important;
    }

    .roadmap_container .content {
        width: 190px;
    }
}

.form_heading {
    font-size: 34px;
    text-align: center;
    font-weight: 600 !important;
}

label.myform-label {
    margin-left: 5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-container {
    border: 1px solid #383838;
    border-radius: 10px;
    padding: 15px;
}

.form-heading {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    margin-bottom: 3rem;
    border-bottom: 1px solid #dedede;
    padding-bottom: 20px;
    font-weight: 600 !important;
}

span.checbox_txt {
    position: relative;
    font-size: 16px;
    font-weight: 500;
}

h4.mysub_headings {
    font-size: 20px;
    font-weight: 500 !important;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.text_area_bg {
    padding: 14px;
    background: #ece4e4;
    border-radius: 6px;
}

span.priority_txt {
    float: right;
    font-size: 18px;
    font-weight: 600 !important;
}

.form-check-input {
    width: 1.2em !important;
    height: 1.2em !important;
    margin-top: 2px;
    vertical-align: top;
    border: 1px solid rgb(0 0 0 / 51%);
}

    .form-check-input:checked {
        background-color: #38b6ff !important;
        border-color: #38b6ff !important;
    }

.Header_form_heading {
    text-align: center;
    font-size: 28px;
    font-weight: 500 !important;
    height: auto;
}

.school_header_sec {
    border: 1px solid #383838;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 3rem;
}

h3.Header_form_subheading {
    text-align: center;
    font-weight: 500 !important;
    font-size: 18px;
    line-height: 20px;
    margin-top: 12px;
}

.SchoolLogo img {
    width: 200px !important;
    margin: 18px auto;
    margin-left: 3%;
    position: absolute;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 45px;
    user-select: none;
    -webkit-user-select: none;
}

    .select2-container .select2-selection--single .select2-selection__rendered {
        display: block;
        padding-left: 16px;
        padding-top: 7px;
        padding-right: 33px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

input[type='text'],
input[type='email'],
input[type='password'],
input[type='date'],
input[type='number'] {
    height: 45px !important;
    border-radius: 5px;
}
/* Hide spinner arrows in number input for Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Hide spinner arrows in number input for Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@media only screen and (min-width: 360px) and (max-width: 768px) {
    .SchoolLogo {
        margin-bottom: 12%;
    }

        .SchoolLogo img {
            width: 84px !important;
            margin: 0px auto;
            margin-left: 25%;
        }

    .Header_form_heading {
        text-align: center;
        font-size: 28px;
        font-weight: 500 !important;
        ?height: auto;
    }

    h3.Header_form_subheading {
        text-align: center;
        font-weight: 600 !important;
        font-size: 10px;
        line-height: 20px;
        margin-top: 12px;
    }
}
