@import url('https://fonts.googleapis.com/css2?family=K2D:wght@100;200;300;400;500;600;700;800&display=swap');


body {
    font-family: 'K2D', sans-serif;
    font-size: 16px;
    font-weight: 300;
    background-color: #F8EFE6;
}

/*.container{
    width: 1320px;  
}*/
header {
    /*overflow: hidden;  */
    /*position: fixed;
  top: 0;
  width: 100%;*/
}
.logo{
    position: relative;
    z-index: 1;
}
.main {

    margin-top: -20px;
    /* height: 1500px;*/
}

.header-border {
    border-top: 1px solid #B8A592;
    position: relative;
   top: -52px;

}

header .menu-section .top-menu-one .online-links a {
    display: inline-block;
    width: 215px;
    height: 55px;
    border: 1px solid #B83E44;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #B83E44;
    text-align: center;
    line-height: 53px;
    border-radius: 30px;
    text-decoration: none;
}

header .menu-section .top-menu-one .online-links a.online-fee:hover {
    background-color: #B83E44;
    color: #fff;
    font-weight: 500;
}

header .menu-section .top-menu-one .online-links a.online-application {
    background-color: #B83E44;
    color: #fff;
    font-weight: 500;
}

header .menu-section .top-menu-one .online-links a.online-application:hover {
    background-color: #a51f26;
}

/* ==================================================*/
/*MENU STYLE START*/
/* ==================================================*/
/*.menu-section {
    width: 75%;
    float: right;
    text-align: right;
}*/

.w-menu {
    width: 100%;
    float: none;
}

.w-menu .container {
    position: relative;
    min-height: inherit;
}

.w-menu ul li a:hover {
    /* border-bottom: 3px solid #2A6117; */
}

.w-menu ul li a.active {
    /* border-bottom: 3px solid #2A6117; */
}

.w-menu .ul.sub-menu li a {
    color: #07223E;
}

.w-menu ul li:last-child {
    margin-right: 0 !important;
}

.w-menu ul li:last-child span.arrow-plus {
    position: relative;
    display: inline-block;
    z-index: 99;
    right: 0;
    top: 0px;
    cursor: pointer;
    text-align: center;
    height: auto;
    display: none;
}

@media (max-width:1200px) {
    .w-menu ul li a {
        font-size: 13px;
        padding: 0px 10px;
    }
}

