@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
    vertical-align: middle;
}

summary {
    display: list-item;
}

body,
html {
    height: 100%;
}

html {
    font-size: 100%;
}

body {
    line-height: 1.4;
}

p {
    font-size: 15px;
    color: #181818;
    line-height: 1.55;
    margin-bottom: 1rem;
    font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: 'Open Sans', sans-serif;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

.sec_padding {
    padding: 30px 0;
}

.sec_title {
    margin-bottom: 30px;
}

.sub-heading {
    font-weight: 500;
    color: #8f8f8f;
}

.sec_title .heading {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Carter One', cursive;
    color: #ffc000;
    letter-spacing: .2rem;
}

.sec_title .heading span {
    font-family: 'Carter One', cursive;
    font-weight: 600;
    color: #343434;
}

.sec_title .heading::after {
    content: '';
    position: relative;
    display: block;
    width: 200px;
    height: 18px;
    background: url(../images/bg/hidding_border.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.btn-theme {
    position: relative;
    background-color: #800612;
    border-color: #800612;
    border: none;
    color: #ffc000;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 20px;
    z-index: 1;
}

.btn-theme:hover {
    color: #800612;
}

.btn-theme::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    border-radius: 0.25rem;
    height: 10px;
    background-color: #ffc000;
    -webkit-clip-path: polygon(1% 0%, 100% 0%, 100% 100%, 0% 100%, 46% 0);
    clip-path: polygon(1% 0%, 100% 0%, 100% 100%, 0% 100%, 46% 0);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
}

.btn-theme:hover::after {
    width: 100%;
    height: 100%;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-clip-path: none;
    clip-path: none;
}

/* Header Area Start */

.main_header {
    position: relative;
    background-color: #800612;
}

.main_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #ffc000;
}

.main_header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffc000;
    -webkit-box-shadow: 0px 0px 30px 0px #00000018;
    box-shadow: 0px 0px 30px 0px #00000018;
    -webkit-animation: smoothScroll 1s forwards;
    animation: smoothScroll 1s forwards;
    z-index: 999;
}

.main_header.sticky::before {
    background-color: #ffc000;
}

.main_header.sticky .stellarnav li a {
    color: #800612;
}

