/* @import url('https://fonts.googleapis.com/css2?family=Germania+One&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Caprasimo&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Ruwudu:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

* {
    font-family: 'Raleway', sans-serif;
}

/*------------Style of custom navbar--------------*/
.custom-navbar {
    position: relative;
    background-color: var(--theme-color-primary);
    border-bottom: 5px solid var(--theme-color-secondary);
    width: 100%;
    padding: 5px 5px 0px 5px;
}

.custom-navbar .logo {
    height: 125px;
}

.custom-navbar .logo img {
    height: 110px;
    /* width: 85px; */
    filter: drop-shadow(0 0 1.75rem crimson);
}

.enquiry-btn {
    /* background-color: #c2441c; */
    background-color: var(--theme-color-secondary);
    display: inline-block;
    position: absolute;
    right: 5px;
    padding: 5px 14px 5px 22px;
    border-bottom-left-radius: 100px;
}

.custom-navbar .menu {
    padding-left: 0px !important;
    display: flex;
    flex-wrap: wrap;
    /* border-bottom: 2px dashed darkgreen; */
    /* float: right;
    margin-right: 20px;
    line-height: 125px; */
}

.custom-navbar .menu .sub-menu {
    display: inline-block;
    /* line-height: 80px; */
    margin: 0 5px;
    padding-bottom: 5px;

}

.custom-navbar .menu .sub-menu a {
    color: var(--theme-color-secondary);
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

a.active,
a:hover {
    color: white !important;
}

.collapse-menu {
    float: right;
    line-height: 61px;
    margin-right: 0px;
    /* margin-top: 43px; */
    font-size: 22px;
}

.custom-navbar .school-detail {
    font-size: 45px;
    color: brown;
    font-family: 'Great Vibes', cursive;
    font-weight: bold;
}

/* .custom-navbar .school-detail .school-name {
    font-family: 'Great Vibes', cursive!important;
    font-weight: bold;
    color: #382f13;
} */
.msn-fst {
    color: brown;
    font-size: 20px;
    font-family: 'Great Vibes', cursive;
    font-weight: bold;
    margin-left: 13px;
    margin-top: 20px;
}

.custom-navbar .school-card {
    padding: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-togel::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: -38px;
    top: 25px;
    background-color: var(--theme-color-primary);
    /* width: 100%; */
    /* min-width: 160px; */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding-left: 0px;
}

.dropdown-content li {
    list-style-type: none;
}

.dropdown-content li a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content li a:hover {
    color: var(--theme-font-color-primary);
    background-color: var(--theme-color-secondary);
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


@media only screen and (max-width: 990px) {
    .main-nav {
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        padding: 5px 10px 5px 10px;
        border-bottom: 2px solid var(--theme-color-secondary);
    }

    .m-btn-color {
        background-color: var(--theme-color-secondary);
        color: var(--theme-color-primary);
    }

    .side-panel {
        position: fixed;
        width: 100%;
        height: 100vh;
        background-color: var(--theme-color-primary);
        top: 0px;
        left: -100%;
        text-align: left;
        transition: 0.5s;
        z-index: 1500;
        overflow-y: scroll;
        display: block !important;
    }

    #check:checked~.side-panel {
        left: 0;
        transition: 0.5s;
        z-index: 1500;
    }
}

.btm-navbar-btn {
    display: flex;
    justify-content: center;
    /* margin-top: -4px; */
    z-index: 15;
    bottom: -50px;
    position: absolute;
    width: 100%;
}

.btm-navbar-btn div {
    background: var(--theme-color-secondary);
    color: white;
    padding: 5px 60px 12px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.btm-navbar-btn div a,
.btm-navbar-btn div a:hover {
    color: var(--theme-color-primary);
    font-size: 15px;
    font-weight: 500;
    font-family: serif;
    border: 2px solid;
    border-radius: 100px;
    padding: 2px 15px 2px 15px;
}

/*----------------Navbar-------------------*/
/*----------------Banner-------------------*/
@-webkit-keyframes zoomOut {
    from {
        -webkit-transform: scale(1.5, 1.5);
    }

    to {
        -webkit-transform: scale(1, 1);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.5, 1.5);
    }

    to {
        transform: scale(1, 1);
    }
}

@-webkit-keyframes zoomIn {
    from {
        -webkit-transform: scale(1, 1);
    }

    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.5, 1.5);
    }
}