@media (min-width:992px) {

    .w-menu {
        margin: 7px 0px 0px 0px;
        padding: 0px 0px 0px 0px;
        position: relative;
        z-index: 99;
    }

    .w-menu ul {
        list-style-type: none;
        margin: -1px;
        padding: 0;
    }

    .w-menu ul li {
        display: inline-block;
        position: relative;
        font-size: 16px;
        font-weight: 500;
        margin: 0px 7px;
    }

    .w-menu ul li a {
        line-height: 60px;
        padding: 0 0;
        margin: 0px 0px;
        text-decoration: none;
        color: #000;
        text-transform: capitalize;
        cursor: pointer;
        font-weight: 500;
        ;
    }

    .w-menu ul li.contact-menu {
        background-color: #ffc300;
        padding: 0px 20px;
    }

    .w-menu ul li.contact-menu:hover a {
        color: #571845;
    }

    .w-menu ul li ul {
        text-align: left;
        background: #B83E44;
    }

    .w-menu ul li ul li a {
        line-height: 22px;
        padding: 12px 20px 12px 10px;
        color: #d89858;
        border-bottom: 1px solid #c7555b;
        margin: 0px 0px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
        width: 100%;
        display: block;
    }

    .w-menu ul li ul li a:hover {
        border-bottom: 1px solid #c7555b;
        color: #fff;
    }

    .w-menu ul li ul li::after {
        content: '';
        display: block;
        width: 0;
        height: 0px;
        background: #035D0C;
        transition: width .3s;
    }

    .w-menu ul li ul li:hover {
        background: var(--main-color-one-hover);
    }


    /*SLIDE DOWN EFFECTS START*/
    .have-sub-menu {
        position: relative;
    }

    ul.sub-menu {
        visibility: hidden;
        /* hides sub-menu */
        opacity: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        transform: translateY(-2em);
        z-index: -1;
        transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    }

    .have-sub-menu:focus>.sub-menu,
    .have-sub-menu:focus-within>.sub-menu,
    .have-sub-menu:hover>.sub-menu {
        visibility: visible;
        /* shows sub-menu */
        opacity: 1;
        z-index: 1;
        transform: translateY(0%);
        transition-delay: 0s, 0s, 0.3s;
        /* this removes the transition delay so the menu will be visible while the other styles transition */
    }

    /*FLIP EFFECTS END*/

    /* sub navigation */
    .w-menu li ul {
        position: absolute;
        left: 0;
        top: 63px;
        width: 200px;
    }

    .w-menu li ul.right {
        right: 0px;
        left: auto;
    }

    .w-menu li li {
        position: relative;
        margin: 0;
        display: block;
    }

    .w-menu li li ul {
        position: absolute;
        top: 0;
        left: 200px;
        /* make this equal to the width of the sub nav above */
        margin: 0;
    }

    .w-menu li li ul.right,
    .w-menu li li ul.right li ul {
        right: 180px;
        /* make this equal to the width of the sub nav above */
        left: auto;
    }

    .w-menu ul li span {
        padding-left: 2px;
    }

    .w-menu ul li span.arrow-plus {
        position: relative;
        display: inline-block;
        z-index: 99;
        right: 0;
        top: 0px;
        cursor: pointer;
        text-align: center;
        height: auto;
    }

    .w-menu ul li span.arrow-plus:after {
        font-family: FontAwesome;
        content: "\f107";
        color: var(--main-color-one);
        font-size: 15px;
        color: #000;
    }

    .w-menu ul li li span.arrow-plus {
        position: absolute;
        top: 8px;
        right: 10px;
    }

    .w-menu ul li li span.arrow-plus:after {
        font-family: FontAwesome;
        content: "\f105";
        color: #FFF;
        font-size: 14px;
    }

    /*OTHER MENU STYLE START*/
    .w-menu ul li.other-menus>ul {
        /*max-height:200px;
    overflow-x: hidden;
    overflow-y: scroll;*/
    }

    .w-menu ul li.other-menus:hover {
        background-color: transparent;
    }

    .w-menu ul li.other-menus:before {
        font-family: FontAwesome;
        content: "\f0c9";
        color: #FFF;
        position: absolute;
        top: 50%;
        margin-top: -11px;
        margin-left: -7px;
    }

    .w-menu ul li.other-menus>a {
        display: block;
        width: 50px;
        padding: 0px;
        margin: 0px;
        text-indent: -99999px;
    }

    .w-menu ul li.other-menus ul li a {
        padding-left: 20px;
    }

    .w-menu ul li.other-menus li:after {
        height: 0px;
        display: none !important;
    }

    .w-menu ul li.other-menus>.arrow-plus {
        display: none;
    }

    .w-menu ul li.other-menus ul {
        left: -160px;
    }

    .w-menu ul li.other-menus ul li ul,
    .w-menu ul li.other-menus ul li ul li ul,
    .w-menu ul li.other-menus ul li ul li ul li ul {
        position: absolute;
        top: 0;
        left: -200px;
        margin: 0;
    }

    .w-menu ul li.other-menus span.arrow-plus {
        position: absolute;
        top: 9px;
        left: 3px;
        right: auto;
    }

    .w-menu ul li.other-menus span.arrow-plus:after {
        font-family: FontAwesome;
        content: "\f104";
    }

    .w-menu ul li.other-menus>ul::-webkit-scrollbar {
        width: 3px;
    }

    .w-menu ul li.other-menus>ul::-webkit-scrollbar-thumb {
        background: var(--main-color-two);
    }

    .w-menu ul li.other-menus {
        cursor: pointer;
        position: relative;
    }

    /*OTHER MENU STYLE END*/
    /*MEGA MENU STYLE START*/
    .w-menu ul li.mega-menus {
        cursor: pointer;
        position: static;

    }

    .w-menu ul li.mega-menus>ul {
        position: absolute;
        width: 1170px;
        left: 0%;
        right: 0%;
        padding: 20px;
    }

    .w-menu ul li.mega-menus>ul>li {
        width: 20%;
        float: left;
        line-height: 10px;
        padding: 0px 10px;
    }

    .w-menu ul li.mega-menus ul li:hover {
        background-color: transparent;
    }

    .w-menu ul li.mega-menus>ul li a:hover {
        color: #000;
    }

    .w-menu ul li.mega-menus ul.sub-menu ul.sub-menu {
        display: block;
        left: 0px;
        width: 100%;
        position: static;
    }

    .mega-menus ul span.arrow-plus {
        display: none !important;
    }

    .w-menu ul li.megamenu-li>a,
    .w-menu ul li.megamenu-with-out-sub>a {
        font-size: 13px !important;
        text-transform: uppercase !important;
        font-weight: bold !important;
        /*margin-bottom:5px !important;
    padding-bottom:10px !important;
    border-bottom:solid 1px #1b69a9 !important;*/
        display: block !important;
        line-height: 16px !important;
        color: #FFFFFF !important;

    }

    /*.megamenu-with-out-sub > a{
    border-bottom:none !important;
    padding-bottom:0px !important;
    margin-bottom:0px !important;
    }*/
    .megamenu-li>a:hover {
        color: #FFF !important;
        cursor: default;
    }

    .megamenu-li ul {
        margin-bottom: 20px !important;
        display: inline-block !important;
    }

    .w-menu li.mega-menus:hover ul {
        display: block;
        -moz-animation: zoomIn .3s ease-in;
        -webkit-animation: zoomIn .3s ease-in;
        animation: none !important;

    }

    .w-menu ul li.mega-menus ul li {
        /*display:inline-block;
    vertical-align:top;
    float:left;*/
    }

    .w-menu ul li.mega-menus ul li a {
        line-height: 20px;
        padding: 5px 0px;
        font-size: 14px;
        color: #98d0ff;
    }

    .w-menu ul li.mega-menus ul li ul li a {
        line-height: 20px;
        padding: 1px 0px;
        font-size: 13px;
    }

    /*MEGA MENU STYLE END*/

    /*VERTICAL MENU STYLE START*/
    .w-menu.vertical-menu ul li {
        float: none;
        display: block;
        width: 100%;
        text-align: left;
    }

    .w-menu.vertical-menu ul li ul.sub-menu {
        right: -200px;
        left: auto;
        top: 0px;
    }

    .w-menu.vertical-menu .container {
        padding-left: 0px;
        padding-right: 0px;
    }

    /*VERTICAL MENU STYLE END*/
}