@-webkit-keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes smoothScroll {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

.main_header.sticky .topRightheader,
.main_header.sticky .header_left {
    display: none;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.main_header.sticky .header_right {
    width: 100%;
}

.main_header.sticky .stellarnav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main_header.sticky .bottomRightheader {
    padding: 10px 0;
}

.navbar-brand {
    position: relative;
    padding: 5px 15px;
    margin: 0;
    /* width: 100%; */
    display: inline-block;
    background-color: #fff;
    z-index: 11;
}

.navbar-brand::before,
.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-radius: 0 0 100% 100%;
    z-index: -1;
}

.navbar-brand::before {
    left: 0;
    width: 66%;
    bottom: -28px;
}

.navbar-brand img {
    width: auto;
    margin: 0 auto;
    position: relative;
}

.topRightheader {
    height: 49px;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.topcontact-info p {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 1px 0 0 35px;
}

.topcontact-info p i {
    position: absolute;
    width: 27px;
    left: 0;
    top: 0;
    line-height: 27px;
    height: 27px;
    font-size: 17px;
    background-color: #ff9600;
    border-radius: 4px;
    text-align: center;
    color: #ffffff;
}

.topcontact-info a {
    color: #ffeb3b;
    margin-right: 10px;
    font-weight: 600;
}

.toplogin-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: inherit;
    -ms-flex-pack: inherit;
    justify-content: inherit;
    width: 100%;
}

.toplogin-info a {
    font-size: 16px;
    text-transform: capitalize;
    color: #000;
    font-weight: 800;
}

.toplogin-info a img {
    display: inline-block;
    width: auto;
    margin-right: 15px;
}

.toplogin-info a:first-child {
    border: none;
}

.toplogin-info a:last-child {
    border: none;
}

.toplogin-info a:nth-child(3) {
    border-right: none;
}

.toplogin-info a:hover {
    color: #ff9600;
}

.toplogin-info a.login_btn_1 {
    background-color: #ff7d7f;
    border: 1px solid #ff7d7f;
}

.toplogin-info a.login_btn_2 {
    background-color: #9bc933;
    border: 1px solid #9bc933;
}

.toplogin-info a.login_btn_3 {
    background-color: #ff9600;
    border: 1px solid #ff9600;
}

.bottomRightheader {
    padding-top: 18px;
}

.toplogin-info a.login_btn_1,
.toplogin-info a.login_btn_2,
.toplogin-info a.login_btn_3 {
    font-size: 14px;
    margin: 0 2px;
    padding: 7px 10px;
    border-radius: 5px;
}

.toplogin-info a.login_btn_1:hover,
.toplogin-info a.login_btn_2:hover,
.toplogin-info a.login_btn_3:hover {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}


/* Slider Area Start */

.slider-area2 {
    position: relative;
}


.slider-area2 .nivo-directionNav a {
    z-index: 6;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.slider-area2 {
    position: relative;
}

.nivo-directionNav .nivo-prevNav,
.nivo-directionNav .nivo-nextNav {
    /* background-color: rgb(255 150 0 / 64%); */
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 40px;
}

.slider-layout2 .slider-content .caption_title {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: capitalize;
    -webkit-animation: fadeInUp 1400ms ease-in-out;
    animation: fadeInUp 1400ms ease-in-out;
}

@media (max-width: 1400px) {
    .slider-layout2 .slider-content .caption_title {
        font-size: 25px;
    }
}

.slider-layout2 .slider-content .btn-theme {
    -webkit-animation: fadeInUp 1800ms ease-in-out;
    animation: fadeInUp 1800ms ease-in-out;
}

.slider-layout1 .nivo-caption {
    top: -45px;
}

@media only screen and (max-width: 1370px) {
    .slider-layout1 .nivo-caption {
        top: 0;
    }
}

.slider-layout1 .slider-content .caption_title {
    -webkit-animation: fadeInUp 1400ms ease-in-out;
    animation: fadeInUp 1400ms ease-in-out;
}

.slider-layout1 .slider-content .btn-theme {
    -webkit-animation: fadeInUp 1800ms ease-in-out;
    animation: fadeInUp 1800ms ease-in-out;
}

.sliderCaptionWrap {
    border: 1px solid #ffffff;
    width: 70%;
    padding: 50px;
    position: relative;
}


.notice_update {
    position: absolute;
    z-index: 9;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    width: 100%;
}

/* 
.notice_heading {
    padding: 10px 0;
    height: 46px;
    position: relative;
    background: url(../images/home/notice-arrow.png);
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}

.notice_heading h3 {
    color: rgb(0, 0, 0);
    margin: 0;
    font-size: 20px;
} */


.notice_wrap marquee .marquee_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}

.notice_wrap marquee a img {
    width: 70px;
    height: 70px;
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 15px;
}

.notice_wrap marquee a {
    margin: 0;
    color: rgb(255 192 0);
    font-size: 18px;
    font-weight: 600;
    width: 30.33%;
    line-height: 25px;
    display: block;
    height: 100px;
    padding: 23px;
    padding-left: 80px;
    text-align: center;
    border: 2px solid #fff;
    white-space: break-spaces;
    border-radius: 10px;
    background-color: #800612;
    position: relative;
}

/* About Us Area Start*/
.Homeabout_sec {
    position: relative;
    background: url(../images/bg/abs-bg3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about_wraperLeft p {
    text-align: justify;
}

.about_wraperRight {
    position: relative;
    padding: 20px;
}

/* .about_wraperRight::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/bg/about-deep-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    -webkit-transform: rotate(110deg);
    -ms-transform: rotate(110deg);
            transform: rotate(110deg);
} */
.about-img-large {
      width: 14%;
    float: right;
    border: 1px solid #fff;
    margin: 10px;
    margin-top: 0px;
}

.about-img-large::before {
    content: '';
    position: absolute;
    right: 45px;
    top: 20px;
    width: 150px;
    height: 150px;
    background: url(../images/bg/shape-3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-animation: mymove 20s infinite;
    animation: mymove 20s infinite;
    z-index: -1;
	display:none;
}

.about-img-large::after {
    content: '';
    position: absolute;
    left: -25px;
    bottom: 0;
    width: 190px;
    height: 190px;
    background: url(../images/bg/shape-4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-animation: mymove 20s infinite;
    animation: mymove 20s infinite;
    z-index: -1;
	display:none;
}

@-webkit-keyframes mymove {
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

@keyframes mymove {
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
}

.about-img-small {
    position: absolute;
    bottom: -30px;
    right: 25px;
}

/* Message Area Start */
.message_sec {
    background: url(../images/bg/pattern_01.png), #f7f5f2;
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: auto;
    position: relative;
}

/* .message_wraper{
    width: 800px;
    height: 458px;
    padding: 50px 50px;
    margin: 0 auto;
    background: url(../images/home/pad-bg.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
} */

.message_sec::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 70px;
    width: 200px;
    height: 200px;
    padding: 58px;
    background: url(../images/bg/SoupyKeyAfricanparadiseflycatcher-max-1mb.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.message_wraper {
    position: relative;
    display: inline-block;
}

.message_wraper .sec_title .heading::after {
    margin: 0 auto;
}

.messagepl_img {
    position: relative;
}

.messagepl_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -o-object-fit: cover;
    object-fit: cover;
}

.messsagepl_text {
    background-color: #fff;
    position: relative;
    padding: 55px 55px;
    display: inline-block;
    margin-top: 50px;
    margin-right: auto;
    margin-left: -143px;
    -webkit-box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 40px 0px rgb(0 0 0 / 20%);
}

.messsagepl_text h4 {
    font-weight: 600;
    clear: none;
    font-size: 25px;
    color: rgb(0, 0, 0);
}

.messsagepl_text p {
    text-align: justify;
    font-weight: 400;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Gallery Area Start */

.gallery_sec {
    position: relative;
}

.gallery_wraper {
    border: 4px solid #ddd;
    border-radius: 4px;
}
.gallery_inner {
    border-bottom: 4px solid #ffc000;
    padding: 5px;
    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
}

.gallery_inner figure {
    margin: 0;
}

.gallery_inner figure a {
    display: block;
    overflow: hidden;
}
.gallery_inner figure a img {
    background-size: contain;
    height: 300px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}
.gallery_inner:hover figure a img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease
}

.gallery_inner .gallery_text {
    background-color: #ffffff;
    padding: 10px
}

.gallery_inner .gallery_text p {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}


/* Main Footer Area */

.main_footer {
    padding-top: 100px;
    position: relative;
    background: url(../images/bg/pattern_02.png), #000a43;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}

.footer_wraper p {
    color: #fff;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 300;
}

.footer_wraper .footter_title {
    font-family: 'Carter One', cursive;
    color: #fff;
    font-size: 25px;
    letter-spacing: .5px;
}

.footer_wraper .footter_title::after {
    content: '';
    position: relative;
    display: block;
    width: 100px;
    height: 18px;
    background: url(../images/bg/hidding_border.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.footer_wraper .footer_links {
    padding: 0;
    margin: 0;
}

.footer_wraper .footer_links li {
    position: relative;
    list-style: none;
    margin-bottom: 5px;
}

.footer_wraper .footer_links li a,
.footer_contact li a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.footer_contact {
    padding: 0;
    margin: 0;
}

.footer_contact i {
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
}

.footer_contact li {
    position: relative;
    list-style: none;
    margin-bottom: 10px;
    padding-left: 30px;
}

.footer_contact li a span {
    display: block;
    color: #9bc933;
    font-weight: 600;
}

.footer_bottom {
    margin-top: 10px;
    padding: 20px 0;
    border-top: 1px dashed #494949;
}

.footer_bottom .copyright_text p {
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.footer_bottom .copyright_text p a {
    color: #edbf47
}


/*=Scroll To Top=*/

.scrollToTop {
    position: fixed;
    right: 5px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border-radius: 0;
    font-size: 30px;
    text-align: center;
    background: #edbf47;
    border: 1px solid #edbf47;
    color: #000;
    text-decoration: none;
    line-height: 45px;
    display: none;
}

.scrollToTop:hover {
    text-decoration: none;
    background-color: #000a43;
    color: #fff;
    border-color: #fff;
}


/* Inner Page Css Start */

.breadcrumb_area {
    position: relative;
    width: 100%;
    min-height: 290px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -ms-linear-gradient(top left, rgb(0 0 0 / 63%), rgb(0 0 0 / 44%)), url(../images/slider/banner04.jpg);
    background: -moz-linear-gradient(45deg, rgb(0 0 0 / 63%), rgb(0 0 0 / 44%)), url(../images/slider/banner04.jpg);
    background: -o-linear-gradient(45deg, rgb(0 0 0 / 63%), rgb(0 0 0 / 44%)), url(../images/slider/banner04.jpg);
    background: linear-gradient(45deg, rgb(0 0 0 / 63%), rgb(0 0 0 / 44%)), url(../images/slider/banner04.jpg);
    background-size: cover;
    background-position: top center;
}

.breadcrumb_area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: url(../images/bg/pattern_2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 11;
}

.breadcrumb_wraper {
    text-align: center;
}

.bradcrumb_title {
    font-weight: 700;
    color: #fff;
}

.bradcrumb_title span {
    color: #ffc000;
}
.bradcrumb_title h1 span {
    color: #ffc000;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.breadcrumb-item {
    color: #fff;
}

.breadcrumb-item a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffc000;
}



/*========Contact Sec Area=========*/

.contact_dtl {
    position: relative;
    padding: 20px;
    text-align: center;
    border-radius: 25px;
    border-top: 5px solid #800612;
    -webkit-box-shadow: 0px 0px 5px rgb(0 0 0 / 23%);
    box-shadow: 0px 0px 5px rgb(0 0 0 / 23%);
}

.contact_dtl h3 {
    color: #800612;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.contact_dtl img {
    width: 60px;
    margin: 0 auto;
}

.contact_dtl ul {
    padding: 0;
    margin: 0;
    position: relative;
}

.contact_dtl ul li {
    list-style: none;
    position: relative;
}

.contact_dtl ul li a span {
    color: #010b44;
    font-weight: 600;
}

.contact_dtl ul li a {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.contact_form {
    background-color: #f6f6f6;
    padding: 50px;
    position: relative;
    border-radius: 10px;
}


.contact_form_sec h3 {
    font-size: 45px;
    font-weight: 700;
    position: relative;
    color: #000000;
}

.contact_form form .form-control {
    background-color: #edbf47;
    border: 1px solid #800612;
    border-radius: 0;
    margin: 10px 0;
    font-size: 15px;
    padding: 10px;
    color: #000;
}

.contact_form form .form-control::placeholder,
.mebmerLogin_sec .mebmerForm_Wrap form .form-control::placeholder {
    font-weight: 600;
    color: #000;
}


.cntImgWrap img {
    width: 80%;
}

.cntForm_Wrap form input[type="submit"] {
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 19px;
    text-align: center;
    margin: 5px 0 0;
    letter-spacing: .5px;
    border: 1px solid #f19101;
    -webkit-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

.cntForm_Wrap form input[type="submit"]:hover {
    background-image: -o-linear-gradient(272deg, #dd7300 0%, #ffa500 100%);
    background-image: linear-gradient(178deg, #dd7300 0%, #ffa500 100%);
    color: #fff;
    -webkit-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

.submit_bn{
	    background: #000;
    color: #fff;
    margin-right: 13px;
}

.submit_bn:hover{
	    background: #010b44;
    color: #fff;
    margin-right: 13px;
}

.title-heading{font-size: 29px;
    font-weight: 500;}
	
.owl-nav{display:none;}

.owl-item img{width:299px; height:224px;}
#ctl00_mainContent_lblPageContents p img{  width: 197px;}

.genesis-in img {
    float: left;
    width: 221px;
    margin-right: 10px;
}

.genesis-in h4{font-weight: bold;
    font-size: 18px;}
.genesis-in h5{    font-size: 17px;
    font-weight: 700;
    color: #000080;}
	
.genesis-in span{color: #b32424; font-weight:700;}
.genesis-content p{text-align:justify;}
.genesis-content{margin-top:18px;}

/*Syllabus Page start*/
.heading-title{font-weight:bold;}
.list-section{
	padding:0px; 
   column-count: 5;
   margin-top: 20px;}
.list-section li {
            list-style: none;
    font-size: 16px;
    padding: 16px 11px;
    margin-bottom: 22px;
    background: #010b44;
    border-radius: 50px;
    text-align: center;

}
.list-section li a{color:#fff;}
.list-section li i {
     margin-right: 5px;
    color: #fff;
    font-size: 17px;
    background: #f00;
    padding: 3px 7px;
    border-radius: 50px;
}

/*Syllabus Page end*/

.primary-level{
	    font-size: 17px;
    color: #930000;
    font-weight: bold;
}


/*Special features start*/
.special-page h4{
	color: #b60404;
    font-size: 20px;
    font-weight: bold;
}
/*Special features end*/


.house-content h3{
	font-weight: bold;
    font-size: 20px;
    color: #c42323;
}

.house-content h4{
	font-weight: bold;
    font-size: 20px;
    color: #c42323;
}
.top-head{font-weight:bold;}
.homepage-tabel{margin-top:15px;}


.office_bearer_main {
    margin-bottom: 35px;
    padding: 0;
    text-align: center;
    border: 1px solid #800612;
    min-height: 256px;
    padding-top: 13px;
}
.office_photo_box {
    width: 135px;
    height: 135px;
    border: solid 2px #dc6501;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
}

.office_bearer_main p {
    color: #800612;
    font-size: 17px;
    font-weight: 700;
   
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0px 0px 0px;
}
.office_bearer_main h1 {
    color: #013675;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    margin-bottom: 0;
    padding: 10px 0 0 0;
    text-transform: capitalize;
    background-image: none;
}


/*Workshops/Seminar start*/

.seminar-content h3{
	font-size: 21px;
    color: #000099;
    font-weight: bold;
}


.seminar-content h4{
	color: #C00000;
    font-size: 16.0pt;
   
    text-decoration: underline;
    font-weight: 600;
}

.seminar-content h5{
	color: #000099;
    font-weight: bold;
}
.seminar-content h6{color:#000099;}
.seminar-content p strong {color: #000099;}
.seminar-content ul{padding:0px;}
.seminar-content ul li{list-style:none;}
.seminar-content ul li i{margin-right:8px;color: #f00;}
/*Workshops/Seminar end*/


/*Scholarships page start*/
.matric h4 a{
	    color: #dc0016;
    font-size: 17px;
    font-weight: bold;
}

.matric h4 a i{    color: #010b44;}
.scholarship-text h3 a{
	font-size: 17px;
    color: #ffffff;
   
    border: 1px solid #000;
    background: #dc0016;
    padding: 3px 17px;
    border-radius: 17px;
}


/*Scholarships page end*/


/*Roll Of Honour page start*/
.result-imgage h4{    font-weight: bold;
    font-size: 20px;
    color: #2037bb;}
/*Roll Of Honour page end*/

/*principal message start*/
.principal-message h5{
	font-weight: bold;
    font-size: 18px;
    
    margin-top: 9px;
}
.prinipal-content p{
	font-size: 15px;
    text-align: justify;
    font-family: 'Open Sans', sans-serif;
}
/*principal message end*/

/*contect page start*/
.contact-detail h3{
	    font-weight: bold;
    color: #930000;
    margin-top: 23px;
}

.contact-detail ul{padding:0px;}
.contact-detail ul li{
	list-style: none;
    padding-bottom: 5px;
}
.contact-detail ul li i{
	color: #000000;
    font-weight: bold;
    
    margin-right: 6px;
}
.contact-detail ul li a {
    font-size: 15px;
    /* font-weight: bold; */
    color: #000;
}
/*contect page end*/

.primary-content h1{
	color: rgb(192, 0, 0);
    font-size: 24px;
    font-weight: bold;
}

.primary-content img{
	    width: auto;
    margin-bottom: 28px;
}
.primary-content h2{   
     color: rgb(192, 0, 0);
    font-size: 20px;
    font-weight: 600;}
	
/*primary wing page start*/
.primarywing-content h1{
	color: rgb(192, 0, 0);
    font-size: 24px;
    font-weight: bold;
}
.primarywing-content p{text-align:justify;}
.primarywing-content img{
	  width: auto;
    float: right;
   
    margin-left: 28px;
}
/*primary wing page end*/

.comingsoon-section h2{
	text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    color: #800612;
}

.admission-title h2{color: #c00000;
    font-weight: bold;
    font-size: 27px;}
.admission-title h4{font-weight: bold;}


.mandatory-tittle{    font-size: 29px;
    font-weight: bold;
	    color: #c00000;
	}	

table thead tr:first-child {
    background-color: #ffc000 !important;
}
table thead tr:last-child {
    background-color: #f1f1f1 !important;
}

.page-tittle{
	    font-size: 22px;
    color: red;
    margin: 20px 0px;
}

.table-tittle{
	font-size: 20px;
    font-weight: bold;
}

.inner-page-tittle{
	font-size: 17px;
    font-weight: 600;
}

.lab-heading{
	color: #f00;
    font-size: 18px;
    font-weight: bold;
}

.lab-tittel{
	    color: #010b44;
    font-weight: bold;
    font-size: 18px;
}


.special-page ul li{text-transform: capitalize;}
.table tbody tr td{text-align: center;}
.table thead tr th{text-align: center;}

.honour-page{
	border: 1px solid #e6e6e6;
    min-height: 306px;
    margin-bottom: 14px;
    text-align: center;
    box-shadow: 0px 0px 4px;
}
.honour-page img{}
.honour-page h4{
	    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
	    text-transform: uppercase;
}
.honour-page h6{font-weight: bold;}
.honour-page p{font-weight: bold;}

.our-logo-area{}

.about-img-small img{border-radius: 18px;}
.about-img-large img{border-radius: 18px;}

.criteria-section .table {
	text-align:center;
    
}

.special-page h3{
	font-weight: bold;
    font-size: 22px;
}

.special-page h5{
	font-weight: bold;
    margin-top: 18px;
}

.ration p{margin:0px;}

.list-documents ul{}
.list-documents ul li{list-style: lower-roman;}

.tabel-area table{text-align:center;}

.modal {
    
    z-index: 9999;
	padding-top: 8%;
}

.btn-close{
	position: absolute;
    top: 5px;
    right: 6px;
}
.modal-sName,
.modal-Notice {
    color: #800612;
}
.opup-content h3{
	font-weight: 600;
    font-size: 19px;
}
.opup-content h4{}



.modal-header{
    display: block;
}





.down a,
.down1 a {
    background-color: #800612;
    color: #ffc000;
    padding: 5px;
    border-radius: 4px;
}
.popup-content p{    
font-weight: 500;}
.popup-content h6 {
    text-align: right;
    font-weight: bold;}
	
.table-bg{
	background: #ffc000;
}

table thead tr:nth-child(2){
   background-color: #c00000;
   color: #fff;
}



.italic-font{
    font-style: italic;
}

.notice>li{
list-style: none;
position: relative;
padding-left: 25px;
margin-bottom: 10px;
}

.notice>li::before{
    content: '*';
    position: absolute;
    top: 0;
    left: 0;

}

.mission-list{
	padding-left:0px;
}
.mission-list li{
	font-size: 15px;
    color: #181818;
    line-height: 1.55;
    margin-bottom: 1rem;
    font-weight: 400;
}



.founder-image img {
    
    width: 221px;
    margin-right: 10px;
    margin: 0 auto;
}
.founder-content{
	    text-align:justify;
    margin-top: 22px;
}
.founder-content h4 {
    font-weight: bold;
    font-size: 18px;
}
.founder-content h5 {
    font-size: 17px;
    font-weight: 700;
    color: #000080;
}
.founder-content span {
    color: #b32424;
    font-weight: 700;
}

.founder-image{
    float: right;
    margin-left: 12px;
}


.principal-image_section{
	       float: right;
    margin-left: 18px;
}
.principal-image_section img{
	width: 420px;
}

.gp_popup {}

.gp_popup p{    font-weight: 500;}
.gp_popup .text-right{ text-align: right;    font-weight: 700;}