.zoom-out {
    -webkit-animation: zoomOut 20s;
    animation: zoomOut 20s;
}

.zoom-in {
    -webkit-animation: zoomIn 20s;
    animation: zoomIn 20s;
}

#bannerCarousel .carousel-image-box {
    height: 650px;
    background-size: 100% 100% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.carousel-bottom-style {
    border-radius: 8px !important;
    right: 20% !important;
    bottom: 1.25rem !important;
    left: 20% !important;
    padding-top: 0.25rem !important;
    padding-bottom: 0rem !important;
    background-color: #000000b0 !important;
}

.carousel-control-next,
.carousel-control-prev {
    width: 2% !important;
    /* height: 7rem !important;
    background: #042a12 !important; */
}

.carousel-control-prev-icon {
    height: 6rem !important;
    background: var(--theme-color-secondary) !important;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.carousel-control-next-icon {
    height: 6rem !important;
    background: var(--theme-color-secondary) !important;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.carousel-control-next-icon i {
    position: absolute;
    top: 49%;
    right: 5px !important;

}

.carousel-control-prev-icon i {
    position: absolute;
    top: 49%;
    left: 5px !important;
}

@media screen and (max-width: 900px) {
    #bannerCarousel .carousel-image-box {
        height: 300px;
        background-position: center center !important;
    }
}

@media screen and (max-width: 575px) {
    #bannerCarousel .carousel-image-box {
        height: 150px;
        background-position: center center !important;
    }
}

@media screen and (max-width: 575px) {
    .carousel-caption .mobile-screen-font {
        font-size: 10px !important;
        color: var(--theme-color-primary) !important;
    }
}

@media screen and (max-width: 575px) {
    .carousel-littel-winner .mobile-screen-font-little {
        font-size: 15px !important;
        padding: 2px 2px !important;
        /* margin-bottom: 20px; */
        background-color: #000000a6 !important;
        color: var(--theme-color-primary) !important;
    }
}

@media screen and (max-width: 575px) {
    .carousel-littel-winner {
        bottom: -0.75rem !important;
        /* font-size: 15px!important; */
    }
}

/*----------------Banner-------------------*/

/*--------------Btn after slider-----------*/
.nav .nav-item .nav-btn-link {
    /* color: var(--theme-color-secondary); */
    font-size: 14px;
}