@media (max-width:1200px) and (min-width:991px) {
    .w-menu ul li.mega-menus>ul {
        width: 960px;
        margin-left: -480px;
    }

}

@media (max-width:991px) {

    .top-h-right {
        width: 100%;
    }

    .mobile-menu-icon {
        position: fixed;
        width: 40px;
        height: 40px;
        background-color: #a0353a;
        display: block;
        right: 0px;
        cursor: pointer;
        top: 0px;
        z-index: 999999;
        text-align: center;
        transition: 0.3s;
        padding-top: 10px;
    }

    .mobile-menu-icon:after {
        font-family: FontAwesome;
        content: "\f0c9";
        line-height: 20px;
        font-size: 24px;
        font-weight: 400;
        color: #FFF;
    }

    .mobile-menu-icon.icon-open {
        transition: 0.3s;
        right: 300px;
    }

    .mobile-menu-icon.icon-open:after {
        content: "\f00d";
    }

    .mobile-menu {
        position: fixed;
        z-index: 999999;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100%;
        overflow-x: hidden;
        overflow-y: scroll;
        background: #B83E44;
        transition: 0.3s;
    }

    .mobile-menu.menu-open {
        right: 0px;
        transition: 0.3s;
        padding-top: 45px;
    }

    .w-menu ul {
        padding: 0px;
        margin: 0px;
    }

    .w-menu ul li {
        float: none;
        list-style: none;
        position: relative;
    }

    .w-menu ul li a {
        color: #fefefe;
        font-size: 14px;
        display: block;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.045);
        border-bottom: 1px solid rgba(0, 0, 0, 0.045);
        text-align: left;
    }

    .w-menu ul li a:hover,
    .w-menu ul li a:focus {
        text-decoration: none;
    }

    .w-menu ul li.active {
        background: rgba(0, 0, 0, .2) none repeat scroll 0 0;
    }

    .w-menu ul li ul {
        display: none;
    }

    .w-menu ul li span.arrow-plus {
        position: absolute;
        width: 40px;
        height: 40px;
        border: solid 1px #FFF;
        display: block;
        z-index: 99;
        right: 2px;
        top: 0px;
        cursor: pointer;
        text-align: center;
        padding-top: 8px;
    }

    .w-menu ul li span.arrow-plus:after {
        font-family: FontAwesome;
        content: "\f067";
        color: #FFF;
        font-size: 14px;
    }

    .w-menu ul li span.arrow-minimize:after {
        font-family: FontAwesome;
        content: "\f068";
        font-size: 14px;
    }

    .w-submenu {
        display: block !important;
        background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
    }

}

@media (max-width:479px) {
    .mobile-menu {
        width: 280px;
        padding-top: 45px;
    }

    .mobile-menu-icon.icon-open {
        right: 280px;
    }
}
.bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(18 4 4 / 12%);
}
.carousel-caption {
    width: 40%;
    position: absolute;
    top: 200px;
}

.carousel-caption .caption-one {
    font-size: 18px;
    font-weight: 800;
}

.carousel-caption .caption-two {
    font-size: 80px;
    font-weight: 800;
}

.carousel-caption .caption-three {
    font-size: 18px;
    font-weight: 100;
    width: 70%;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}

.ticker {
    margin: 0;
    padding: 20px 30px;
    width: 600px;
    text-align: left;

    position: relative;
    overflow: hidden;

}

.ticker ul {
    width: 100%;
    position: relative;
    margin: auto;
}

.ticker ul li {
    width: 100%;
    display: none;
    height: 130px;
}

.flash-news-section .flash-news {
    display: inline-flex;

}

.flash-news-section .flash-bg {
    background-color: #fff;
    border-radius: 50px;
    display: inline-flex;
    width: 70%;
    box-shadow: 2px 2px 4px 0px #c3c1c1;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.flash-title {
    height: 40px;
    font-size: 14px;
    color: #fff;
    background-color: #ED232D;
    line-height: 40px;
    padding: 0px 20px;
    border-radius: 30px;
    margin: 45px 0px 0px 28px;
}

.flash-title:hover {
    background-color: #ac0710;

}

.flash-title a {
    font-weight: 500;
}

.flash-title a:hover {
    font-weight: 500;
    color: #fff;
}

.flash-news-section .news-contnet .date {
    font-size: 15px;
    font-weight: 400;
    color: #B0B0B0;
}

.flash-news-content a {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
}

.title {
    line-height: 16px;
}

.sub-title {
    color: #B83E44;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-title {
    font-size: 70px;
    color: #0C2E60;
    font-weight: 800;
    line-height: 80px;
}

.about-section .content {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
}

