/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@300&family=EB+Garamond&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&display=swap');
/* * {
    font-family: 'Noto Serif JP', serif;
} */
/*----------------Header-------------------*/
.meta-bar {
    /* background: var(--theme-color);
    color: var(--font-color); */
    background: #000;
    color: #fff;
    padding: 5px;
    font-size: 12px;
}
.header {
    padding: 6px 25px;
}
.school-logo img {
    width: 320px;
}
.school-card-wrapper {
    display: flex;
}
.school-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.school-info {
    display: flex;
    align-items: center;
}
.school-info .school-logo img {
    width: 100px;
}
.school-detail {
    line-height: 1;
    text-align: center;
    padding: 0 20px;
}
.school-detail .school-name {
    font-size: 48px;
    color: #da3b27;
    font-weight: bold;
}
.school-detail .school-line-1 {
    font-size: 22px;
    margin: 3px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.school-detail .school-line-2 {
    font-size: 12px;
}
.school-tagline {
    font-weight: bold;
    font-size: 14px;
    background: var(--theme-color);
    color: var(--font-color);
    padding: 0 10px;
}
@media screen and (max-width: 767px) {
    .school-card {
        width: 100%;
    }
}
/*----------------Header-------------------*/
/*-------------Social-Icons----------------*/
.social-icons-wrapper {
    display: flex;
    justify-content: end;
    /* background: red; */
    padding-right: 40px;
}
.social-icons {
    display: flex;
}
.social-icons a {
    display: block;
    background: var(--theme-color);
    color: var(--font-color);
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /* margin-left: 5px; */
    border-radius: 50%;
    transition: 0.3s;
}
.social-icons .social-parts:first-child {
    margin-right: 5px;
}
.social-icons .social-parts a:first-child {
    margin-bottom: 5px;
}
.social-icons a:hover {
    background: var(--font-color);
    color: var(--theme-color);
}
.social-icons .social-parts a:first-child {
    margin-left: 0;
}
.social-icon.fb {
    background: #1877f2;
    border: 1px solid #1877f2;
    color: #fff;
}
.social-icon.fb:hover {
    color: #1877f2;
    background: #fff;
}
.social-icon.tw {
    background: #1da1f2;
    border: 1px solid #1da1f2;
    color: #fff;
}
.social-icon.tw:hover {
    color: #1da1f2;
    background: #fff;
}
.social-icon.yt {
    background: #ff0000;
    border: 1px solid #ff0000;
    color: #fff;
}
.social-icon.yt:hover {
    color: #ff0000;
    background: #fff;
}
.social-icon.ig {
    background: #e1306c;
    border: 1px solid #e1306c;
    color: #fff;
}
.social-icon.ig:hover {
    color: #e1306c;
    background: #fff;
}
/*-------------Social-Icons----------------*/
/*----------------Navbar-------------------*/
.bg-auto {
    /* background: var(--theme-color); */
    /* background:#0646a3f0; */
    /* background:  #ffc107; */
    background:  #cc472a;
}

.navbar-light .navbar-nav .nav-link {
    color: white;
    font-weight: bold!important;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: white;

}
.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link {
    color: #0d6efd!important;
}
/* .navbar-light .navbar-nav .nav-link .active {
    color: yellow!important;

} */
/*----------------Navbar-------------------*/
/*----------------Banner-------------------*/

#bannerCarousel .carousel-image-box {
    height: 500px;
    background-size: 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;
}
@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: #ffc107!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: #ffc107!important;
    }
}
@media screen and (max-width: 575px){
    .carousel-littel-winner {
        bottom: -0.75rem!important ;
        /* font-size: 15px!important; */
    }
}

/*----------------Banner-------------------*/
/*--Footer--*/
.footer {
    background: #333;
    padding: 10px;
}
.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--*/
.toppers-background {
    padding: 15px;
    border-radius: 6px;
    background-size: 100%;
}
/* #xiiToppersSlider .student-details {

} */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    /* height: 100px;
    width: 100px;
    outline: black;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 1px solid black; */
    background-image: none;
    background: rgba(0,0,0,1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}
/*----------Modal Logo --------------*/
.school-modal-logo img{

    width: 250px;
}
.modal-input-color{
    background-color: #dddddd61;
}
/* .carousel-control-next-icon:after
{
    content: "\203A";
}
.carousel-control-prev-icon:after {
    content: '\2039';
}
.carousel-control-next-icon:after,
.carousel-control-prev-icon:after {
    font-size: 32px;
} */
/*-----------Font family class----------*/
.font-family{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: bold;
}


.btn-pay-fee {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999 !important;
    /* Created with https://www.css-gradient.com */
    background: #F09899;
    background: -webkit-linear-gradient(top left, #F09899, #F71D21);
    background: -moz-linear-gradient(top left, #F09899, #F71D21);
    background: linear-gradient(to bottom right, #F09899, #F71D21);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-weight: bold;
    transition: 0.3s;
}

.btn-pay-fee:hover {
    /* Created with https://www.css-gradient.com */
    background: #F71D21;
    background: -webkit-linear-gradient(top left, #F71D21, #F09899);
    background: -moz-linear-gradient(top left, #F71D21, #F09899);
    background: linear-gradient(to bottom right, #F71D21, #F09899);
    color: #fff;
}

@media screen and (max-width: 575px)  {
    .btn-pay-fee {
        font-size: 10px;
        width: 40px;
        height: 40px;
    }
}