/*----------------Kids Corner--------------*/
.information-area {
    margin-top: -24px;
    background-color: var(--theme-color-secondary);
    color: var(--theme-color-primary);
    border-top: 5px solid var(--theme-color-primary);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.information-area p {
    font-size: 16px;
    color: var(--theme-color-primary);
    /* color: lawngreen; */
    font-weight: bold;
    text-transform: uppercase;
}

.information-area a {
    text-decoration: none;
    color: var(--theme-color-primary);
}

.kids-corner i {
    font-size: 35px;
    padding: 22px;
    border: 2px solid;
    border-radius: 100px;
}

.kids-corner i:hover {
    background-color: var(--theme-color-primary);
    color: var(--theme-color-secondary);
    font-size: 35px;
    padding: 22px;
    border: 2px solid;
    border-radius: 100px;
}

@media screen and (max-width: 992px) {
    .information-area {
        margin-top: 0px;
        border-top: 0px solid var(--theme-color-primary);
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
}

@media screen and (max-width: 992px) {
    .kids-corner i {
        font-size: 22px;
        padding: 13px;
    }

    .information-area p {
        font-size: 11px;
    }
}

/*-----------------------------------
    News Notice
-------------------------------*/
.news-notice-box {
    height: auto;
    border: 2px solid dashed;
    border: 2px solid var(--theme-color-secondary);
    padding: 18px;
    /* background: var(--theme-color-secondary); */
    /* border-radius: 24px 0px 24px 0px; */
}

.fa-arrow-circle-left,
.fa-arrow-circle-right {
    font-size: 25px;
    color: var(--theme-color-secondary);
    cursor: pointer;
}

@media screen and (max-width: 867px) {
    .news-notice-box {
        padding: 8px;
    }
}

/*------------------------
    Message area
------------------------*/
.home-message-area img {
    height: 200px;
    width: 200px;
    object-fit: fill;
}

.btn-1 {
    font-size: 15px;
    color: var(--theme-color-secondary);
    padding-right: 15px;
    border-right: 2px solid var(--theme-color-secondary);
    cursor: pointer;
    font-weight: 700;
}

.btn-2 {
    font-size: 15px;
    color: var(--theme-color-secondary);
    padding-right: 15px;
    padding-left: 15px;
    /* border-right: 2px solid var(--theme-color-secondary); */
    cursor: pointer;
    font-weight: 700;
}

.message-box {
    background: antiquewhite;
    color: var(--theme-color-secondary);
    border: 1px dashed var(--theme-color-secondary);
}

/*-----------------Gallery Area----------------*/
/*---------Event box area-----------------*/
.event-box {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    background-size: 110%;
    background-position: center center;
    transition: 0.5s;
    position: relative;
}

.event-box:hover {
    background-size: 115%;
}

.event-upper {
    background: rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    padding: 15px;
    border-radius: 6px 6px 0 0;
}

.event-date {
    background: var(--theme-color);
    color: #fff;
    position: absolute;
    padding: 4px 10px;
    border-radius: 6px;
    /* margin-left: 15px; */
    font-size: 14px;
    bottom: 12px;
    right: 10px;
}

.event-date:first-child {
    margin-left: 0;
}

.event-lower {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 80%);
    padding: 15px;
    padding-top: 50px;
    border-radius: 0 0 6px 6px;
}

.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.event-title a {
    color: #fff;
    text-decoration: none;
}

.event-description {
    color: #fff;
    text-align: justify;
}

.event-link {
    background: rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    height: 100%;
}

.sub-galley-box {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-direction: column; */
    /* justify-content: flex-start; */
    /* flex-wrap: wrap; */
}

.pics-count {
    position: absolute;
    right: 10px;
    background: var(--theme-color-secondary);
    top: 10px;
    padding: 8px 10px 5px 10px;
    border-radius: 100%;
    color: var(--theme-font-color-primary);
}

/* .sub-galley-box .event-box
 {
    border-radius: 0;
}
.sub-galley-box .event-box:nth-child(1),
.sub-galley-box .event-box:nth-child(1) .event-link {
    border-radius: 6px 0 0 0;
}
.sub-galley-box .event-box:nth-child(2),
.sub-galley-box .event-box:nth-child(2) .event-link {
    border-radius: 0 6px 0 0;
}
.sub-galley-box .event-box:nth-child(3),
.sub-galley-box .event-box:nth-child(3) .event-link {
    border-radius: 0 0 0 6px;
}
.sub-galley-box .event-box:nth-child(4),
.sub-galley-box .event-box:nth-child(4) .event-link {
    border-radius: 0 0 6px 0;
} */
@media screen and (max-width:1000px) {
    .event-box {
        width: 100% !important;
    }
}

/*---------Event box area-----------------*/

/*---------Gallery Area-------------------*/
#gallerycarausel .carousel-inner {
    height: 250px;
}

.gallery-slider-button i {
    font-size: 25px;
    color: var(--theme-color-secondary);
    cursor: pointer;
}

/*----Topper-Siders----*/
/* #xToppersSlider .carousel-inner{
    height: 350px;
}
#xiiToppersSlider .carousel-inner{
    height: 350px;
} */


.toppersSlider .carousel-control-next,
.toppersSlider .carousel-control-prev

/*, .carousel-indicators */
    {
    filter: invert(100%);
}

.toppersSlider .items-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.student-box {
    background: #ffffff05;
    width: 130px;
    height: 220px;
    /* box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 6px; */
    margin-bottom: 10px;
    animation: zoomin1 3s ease-in;
    animation: fadeinout 3s linear forwards;
    transition: 20s;
}

@keyframes zoomin1 {
    0% {
        transform: scale(0, 0);
        transition: 20s;
    }

    100% {
        transform: scale(1, 1);
        transition: 20s;
    }
}