.read-more a {
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    background-image: linear-gradient(to right, #EE3E0E, #F8B101);
    display: inline-block;
    width: 191px;
    height: 59px;
    border-radius: 30px;
    text-align: center;
    line-height: 57px;
}

.read-more a:hover {
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    background-image: linear-gradient(to right, #F8B101, #EE3E0E);
    display: inline-block;
    width: 191px;
    height: 59px;
    border-radius: 30px;
    text-align: center;
    line-height: 57px;
    color: #fff;
}

.spec1,
.spec2,
.spec3,
.spec4 {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    padding: 8px 20px;
    border: 1px solid #fff;
    margin-bottom: 18px;
    border-radius: 30px;
}

.spec1 {
    background-color: #A89AF4;
}

.spec2 {
    background-color: #9DC863;
}

.spec3 {
    background-color: #4ECACA;
}

.spec4 {
    background-color: #FFA1C9;
}

.about-img img {
    border-radius: 27px;
    border: 5px solid #EDC8CA;
}

.vision-mission {
    position: relative;
}

.vision-mission .content {
    background-color: #FFC78E;
    border-radius: 27px;
    line-height: 35px;
    font-size: 18px;
    position: relative;
    padding: 80px 45px 28px 45px;
    box-shadow: 0px 1px 8px 4px #c7c4c4c9;
}

.vision-mission .title {
    color: #FFD80C;
    font-weight: 800;
    font-size: 25px;
    background-color: #F07B3D;
    display: inline-block;
    width: 235px;
    height: 70px;
    border-radius: 30px 30px 0px 0px;
    text-align: center;
    line-height: 75px;
    position: absolute;
    top: -33px;
    z-index: 1;
}

.vision-mission .content img {
    position: absolute;
    width: 180px;
    right: 33px;
    top: 25px;
}

/*.vision-mission .bd{
    border-bottom: 1px solid #D9D9D9;
}*/
.principal-photo img {
    border-radius: 27px;
    border: 5px solid #EDC8CA;
    box-shadow: 0px 3px 4px 0px #b7b4b4c9;

}

.principal-msg .name {
    font-size: 20px;
    font-weight: 800;
    color: #B83E44;
    padding: 0px 50px;
}

.principal-msg .designation {
    font-size: 14px;
    font-weight: 500;
    color: #000;

}

.principal-msg .main-titles {
    font-size: 55px;
    color: #0C2E60;
    font-weight: 800;
    line-height: 60px;
    width: 70%;

}

.msg-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;

}

.principal-msg .row {
    background-color: #c8d0ed;
    border-radius: 27px;
}

.our-management .main-titles {
    font-size: 55px;
    color: #0C2E60;
    font-weight: 800;


}

.our-management .management img {
    border-radius: 27px;
    border: 5px solid #EDC8CA;
    box-shadow: 0px 3px 4px 0px #b7b4b4c9;
}

.management-details .name {
    font-size: 16px;
    font-weight: 800;
    color: #B83E44;
}

.management-details .designation {
    font-size: 14px;
    font-weight: 500;
    color: #000;

}
.middle-banner {
    position: relative;
    background-image: linear-gradient(to right, #EE3E0E, #F8B101);
    color: #fff;
    line-height: 25px;
    top: 30px;
}

.middle-banner .box {
    font-size: 55px;
    font-weight: 800;
}

.middle-banner .box span {
    font-size: 16px;
    font-weight: 500;
}

.core-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;

}

.core-bg {
    background-color: #FFC78E;
    border-radius: 27px;
}

.core-value-box {
    background-color: #fff;
    border-radius: 32px 0px 0px 32px;
    margin: 20px 0;
    box-shadow: 0px 2px 5px 1px #beb8b8a3;
}

.core-value-box .value {
    font-size: 26px;
    color: #0C2E60;
    font-weight: 700;
    padding: 10px 0px;
}

.core-value-box .value-description {
    font-size: 18px;
        height: 245px;
}

.core-left-img img {
    border-radius: 27px;
    border: 5px solid #EDC8CA;
    margin-top: 30px;
}

.home-video iframe {
    border-radius: 27px;
    border: 5px solid #EDC8CA;
}

.social-media a {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    padding-left: 53px;
}

.social-media span {
    font-size: 30px;
    padding-right: 15px;
}

.social-media .facebook {
    background-color: #0C2E60;
}

.social-media .youtube {
    background-color: #EE1C25;
}

.social-media .instagram {
    background-image: linear-gradient(to right, #EE3E0E, #F8B101);
}

.social-media .twitter {
    background-color: #19A6D2;
}

.social-media .facebook,
.instagram,
.youtube,
.twitter {
    border-radius: 25px;
    margin-bottom: 15px;
    padding: 0px 20px;
}

.recent-activity-slider .activity-slide {
    background: #D82129;
    margin: 20px 15px 20px;
    border-radius: 20px;
    box-shadow: -1px 6px 22px -9px #cccecf;

}


.recent-activity-slider .activity-slide .activity-img img {
    width: 100%;
    height: auto;
    padding: 0;
    border-radius: 20px;
}

.recent-activity-slider .activity-content {
    padding: 0px 20px;
    height: 238px;
}

.recent-activity-slider .date-time span {
    color: #F8B101;
    font-size: 14px;
    font-weight: 600;
}

.recent-activity-slider .date-time span.time {
    float: right;
}

.recent-activity-slider .description,
a {
    color: #fff;
    font-weight: 100;
    text-decoration: none;
}

.recent-activity-slider .description a:hover {
    color: #F8B101;
}

.recent-activity-slider .description h3 {
    font-size: 25px;
    font-weight: 700;
}

.actvity-bottom span {
    font-size: 14px;
    font-weight: 600;
}

.activity-bottom .more a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

.activity-bottom .more a:hover {
    font-weight: 500;
    color: #F07B3D;
}

.activity-bottom .attachment a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    float: right;
    color: #F07B3D;
}

.activity-bottom .attachment a:hover {
    font-weight: 700;
    color: #fff;
}

.recent-activity-slider .bd {
    border-top: 1px solid #F07B3D;
    width: 30%;
}

.csr-activities .content {
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;
}

.csr-activities .right img {
    border-radius: 27px;
    border: 5px solid #EDC8CA;
}

.csr-activities .left {
    background-image: linear-gradient(to bottom, #ED232D, #F0803E);
    border-radius: 41px;
}

.csr-activities .scholarship-title {
    font-size: 55px;
    color: #fff;
    font-weight: 800;
    line-height: 45px;
}

.csr-activities .scholarship-title span {
    font-size: 35px;

}

.csr-activities .left a {
    background-color: #EAEAEA;
    font-size: 13px;
    font-weight: 800;
    color: #B8A592;
    display: inline-block;
    width: 180px;
    height: 55px;
    line-height: 58px;
    border-radius: 30px;
    text-transform: uppercase;
}

.csr-activities .left a:hover {
    background-color: #ED232D;
    color: #fff;
}

.home-gallery span a {
    background-color: #B83E44;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    width: 180px;
    height: 55px;
    line-height: 58px;
    border-radius: 30px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    top: -10px;
}

.home-gallery span a:hover {
    background-color: #b11d24;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    width: 180px;
    height: 55px;
    line-height: 58px;
    border-radius: 30px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    top: -10px;
}

.home-gallery .gallery-img img {
    border-radius: 20px;
}

.recent-activity-slider .owl-nav {
    display: none;
}

@media only screen and (max-width:1280px) {
    .activity-slide .activity-content {
        padding: 0px 15px 25px 15px;
    }
}

.testimonials {
    background-color: #B83E44;

}

.testimonial-title {
    position: relative;
    top: 30%;
}

.testimonials .testimonial-title h3 {
    color: #DF797E;
    font-size: 55px;
    font-weight: 800;

}

.testimonials .item img {
    border-radius: 25px;
}

.content-quotes {
    position: absolute;
    left: 27px;
}

#customers-testimonials .item {

    padding: 20px;

}

.testimonials .testimonial-content {
    color: #fff;
    font-size: 15px;
    font-weight: 100;
    position: relative;


}

.testimonials .testimonial-content .name {
    font-size: 18px;
    font-weight: 500;
}

.testimonials .testimonial-content .place {
    font-size: 15px;
    font-weight: 100;
}

.testimonial-mid {
    border-right: 1px solid #DF797E;
    padding: 0px 45px;
}

#customers-testimonials.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    outline: none;
    display: none;
}

.owl-carousel .owl-nav {
    display: none;
}

footer .address,
.email a {
    display: inline-flex;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
}
.footer-contact a:hover{
    color: #bc0e0e;
}
footer .icons {
    color: #B83E44;
    font-size: 20px;
}

footer .phone a {
    color: #000;
    font-weight: 700;
}

footer .footer-menus ul {
    padding-left: 0;

}

footer .footer-menus .bd {
    border-bottom: 1px solid #F8EFE6;
    width: 70%;

}

footer .footer-menus ul li {
    list-style-type: none;
}

footer .footer-menus h3 {
    font-size: 23px;
    font-weight: 700;
    color: #6E1519;
    padding-bottom: 20px;
}

footer .footer-menus ul li a {
    color: #6F1519;
    font-size: 18px;
    font-weight: 400;
    line-height: 35px;

}
footer .footer-menus ul li a:hover{
    color: #fff;
}
footer .footer-menus {
    background-color: #D89858;
    padding: 75px 50px 0px 50px;
    border-radius: 0px 0px 25px 25px;
height: 500px;
}

.footer-section {
    border-bottom: 1px solid #B8A592;
}

.footer-bottom {
    font-size: 13px;
    color: #B8A592;
}
.inner-banner {
    height: 500px;
    width: 100%;
    background-color: #b83e44;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 0%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.inner-banner h1 {
    font-size: 36px;
    /* font-weight: 600; */
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 30px;
    color: #FFF;
    position: relative;
    z-index: 9;
    text-shadow: 1px 1px #000;
}
.pathway ul {
    margin: 0px;
    padding: 0px 0px 0px;
    text-align: center;
    position: relative;
    z-index: 9;
}
.pathway li {
    float: none;
    display: inline-block;
    list-style: none;
    padding: 0px 0px;
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    color: #fff;
}
.pathway li a {
    color: #fff;
}
.pathway li a:hover {
    color: #fff;
    text-decoration: underline;
}
.pathway li a:after {
    content: '/';
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;
}
.under-sub-banner {
    margin: 70px 0px 70px;
}
.welcome-sub-content {
    position: relative;
    height: 100%;
    padding: 0px 20px 0px 0px;
    text-align: justify;
    font-size: 18px;
    line-height: 40px;
}
.page-sub-section .welcome-sub-content h1 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #b83e44;
    /* padding: 0px 0px 16px; */
}
.page-sub-section .welcome-sub-content h1 span {
    font-size: 28px;
    font-weight: 300;
    line-height: 36px;
    display: inline-block;
    width: 100%;
    padding-top: 10px;
    color: #000;
}
.subpage-section{
    margin: 70px 0px 70px;
    font-size: 18px;
    line-height: 40px;
}
.subpage-section h3 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #b83e44;
    /* padding: 0px 0px 16px; */
}
.subpage-section h3 span {
    font-size: 28px;
    font-weight: 300;
    line-height: 36px;
    display: inline-block;
    width: 100%;
    padding-top: 10px;
    color: #000;
}
.subpage-section .contents .principal-name{
    font-size: 16px;
    font-weight: 800;
    color: #B83E44;   
    padding: 10px 50px;
    text-align: center;
}
.subpage-section .contents img{
    border-radius: 27px;
    border: 5px solid #EDC8CA;
    box-shadow: 0px 3px 4px 0px #b7b4b4c9;
}
.subpage-section .alumni-input {
    padding: 16px;
    border: 2px solid #b83e444f;
    border-radius: 4px;
    width: 100%;
    outline: none;
    font-weight: 400;
    background-color: transparent;
    margin-bottom: 35px;
}
.subpage-section .alumni-input::placeholder{
   color: #000;   
}
.subpage-section .alumni-button {
    padding: 12px 18px;
    border: 1px solid #B83E44;
    background: #B83E44;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
}
.subpage-contact-us h5{
  font-size: 25px;
    font-weight: 700;    
    color: #b83e44;
}
.contact-quotes p{
    background-color: #b83e4433;
    padding: 10px 90px;
    font-style: italic;
    font-size: 18px;
}
.news-events-page .date{
    color: #a0353a;
    font-size: 13px;
    font-weight: 500;
}
.news-page-title a{
    color: #000;
    font-weight: 400;
    font-size: 18px;
    display: inline-block;
    line-height: 32px;
}
.news-page-title a:hover{
    color: #082286;
}
.subpage-section .content .news-img {
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 100%;
    height: auto;
}
.subpage-section .content .downloads-select {
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    font-weight: 600;
    color: #000;
}
.subpage-section .content .downloads-button {
    display: inline-block;
    background-color: #a0353a;
    color: #fff;
    font-weight: 800;
    padding: 3px 15px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
}
.table{
    --bs-table-border-color: #e5777c;
}
.subpage-section .content td {
    vertical-align: middle;
}
.media-img {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    margin: 50px 0px;
}
.subpage-section .photo-album-name a {
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-align: center;
    
}
/*.subpage-section .photo-album-name a:hover{*/
/*     background-color: #fff;*/
/*}*/
.subpage-section .album-name-bg{
    background-color: #d89858;
    display: block;
    /* width: 300px; */
    height: 45px;
    line-height: 45px;
}
.media-img img {
    width: 100%;
    height: auto;
    transition: transform .2s;
    cursor: pointer;
    border-radius: 6px;
}
.subpage-section .photo-album-name p {
    padding: 16px 0 0 0;
    margin: 0;
    line-height: 24px;
}
.media-img img:hover {
    transform: scale(1.08);
}
.subpage-section .content a.circle-bg {
    text-align: center;
    
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 0;
    line-height: 135px;
    font-size: 29px;
    margin: 0 auto;
    color: #ffff;
    text-decoration: none;
    font-weight: 800;
   background-color: #d89858;
}
.subpage-section .content a.circle-bg:hover {
     background-color: #fff;
     color: #000;
}
.class-dission {
    text-align: center;
    margin: 0px auto 20px auto;
}
.class-dission ul {
    margin: 0;
    padding: 0;
}
.class-dission ul li {
    display: inline-block;
    list-style-type: none;
    /* padding: 15px 35px 15px 35px; */
}
.class-dission ul li a {
    display: block;
    color: #333;
   
    font-size: 18px;
    /* height: 52px; */
    width: 120px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    margin: 0 10px 10px 10px;
    position: relative;
    text-decoration: none;
    background: #d89858;
    font-weight: 800;
}
.class-dission ul li a::after {
    color: #db0038;
    content: "\f0d7";
    position: absolute;
    font-size: 24px;
    top: 59%;
    font-family: 'FontAwesome';
    left: 50%;
    opacity: 0;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50,0);
    -moz-transform: translate(-50,0);
    -ms-transform: translate(-50,0);
    -o-transform: translate(-50,0);
}
.boys-grid {
    margin-bottom: 60px;
    padding-bottom: 5px;
    background-color: #fff;
    position: relative;
    border: 1px solid #e8eef5;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 2px 4px 8px -3px rgb(0 0 0 / 20%);
}
.boys-grid img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}
.boys-grid .name {
    padding: 10px 0px;
    font-weight: 600;
}
.boys-grid .edit {
    position: absolute;
    top: 20px;
    left: 20px;
}
.boys-grid .edit a {
    padding: 7px 0px 0px 0px;
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 50px;
    float: left;
    text-align: center;
    background-color: #333;
    color: #fff;
    text-decoration: none;
}
.boys-grid .edit a:after {
    font-family: 'FontAwesome';
    content: "\f040";
    color: #fff;
}
.page-sub-section h4{
    font-weight: 900;
}
.page-sub-section .faculty-head{
   background-color: #a0353a;
   color:#fff;
}
.page-sub-section .faculty-table table{
    border:1px solid #e5777c;
}
.page-sub-section .faculty-box span{
    color:#fff;
    font-style: italic;
    font-weight: 500;
}
.faculty-box{
   background-color: #a0353a;
    padding: 20px;
}
.page-sub-section ul li {
   background-color: #fa737924;
    padding: 8px 30px 8px 0px;
    list-style-type: none;
    margin-bottom:20px;
    display:flex;
}