@-webkit-keyframes fadeinout {
    0% {
        opacity: 0;
        transform: scale(0, 0);
    }

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

@keyframes fadeinout {
    0% {
        opacity: 0;
        transform: scale(0, 0);
    }

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

.student-box .student-picture {
    width: 100%;
    height: 130px;
    background-size: cover;
    background-position: top center;
    overflow: hidden;
    border-radius: 100%;
    /* border: 2px solid #c50227; */
    border: 2px solid var(--theme-color-secondary);
    outline: 3px solid var(--theme-color);
    margin-top: 6px;
}

.student-box .student-details {
    text-align: center;
}

.student-box .student-details h5 {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
}

.student-box .student-details h6 {
    font-size: 12px;
    margin: 0;
}

.topper-heading {
    color: var(--theme-color-secondary);
}


/*--Footer--*/
.footer {
    /* box-shadow: 0px -5px 70px 19px rgba(0,0,0,0.75); */
    /* background-image: linear-gradient(to top, rgba(255,0,0,0),  yellow); */
    background: var(--theme-color-secondary);
    padding: 10px;
    color: #e9ecef;
    padding-top: 30px;
}

.school-background-image {
    background: #333333;
    background-image: url(/images/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 100%;
    height: 250px;
    margin-top: -15px;
}

.inner-background {
    width: 100%;
    height: 100%;
    background: #00000087;
}

/* .footer-backgroung-image{
    background-image: url(/images/school-building.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 100%;
    height: 200px;
    weight:100%;
} */
.footer-brand img {
    width: 50px;
}

.footer-link a {
    display: block;
    color: #e9ecef;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-link-hover:hover {
    color: #fff !important;
}

.footer-heading {
    color: white;
    border-bottom: 2px solid red;
    padding: 0px 0px 10px 0px;
}

.useful-link {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.useful-link a {
    display: block;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    margin: 3px 3px;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 15px;
    transition: 0.3s;
    text-transform: capitalize;
    font-size: 12px;
}

.useful-link li:first-child a {
    margin-left: none;
}

.useful-link a:hover {
    background: var(--theme-color);
}

.socia-icon {
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: #e6e6e6;
    color: #000;
    text-decoration: none;
    transition: 0.2s;
}

.socia-icon:hover {
    text-decoration: none;
    color: #e6e6e6;
    background: #000;
}

.socia-icon.fb {
    background: #1877f2;
    color: #fff;
}

.socia-icon.fb:hover {
    color: #1877f2;
    background: #fff;
}

.socia-icon.tw {
    background: #1da1f2;
    color: #fff;
}

.socia-icon.tw:hover {
    color: #1da1f2;
    background: #fff;
}

.socia-icon.yt {
    background: #ff0000;
    color: #fff;
}

.socia-icon.yt:hover {
    color: #ff0000;
    background: #fff;
}

.socia-icon.ig {
    background: #833ab4;
    color: #fff;
}

.socia-icon.ig:hover {
    color: #833ab4;
    background: #fff;
}

.footer-font-color div a {
    color: var(--theme-font-color-primary);
}


/*--Footer--*/


/*-------------------Breadcrumb-------------------*/
/* .breadum-top{
    height: 150px;
    background:var(--theme-color);
}
.breadcrumb-wrapper {
    height: 70vh;
    background: #252443;
    background-size: 100% 135%;
    background-position:center center;
}
.breadcrumbs-inner {
    background: rgb(0 0 0 / 27%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.breadcrumb-wrapper h2 {
    background: var(--theme-color);
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 22px;
}
.breadcrumb {
    justify-content: center;
    color: #fff;
} */
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb li.active {
    color: #fff;
}

.breadcrumb li.active::before {
    color: #fff;
}

/* @media screen and (max-width: 767px) {
    .breadcrumb-wrapper {
        height: 30vh;
        background-size: cover;
        background-position:center center;
    }
} */
/*-------------------Breadcrumb-------------------*/



.wave {
    /* height: 50px; */
    position: relative;
    /* background: linear-gradient(90deg, #27b6b9 0%, #0f4061 100%); */
}

/* Wave text css */
.wave {
    color: #fff;
    font-weight: bold;
    font-size: 17px;
    border-top: 1px solid var(--theme-color-primary);
    padding: 18px 0px 4px 20px !important;
}

/* .wave::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    height: 10px;
    background-size: 20px 20px;
    background-image:
     radial-gradient(circle at 10px -5px, transparent 12px, #fff 13px);
  }
  .wave::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: repeat;
    height: 15px;
    background-size: 40px 20px;
    background-image:
      radial-gradient(circle at 10px 15px, #fff 12px, transparent 13px);
  } */

.blank-box {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 13px 0px rgb(26, 67, 228);
}

@media screen and (max-width: 968px) {
    .wave {
        height: 64px !important;
        font-size: 15px !important;
    }
}


/*------Birthday Area--------*/
#birthDaySlider .carousel-inner {
    height: 300px;
}

#birthDaySlider .carousel-inner .carousel-item img {
    height: 156px;
    width: 100%;
    border: 1px solid var(--theme-color);
    border-radius: 100px;
    object-fit: cover;
}

.view-box-wrapper {
    height: 300px;
    width: 100%;
    background-size: 100% 300px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.small-box {
    width: 160px;
    height: 250px;
    /* background: #fff; */
    /* box-shadow: 0 0 8px rgba(2, 2, 2, 0.3); */
    border-radius: 6px;
    margin-left: 30px;
}

@media screen and (max-width: 867px) {
    .view-box-wrapper {
        justify-content: center;
        height: 300px;
        width: 100%;
        background-size: 150% 100%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        border-radius: 6px;
    }

    .small-box {
        width: 160px;
        height: 250px;
        /* background: #fff; */
        /* box-shadow: 0 0 8px rgba(2, 2, 2, 0.3); */
        border-radius: 6px;
        margin-left: 0px;
    }
}

/*------Birthday Area--------*/
.thought-day {
    height: 100%;
    background-color: #c8e0e0;
    padding: 13px;
    color: var(--theme-color-secondary);
    font-family: cursive;
    border: 1px dashed;
}

.thought-area {
    height: 100%;
    display: flex;
    /* align-items: center; */
    color: var(--theme-color-secondary);
    font-family: cursive;
    /* margin-top: 25px; */
}

.thought-area p {
    margin-top: 42px;
}

/*--------------Notice-Board---------------*/
#impDatesSlider {
    height: 300px;
    overflow: auto;
}

.imp-dates-wrapper {
    display: flex;
    align-items: flex-start;
    /* height: 100px; */
}

/* .imp-dates-wrapper:first-child {
    margin-bottom: 20px;
} */
.imp-dates-date {
    padding: 5px;
    margin: 10px;
    border: 2px dashed var(--theme-color-secondary);
    color: var(--theme-color-secondary);
    text-align: center;
    line-height: 0.6cm;
    border-radius: 6px;
    flex-shrink: 0;
}

.imp-dates-day {
    font-size: 16px;
}

.imp-dates-details {
    padding: 0 10px;
}

.imp-dates-title {
    font-size: 16px;
    color: var(--theme-color-secondary);
}

.imp-dates-discription {
    font-size: 12px;
    text-align: justify;
    color: var(--theme-color-secondary);
}

.news-notice-btn {
    font-size: 0.700rem !important;
}

/*--------------Notice-Board---------------*/

/*--------------------
     Contact info
---------------------*/
.contact-info {
    display: flex;
}

.contact-icon {
    flex-shrink: 0;
    background: var(--theme-color-secondary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--theme-color-primary);
    border: 1px solid var(--theme-color-secondary);
    transition: 0.5s;
}

.contact-info:hover .contact-icon {
    font-size: 28px;
}

.contant-details {
    padding: 0 15px;
}

.contant-details h3 {
    font-size: 22px;
    font-weight: bold;
}

.contant-details a {
    color: var(--theme-color-secondary);
    text-decoration: none;
}

.contant-details a:hover {
    color: var(--theme-color-secondary) !important;
    text-decoration: none;
}

/*-------------------------
    End Contact Info
--------------------------*/



.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(182, 82, 82, 0.418);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/*---------------Gallery ------------------*/
.gallery-wrapper {
    width: 100%;
    height: 200px;
    background-size: 110%;
    background-position: center center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
}

.gallery-wrapper:hover {
    background-size: 120%;
}

.gallery-wrapper a.gallery-upper,
.gallery-wrapper a.gallery-bottom {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-decoration: none;
}

.gallery-wrapper a.gallery-upper {
    flex-grow: 1;
    border-radius: 6px 6px 0 0;
    position: relative;
}

.gallery-wrapper a.gallery-upper .gallery-counter {
    background: var(--theme-color-secondary);
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.gallery-wrapper a.gallery-bottom {
    border-radius: 0 0 6px 6px;
}

/*---------------Gallery------------------*/


/*----------Message popup---------*/
.message-box-popup {
    height: 298px;
    width: 176px;
    position: fixed;
    z-index: 150;
    bottom: -300px;
    right: 10px;
    background-color: rgb(35 35 35 / 58%);
    transition: 0.1s;
    border-radius: 9px;
}

.slidetoup {
    bottom: 15px;
    transition: 2.0s;
}

.slidedown {
    bottom: -3150px;
    transition: 2.0s;
}

.inner-message-box {
    padding: 10px;
}

.message-popup-height {
    height: 335px;
}


.btn-custom-invert {
    background-color: var(--theme-color-primary);
    color: var(--theme-color);
}

/*------------Our Services Style--------------*/
.our-services h5 {
    /* font-size: 29px; */
    /* font-family: 'Great Vibes', cursive!important; */
    font-weight: 600;
    color: brown !important;
    border-bottom: 2px solid brown !important;
    padding-bottom: 3px !important;
}

/*--------------Manual Navbar----------------*/
.manual-navbar {
    background-color: var(--theme-color-secondary);
}

.manual-navbar .dropdown-menu {
    background-color: var(--theme-color-primary);
    font-size: 14px;
}

.dropdown-menu .dropdown-item{
 color: #fffff !important;
}

.manual-navbar .dropdown-menu .dropdown-item:hover {
    background-color: var(--theme-color-secondary);
}

.manual-navbar .navbar-nav .nav-link-style {
    color: var(--theme-color-secondary);
    font-size: 14px;
    font-weight: bold;
}

.manual-navbar .navbar-nav .nav-link-style:hover {
    color: var(--theme-color-secondary) !important;
    font-size: 14px;
    font-weight: bold;
}

.top-bar-nav {
    background: rgb(28, 27, 59);
    background: linear-gradient(0deg, rgba(28, 27, 59, 1) 0%, rgba(255, 193, 7, 0.8687850140056023) 0%);
    padding: 10px 0px 4px 0px;
}

.school-name{
    font-family:  sans-serif  !important;
    font-weight: bold;
    color: #382f13 !important;
   width: 330px;
    text-decoration: none !important ;
    /* color: #fff6a9; */
    /* font-family: 'Ruwudu', serif !important;
    color: var(--theme-color-secondary); */
    font-size:29px;
    margin-bottom: -9px;
    margin-top: 10px;
    /* text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000; */
}

.top-nav-text-color {
    color: var(--theme-color-secondary);
}

.school-code {
    color: darkmagenta;
}

.nav-slide-btn {
    border: 1px solid var(--theme-color-primary);
}

.nav-slide-btn-icon {
    color: var(--theme-color-primary);
}

.manual-navbar .dropdown-menu li .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    bottom: 7px !important;
    background-color: var(--theme-color-primary);
    list-style-type: none;
}

.manual-navbar .dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.manual-navbar .dropdown-menu>li:hover>.dropdown-submenu {
    display: block;
    bottom: 7px !important;
}


@media only screen and (max-width: 767px) {
    .school-name img{
        width: 210px; 
        /* font-size: 16px; */
    }
    .school-name{
        width: 210px; 
        /* font-size: 16px; */
    }

    .on-mobile {
        font-size: 12px;
    }

    .m-width {
        width: 30px !important;
    }

    .m-affi {
        font-size: 12px !important;
    }

    .m-code {
        font-size: 12px !important;
    }

    .m-school-name {
        font-size: 14px !important;
        margin-bottom: -3px;
    }
}
@media only screen and (max-width: 991px){
   
    .slider-tagline,h2 {
        bottom: 0px !important; 
        font-size: 19px !important;
     
    }
}
@media only screen and (max-width: 400px){
    .school-name img{
        width: 163px; 
        /* font-size: 16px; */
    }
    .school-name{
        width: 160px; 
        /* font-size: 16px; */
    }
  
}
.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    top: 0;
    left: 0;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: #cf2323;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 15000;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 2s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(10) {
    width: 90px;
    height: 90px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 4s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }

    50% {
        transform: translate(100px);
    }

    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

.slider-tagline {
    color: var(--theme-color-primary);
    bottom: 24px;
    background: #000000c7;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-left: 5px solid;
    border-right: 5px solid;
}

.about-blank-box p {
    font-family: Georgia, serif !important;
    color: #2c2b2b !important;
    font-size: 17px;
    

}
/* .about-blank-box{
    animation: paragraph 2s;
} */


/* @keyframes paragraph {
    from {
        opacity: 0.2;
        line-height: 80px;
    }

    to {
        opacity: 1;
        line-height: 80px;
    }
} */