.page-sub-section ul{
  padding-left: 0;  
  margin-bottom:50px;
   
    padding-top:10px;
     padding-bottom:10px;
  
}

.page-sub-section ul li::before {
    content: "\2022";
    color: #b83e44;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 1em;
    font-size: 1.5rem;
}
.school-hours{
    background-color: #a0353a;
    /* width: 30%; */
    padding-left: 15px;
    line-height: 50px;
    height: 50px;
    color: #fff;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .flash-news-section .flash-news {
        display: block;
    }

    .flash-news-section .flash-bg {
        background-color: #fff;
        border-radius: 0px;
        display: block;
        width: 100%;
        box-shadow: 0px 3px 4px 0px #c3c1c1;
        margin-top: 30px;
        position: relative;
        z-index: 10;
    }

    .flash-news-content a {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        text-transform: uppercase;
        text-decoration: none;
    }

    .flash-title {
        height: 40px;
        font-size: 14px;
        color: #fff;
        background-color: #ED232D;
        line-height: 40px;
        padding: 0px 20px;
        border-radius: 0;
        margin: 0px 0px 0px 0px;
        text-align: center;
    }

    .main-title {
        font-size: 35px;
        color: #0C2E60;
        font-weight: 800;
        line-height: 43px;
    }

    .sub-title {
        color: #B83E44;
        font-size: 23px;
        font-weight: 800;
        text-transform: uppercase;
        line-height: 30px;
    }

    .read-more a {
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
        background-image: linear-gradient(to right, #EE3E0E, #F8B101);
        display: inline-block;
        width: 175px;
        height: 54px;
        border-radius: 30px;
        text-align: center;
        line-height: 56px;
    }

    .principal-msg .name {
        font-size: 16px;
        font-weight: 800;
        color: #B83E44;
        padding: 0px 50px;
    }

    .our-management .main-titles {
        font-size: 43px;
        color: #0C2E60;
        font-weight: 800;
    }

    .home-video iframe {
        border-radius: 27px;
        border: 5px solid #EDC8CA;
        max-width: 100%;
    }

    .social-media a {
        color: #fff;
        font-size: 17px;
        font-weight: 800;
        text-decoration: none;
        padding-left: 0;
    }

    .csr-activities .right {
        padding-bottom: 35px;
    }

    .csr-activities .scholarship-title {
        font-size: 42px;
        color: #fff;
        font-weight: 800;
        line-height: 45px;
    }

    .csr-activities .scholarship-title span {
        font-size: 25px;
    }

    .main-title span {
        display: block;
    }

    .home-gallery span a {
        background-color: #B83E44;
        font-size: 13px;
        font-weight: 800;
        color: #fff;
        display: inline-block;
        width: 180px;
        height: 55px;
        line-height: 58px;
        border-radius: 30px;
        text-transform: uppercase;
        text-align: center;
        position: relative;
        top: 23px;
    }

    #customers-testimonials .item {
        padding: 20px;
        /* opacity: .2; */
        margin-top: 50px;
    }

    footer .footer-menus {
        background-color: #D89858;
        padding: 75px 50px 0px 50px;
        border-radius: 0px 0px 25px 25px;
        margin-top: 35px;

    }

    .ticker {
        margin: 0;
        padding: 20px 30px;
        max-width: 100%;
        text-align: left;

        position: relative;
        overflow: hidden;

    }

    .w-menu ul li a {
        color: #fefefe;
        font-size: 14px;
        display: block;
        padding: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.045);
        border-bottom: 1px solid rgba(0, 0, 0, 0.045);
        text-align: left;
    }

    .carousel-caption {
        width: 100%;
        position: absolute;
        top: 0;
    }

    .carousel-caption .caption-one {
        font-size: 12px;
        font-weight: 800;
    }

    .carousel-caption .caption-two {
        font-size: 18px;
        font-weight: 800;
    }

    .carousel-caption .caption-three {
        font-size: 10px;
        font-weight: 100;
        width: 70%;
        display: none;
    }

    .carousel-caption .read-more a {
        font-size: 13px;
        font-weight: 800;
        text-decoration: none;
        background-image: linear-gradient(to right, #EE3E0E, #F8B101);
        display: inline-block;
        width: 130px;
        height: 37px;
        border-radius: 30px;
        text-align: center;
        line-height: 35px;
    }

    .carousel-indicators {
        display: none;
    }

    .online-links {
        display: inline-flex;
        padding-bottom: 20px;
    }

    header .menu-section .top-menu-one .online-links a {
        display: inline-block;
        width: 160px;
        height: 40px;
        border: 1px solid #B83E44;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        color: #B83E44;
        text-align: center;
        line-height: 39px;
        border-radius: 30px;
        margin-right: 13px;
        text-decoration: none;
    }

    .vision-mission .content img {
        position: absolute;
        width: 180px;
        right: 33px;
        top: 50px;
    }

    .vision-mission .title {
        color: #FFD80C;
        font-weight: 800;
        font-size: 22px;
        background-color: #F07B3D;
        display: inline-block;
        width: 219px;
        height: 60px;
        border-radius: 30px 30px 0px 0px;
        text-align: center;
        line-height: 62px;
        position: relative;
        z-index: 1;
        top: 30px;
    }

    .logo img {
        width: 265px;
        margin-top: -19px;
        margin-bottom: 22px;
    }

    .header-border {
    border-top: 1px solid #B8A592;
    position: relative;
    top: -85px;
    display: none;
}
    .about-section {
        padding-top: 45px;
    }

    .social-media {
        padding: 30px 0px;
    }
    .subpage-section .alumni-input {
    padding: 11px;
    border: 2px solid #b83e444f;
    border-radius: 4px;
    width: 100%;
    outline: none;
    font-weight: 400;
    background-color: transparent;
    margin-bottom: 23px;
}
.subpage-section .alumni-button {
    padding: 3px 18px;
    border: 1px solid #B83E44;
    background: #B83E44;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
}
.contact-form{
    padding-bottom: 40px;
}
.subpage-contact-us{
    font-size: 17px;
}
.subpage-section .content a.circle-bg {
    margin-bottom: 20px;
}
.principal-msg .main-titles {
    font-size: 36px;
    color: #0C2E60;
    font-weight: 800;
    line-height: 20px;
    width: 100%;
}
.principal-msg{
    margin-top: -47px;
    margin-bottom: -35px;
}
.middle-banner .box {
    font-size: 50px;
    font-weight: 800;
}
.vice-bg{
    margin-top: 20px;
}
.vice-bg .main-titles{
   line-height: 50px;
}
.pta-list table td {
    padding: 10px 10px;
    font-size: 16px;
}
.testimonial-user-details {
    display: inline-block;
}
.subpage-section h3 {
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    color: #b83e44;
    /* padding: 0px 0px 16px; */
}
.under-sub-banner {
    margin: 32px 0px 32px;
}
}
.principal-pic{
    margin-top: 75px;
}
.vice-bg .row{
    background-color: #FFC78E;
}
.career-form a{
    background-color: #a51f26;
    padding: 15px 20px;
    font-weight: 300;
    border-radius: 30px;
    font-size: 15px;
}
.career-form a:hover{
    background-color: #000;
    color:#fff;
}
.career-content span{
    font-weight: 600;
    color: #a51f26;
}

.pta-list table{
    line-height: 30px;
}
.pta-list table td{
    padding:10px 10px;
}
 audio {
        background:linear-gradient(to top left, cyan, hotpink, gold);
        margin-top:20px;
        margin-left:20px;
      }
      
      
      
      .school-anthem audio::-webkit-media-controls-panel {
        background:linear-gradient(to top left, cyan, hotpink, gold);
      }
      
   .admission-apply a{
       background-color: #b83e44;
    padding: 15px 45px;
    border-radius: 27px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0px 2px 5px 1px #9c9494b8;
   }   
  .admission-apply a:hover{
     background-color: #000;
     color:#fff;
  }   
.students-parliament img{
    height: 400px;
    border-radius: 25px;
}
.students-parliament .details{
    padding: 27px 0px;
    line-height: 30px;
}
.students-parliament span{
    font-weight:700;
}
.students-parliament .houses{
    color: #b83e44;
}
.social-media-footer-icons span a{
    font-size: 20px;
    color:#000;
    
}
.social-media-footer-icons span a:hover{
    color:#B83E44;
}
.e-service a{
    color: #a0353a;
    font-weight: 500;
}
.e-service a:hover{
    color:blue;
}
.testimonials-section img{
    border-radius: 10px;
    
}
.testimonial-user-details{
    display: inline-flex;
}
.testimonial-user-details .name{
    font-weight: 800;
}
.testimonial-user-details .designation{
   
    color: #a0353a;
    font-weight: 400;
    line-height: 15px;

}
.testimonial-mid a{
    color: #d89858;
    font-weight: 700;
}
.testimonial-mid a:hover {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}
.lab-img h3{
    text-align: center;
    padding: 15px 0px;
    font-size: 22px;
}
.lab-img{
        display: inline-flex;
}